diff --git a/.env.template b/.env.template index 3729f4e8..d74fea16 100644 --- a/.env.template +++ b/.env.template @@ -14,30 +14,11 @@ ATTACK_SSH_INTERVAL=0 ATTACK_GOBUSTER_INTERVAL=0 ATTACK_HYDRA_INTERVAL=0 - -COMMERCE_PROVIDER=@vercel/commerce-spree # NEXT_PUBLIC_* are exposed to the web browser and the server # NEXT_PUBLIC_SPREE_API_HOST=http://web:4000 NEXT_PUBLIC_SPREE_CLIENT_HOST=http://localhost:4000 -NEXT_PUBLIC_SPREE_DEFAULT_LOCALE=en-us -NEXT_PUBLIC_SPREE_CART_COOKIE_NAME=spree_cart_token -# cookie expire in days # -NEXT_PUBLIC_SPREE_CART_COOKIE_EXPIRE=7 -NEXT_PUBLIC_SPREE_USER_COOKIE_NAME=spree_user_token -NEXT_PUBLIC_SPREE_USER_COOKIE_EXPIRE=7 NEXT_PUBLIC_SPREE_IMAGE_HOST=http://localhost:4000 NEXT_PUBLIC_SPREE_ALLOWED_IMAGE_DOMAIN=localhost -NEXT_PUBLIC_SPREE_CATEGORIES_TAXONOMY_PERMALINK=/t/categories -NEXT_PUBLIC_SPREE_BRANDS_TAXONOMY_PERMALINK=/t/brands -NEXT_PUBLIC_SPREE_ALL_PRODUCTS_TAXONOMY_ID=false -NEXT_PUBLIC_SPREE_SHOW_SINGLE_VARIANT_OPTIONS=false -NEXT_PUBLIC_SPREE_LAST_UPDATED_PRODUCTS_PRERENDER_COUNT=10 -NEXT_PUBLIC_SPREE_PRODUCT_PLACEHOLDER_IMAGE_URL=/product-img-placeholder.svg -NEXT_PUBLIC_SPREE_LINE_ITEM_PLACEHOLDER_IMAGE_URL=/product-img-placeholder.svg -NEXT_PUBLIC_SPREE_IMAGES_OPTION_FILTER=false -NEXT_PUBLIC_SPREE_IMAGES_SIZE=1000x1000 -NEXT_PUBLIC_SPREE_IMAGES_QUALITY=100 -NEXT_PUBLIC_SPREE_LOGIN_AFTER_SIGNUP=true NEXT_PUBLIC_ADS_PORT=7676 NEXT_PUBLIC_DISCOUNTS_PORT=2814 NEXT_PUBLIC_ADS_ROUTE="http://localhost" diff --git a/docker-compose.yml b/docker-compose.yml index 2c3c430b..a0228f93 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,32 +1,61 @@ version: '3.7' services: + dd-agent: + image: gcr.io/datadoghq/agent:latest + environment: + - DD_API_KEY=${DD_API_KEY} + - DD_APM_ENABLED=true + - DD_APM_NON_LOCAL_TRAFFIC=true + - DD_LOGS_ENABLED=true + - DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL=true + - DD_CONTAINER_EXCLUDE="name:dd-agent,name:puppeteer" + - DD_HOSTNAME_TRUST_UTS_NAMESPACE=true + - DD_PROCESS_AGENT_ENABLED=true + - DD_CONTAINER_LABELS_AS_TAGS={"my.custom.label.team":"team"} + - DD_TAGS=${DD_TAGS-env:storedog} + - DD_HOSTNAME=${DD_HOSTNAME-storedog-host} + - DD_DOGSTATSD_NON_LOCAL_TRAFFIC=true + - DD_DBM_PROPAGATION_MODE=full + ports: + - '8126:8126/tcp' + - '8125:8125/udp' + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + - /proc/:/host/proc/:ro + - /sys/fs/cgroup/:/host/sys/fs/cgroup:ro + - ./services/datadog-agent/postgres/dd-agent-conf.yaml:/conf.d/postgres.d/conf.yaml frontend: build: context: ./services/frontend - command: yarn dev + command: npm run dev depends_on: - worker - dd-agent volumes: - - "./services/frontend/site:/storedog-app/site" + - ./services/frontend:/storedog-app + - /storedog-app/node_modules ports: - 3000:3000 - networks: - - storedog-net environment: - DD_VERSION: "7" - DD_SERVICE: "storedog-frontend" - DD_ENV: "dev" + - DD_VERSION=${DD_VERSION-7} + - DD_SERVICE=store-frontend + - DD_ENV=${DD_ENV-dev} + - DD_AGENT_HOST=dd-agent + - DD_LOGS_INJECTION=true + - DD_RUNTIME_METRICS_ENABLED=true + - DD_PROFILING_ENABLED=true labels: - com.datadoghq.ad.logs: '[{"source": "nodejs", "service": "storedog-frontend", "auto_multi_line_detection":true }]' + com.datadoghq.ad.logs: '[{"source": "nodejs", "service": "store-frontend", "auto_multi_line_detection":true }]' + com.datadoghq.tags.env: '${DD_ENV-dev}' + com.datadoghq.tags.service: 'store-frontend' + com.datadoghq.tags.version: '${DD_VERSION-7}' + my.custom.label.team: 'frontend' nginx: build: context: ./services/nginx restart: always - networks: - - storedog-net ports: - - "80:80" + - '80:80' depends_on: - frontend - dd-agent @@ -42,33 +71,116 @@ services: com.datadoghq.ad.check_names: '["nginx"]' com.datadoghq.ad.init_configs: '[{}]' com.datadoghq.ad.instances: '[{"nginx_status_url": "http://%%host%%:81/nginx_status/"}]' + dbm: + build: + context: ./services/dbm + command: gunicorn --bind 0.0.0.0:${DBM_PORT} dbm:app # If using any other port besides the default 8282, overriding the CMD is required + depends_on: + - postgres + - dd-agent + profiles: + - dbm + environment: + - FLASK_APP=dbm.py + - FLASK_DEBUG=1 + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_HOST=postgres + - DD_SERVICE=storedog-dbm + - DD_AGENT_HOST=dd-agent + - DD_LOGS_INJECTION=true + - DD_TRACE_ANALYTICS_ENABLED=true + - DD_PROFILING_ENABLED=true + - DD_APPSEC_ENABLED=true + volumes: + - './services/dbm:/app' + ports: + - '${DBM_PORT}:${DBM_PORT}' postgres: image: postgres:13-alpine + command: ['postgres', '-c', 'config_file=/postgresql.conf'] restart: always - depends_on: + depends_on: - dd-agent environment: - POSTGRES_HOST_AUTH_METHOD: trust + - POSTGRES_HOST_AUTH_METHOD=trust + - POSTGRES_USER + - POSTGRES_PASSWORD + - DD_ENV=${DD_ENV-dev} + - DD_SERVICE=storedog-db + - DD_VERSION=${DD_VERSION-7} + - DD_AGENT_HOST=dd-agent + - DD_DBM_PROPAGATION_MODE=full + - DD_LOGS_INJECTION=true + - DD_RUNTIME_METRICS_ENABLED=true + - DD_PROFILING_ENABLED=true volumes: - 'postgres:/var/lib/postgresql/data' - ./services/backend/db/restore:/docker-entrypoint-initdb.d - ./services/backend/db/postgresql.conf:/postgresql.conf labels: - com.datadoghq.ad.check_names: '["postgres"]' - com.datadoghq.ad.init_configs: '[{}]' - com.datadoghq.ad.instances: '[{"host":"%%host%%", "port":5432,"username":"datadog","password":"datadog"}]' - com.datadoghq.ad.logs: '[{"source":"postgresql","service":"postgres", "auto_multi_line_detection": true}]' - command: ["postgres", "-c", "config_file=/postgresql.conf"] - networks: - - storedog-net + com.datadoghq.tags.env: '${DD_ENV}' + com.datadoghq.tags.service: 'storedog-db' + com.datadoghq.tags.version: '13' + com.datadoghq.ad.check_names: '["postgres", "postgres"]' + com.datadoghq.ad.init_configs: '[{}, {}]' + com.datadoghq.ad.instances: '[ + { + "dbm":true, + "host":"%%host%%", + "port":5432, + "username":"datadog", + "password":"datadog", + "relations": [{ + "relation_name": "advertisement", + "relation_name": "discount", + "relation_name": "items", + "relation_name": "preorder_items", + "relation_name": "influencer" + }], + "query_samples": { + "enabled": true, + "explain_parameterized_queries": true + }, + "max_relations": 400, + "collect_function_metrics": true, + "collection_interval": 1 + }, + { + "dbm":true, + "host":"%%host%%", + "port":5432, + "username":"datadog", + "password":"datadog", + "dbname": "spree_starter_development", + "relations": [{ + "relation_regex": "spree_.*" + }], + "query_samples": { + "enabled": true, + "explain_parameterized_queries": true + }, + "max_relations": 400, + "collect_function_metrics": true, + "collection_interval": 1 + }]' + com.datadoghq.ad.logs: '[{"source": "postgresql", "service": "postgres", "auto_multi_line_detection":true }]' + my.custom.label.team: 'database' redis: image: redis:6.2-alpine depends_on: - dd-agent volumes: - 'redis:/data' - networks: - - storedog-net + labels: + com.datadoghq.tags.env: '${DD_ENV}' + com.datadoghq.tags.service: 'redis' + com.datadoghq.tags.version: '6.2' + com.datadoghq.ad.check_names: '["redisdb"]' + com.datadoghq.ad.init_configs: '[{}]' + com.datadoghq.ad.instances: '[{"host":"%%host%%", "port":6379}]' + com.datadoghq.ad.logs: '[{"source": "redis", "service": "redis"}]' + my.custom.label.team: 'database' web: depends_on: - 'postgres' @@ -76,51 +188,70 @@ services: - 'dd-agent' build: context: ./services/backend + command: wait-for-it postgres:5432 -- bundle exec rails s -b 0.0.0.0 -p 4000 ports: - '${DOCKER_HOST_WEB_PORT:-4000}:4000' volumes: - - 'bundle_cache:/bundle' - './services/backend:/app' - .env:/app/.env environment: - REDIS_URL: redis://redis:6379/0 - DB_HOST: postgres - DB_PORT: 5432 - DISABLE_SPRING: 1 - DD_APPSEC_ENABLED: 1 - DD_AGENT_HOST: 172.43.0.1 - DD_VERSION: "7" - DD_SERVICE: "storedog-backend" - DD_ENV: "dev" - networks: - - storedog-net + - REDIS_URL=redis://redis:6379/0 + - DB_HOST=postgres + - DB_PORT=5432 + - POSTGRES_USER + - POSTGRES_PASSWORD + - DISABLE_SPRING=1 + - DD_APPSEC_ENABLED=true + - DD_AGENT_HOST=dd-agent + - DD_VERSION=${DD_VERSION-7} + - DD_SERVICE=store-backend + - DD_ENV=${DD_ENV-dev} + - DD_LOGS_INJECTION=true + - DD_RUNTIME_METRICS_ENABLED=true + - DD_PROFILING_ENABLED=true + - RAILS_ENV=development labels: - com.datadoghq.ad.logs: '[{"source": "ruby", "service": "storedog-backend", "auto_multi_line_detection":true }]' + com.datadoghq.ad.logs: '[{"source": "ruby", "service": "store-backend", "auto_multi_line_detection":true }]' + com.datadoghq.tags.env: '${DD_ENV}' + com.datadoghq.tags.service: 'store-backend' + com.datadoghq.tags.version: '1.0.9' + my.custom.label.team: 'backend' worker: + build: + context: ./services/backend + command: wait-for-it postgres:5432 -- bundle exec sidekiq -C config/sidekiq.yml depends_on: - 'postgres' - 'redis' - 'web' - 'dd-agent' - build: - context: ./services/backend - command: bundle exec sidekiq -C config/sidekiq.yml volumes: - - 'bundle_cache:/bundle' - - './services/backend:/app' + - ./services/backend:/app - .env:/app/.env + - ./services/worker/config/initializers/datadog-tracer.rb:/app/config/initializers/datadog-tracer.rb environment: - REDIS_URL: redis://redis:6379/0 - DB_HOST: postgres - DB_PORT: 5432 - DISABLE_SPRING: 1 - DD_APPSEC_ENABLED: 1 - DD_AGENT_HOST: 172.43.0.1 - networks: - - storedog-net + - REDIS_URL=redis://redis:6379/0 + - DB_HOST=postgres + - DB_PORT=5432 + - DISABLE_SPRING=1 + - DD_AGENT_HOST=dd-agent + - DD_ENV=${DD_ENV-dev} + - DD_SERVICE=store-worker + - DD_VERSION=${DD_VERSION-7} + - DD_LOGS_INJECTION=true + - DD_RUNTIME_METRICS_ENABLED=true + - DD_PROFILING_ENABLED=true + - DD_APPSEC_ENABLED=true labels: com.datadoghq.ad.logs: '[{"source": "ruby", "service": "storedog-worker", "auto_multi_line_detection":true }]' + com.datadoghq.tags.env: '${DD_ENV}' + com.datadoghq.tags.service: 'store-worker' + com.datadoghq.tags.version: '1.0.9' + my.custom.label.team: 'backend' ads: + build: + context: ./services/ads/python + command: flask run --port=${ADS_PORT} --host=0.0.0.0 # If using any other port besides the default 9292, overriding the CMD is required depends_on: - postgres - dd-agent @@ -135,150 +266,73 @@ services: - DD_TRACE_ANALYTICS_ENABLED=true - DD_PROFILING_ENABLED=true - DD_APPSEC_ENABLED=true - - DD_VERSION=7 - - DD_SERVICE=ads - - DD_ENV=dev - build: - context: ./services/ads/python - command: flask run --port=${ADS_PORT} --host=0.0.0.0 # If using any other port besides the default 9292, overriding the CMD is required + - DD_VERSION=${DD_VERSION-7} + - DD_SERVICE=store-ads + - DD_ENV=${DD_ENV-dev} volumes: - ./services/ads/python:/app ports: - - "${ADS_PORT}:${ADS_PORT}" - networks: - - storedog-net + - '${ADS_PORT}:${ADS_PORT}' labels: - com.datadoghq.ad.logs: '[{"source": "python", "service": "ads", "log_processing_rules": [{ - "type": "multi_line", - "name": "log_start_with_date", - "pattern" : "\d{3}.\d{2}.\d{1}.\d{1}" - }] }]' + com.datadoghq.ad.logs: '[{"source": "python", "service": "store-ads"}]' + com.datadoghq.tags.env: '${DD_ENV}' + com.datadoghq.tags.service: 'store-ads' + com.datadoghq.tags.version: '1.0.9' + my.custom.label.team: 'advertisements' discounts: - depends_on: - - postgres - - dd-agent - environment: - - FLASK_APP=discounts.py - - FLASK_DEBUG=1 - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_HOST=postgres - - DD_AGENT_HOST=dd-agent - - DD_LOGS_INJECTION=true - - DD_TRACE_ANALYTICS_ENABLED=true - - DD_PROFILING_ENABLED=true - - DD_APPSEC_ENABLED=true - - DD_VERSION=7 - - DD_SERVICE=discounts - - DD_ENV=dev build: context: ./services/discounts command: ./my-wrapper-script.sh ${DISCOUNTS_PORT} - volumes: - - ./services/discounts:/app - ports: - - "${DISCOUNTS_PORT}:${DISCOUNTS_PORT}" - - "22:22" - networks: - - storedog-net - labels: - com.datadoghq.ad.logs: '[{"source": "python", "service": "discounts", "log_processing_rules": [{ - "type": "multi_line", - "name": "log_start_with_date", - "pattern" : "\\[\\d{4}-\\d{2}-\\d{2}\\s\\d{2}:\\d{2}:\\d{2}\\,\\d{3}" - }] }]' - auth: - depends_on: - - postgres - - dd-agent - profiles: - - csrf - environment: - - FLASK_APP=auth.py - - FLASK_DEBUG=1 - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_HOST=postgres - - DD_SERVICE=storedog-auth - - DD_AGENT_HOST=dd-agent - - DD_LOGS_INJECTION=true - - DD_TRACE_ANALYTICS_ENABLED=true - - DD_PROFILING_ENABLED=true - - DD_APPSEC_ENABLED=true - build: - context: ./services/auth - command: gunicorn --bind 0.0.0.0:${AUTH_PORT} auth:app # If using any other port besides the default 8282, overriding the CMD is required - volumes: - - "./services/auth:/app" - ports: - - "${AUTH_PORT}:${AUTH_PORT}" - networks: - - storedog-net - dbm: depends_on: - postgres - dd-agent - profiles: - - dbm environment: - - FLASK_APP=dbm.py + - FLASK_APP=discounts.py - FLASK_DEBUG=1 - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - POSTGRES_USER=${POSTGRES_USER} - POSTGRES_HOST=postgres - - DD_SERVICE=storedog-dbm - DD_AGENT_HOST=dd-agent - DD_LOGS_INJECTION=true - DD_TRACE_ANALYTICS_ENABLED=true - DD_PROFILING_ENABLED=true - DD_APPSEC_ENABLED=true - build: - context: ./services/dbm - command: gunicorn --bind 0.0.0.0:${DBM_PORT} dbm:app # If using any other port besides the default 8282, overriding the CMD is required + - DD_VERSION=${DD_VERSION-7} + - DD_SERVICE=store-discounts + - DD_ENV=${DD_ENV-dev} volumes: - - "./services/dbm:/app" - ports: - - "${DBM_PORT}:${DBM_PORT}" - networks: - - storedog-net - dd-agent: - image: gcr.io/datadoghq/agent:latest - environment: - - DD_API_KEY=${DD_API_KEY} - - DD_APM_ENABLED=true - - DD_APM_NON_LOCAL_TRAFFIC=true - - DD_LOGS_ENABLED=true - - DD_HOSTNAME=172.43.0.4 - - DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL=true - - DD_CONTAINER_EXCLUDE="name:datadog-agent" - - DD_HOSTNAME_TRUST_UTS_NAMESPACE=true + - ./services/discounts:/app ports: - - "8126:8126" - volumes: - - /var/run/docker.sock:/var/run/docker.sock:ro - - /proc/:/host/proc/:ro - - /sys/fs/cgroup/:/host/sys/fs/cgroup:ro - - ./services/backend/db/dd-agent-conf.yaml:/conf.d/postgres.d/conf.yaml - networks: - storedog-net: - ipv4_address: 172.43.0.4 + - '${DISCOUNTS_PORT}:${DISCOUNTS_PORT}' + - '22:22' + labels: + com.datadoghq.ad.logs: '[{"source": "python", "service": "store-discounts"}]' + com.datadoghq.tags.env: '${DD_ENV-dev}' + com.datadoghq.tags.service: 'store-discounts' + com.datadoghq.tags.version: '${DD_VERSION-7}' + my.custom.label.team: 'discounts' ads-java: build: context: ./services/ads/java depends_on: - dd-agent environment: - - DD_SERVICE=ads-java + - DD_SERVICE=store-ads-java - DD_AGENT_HOST=dd-agent - DD_LOGS_INJECTION=true - DD_TRACE_ANALYTICS_ENABLED=true - DD_PROFILING_ENABLED=true + - DD_TRACE_SAMPLE_RATE=1 + - DD_VERSION=${DD_VERSION-7} + - DD_ENV=${DD_ENV-dev} ports: - - "3030:8080" - networks: - - storedog-net + - '3030:8080' labels: - com.datadoghq.ad.logs: '[{"source": "java", "service": "ads-java", "auto_multi_line_detection": true}]' + com.datadoghq.ad.logs: '[{"source": "java", "service": "ads-java"}]' + com.datadoghq.tags.env: '${DD_ENV-dev}' + com.datadoghq.tags.service: 'store-ads-java' + com.datadoghq.tags.version: '${DD_VERSION-7}' + my.custom.label.team: 'advertisements' attackbox: build: context: ./services/attackbox @@ -297,17 +351,24 @@ services: - web - discounts - dd-agent - networks: - - storedog-net + puppeteer: + image: ghcr.io/puppeteer/puppeteer:20.0.0 + platform: linux/amd64 + network_mode: host + volumes: + - ./services/puppeteer/puppeteer.js:/home/pptruser/puppeteer.js + - ./services/puppeteer/puppeteer.sh:/home/pptruser/puppeteer.sh + environment: + - STOREDOG_URL=${STOREDOG_URL-http://localhost} + - PUPPETEER_TIMEOUT + - SKIP_SESSION_CLOSE + depends_on: + - frontend + command: bash puppeteer.sh + shm_size: '4gb' # Increase shared memory size + cap_add: + - 'SYS_ADMIN' # Required for Puppeteer to run in Docker volumes: redis: - postgres: - bundle_cache: - -networks: - storedog-net: - driver: bridge - ipam: - config: - - subnet: 172.43.0.0/16 \ No newline at end of file + postgres: \ No newline at end of file diff --git a/services/ads/python/ads.py b/services/ads/python/ads.py index 952dee04..ccf901ed 100644 --- a/services/ads/python/ads.py +++ b/services/ads/python/ads.py @@ -11,7 +11,7 @@ from bootstrap import create_app from models import Advertisement, db -from ddtrace import patch; patch(logging=True) +from ddtrace import patch; patch(logging=True) import logging from ddtrace import tracer import json_log_formatter diff --git a/services/backend/config/environments/development.rb b/services/backend/config/environments/development.rb index 414a8bb9..7c0b1f54 100644 --- a/services/backend/config/environments/development.rb +++ b/services/backend/config/environments/development.rb @@ -44,7 +44,7 @@ config.active_record.migration_error = :page_load # Highlight code that triggered database queries in logs. - config.active_record.verbose_query_logs = true + config.active_record.verbose_query_logs = false # Debug mode disables concatenation and preprocessing of assets. # This option may cause significant delays in view rendering with a large diff --git a/services/backend/config/initializers/datadog-tracer.rb b/services/backend/config/initializers/datadog-tracer.rb index 2de38f50..ec69f880 100644 --- a/services/backend/config/initializers/datadog-tracer.rb +++ b/services/backend/config/initializers/datadog-tracer.rb @@ -1,6 +1,8 @@ Datadog.configure do |c| - c.env = ENV['DD_ENV'] || 'development' c.service = ENV['DD_SERVICE'] || 'store-backend' - c.tracing.sampling.default_rate = 1.0 - c.profiling.enabled = true + # Activates and configures an integration + c.tracing.instrument :pg, service_name: 'postgres' + c.tracing.instrument :aws, service_name: 'store-backend-aws' + c.tracing.instrument :dalli, service_name: 'store-backend-memcached' + c.tracing.instrument :active_support, cache_service: 'store-backend-cache' end \ No newline at end of file diff --git a/services/backend/db/postgresql.conf b/services/backend/db/postgresql.conf index 4fcedc15..416bae78 100644 --- a/services/backend/db/postgresql.conf +++ b/services/backend/db/postgresql.conf @@ -704,6 +704,7 @@ default_text_search_config = 'pg_catalog.english' # - Shared Library Preloading - shared_preload_libraries = 'pg_stat_statements' # (change requires restart) +pg_stat_statements.track = all #local_preload_libraries = '' #session_preload_libraries = '' #jit_provider = 'llvmjit' # JIT library to use diff --git a/services/backend/db/restore/01_restore.sql b/services/backend/db/restore/01_restore.sql new file mode 100644 index 00000000..ce335c6e --- /dev/null +++ b/services/backend/db/restore/01_restore.sql @@ -0,0 +1,23483 @@ +CREATE user datadog WITH password 'datadog'; + +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 13.8 +-- Dumped by pg_dump version 13.8 + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +\connect postgres + +CREATE SCHEMA IF NOT EXISTS datadog; +GRANT USAGE ON SCHEMA datadog TO datadog; +GRANT USAGE ON SCHEMA public TO datadog; +GRANT pg_monitor TO datadog; +CREATE EXTENSION IF NOT EXISTS pg_stat_statements; + +CREATE OR REPLACE FUNCTION datadog.explain_statement( + l_query TEXT, + OUT explain JSON +) +RETURNS SETOF JSON AS +$$ +DECLARE +curs REFCURSOR; +plan JSON; + +BEGIN + OPEN curs FOR EXECUTE pg_catalog.concat('EXPLAIN (FORMAT JSON) ', l_query); + FETCH curs INTO plan; + CLOSE curs; + RETURN QUERY SELECT plan; +END; +$$ +LANGUAGE 'plpgsql' +RETURNS NULL ON NULL INPUT +SECURITY DEFINER; + +-- +-- Name: spree_starter_development; Type: DATABASE; Schema: -; Owner: postgres +-- + +CREATE DATABASE spree_starter_development WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'en_US.utf8'; + +ALTER DATABASE spree_starter_development OWNER TO postgres; + +\connect spree_starter_development +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +\connect spree_starter_development +CREATE SCHEMA IF NOT EXISTS datadog; +GRANT USAGE ON SCHEMA datadog TO datadog; +GRANT USAGE ON SCHEMA public TO datadog; +GRANT pg_monitor TO datadog; +CREATE EXTENSION IF NOT EXISTS pg_stat_statements; + +CREATE OR REPLACE FUNCTION datadog.explain_statement( + l_query TEXT, + OUT explain JSON +) +RETURNS SETOF JSON AS +$$ +DECLARE +curs REFCURSOR; +plan JSON; + +BEGIN + OPEN curs FOR EXECUTE pg_catalog.concat('EXPLAIN (FORMAT JSON) ', l_query); + FETCH curs INTO plan; + CLOSE curs; + RETURN QUERY SELECT plan; +END; +$$ +LANGUAGE 'plpgsql' +RETURNS NULL ON NULL INPUT +SECURITY DEFINER; + +-- +-- Name: action_mailbox_inbound_emails; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.action_mailbox_inbound_emails ( + id bigint NOT NULL, + status integer DEFAULT 0 NOT NULL, + message_id character varying NOT NULL, + message_checksum character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.action_mailbox_inbound_emails OWNER TO postgres; + +-- +-- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.action_mailbox_inbound_emails_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.action_mailbox_inbound_emails_id_seq OWNER TO postgres; + +-- +-- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.action_mailbox_inbound_emails_id_seq OWNED BY public.action_mailbox_inbound_emails.id; + + +-- +-- Name: action_text_rich_texts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.action_text_rich_texts ( + id bigint NOT NULL, + name character varying NOT NULL, + body text, + record_type character varying NOT NULL, + record_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.action_text_rich_texts OWNER TO postgres; + +-- +-- Name: action_text_rich_texts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.action_text_rich_texts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.action_text_rich_texts_id_seq OWNER TO postgres; + +-- +-- Name: action_text_rich_texts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.action_text_rich_texts_id_seq OWNED BY public.action_text_rich_texts.id; + + +-- +-- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.active_storage_attachments ( + id bigint NOT NULL, + name character varying NOT NULL, + record_type character varying NOT NULL, + record_id bigint NOT NULL, + blob_id bigint NOT NULL, + created_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.active_storage_attachments OWNER TO postgres; + +-- +-- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.active_storage_attachments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.active_storage_attachments_id_seq OWNER TO postgres; + +-- +-- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id; + + +-- +-- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.active_storage_blobs ( + id bigint NOT NULL, + key character varying NOT NULL, + filename character varying NOT NULL, + content_type character varying, + metadata text, + service_name character varying NOT NULL, + byte_size bigint NOT NULL, + checksum character varying NOT NULL, + created_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.active_storage_blobs OWNER TO postgres; + +-- +-- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.active_storage_blobs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.active_storage_blobs_id_seq OWNER TO postgres; + +-- +-- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id; + + +-- +-- Name: active_storage_variant_records; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.active_storage_variant_records ( + id bigint NOT NULL, + blob_id bigint NOT NULL, + variation_digest character varying NOT NULL +); + + +ALTER TABLE public.active_storage_variant_records OWNER TO postgres; + +-- +-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.active_storage_variant_records_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.active_storage_variant_records_id_seq OWNER TO postgres; + +-- +-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.active_storage_variant_records_id_seq OWNED BY public.active_storage_variant_records.id; + + +-- +-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.ar_internal_metadata ( + key character varying NOT NULL, + value character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.ar_internal_metadata OWNER TO postgres; + +-- +-- Name: friendly_id_slugs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.friendly_id_slugs ( + id bigint NOT NULL, + slug character varying NOT NULL, + sluggable_id bigint NOT NULL, + sluggable_type character varying(50), + scope character varying, + created_at timestamp without time zone, + deleted_at timestamp without time zone +); + + +ALTER TABLE public.friendly_id_slugs OWNER TO postgres; + +-- +-- Name: friendly_id_slugs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.friendly_id_slugs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.friendly_id_slugs_id_seq OWNER TO postgres; + +-- +-- Name: friendly_id_slugs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.friendly_id_slugs_id_seq OWNED BY public.friendly_id_slugs.id; + + +-- +-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.schema_migrations ( + version character varying NOT NULL +); + + +ALTER TABLE public.schema_migrations OWNER TO postgres; + +-- +-- Name: spree_addresses; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_addresses ( + id bigint NOT NULL, + firstname character varying, + lastname character varying, + address1 character varying, + address2 character varying, + city character varying, + zipcode character varying, + phone character varying, + state_name character varying, + alternative_phone character varying, + company character varying, + state_id bigint, + country_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + user_id bigint, + deleted_at timestamp without time zone, + label character varying, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_addresses OWNER TO postgres; + +-- +-- Name: spree_addresses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_addresses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_addresses_id_seq OWNER TO postgres; + +-- +-- Name: spree_addresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_addresses_id_seq OWNED BY public.spree_addresses.id; + + +-- +-- Name: spree_adjustments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_adjustments ( + id bigint NOT NULL, + source_type character varying, + source_id bigint, + adjustable_type character varying, + adjustable_id bigint, + amount numeric(10,2), + label character varying, + mandatory boolean, + eligible boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + state character varying, + order_id bigint NOT NULL, + included boolean DEFAULT false +); + + +ALTER TABLE public.spree_adjustments OWNER TO postgres; + +-- +-- Name: spree_adjustments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_adjustments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_adjustments_id_seq OWNER TO postgres; + +-- +-- Name: spree_adjustments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_adjustments_id_seq OWNED BY public.spree_adjustments.id; + + +-- +-- Name: spree_assets; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_assets ( + id bigint NOT NULL, + viewable_type character varying, + viewable_id bigint, + attachment_width integer, + attachment_height integer, + attachment_file_size integer, + "position" integer, + attachment_content_type character varying, + attachment_file_name character varying, + type character varying(75), + attachment_updated_at timestamp without time zone, + alt text, + created_at timestamp without time zone, + updated_at timestamp without time zone, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_assets OWNER TO postgres; + +-- +-- Name: spree_assets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_assets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_assets_id_seq OWNER TO postgres; + +-- +-- Name: spree_assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_assets_id_seq OWNED BY public.spree_assets.id; + + +-- +-- Name: spree_calculators; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_calculators ( + id bigint NOT NULL, + type character varying, + calculable_type character varying, + calculable_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + preferences text, + deleted_at timestamp without time zone +); + + +ALTER TABLE public.spree_calculators OWNER TO postgres; + +-- +-- Name: spree_calculators_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_calculators_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_calculators_id_seq OWNER TO postgres; + +-- +-- Name: spree_calculators_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_calculators_id_seq OWNED BY public.spree_calculators.id; + + +-- +-- Name: spree_checks; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_checks ( + id bigint NOT NULL, + payment_method_id bigint, + user_id bigint, + account_holder_name character varying, + account_holder_type character varying, + routing_number character varying, + account_number character varying, + account_type character varying DEFAULT 'checking'::character varying, + status character varying, + last_digits character varying, + gateway_customer_profile_id character varying, + gateway_payment_profile_id character varying, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + deleted_at timestamp without time zone +); + + +ALTER TABLE public.spree_checks OWNER TO postgres; + +-- +-- Name: spree_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_checks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_checks_id_seq OWNER TO postgres; + +-- +-- Name: spree_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_checks_id_seq OWNED BY public.spree_checks.id; + + +-- +-- Name: spree_cms_pages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_cms_pages ( + id bigint NOT NULL, + title character varying NOT NULL, + meta_title character varying, + content text, + meta_description text, + visible boolean DEFAULT true, + slug character varying, + type character varying, + locale character varying, + deleted_at timestamp without time zone, + store_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_cms_pages OWNER TO postgres; + +-- +-- Name: spree_cms_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_cms_pages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_cms_pages_id_seq OWNER TO postgres; + +-- +-- Name: spree_cms_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_cms_pages_id_seq OWNED BY public.spree_cms_pages.id; + + +-- +-- Name: spree_cms_sections; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_cms_sections ( + id bigint NOT NULL, + name character varying NOT NULL, + content text, + settings text, + fit character varying, + destination character varying, + type character varying, + "position" integer, + linked_resource_type character varying, + linked_resource_id bigint, + cms_page_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_cms_sections OWNER TO postgres; + +-- +-- Name: spree_cms_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_cms_sections_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_cms_sections_id_seq OWNER TO postgres; + +-- +-- Name: spree_cms_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_cms_sections_id_seq OWNED BY public.spree_cms_sections.id; + + +-- +-- Name: spree_countries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_countries ( + id bigint NOT NULL, + iso_name character varying, + iso character varying NOT NULL, + iso3 character varying NOT NULL, + name character varying, + numcode integer, + states_required boolean DEFAULT false, + updated_at timestamp without time zone, + zipcode_required boolean DEFAULT true, + created_at timestamp without time zone +); + + +ALTER TABLE public.spree_countries OWNER TO postgres; + +-- +-- Name: spree_countries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_countries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_countries_id_seq OWNER TO postgres; + +-- +-- Name: spree_countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_countries_id_seq OWNED BY public.spree_countries.id; + + +-- +-- Name: spree_credit_cards; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_credit_cards ( + id bigint NOT NULL, + month character varying, + year character varying, + cc_type character varying, + last_digits character varying, + address_id bigint, + gateway_customer_profile_id character varying, + gateway_payment_profile_id character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + name character varying, + user_id bigint, + payment_method_id bigint, + "default" boolean DEFAULT false NOT NULL, + deleted_at timestamp without time zone, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_credit_cards OWNER TO postgres; + +-- +-- Name: spree_credit_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_credit_cards_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_credit_cards_id_seq OWNER TO postgres; + +-- +-- Name: spree_credit_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_credit_cards_id_seq OWNED BY public.spree_credit_cards.id; + + +-- +-- Name: spree_customer_returns; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_customer_returns ( + id bigint NOT NULL, + number character varying, + stock_location_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + store_id bigint, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_customer_returns OWNER TO postgres; + +-- +-- Name: spree_customer_returns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_customer_returns_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_customer_returns_id_seq OWNER TO postgres; + +-- +-- Name: spree_customer_returns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_customer_returns_id_seq OWNED BY public.spree_customer_returns.id; + + +-- +-- Name: spree_digital_links; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_digital_links ( + id bigint NOT NULL, + digital_id bigint, + line_item_id bigint, + token character varying, + access_counter integer, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_digital_links OWNER TO postgres; + +-- +-- Name: spree_digital_links_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_digital_links_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_digital_links_id_seq OWNER TO postgres; + +-- +-- Name: spree_digital_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_digital_links_id_seq OWNED BY public.spree_digital_links.id; + + +-- +-- Name: spree_digitals; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_digitals ( + id bigint NOT NULL, + variant_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_digitals OWNER TO postgres; + +-- +-- Name: spree_digitals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_digitals_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_digitals_id_seq OWNER TO postgres; + +-- +-- Name: spree_digitals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_digitals_id_seq OWNED BY public.spree_digitals.id; + + +-- +-- Name: spree_gateways; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_gateways ( + id bigint NOT NULL, + type character varying, + name character varying, + description text, + active boolean DEFAULT true, + environment character varying DEFAULT 'development'::character varying, + server character varying DEFAULT 'test'::character varying, + test_mode boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + preferences text +); + + +ALTER TABLE public.spree_gateways OWNER TO postgres; + +-- +-- Name: spree_gateways_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_gateways_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_gateways_id_seq OWNER TO postgres; + +-- +-- Name: spree_gateways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_gateways_id_seq OWNED BY public.spree_gateways.id; + + +-- +-- Name: spree_inventory_units; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_inventory_units ( + id bigint NOT NULL, + state character varying, + variant_id bigint, + order_id bigint, + shipment_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + pending boolean DEFAULT true, + line_item_id bigint, + quantity integer DEFAULT 1, + original_return_item_id bigint +); + + +ALTER TABLE public.spree_inventory_units OWNER TO postgres; + +-- +-- Name: spree_inventory_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_inventory_units_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_inventory_units_id_seq OWNER TO postgres; + +-- +-- Name: spree_inventory_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_inventory_units_id_seq OWNED BY public.spree_inventory_units.id; + + +-- +-- Name: spree_line_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_line_items ( + id bigint NOT NULL, + variant_id bigint, + order_id bigint, + quantity integer NOT NULL, + price numeric(10,2) NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + currency character varying, + cost_price numeric(10,2), + tax_category_id bigint, + adjustment_total numeric(10,2) DEFAULT 0.0, + additional_tax_total numeric(10,2) DEFAULT 0.0, + promo_total numeric(10,2) DEFAULT 0.0, + included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, + pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, + taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_line_items OWNER TO postgres; + +-- +-- Name: spree_line_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_line_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_line_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_line_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_line_items_id_seq OWNED BY public.spree_line_items.id; + + +-- +-- Name: spree_log_entries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_log_entries ( + id bigint NOT NULL, + source_type character varying, + source_id bigint, + details text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_log_entries OWNER TO postgres; + +-- +-- Name: spree_log_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_log_entries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_log_entries_id_seq OWNER TO postgres; + +-- +-- Name: spree_log_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_log_entries_id_seq OWNED BY public.spree_log_entries.id; + + +-- +-- Name: spree_menu_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_menu_items ( + id bigint NOT NULL, + name character varying NOT NULL, + subtitle character varying, + destination character varying, + new_window boolean DEFAULT false, + item_type character varying, + linked_resource_type character varying DEFAULT 'URL'::character varying, + linked_resource_id bigint, + code character varying, + parent_id bigint, + lft bigint NOT NULL, + rgt bigint NOT NULL, + depth integer DEFAULT 0 NOT NULL, + menu_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_menu_items OWNER TO postgres; + +-- +-- Name: spree_menu_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_menu_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_menu_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_menu_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_menu_items_id_seq OWNED BY public.spree_menu_items.id; + + +-- +-- Name: spree_menus; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_menus ( + id bigint NOT NULL, + name character varying, + location character varying, + locale character varying, + store_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_menus OWNER TO postgres; + +-- +-- Name: spree_menus_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_menus_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_menus_id_seq OWNER TO postgres; + +-- +-- Name: spree_menus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_menus_id_seq OWNED BY public.spree_menus.id; + + +-- +-- Name: spree_oauth_access_grants; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_oauth_access_grants ( + id bigint NOT NULL, + resource_owner_id bigint NOT NULL, + application_id bigint NOT NULL, + token character varying NOT NULL, + expires_in integer NOT NULL, + redirect_uri text NOT NULL, + created_at timestamp without time zone NOT NULL, + revoked_at timestamp without time zone, + scopes character varying, + resource_owner_type character varying NOT NULL +); + + +ALTER TABLE public.spree_oauth_access_grants OWNER TO postgres; + +-- +-- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_oauth_access_grants_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_oauth_access_grants_id_seq OWNER TO postgres; + +-- +-- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_oauth_access_grants_id_seq OWNED BY public.spree_oauth_access_grants.id; + + +-- +-- Name: spree_oauth_access_tokens; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_oauth_access_tokens ( + id bigint NOT NULL, + resource_owner_id bigint, + application_id bigint, + token character varying NOT NULL, + refresh_token character varying, + expires_in integer, + revoked_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + scopes character varying, + previous_refresh_token character varying DEFAULT ''::character varying NOT NULL, + resource_owner_type character varying +); + + +ALTER TABLE public.spree_oauth_access_tokens OWNER TO postgres; + +-- +-- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_oauth_access_tokens_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_oauth_access_tokens_id_seq OWNER TO postgres; + +-- +-- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_oauth_access_tokens_id_seq OWNED BY public.spree_oauth_access_tokens.id; + + +-- +-- Name: spree_oauth_applications; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_oauth_applications ( + id bigint NOT NULL, + name character varying NOT NULL, + uid character varying NOT NULL, + secret character varying NOT NULL, + redirect_uri text NOT NULL, + scopes character varying DEFAULT ''::character varying NOT NULL, + confidential boolean DEFAULT true NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_oauth_applications OWNER TO postgres; + +-- +-- Name: spree_oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_oauth_applications_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_oauth_applications_id_seq OWNER TO postgres; + +-- +-- Name: spree_oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_oauth_applications_id_seq OWNED BY public.spree_oauth_applications.id; + + +-- +-- Name: spree_option_type_prototypes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_option_type_prototypes ( + id bigint NOT NULL, + prototype_id bigint, + option_type_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_option_type_prototypes OWNER TO postgres; + +-- +-- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_option_type_prototypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_option_type_prototypes_id_seq OWNER TO postgres; + +-- +-- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_option_type_prototypes_id_seq OWNED BY public.spree_option_type_prototypes.id; + + +-- +-- Name: spree_option_types; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_option_types ( + id bigint NOT NULL, + name character varying(100), + presentation character varying(100), + "position" integer DEFAULT 0 NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + filterable boolean DEFAULT true NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_option_types OWNER TO postgres; + +-- +-- Name: spree_option_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_option_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_option_types_id_seq OWNER TO postgres; + +-- +-- Name: spree_option_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_option_types_id_seq OWNED BY public.spree_option_types.id; + + +-- +-- Name: spree_option_value_variants; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_option_value_variants ( + id bigint NOT NULL, + variant_id bigint, + option_value_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_option_value_variants OWNER TO postgres; + +-- +-- Name: spree_option_value_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_option_value_variants_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_option_value_variants_id_seq OWNER TO postgres; + +-- +-- Name: spree_option_value_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_option_value_variants_id_seq OWNED BY public.spree_option_value_variants.id; + + +-- +-- Name: spree_option_values; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_option_values ( + id bigint NOT NULL, + "position" integer, + name character varying, + presentation character varying, + option_type_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_option_values OWNER TO postgres; + +-- +-- Name: spree_option_values_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_option_values_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_option_values_id_seq OWNER TO postgres; + +-- +-- Name: spree_option_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_option_values_id_seq OWNED BY public.spree_option_values.id; + + +-- +-- Name: spree_order_promotions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_order_promotions ( + id bigint NOT NULL, + order_id bigint, + promotion_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_order_promotions OWNER TO postgres; + +-- +-- Name: spree_order_promotions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_order_promotions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_order_promotions_id_seq OWNER TO postgres; + +-- +-- Name: spree_order_promotions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_order_promotions_id_seq OWNED BY public.spree_order_promotions.id; + + +-- +-- Name: spree_orders; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_orders ( + id bigint NOT NULL, + number character varying(32), + item_total numeric(10,2) DEFAULT 0.0 NOT NULL, + total numeric(10,2) DEFAULT 0.0 NOT NULL, + state character varying, + adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + user_id bigint, + completed_at timestamp without time zone, + bill_address_id bigint, + ship_address_id bigint, + payment_total numeric(10,2) DEFAULT 0.0, + shipment_state character varying, + payment_state character varying, + email character varying, + special_instructions text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + currency character varying, + last_ip_address character varying, + created_by_id bigint, + shipment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + additional_tax_total numeric(10,2) DEFAULT 0.0, + promo_total numeric(10,2) DEFAULT 0.0, + channel character varying DEFAULT 'spree'::character varying, + included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, + item_count integer DEFAULT 0, + approver_id bigint, + approved_at timestamp without time zone, + confirmation_delivered boolean DEFAULT false, + considered_risky boolean DEFAULT false, + token character varying, + canceled_at timestamp without time zone, + canceler_id bigint, + store_id bigint, + state_lock_version integer DEFAULT 0 NOT NULL, + taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + store_owner_notification_delivered boolean, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_orders OWNER TO postgres; + +-- +-- Name: spree_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_orders_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_orders_id_seq OWNER TO postgres; + +-- +-- Name: spree_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_orders_id_seq OWNED BY public.spree_orders.id; + + +-- +-- Name: spree_payment_capture_events; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_payment_capture_events ( + id bigint NOT NULL, + amount numeric(10,2) DEFAULT 0.0, + payment_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_payment_capture_events OWNER TO postgres; + +-- +-- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_payment_capture_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_payment_capture_events_id_seq OWNER TO postgres; + +-- +-- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_payment_capture_events_id_seq OWNED BY public.spree_payment_capture_events.id; + + +-- +-- Name: spree_payment_methods; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_payment_methods ( + id bigint NOT NULL, + type character varying, + name character varying, + description text, + active boolean DEFAULT true, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + display_on character varying DEFAULT 'both'::character varying, + auto_capture boolean, + preferences text, + "position" integer DEFAULT 0, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_payment_methods OWNER TO postgres; + +-- +-- Name: spree_payment_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_payment_methods_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_payment_methods_id_seq OWNER TO postgres; + +-- +-- Name: spree_payment_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_payment_methods_id_seq OWNED BY public.spree_payment_methods.id; + + +-- +-- Name: spree_payment_methods_stores; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_payment_methods_stores ( + payment_method_id bigint, + store_id bigint +); + + +ALTER TABLE public.spree_payment_methods_stores OWNER TO postgres; + +-- +-- Name: spree_payments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_payments ( + id bigint NOT NULL, + amount numeric(10,2) DEFAULT 0.0 NOT NULL, + order_id bigint, + source_type character varying, + source_id bigint, + payment_method_id bigint, + state character varying, + response_code character varying, + avs_response character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + number character varying, + cvv_response_code character varying, + cvv_response_message character varying, + public_metadata jsonb, + private_metadata jsonb, + intent_client_key character varying +); + + +ALTER TABLE public.spree_payments OWNER TO postgres; + +-- +-- Name: spree_payments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_payments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_payments_id_seq OWNER TO postgres; + +-- +-- Name: spree_payments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_payments_id_seq OWNED BY public.spree_payments.id; + + +-- +-- Name: spree_preferences; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_preferences ( + id bigint NOT NULL, + value text, + key character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_preferences OWNER TO postgres; + +-- +-- Name: spree_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_preferences_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_preferences_id_seq OWNER TO postgres; + +-- +-- Name: spree_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_preferences_id_seq OWNED BY public.spree_preferences.id; + + +-- +-- Name: spree_prices; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_prices ( + id bigint NOT NULL, + variant_id bigint NOT NULL, + amount numeric(10,2), + currency character varying, + deleted_at timestamp without time zone, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL, + compare_at_amount numeric(10,2) +); + + +ALTER TABLE public.spree_prices OWNER TO postgres; + +-- +-- Name: spree_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_prices_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_prices_id_seq OWNER TO postgres; + +-- +-- Name: spree_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_prices_id_seq OWNED BY public.spree_prices.id; + + +-- +-- Name: spree_product_option_types; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_product_option_types ( + id bigint NOT NULL, + "position" integer, + product_id bigint, + option_type_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_product_option_types OWNER TO postgres; + +-- +-- Name: spree_product_option_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_product_option_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_product_option_types_id_seq OWNER TO postgres; + +-- +-- Name: spree_product_option_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_product_option_types_id_seq OWNED BY public.spree_product_option_types.id; + + +-- +-- Name: spree_product_promotion_rules; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_product_promotion_rules ( + id bigint NOT NULL, + product_id bigint, + promotion_rule_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_product_promotion_rules OWNER TO postgres; + +-- +-- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_product_promotion_rules_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_product_promotion_rules_id_seq OWNER TO postgres; + +-- +-- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_product_promotion_rules_id_seq OWNED BY public.spree_product_promotion_rules.id; + + +-- +-- Name: spree_product_properties; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_product_properties ( + id bigint NOT NULL, + value character varying, + product_id bigint, + property_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + "position" integer DEFAULT 0, + show_property boolean DEFAULT true, + filter_param character varying +); + + +ALTER TABLE public.spree_product_properties OWNER TO postgres; + +-- +-- Name: spree_product_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_product_properties_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_product_properties_id_seq OWNER TO postgres; + +-- +-- Name: spree_product_properties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_product_properties_id_seq OWNED BY public.spree_product_properties.id; + + +-- +-- Name: spree_products; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_products ( + id bigint NOT NULL, + name character varying DEFAULT ''::character varying NOT NULL, + description text, + available_on timestamp without time zone, + deleted_at timestamp without time zone, + slug character varying, + meta_description text, + meta_keywords character varying, + tax_category_id bigint, + shipping_category_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + promotionable boolean DEFAULT true, + meta_title character varying, + discontinue_on timestamp without time zone, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_products OWNER TO postgres; + +-- +-- Name: spree_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_products_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_products_id_seq OWNER TO postgres; + +-- +-- Name: spree_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_products_id_seq OWNED BY public.spree_products.id; + + +-- +-- Name: spree_products_stores; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_products_stores ( + id bigint NOT NULL, + product_id bigint, + store_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_products_stores OWNER TO postgres; + +-- +-- Name: spree_products_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_products_stores_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_products_stores_id_seq OWNER TO postgres; + +-- +-- Name: spree_products_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_products_stores_id_seq OWNED BY public.spree_products_stores.id; + + +-- +-- Name: spree_products_taxons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_products_taxons ( + id bigint NOT NULL, + product_id bigint, + taxon_id bigint, + "position" integer, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_products_taxons OWNER TO postgres; + +-- +-- Name: spree_products_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_products_taxons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_products_taxons_id_seq OWNER TO postgres; + +-- +-- Name: spree_products_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_products_taxons_id_seq OWNED BY public.spree_products_taxons.id; + + +-- +-- Name: spree_promotion_action_line_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_action_line_items ( + id bigint NOT NULL, + promotion_action_id bigint, + variant_id bigint, + quantity integer DEFAULT 1, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_promotion_action_line_items OWNER TO postgres; + +-- +-- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_action_line_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_action_line_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_action_line_items_id_seq OWNED BY public.spree_promotion_action_line_items.id; + + +-- +-- Name: spree_promotion_actions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_actions ( + id bigint NOT NULL, + promotion_id bigint, + "position" integer, + type character varying, + deleted_at timestamp without time zone, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_promotion_actions OWNER TO postgres; + +-- +-- Name: spree_promotion_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_actions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_actions_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_actions_id_seq OWNED BY public.spree_promotion_actions.id; + + +-- +-- Name: spree_promotion_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_categories ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + code character varying +); + + +ALTER TABLE public.spree_promotion_categories OWNER TO postgres; + +-- +-- Name: spree_promotion_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_categories_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_categories_id_seq OWNED BY public.spree_promotion_categories.id; + + +-- +-- Name: spree_promotion_rule_taxons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_rule_taxons ( + id bigint NOT NULL, + taxon_id bigint, + promotion_rule_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_promotion_rule_taxons OWNER TO postgres; + +-- +-- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_rule_taxons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_rule_taxons_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_rule_taxons_id_seq OWNED BY public.spree_promotion_rule_taxons.id; + + +-- +-- Name: spree_promotion_rule_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_rule_users ( + id bigint NOT NULL, + user_id bigint, + promotion_rule_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_promotion_rule_users OWNER TO postgres; + +-- +-- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_rule_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_rule_users_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_rule_users_id_seq OWNED BY public.spree_promotion_rule_users.id; + + +-- +-- Name: spree_promotion_rules; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotion_rules ( + id bigint NOT NULL, + promotion_id bigint, + user_id bigint, + product_group_id bigint, + type character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + code character varying, + preferences text +); + + +ALTER TABLE public.spree_promotion_rules OWNER TO postgres; + +-- +-- Name: spree_promotion_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotion_rules_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotion_rules_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotion_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotion_rules_id_seq OWNED BY public.spree_promotion_rules.id; + + +-- +-- Name: spree_promotions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotions ( + id bigint NOT NULL, + description character varying, + expires_at timestamp without time zone, + starts_at timestamp without time zone, + name character varying, + type character varying, + usage_limit integer, + match_policy character varying DEFAULT 'all'::character varying, + code character varying, + advertise boolean DEFAULT false, + path character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + promotion_category_id bigint, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_promotions OWNER TO postgres; + +-- +-- Name: spree_promotions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotions_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotions_id_seq OWNED BY public.spree_promotions.id; + + +-- +-- Name: spree_promotions_stores; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_promotions_stores ( + id bigint NOT NULL, + promotion_id bigint, + store_id bigint, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_promotions_stores OWNER TO postgres; + +-- +-- Name: spree_promotions_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_promotions_stores_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_promotions_stores_id_seq OWNER TO postgres; + +-- +-- Name: spree_promotions_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_promotions_stores_id_seq OWNED BY public.spree_promotions_stores.id; + + +-- +-- Name: spree_properties; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_properties ( + id bigint NOT NULL, + name character varying, + presentation character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + filterable boolean DEFAULT false NOT NULL, + filter_param character varying, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_properties OWNER TO postgres; + +-- +-- Name: spree_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_properties_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_properties_id_seq OWNER TO postgres; + +-- +-- Name: spree_properties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_properties_id_seq OWNED BY public.spree_properties.id; + + +-- +-- Name: spree_property_prototypes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_property_prototypes ( + id bigint NOT NULL, + prototype_id bigint, + property_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_property_prototypes OWNER TO postgres; + +-- +-- Name: spree_property_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_property_prototypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_property_prototypes_id_seq OWNER TO postgres; + +-- +-- Name: spree_property_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_property_prototypes_id_seq OWNED BY public.spree_property_prototypes.id; + + +-- +-- Name: spree_prototype_taxons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_prototype_taxons ( + id bigint NOT NULL, + taxon_id bigint, + prototype_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_prototype_taxons OWNER TO postgres; + +-- +-- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_prototype_taxons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_prototype_taxons_id_seq OWNER TO postgres; + +-- +-- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_prototype_taxons_id_seq OWNED BY public.spree_prototype_taxons.id; + + +-- +-- Name: spree_prototypes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_prototypes ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_prototypes OWNER TO postgres; + +-- +-- Name: spree_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_prototypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_prototypes_id_seq OWNER TO postgres; + +-- +-- Name: spree_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_prototypes_id_seq OWNED BY public.spree_prototypes.id; + + +-- +-- Name: spree_refund_reasons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_refund_reasons ( + id bigint NOT NULL, + name character varying, + active boolean DEFAULT true, + mutable boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_refund_reasons OWNER TO postgres; + +-- +-- Name: spree_refund_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_refund_reasons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_refund_reasons_id_seq OWNER TO postgres; + +-- +-- Name: spree_refund_reasons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_refund_reasons_id_seq OWNED BY public.spree_refund_reasons.id; + + +-- +-- Name: spree_refunds; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_refunds ( + id bigint NOT NULL, + payment_id bigint, + amount numeric(10,2) DEFAULT 0.0 NOT NULL, + transaction_id character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + refund_reason_id bigint, + reimbursement_id bigint, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_refunds OWNER TO postgres; + +-- +-- Name: spree_refunds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_refunds_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_refunds_id_seq OWNER TO postgres; + +-- +-- Name: spree_refunds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_refunds_id_seq OWNED BY public.spree_refunds.id; + + +-- +-- Name: spree_reimbursement_credits; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_reimbursement_credits ( + id bigint NOT NULL, + amount numeric(10,2) DEFAULT 0.0 NOT NULL, + reimbursement_id bigint, + creditable_id bigint, + creditable_type character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_reimbursement_credits OWNER TO postgres; + +-- +-- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_reimbursement_credits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_reimbursement_credits_id_seq OWNER TO postgres; + +-- +-- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_reimbursement_credits_id_seq OWNED BY public.spree_reimbursement_credits.id; + + +-- +-- Name: spree_reimbursement_types; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_reimbursement_types ( + id bigint NOT NULL, + name character varying, + active boolean DEFAULT true, + mutable boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + type character varying +); + + +ALTER TABLE public.spree_reimbursement_types OWNER TO postgres; + +-- +-- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_reimbursement_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_reimbursement_types_id_seq OWNER TO postgres; + +-- +-- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_reimbursement_types_id_seq OWNED BY public.spree_reimbursement_types.id; + + +-- +-- Name: spree_reimbursements; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_reimbursements ( + id bigint NOT NULL, + number character varying, + reimbursement_status character varying, + customer_return_id bigint, + order_id bigint, + total numeric(10,2), + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_reimbursements OWNER TO postgres; + +-- +-- Name: spree_reimbursements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_reimbursements_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_reimbursements_id_seq OWNER TO postgres; + +-- +-- Name: spree_reimbursements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_reimbursements_id_seq OWNED BY public.spree_reimbursements.id; + + +-- +-- Name: spree_return_authorization_reasons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_return_authorization_reasons ( + id bigint NOT NULL, + name character varying, + active boolean DEFAULT true, + mutable boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_return_authorization_reasons OWNER TO postgres; + +-- +-- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_return_authorization_reasons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_return_authorization_reasons_id_seq OWNER TO postgres; + +-- +-- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_return_authorization_reasons_id_seq OWNED BY public.spree_return_authorization_reasons.id; + + +-- +-- Name: spree_return_authorizations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_return_authorizations ( + id bigint NOT NULL, + number character varying, + state character varying, + order_id bigint, + memo text, + created_at timestamp without time zone, + updated_at timestamp without time zone, + stock_location_id bigint, + return_authorization_reason_id bigint +); + + +ALTER TABLE public.spree_return_authorizations OWNER TO postgres; + +-- +-- Name: spree_return_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_return_authorizations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_return_authorizations_id_seq OWNER TO postgres; + +-- +-- Name: spree_return_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_return_authorizations_id_seq OWNED BY public.spree_return_authorizations.id; + + +-- +-- Name: spree_return_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_return_items ( + id bigint NOT NULL, + return_authorization_id bigint, + inventory_unit_id bigint, + exchange_variant_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, + included_tax_total numeric(12,4) DEFAULT 0.0 NOT NULL, + additional_tax_total numeric(12,4) DEFAULT 0.0 NOT NULL, + reception_status character varying, + acceptance_status character varying, + customer_return_id bigint, + reimbursement_id bigint, + acceptance_status_errors text, + preferred_reimbursement_type_id bigint, + override_reimbursement_type_id bigint, + resellable boolean DEFAULT true NOT NULL +); + + +ALTER TABLE public.spree_return_items OWNER TO postgres; + +-- +-- Name: spree_return_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_return_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_return_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_return_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_return_items_id_seq OWNED BY public.spree_return_items.id; + + +-- +-- Name: spree_role_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_role_users ( + id bigint NOT NULL, + role_id bigint, + user_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_role_users OWNER TO postgres; + +-- +-- Name: spree_role_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_role_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_role_users_id_seq OWNER TO postgres; + +-- +-- Name: spree_role_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_role_users_id_seq OWNED BY public.spree_role_users.id; + + +-- +-- Name: spree_roles; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_roles ( + id bigint NOT NULL, + name character varying, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_roles OWNER TO postgres; + +-- +-- Name: spree_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_roles_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_roles_id_seq OWNER TO postgres; + +-- +-- Name: spree_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_roles_id_seq OWNED BY public.spree_roles.id; + + +-- +-- Name: spree_shipments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipments ( + id bigint NOT NULL, + tracking character varying, + number character varying, + cost numeric(10,2) DEFAULT 0.0, + shipped_at timestamp without time zone, + order_id bigint, + address_id bigint, + state character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + stock_location_id bigint, + adjustment_total numeric(10,2) DEFAULT 0.0, + additional_tax_total numeric(10,2) DEFAULT 0.0, + promo_total numeric(10,2) DEFAULT 0.0, + included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, + pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, + taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_shipments OWNER TO postgres; + +-- +-- Name: spree_shipments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipments_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipments_id_seq OWNED BY public.spree_shipments.id; + + +-- +-- Name: spree_shipping_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipping_categories ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_shipping_categories OWNER TO postgres; + +-- +-- Name: spree_shipping_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipping_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipping_categories_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipping_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipping_categories_id_seq OWNED BY public.spree_shipping_categories.id; + + +-- +-- Name: spree_shipping_method_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipping_method_categories ( + id bigint NOT NULL, + shipping_method_id bigint NOT NULL, + shipping_category_id bigint NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_shipping_method_categories OWNER TO postgres; + +-- +-- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipping_method_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipping_method_categories_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipping_method_categories_id_seq OWNED BY public.spree_shipping_method_categories.id; + + +-- +-- Name: spree_shipping_method_zones; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipping_method_zones ( + id bigint NOT NULL, + shipping_method_id bigint, + zone_id bigint, + created_at timestamp without time zone, + updated_at timestamp without time zone +); + + +ALTER TABLE public.spree_shipping_method_zones OWNER TO postgres; + +-- +-- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipping_method_zones_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipping_method_zones_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipping_method_zones_id_seq OWNED BY public.spree_shipping_method_zones.id; + + +-- +-- Name: spree_shipping_methods; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipping_methods ( + id bigint NOT NULL, + name character varying, + display_on character varying, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + tracking_url character varying, + admin_name character varying, + tax_category_id bigint, + code character varying, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_shipping_methods OWNER TO postgres; + +-- +-- Name: spree_shipping_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipping_methods_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipping_methods_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipping_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipping_methods_id_seq OWNED BY public.spree_shipping_methods.id; + + +-- +-- Name: spree_shipping_rates; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_shipping_rates ( + id bigint NOT NULL, + shipment_id bigint, + shipping_method_id bigint, + selected boolean DEFAULT false, + cost numeric(8,2) DEFAULT 0.0, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + tax_rate_id bigint +); + + +ALTER TABLE public.spree_shipping_rates OWNER TO postgres; + +-- +-- Name: spree_shipping_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_shipping_rates_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_shipping_rates_id_seq OWNER TO postgres; + +-- +-- Name: spree_shipping_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_shipping_rates_id_seq OWNED BY public.spree_shipping_rates.id; + + +-- +-- Name: spree_state_changes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_state_changes ( + id bigint NOT NULL, + name character varying, + previous_state character varying, + stateful_id bigint, + user_id bigint, + stateful_type character varying, + next_state character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_state_changes OWNER TO postgres; + +-- +-- Name: spree_state_changes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_state_changes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_state_changes_id_seq OWNER TO postgres; + +-- +-- Name: spree_state_changes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_state_changes_id_seq OWNED BY public.spree_state_changes.id; + + +-- +-- Name: spree_states; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_states ( + id bigint NOT NULL, + name character varying, + abbr character varying, + country_id bigint, + updated_at timestamp without time zone, + created_at timestamp without time zone +); + + +ALTER TABLE public.spree_states OWNER TO postgres; + +-- +-- Name: spree_states_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_states_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_states_id_seq OWNER TO postgres; + +-- +-- Name: spree_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_states_id_seq OWNED BY public.spree_states.id; + + +-- +-- Name: spree_stock_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_stock_items ( + id bigint NOT NULL, + stock_location_id bigint, + variant_id bigint, + count_on_hand integer DEFAULT 0 NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + backorderable boolean DEFAULT false, + deleted_at timestamp without time zone +); + + +ALTER TABLE public.spree_stock_items OWNER TO postgres; + +-- +-- Name: spree_stock_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_stock_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_stock_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_stock_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_stock_items_id_seq OWNED BY public.spree_stock_items.id; + + +-- +-- Name: spree_stock_locations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_stock_locations ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + "default" boolean DEFAULT false NOT NULL, + address1 character varying, + address2 character varying, + city character varying, + state_id bigint, + state_name character varying, + country_id bigint, + zipcode character varying, + phone character varying, + active boolean DEFAULT true, + backorderable_default boolean DEFAULT false, + propagate_all_variants boolean DEFAULT true, + admin_name character varying +); + + +ALTER TABLE public.spree_stock_locations OWNER TO postgres; + +-- +-- Name: spree_stock_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_stock_locations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_stock_locations_id_seq OWNER TO postgres; + +-- +-- Name: spree_stock_locations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_stock_locations_id_seq OWNED BY public.spree_stock_locations.id; + + +-- +-- Name: spree_stock_movements; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_stock_movements ( + id bigint NOT NULL, + stock_item_id bigint, + quantity integer DEFAULT 0, + action character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + originator_type character varying, + originator_id bigint +); + + +ALTER TABLE public.spree_stock_movements OWNER TO postgres; + +-- +-- Name: spree_stock_movements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_stock_movements_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_stock_movements_id_seq OWNER TO postgres; + +-- +-- Name: spree_stock_movements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_stock_movements_id_seq OWNED BY public.spree_stock_movements.id; + + +-- +-- Name: spree_stock_transfers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_stock_transfers ( + id bigint NOT NULL, + type character varying, + reference character varying, + source_location_id bigint, + destination_location_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + number character varying, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_stock_transfers OWNER TO postgres; + +-- +-- Name: spree_stock_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_stock_transfers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_stock_transfers_id_seq OWNER TO postgres; + +-- +-- Name: spree_stock_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_stock_transfers_id_seq OWNED BY public.spree_stock_transfers.id; + + +-- +-- Name: spree_store_credit_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_store_credit_categories ( + id bigint NOT NULL, + name character varying, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_store_credit_categories OWNER TO postgres; + +-- +-- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_store_credit_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_store_credit_categories_id_seq OWNER TO postgres; + +-- +-- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_store_credit_categories_id_seq OWNED BY public.spree_store_credit_categories.id; + + +-- +-- Name: spree_store_credit_events; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_store_credit_events ( + id bigint NOT NULL, + store_credit_id bigint NOT NULL, + action character varying NOT NULL, + amount numeric(8,2), + authorization_code character varying NOT NULL, + user_total_amount numeric(8,2) DEFAULT 0.0 NOT NULL, + originator_id bigint, + originator_type character varying, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_store_credit_events OWNER TO postgres; + +-- +-- Name: spree_store_credit_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_store_credit_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_store_credit_events_id_seq OWNER TO postgres; + +-- +-- Name: spree_store_credit_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_store_credit_events_id_seq OWNED BY public.spree_store_credit_events.id; + + +-- +-- Name: spree_store_credit_types; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_store_credit_types ( + id bigint NOT NULL, + name character varying, + priority integer, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_store_credit_types OWNER TO postgres; + +-- +-- Name: spree_store_credit_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_store_credit_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_store_credit_types_id_seq OWNER TO postgres; + +-- +-- Name: spree_store_credit_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_store_credit_types_id_seq OWNED BY public.spree_store_credit_types.id; + + +-- +-- Name: spree_store_credits; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_store_credits ( + id bigint NOT NULL, + user_id bigint, + category_id bigint, + created_by_id bigint, + amount numeric(8,2) DEFAULT 0.0 NOT NULL, + amount_used numeric(8,2) DEFAULT 0.0 NOT NULL, + memo text, + deleted_at timestamp without time zone, + currency character varying, + amount_authorized numeric(8,2) DEFAULT 0.0 NOT NULL, + originator_id bigint, + originator_type character varying, + type_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + store_id bigint, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_store_credits OWNER TO postgres; + +-- +-- Name: spree_store_credits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_store_credits_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_store_credits_id_seq OWNER TO postgres; + +-- +-- Name: spree_store_credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_store_credits_id_seq OWNED BY public.spree_store_credits.id; + + +-- +-- Name: spree_stores; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_stores ( + id bigint NOT NULL, + name character varying, + url character varying, + meta_description text, + meta_keywords text, + seo_title character varying, + mail_from_address character varying, + default_currency character varying, + code character varying, + "default" boolean DEFAULT false NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + supported_currencies character varying, + facebook character varying, + twitter character varying, + instagram character varying, + default_locale character varying, + customer_support_email character varying, + default_country_id bigint, + description text, + address text, + contact_phone character varying, + new_order_notifications_email character varying, + checkout_zone_id bigint, + seo_robots character varying, + supported_locales character varying, + deleted_at timestamp without time zone, + settings jsonb +); + + +ALTER TABLE public.spree_stores OWNER TO postgres; + +-- +-- Name: spree_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_stores_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_stores_id_seq OWNER TO postgres; + +-- +-- Name: spree_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_stores_id_seq OWNED BY public.spree_stores.id; + + +-- +-- Name: spree_tax_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_tax_categories ( + id bigint NOT NULL, + name character varying, + description character varying, + is_default boolean DEFAULT false, + deleted_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + tax_code character varying +); + + +ALTER TABLE public.spree_tax_categories OWNER TO postgres; + +-- +-- Name: spree_tax_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_tax_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_tax_categories_id_seq OWNER TO postgres; + +-- +-- Name: spree_tax_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_tax_categories_id_seq OWNED BY public.spree_tax_categories.id; + + +-- +-- Name: spree_tax_rates; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_tax_rates ( + id bigint NOT NULL, + amount numeric(8,5), + zone_id bigint, + tax_category_id bigint, + included_in_price boolean DEFAULT false, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + name character varying, + show_rate_in_label boolean DEFAULT true, + deleted_at timestamp without time zone +); + + +ALTER TABLE public.spree_tax_rates OWNER TO postgres; + +-- +-- Name: spree_tax_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_tax_rates_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_tax_rates_id_seq OWNER TO postgres; + +-- +-- Name: spree_tax_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_tax_rates_id_seq OWNED BY public.spree_tax_rates.id; + + +-- +-- Name: spree_taxonomies; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_taxonomies ( + id bigint NOT NULL, + name character varying NOT NULL, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + "position" integer DEFAULT 0, + store_id bigint, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_taxonomies OWNER TO postgres; + +-- +-- Name: spree_taxonomies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_taxonomies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_taxonomies_id_seq OWNER TO postgres; + +-- +-- Name: spree_taxonomies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_taxonomies_id_seq OWNED BY public.spree_taxonomies.id; + + +-- +-- Name: spree_taxons; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_taxons ( + id bigint NOT NULL, + parent_id bigint, + "position" integer DEFAULT 0, + name character varying NOT NULL, + permalink character varying, + taxonomy_id bigint, + lft bigint, + rgt bigint, + description text, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + meta_title character varying, + meta_description character varying, + meta_keywords character varying, + depth integer, + hide_from_nav boolean DEFAULT false, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_taxons OWNER TO postgres; + +-- +-- Name: spree_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_taxons_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_taxons_id_seq OWNER TO postgres; + +-- +-- Name: spree_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_taxons_id_seq OWNED BY public.spree_taxons.id; + + +-- +-- Name: spree_trackers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_trackers ( + id bigint NOT NULL, + analytics_id character varying, + active boolean DEFAULT true, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + engine integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.spree_trackers OWNER TO postgres; + +-- +-- Name: spree_trackers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_trackers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_trackers_id_seq OWNER TO postgres; + +-- +-- Name: spree_trackers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_trackers_id_seq OWNED BY public.spree_trackers.id; + + +-- +-- Name: spree_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_users ( + id bigint NOT NULL, + encrypted_password character varying(128), + password_salt character varying(128), + email character varying, + remember_token character varying, + persistence_token character varying, + reset_password_token character varying, + perishable_token character varying, + sign_in_count integer DEFAULT 0 NOT NULL, + failed_attempts integer DEFAULT 0 NOT NULL, + last_request_at timestamp without time zone, + current_sign_in_at timestamp without time zone, + last_sign_in_at timestamp without time zone, + current_sign_in_ip character varying, + last_sign_in_ip character varying, + login character varying, + ship_address_id bigint, + bill_address_id bigint, + authentication_token character varying, + unlock_token character varying, + locked_at timestamp without time zone, + reset_password_sent_at timestamp without time zone, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + public_metadata jsonb, + private_metadata jsonb, + spree_api_key character varying(48), + remember_created_at timestamp without time zone, + deleted_at timestamp without time zone, + confirmation_token character varying, + confirmed_at timestamp without time zone, + confirmation_sent_at timestamp without time zone +); + + +ALTER TABLE public.spree_users OWNER TO postgres; + +-- +-- Name: spree_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_users_id_seq OWNER TO postgres; + +-- +-- Name: spree_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_users_id_seq OWNED BY public.spree_users.id; + + +-- +-- Name: spree_variants; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_variants ( + id bigint NOT NULL, + sku character varying DEFAULT ''::character varying NOT NULL, + weight numeric(8,2) DEFAULT 0.0, + height numeric(8,2), + width numeric(8,2), + depth numeric(8,2), + deleted_at timestamp without time zone, + is_master boolean DEFAULT false, + product_id bigint, + cost_price numeric(10,2), + "position" integer, + cost_currency character varying, + track_inventory boolean DEFAULT true, + tax_category_id bigint, + updated_at timestamp without time zone NOT NULL, + discontinue_on timestamp without time zone, + created_at timestamp without time zone NOT NULL, + public_metadata jsonb, + private_metadata jsonb +); + + +ALTER TABLE public.spree_variants OWNER TO postgres; + +-- +-- Name: spree_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_variants_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_variants_id_seq OWNER TO postgres; + +-- +-- Name: spree_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_variants_id_seq OWNED BY public.spree_variants.id; + + +-- +-- Name: spree_webhooks_events; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_webhooks_events ( + id bigint NOT NULL, + execution_time integer, + name character varying NOT NULL, + request_errors character varying, + response_code character varying, + subscriber_id bigint NOT NULL, + success boolean, + url character varying NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_webhooks_events OWNER TO postgres; + +-- +-- Name: spree_webhooks_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_webhooks_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_webhooks_events_id_seq OWNER TO postgres; + +-- +-- Name: spree_webhooks_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_webhooks_events_id_seq OWNED BY public.spree_webhooks_events.id; + + +-- +-- Name: spree_webhooks_subscribers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_webhooks_subscribers ( + id bigint NOT NULL, + url character varying NOT NULL, + active boolean DEFAULT false, + subscriptions jsonb, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_webhooks_subscribers OWNER TO postgres; + +-- +-- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_webhooks_subscribers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_webhooks_subscribers_id_seq OWNER TO postgres; + +-- +-- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_webhooks_subscribers_id_seq OWNED BY public.spree_webhooks_subscribers.id; + + +-- +-- Name: spree_wished_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_wished_items ( + id bigint NOT NULL, + variant_id bigint, + wishlist_id bigint, + quantity integer DEFAULT 1 NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_wished_items OWNER TO postgres; + +-- +-- Name: spree_wished_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_wished_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_wished_items_id_seq OWNER TO postgres; + +-- +-- Name: spree_wished_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_wished_items_id_seq OWNED BY public.spree_wished_items.id; + + +-- +-- Name: spree_wishlists; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_wishlists ( + id bigint NOT NULL, + user_id bigint, + store_id bigint, + name character varying, + token character varying NOT NULL, + is_private boolean DEFAULT true NOT NULL, + is_default boolean DEFAULT false NOT NULL, + created_at timestamp without time zone NOT NULL, + updated_at timestamp without time zone NOT NULL +); + + +ALTER TABLE public.spree_wishlists OWNER TO postgres; + +-- +-- Name: spree_wishlists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_wishlists_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_wishlists_id_seq OWNER TO postgres; + +-- +-- Name: spree_wishlists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_wishlists_id_seq OWNED BY public.spree_wishlists.id; + + +-- +-- Name: spree_zone_members; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_zone_members ( + id bigint NOT NULL, + zoneable_type character varying, + zoneable_id bigint, + zone_id bigint, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL +); + + +ALTER TABLE public.spree_zone_members OWNER TO postgres; + +-- +-- Name: spree_zone_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_zone_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_zone_members_id_seq OWNER TO postgres; + +-- +-- Name: spree_zone_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_zone_members_id_seq OWNED BY public.spree_zone_members.id; + + +-- +-- Name: spree_zones; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.spree_zones ( + id bigint NOT NULL, + name character varying, + description character varying, + default_tax boolean DEFAULT false, + zone_members_count integer DEFAULT 0, + created_at timestamp(6) without time zone NOT NULL, + updated_at timestamp(6) without time zone NOT NULL, + kind character varying DEFAULT 'state'::character varying +); + + +ALTER TABLE public.spree_zones OWNER TO postgres; + +-- +-- Name: spree_zones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.spree_zones_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.spree_zones_id_seq OWNER TO postgres; + +-- +-- Name: spree_zones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.spree_zones_id_seq OWNED BY public.spree_zones.id; + + +-- +-- Name: action_mailbox_inbound_emails id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.action_mailbox_inbound_emails ALTER COLUMN id SET DEFAULT nextval('public.action_mailbox_inbound_emails_id_seq'::regclass); + + +-- +-- Name: action_text_rich_texts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.action_text_rich_texts ALTER COLUMN id SET DEFAULT nextval('public.action_text_rich_texts_id_seq'::regclass); + + +-- +-- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass); + + +-- +-- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass); + + +-- +-- Name: active_storage_variant_records id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_variant_records ALTER COLUMN id SET DEFAULT nextval('public.active_storage_variant_records_id_seq'::regclass); + + +-- +-- Name: friendly_id_slugs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.friendly_id_slugs ALTER COLUMN id SET DEFAULT nextval('public.friendly_id_slugs_id_seq'::regclass); + + +-- +-- Name: spree_addresses id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_addresses ALTER COLUMN id SET DEFAULT nextval('public.spree_addresses_id_seq'::regclass); + + +-- +-- Name: spree_adjustments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_adjustments ALTER COLUMN id SET DEFAULT nextval('public.spree_adjustments_id_seq'::regclass); + + +-- +-- Name: spree_assets id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_assets ALTER COLUMN id SET DEFAULT nextval('public.spree_assets_id_seq'::regclass); + + +-- +-- Name: spree_calculators id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_calculators ALTER COLUMN id SET DEFAULT nextval('public.spree_calculators_id_seq'::regclass); + + +-- +-- Name: spree_checks id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_checks ALTER COLUMN id SET DEFAULT nextval('public.spree_checks_id_seq'::regclass); + + +-- +-- Name: spree_cms_pages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_cms_pages ALTER COLUMN id SET DEFAULT nextval('public.spree_cms_pages_id_seq'::regclass); + + +-- +-- Name: spree_cms_sections id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_cms_sections ALTER COLUMN id SET DEFAULT nextval('public.spree_cms_sections_id_seq'::regclass); + + +-- +-- Name: spree_countries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_countries ALTER COLUMN id SET DEFAULT nextval('public.spree_countries_id_seq'::regclass); + + +-- +-- Name: spree_credit_cards id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_credit_cards ALTER COLUMN id SET DEFAULT nextval('public.spree_credit_cards_id_seq'::regclass); + + +-- +-- Name: spree_customer_returns id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_customer_returns ALTER COLUMN id SET DEFAULT nextval('public.spree_customer_returns_id_seq'::regclass); + + +-- +-- Name: spree_digital_links id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_digital_links ALTER COLUMN id SET DEFAULT nextval('public.spree_digital_links_id_seq'::regclass); + + +-- +-- Name: spree_digitals id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_digitals ALTER COLUMN id SET DEFAULT nextval('public.spree_digitals_id_seq'::regclass); + + +-- +-- Name: spree_gateways id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_gateways ALTER COLUMN id SET DEFAULT nextval('public.spree_gateways_id_seq'::regclass); + + +-- +-- Name: spree_inventory_units id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_inventory_units ALTER COLUMN id SET DEFAULT nextval('public.spree_inventory_units_id_seq'::regclass); + + +-- +-- Name: spree_line_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_line_items ALTER COLUMN id SET DEFAULT nextval('public.spree_line_items_id_seq'::regclass); + + +-- +-- Name: spree_log_entries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_log_entries ALTER COLUMN id SET DEFAULT nextval('public.spree_log_entries_id_seq'::regclass); + + +-- +-- Name: spree_menu_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_menu_items ALTER COLUMN id SET DEFAULT nextval('public.spree_menu_items_id_seq'::regclass); + + +-- +-- Name: spree_menus id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_menus ALTER COLUMN id SET DEFAULT nextval('public.spree_menus_id_seq'::regclass); + + +-- +-- Name: spree_oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_grants ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_access_grants_id_seq'::regclass); + + +-- +-- Name: spree_oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_access_tokens_id_seq'::regclass); + + +-- +-- Name: spree_oauth_applications id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_applications ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_applications_id_seq'::regclass); + + +-- +-- Name: spree_option_type_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_type_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_option_type_prototypes_id_seq'::regclass); + + +-- +-- Name: spree_option_types id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_types ALTER COLUMN id SET DEFAULT nextval('public.spree_option_types_id_seq'::regclass); + + +-- +-- Name: spree_option_value_variants id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_value_variants ALTER COLUMN id SET DEFAULT nextval('public.spree_option_value_variants_id_seq'::regclass); + + +-- +-- Name: spree_option_values id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_values ALTER COLUMN id SET DEFAULT nextval('public.spree_option_values_id_seq'::regclass); + + +-- +-- Name: spree_order_promotions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_order_promotions ALTER COLUMN id SET DEFAULT nextval('public.spree_order_promotions_id_seq'::regclass); + + +-- +-- Name: spree_orders id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_orders ALTER COLUMN id SET DEFAULT nextval('public.spree_orders_id_seq'::regclass); + + +-- +-- Name: spree_payment_capture_events id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payment_capture_events ALTER COLUMN id SET DEFAULT nextval('public.spree_payment_capture_events_id_seq'::regclass); + + +-- +-- Name: spree_payment_methods id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payment_methods ALTER COLUMN id SET DEFAULT nextval('public.spree_payment_methods_id_seq'::regclass); + + +-- +-- Name: spree_payments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payments ALTER COLUMN id SET DEFAULT nextval('public.spree_payments_id_seq'::regclass); + + +-- +-- Name: spree_preferences id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_preferences ALTER COLUMN id SET DEFAULT nextval('public.spree_preferences_id_seq'::regclass); + + +-- +-- Name: spree_prices id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prices ALTER COLUMN id SET DEFAULT nextval('public.spree_prices_id_seq'::regclass); + + +-- +-- Name: spree_product_option_types id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_option_types ALTER COLUMN id SET DEFAULT nextval('public.spree_product_option_types_id_seq'::regclass); + + +-- +-- Name: spree_product_promotion_rules id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_promotion_rules ALTER COLUMN id SET DEFAULT nextval('public.spree_product_promotion_rules_id_seq'::regclass); + + +-- +-- Name: spree_product_properties id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_properties ALTER COLUMN id SET DEFAULT nextval('public.spree_product_properties_id_seq'::regclass); + + +-- +-- Name: spree_products id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products ALTER COLUMN id SET DEFAULT nextval('public.spree_products_id_seq'::regclass); + + +-- +-- Name: spree_products_stores id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_products_stores_id_seq'::regclass); + + +-- +-- Name: spree_products_taxons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_products_taxons_id_seq'::regclass); + + +-- +-- Name: spree_promotion_action_line_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_action_line_items ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_action_line_items_id_seq'::regclass); + + +-- +-- Name: spree_promotion_actions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_actions ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_actions_id_seq'::regclass); + + +-- +-- Name: spree_promotion_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_categories_id_seq'::regclass); + + +-- +-- Name: spree_promotion_rule_taxons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rule_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rule_taxons_id_seq'::regclass); + + +-- +-- Name: spree_promotion_rule_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rule_users ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rule_users_id_seq'::regclass); + + +-- +-- Name: spree_promotion_rules id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rules ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rules_id_seq'::regclass); + + +-- +-- Name: spree_promotions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotions ALTER COLUMN id SET DEFAULT nextval('public.spree_promotions_id_seq'::regclass); + + +-- +-- Name: spree_promotions_stores id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotions_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_promotions_stores_id_seq'::regclass); + + +-- +-- Name: spree_properties id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_properties ALTER COLUMN id SET DEFAULT nextval('public.spree_properties_id_seq'::regclass); + + +-- +-- Name: spree_property_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_property_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_property_prototypes_id_seq'::regclass); + + +-- +-- Name: spree_prototype_taxons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prototype_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_prototype_taxons_id_seq'::regclass); + + +-- +-- Name: spree_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_prototypes_id_seq'::regclass); + + +-- +-- Name: spree_refund_reasons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_refund_reasons ALTER COLUMN id SET DEFAULT nextval('public.spree_refund_reasons_id_seq'::regclass); + + +-- +-- Name: spree_refunds id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_refunds ALTER COLUMN id SET DEFAULT nextval('public.spree_refunds_id_seq'::regclass); + + +-- +-- Name: spree_reimbursement_credits id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursement_credits ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursement_credits_id_seq'::regclass); + + +-- +-- Name: spree_reimbursement_types id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursement_types ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursement_types_id_seq'::regclass); + + +-- +-- Name: spree_reimbursements id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursements ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursements_id_seq'::regclass); + + +-- +-- Name: spree_return_authorization_reasons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_authorization_reasons ALTER COLUMN id SET DEFAULT nextval('public.spree_return_authorization_reasons_id_seq'::regclass); + + +-- +-- Name: spree_return_authorizations id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_authorizations ALTER COLUMN id SET DEFAULT nextval('public.spree_return_authorizations_id_seq'::regclass); + + +-- +-- Name: spree_return_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_items ALTER COLUMN id SET DEFAULT nextval('public.spree_return_items_id_seq'::regclass); + + +-- +-- Name: spree_role_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_role_users ALTER COLUMN id SET DEFAULT nextval('public.spree_role_users_id_seq'::regclass); + + +-- +-- Name: spree_roles id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_roles ALTER COLUMN id SET DEFAULT nextval('public.spree_roles_id_seq'::regclass); + + +-- +-- Name: spree_shipments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipments ALTER COLUMN id SET DEFAULT nextval('public.spree_shipments_id_seq'::regclass); + + +-- +-- Name: spree_shipping_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_categories_id_seq'::regclass); + + +-- +-- Name: spree_shipping_method_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_method_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_method_categories_id_seq'::regclass); + + +-- +-- Name: spree_shipping_method_zones id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_method_zones ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_method_zones_id_seq'::regclass); + + +-- +-- Name: spree_shipping_methods id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_methods ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_methods_id_seq'::regclass); + + +-- +-- Name: spree_shipping_rates id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_rates ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_rates_id_seq'::regclass); + + +-- +-- Name: spree_state_changes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_state_changes ALTER COLUMN id SET DEFAULT nextval('public.spree_state_changes_id_seq'::regclass); + + +-- +-- Name: spree_states id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_states ALTER COLUMN id SET DEFAULT nextval('public.spree_states_id_seq'::regclass); + + +-- +-- Name: spree_stock_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_items ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_items_id_seq'::regclass); + + +-- +-- Name: spree_stock_locations id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_locations ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_locations_id_seq'::regclass); + + +-- +-- Name: spree_stock_movements id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_movements ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_movements_id_seq'::regclass); + + +-- +-- Name: spree_stock_transfers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_transfers ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_transfers_id_seq'::regclass); + + +-- +-- Name: spree_store_credit_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_categories_id_seq'::regclass); + + +-- +-- Name: spree_store_credit_events id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_events ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_events_id_seq'::regclass); + + +-- +-- Name: spree_store_credit_types id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_types ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_types_id_seq'::regclass); + + +-- +-- Name: spree_store_credits id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credits ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credits_id_seq'::regclass); + + +-- +-- Name: spree_stores id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_stores_id_seq'::regclass); + + +-- +-- Name: spree_tax_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_tax_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_tax_categories_id_seq'::regclass); + + +-- +-- Name: spree_tax_rates id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_tax_rates ALTER COLUMN id SET DEFAULT nextval('public.spree_tax_rates_id_seq'::regclass); + + +-- +-- Name: spree_taxonomies id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_taxonomies ALTER COLUMN id SET DEFAULT nextval('public.spree_taxonomies_id_seq'::regclass); + + +-- +-- Name: spree_taxons id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_taxons_id_seq'::regclass); + + +-- +-- Name: spree_trackers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_trackers ALTER COLUMN id SET DEFAULT nextval('public.spree_trackers_id_seq'::regclass); + + +-- +-- Name: spree_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_users ALTER COLUMN id SET DEFAULT nextval('public.spree_users_id_seq'::regclass); + + +-- +-- Name: spree_variants id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_variants ALTER COLUMN id SET DEFAULT nextval('public.spree_variants_id_seq'::regclass); + + +-- +-- Name: spree_webhooks_events id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_webhooks_events ALTER COLUMN id SET DEFAULT nextval('public.spree_webhooks_events_id_seq'::regclass); + + +-- +-- Name: spree_webhooks_subscribers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_webhooks_subscribers ALTER COLUMN id SET DEFAULT nextval('public.spree_webhooks_subscribers_id_seq'::regclass); + + +-- +-- Name: spree_wished_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_wished_items ALTER COLUMN id SET DEFAULT nextval('public.spree_wished_items_id_seq'::regclass); + + +-- +-- Name: spree_wishlists id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_wishlists ALTER COLUMN id SET DEFAULT nextval('public.spree_wishlists_id_seq'::regclass); + + +-- +-- Name: spree_zone_members id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_zone_members ALTER COLUMN id SET DEFAULT nextval('public.spree_zone_members_id_seq'::regclass); + + +-- +-- Name: spree_zones id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_zones ALTER COLUMN id SET DEFAULT nextval('public.spree_zones_id_seq'::regclass); + + +-- +-- Data for Name: action_mailbox_inbound_emails; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.action_mailbox_inbound_emails (id, status, message_id, message_checksum, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: action_text_rich_texts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.action_text_rich_texts (id, name, body, record_type, record_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: active_storage_attachments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.active_storage_attachments (id, name, record_type, record_id, blob_id, created_at) FROM stdin; +9 attachment Spree::Asset 2 9 2022-09-02 17:04:42.618915 +10 image ActiveStorage::VariantRecord 6 10 2022-09-02 17:04:43.834442 +11 image ActiveStorage::VariantRecord 7 11 2022-09-02 17:07:36.677759 +12 attachment Spree::Asset 3 12 2022-09-02 17:12:23.68051 +13 image ActiveStorage::VariantRecord 8 13 2022-09-02 17:12:24.593819 +14 image ActiveStorage::VariantRecord 9 14 2022-09-02 17:12:44.54298 +15 image ActiveStorage::VariantRecord 10 15 2022-09-02 17:13:38.607574 +16 image ActiveStorage::VariantRecord 11 16 2022-09-02 17:13:40.066821 +17 image ActiveStorage::VariantRecord 12 17 2022-09-02 17:18:47.376468 +18 attachment Spree::Asset 4 18 2022-09-02 17:22:59.541988 +19 image ActiveStorage::VariantRecord 13 19 2022-09-02 17:23:00.417303 +20 image ActiveStorage::VariantRecord 14 20 2022-09-02 17:23:10.290435 +21 image ActiveStorage::VariantRecord 15 21 2022-09-02 17:30:07.259923 +22 image ActiveStorage::VariantRecord 16 22 2022-09-02 17:30:58.121756 +23 attachment Spree::Asset 5 23 2022-09-02 17:36:28.631573 +24 image ActiveStorage::VariantRecord 17 24 2022-09-02 17:36:29.62463 +25 image ActiveStorage::VariantRecord 18 25 2022-09-02 17:36:53.437153 +26 image ActiveStorage::VariantRecord 19 26 2022-09-02 17:36:59.863254 +27 image ActiveStorage::VariantRecord 20 27 2022-09-02 17:37:09.951175 +28 attachment Spree::Asset 6 28 2022-09-02 18:30:57.994045 +29 image ActiveStorage::VariantRecord 21 29 2022-09-02 18:30:58.939093 +30 image ActiveStorage::VariantRecord 22 30 2022-09-02 18:31:40.663095 +31 image ActiveStorage::VariantRecord 23 31 2022-09-02 18:33:03.592745 +32 image ActiveStorage::VariantRecord 24 32 2022-09-02 18:33:09.037875 +33 attachment Spree::Asset 7 33 2022-09-02 18:39:42.413766 +34 image ActiveStorage::VariantRecord 25 34 2022-09-02 18:39:43.311487 +35 image ActiveStorage::VariantRecord 26 35 2022-09-02 18:40:17.550299 +36 image ActiveStorage::VariantRecord 27 36 2022-09-02 18:40:36.17104 +49 image ActiveStorage::VariantRecord 37 49 2022-09-02 18:46:54.434274 +77 image ActiveStorage::VariantRecord 60 77 2022-09-13 20:45:20.994954 +78 attachment Spree::Asset 8 78 2022-09-13 20:55:14.204373 +79 image ActiveStorage::VariantRecord 61 79 2022-09-13 20:55:15.559455 +80 image ActiveStorage::VariantRecord 62 80 2022-09-13 20:55:19.220519 +81 image ActiveStorage::VariantRecord 63 81 2022-09-13 20:56:01.27318 +82 attachment Spree::Asset 9 82 2022-09-13 20:56:26.336847 +83 image ActiveStorage::VariantRecord 64 83 2022-09-13 20:56:27.643058 +84 image ActiveStorage::VariantRecord 65 84 2022-09-13 20:57:15.231813 +85 attachment Spree::Asset 10 85 2022-09-13 20:57:51.310359 +86 attachment Spree::Asset 12 86 2022-09-13 20:58:02.736356 +87 attachment Spree::Asset 11 87 2022-09-13 20:58:22.800752 +88 image ActiveStorage::VariantRecord 66 88 2022-09-13 20:58:23.694078 +89 image ActiveStorage::VariantRecord 67 89 2022-09-13 20:58:25.308738 +90 attachment Spree::Asset 14 90 2022-09-13 20:58:36.663073 +91 image ActiveStorage::VariantRecord 68 91 2022-09-13 20:58:38.29224 +92 attachment Spree::Asset 13 92 2022-09-13 20:58:51.555379 +93 image ActiveStorage::VariantRecord 69 93 2022-09-13 20:58:52.720018 +94 image ActiveStorage::VariantRecord 70 94 2022-09-13 20:58:55.871559 +95 image ActiveStorage::VariantRecord 71 95 2022-09-13 20:58:55.886657 +96 image ActiveStorage::VariantRecord 72 96 2022-09-13 20:58:56.006781 +97 image ActiveStorage::VariantRecord 73 97 2022-09-13 20:58:56.226471 +98 image ActiveStorage::VariantRecord 74 98 2022-09-13 20:58:56.321614 +99 image ActiveStorage::VariantRecord 75 99 2022-09-13 20:58:56.390544 +100 attachment Spree::Asset 15 100 2022-09-13 20:59:13.185735 +101 image ActiveStorage::VariantRecord 76 101 2022-09-13 20:59:14.23223 +102 image ActiveStorage::VariantRecord 78 102 2022-09-13 20:59:35.309674 +103 image ActiveStorage::VariantRecord 77 103 2022-09-13 20:59:35.415531 +104 image ActiveStorage::VariantRecord 79 104 2022-09-13 20:59:35.512547 +105 image ActiveStorage::VariantRecord 80 105 2022-09-13 20:59:35.586156 +106 image ActiveStorage::VariantRecord 81 106 2022-09-13 20:59:35.592875 +107 image ActiveStorage::VariantRecord 82 107 2024-02-12 20:10:35.573225 +108 image ActiveStorage::VariantRecord 83 108 2024-02-12 20:10:40.224261 +109 image ActiveStorage::VariantRecord 84 109 2024-02-12 20:49:24.20852 +110 image ActiveStorage::VariantRecord 85 110 2024-02-12 20:50:30.505479 +111 image ActiveStorage::VariantRecord 86 111 2024-02-12 20:52:16.04252 +112 image ActiveStorage::VariantRecord 87 112 2024-02-12 20:53:09.043614 +113 image ActiveStorage::VariantRecord 88 113 2024-02-12 20:53:30.051846 +114 image ActiveStorage::VariantRecord 89 114 2024-02-12 20:53:36.818317 +115 image ActiveStorage::VariantRecord 90 115 2024-02-12 21:00:37.083582 +116 image ActiveStorage::VariantRecord 91 116 2024-02-12 21:00:46.849147 +\. + + +-- +-- Data for Name: active_storage_blobs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.active_storage_blobs (id, key, filename, content_type, metadata, service_name, byte_size, checksum, created_at) FROM stdin; +9 2ooru1xgcss6d2qeg4iwmjjgz2c9 cool-bits.jpeg image/jpeg {"identified":true} local 248149 ul8ihFjoVa/dcMgvaiIr1g== 2022-09-02 17:04:42.612189 +10 d7k8l52o2ji9tkor07sqd25wpxdk cool-bits.jpeg image/jpeg {"identified":true} local 47777 k88PNqNP9KalnrRGGGCEWg== 2022-09-02 17:04:43.827676 +11 f5xr4qy5dtulhpe8kgazjo2x7ubz cool-bits.jpeg image/jpeg {"identified":true} local 40109 Ynud5dEmvQR/uQ/7TtWDdQ== 2022-09-02 17:07:36.67155 +12 f1f6rz6nuf57ryix259yxq7j3tje bits-by-dre.jpeg image/jpeg {"identified":true} local 234993 +NqcIyZzTw2n9pWG+kLilw== 2022-09-02 17:12:23.675719 +13 fsipi7gdrjs2mxhgop0etbuwsfu2 bits-by-dre.jpeg image/jpeg {"identified":true} local 49646 i/8OhqiJvH5Tfbhwwxkpmg== 2022-09-02 17:12:24.58817 +14 nx9dapm2zhd2kh991ompea29775m bits-by-dre.jpeg image/jpeg {"identified":true} local 38898 /p3ijEdp9nhaLD1N1/Rydg== 2022-09-02 17:12:44.537643 +15 ltmc7z2yt5ozwpuqmoz2uw98xylf cool-bits.jpeg image/jpeg {"identified":true} local 100545 8Ib3bBPtuwjsKX6ELNQ2Aw== 2022-09-02 17:13:38.598918 +16 b095fsshrfwmoexn8czq2m3aiqbe bits-by-dre.jpeg image/jpeg {"identified":true} local 101081 SSaVHNcWNpYrSUdIJC68UQ== 2022-09-02 17:13:40.059544 +17 6mb7uh60to9dg7fvpjljjmqdnyfw bits-by-dre.jpeg image/jpeg {"identified":true} local 41004 yGcO9plltZhFPqbpBXeUSw== 2022-09-02 17:18:47.370307 +18 p80jyh6ws8gqmfrp8kcjcgctdieh hockey-bits.jpeg image/jpeg {"identified":true} local 210279 7ZrEj+kayH0gSXcBBG/B4Q== 2022-09-02 17:22:59.537118 +19 ir5thn1x7rn9legliqvjh23qg1bl hockey-bits.jpeg image/jpeg {"identified":true} local 44698 HjGe/x67xFTEh5NodOLiaA== 2022-09-02 17:23:00.410808 +20 l81gft3rnuphlp36xw4q33p4r1cs hockey-bits.jpeg image/jpeg {"identified":true} local 87716 n3vIGT//d9+y6zglmVzq/Q== 2022-09-02 17:23:10.283814 +21 un6xvbm6l3ecxwxwuxffc6b6pksy hockey-bits.jpeg image/jpeg {"identified":true} local 35863 Ov4CUgp/5UYrkdaWuqoZkw== 2022-09-02 17:30:07.252332 +22 m6sbj199y5b8id0eg6dvktm1nbyu hockey-bits.jpeg image/jpeg {"identified":true} local 37690 VkJEwpH/dudnAOEkCT4nsQ== 2022-09-02 17:30:58.116025 +23 1ks2veug3cveel5c0eeyaq0m647s learning-bits.jpeg image/jpeg {"identified":true} local 1197149 TgyzBURlYl80yCI+9ouxUg== 2022-09-02 17:36:28.626212 +24 xp7a6l2hhtrp4ow3oo2e8ozqzuz1 learning-bits.jpeg image/jpeg {"identified":true} local 1014802 Fh+PlRSqDZIWIbckSk9UAQ== 2022-09-02 17:36:29.61502 +25 3lsqhzqyca5o90l7ek5lcic5ge8z learning-bits.jpeg image/jpeg {"identified":true} local 1002362 6ObEwVp7EOsRMtv78F5IAw== 2022-09-02 17:36:53.431309 +26 h3ump7vjqudll390ky1rdss0xdb4 learning-bits.jpeg image/jpeg {"identified":true} local 1004850 uaX8QLaSQky4BV0bo0QUdQ== 2022-09-02 17:36:59.857098 +27 kru2kfqkml3mwkuhmc2w0uvtp4x1 learning-bits.jpeg image/jpeg {"identified":true} local 1071981 I09nvy18aBcaVMARVMEBiw== 2022-09-02 17:37:09.944468 +28 14zj5sb9no7mevm8vtzjcym71vy1 money-bits.jpeg image/jpeg {"identified":true} local 1100898 YghoZn3prrKQ5yQtZbDK7Q== 2022-09-02 18:30:57.989354 +29 0k8uufd4279o44gzgz5efagsqteu money-bits.jpeg image/jpeg {"identified":true} local 939468 aNVNfHCzp1R8trPKW0LXiQ== 2022-09-02 18:30:58.93293 +30 vdhfjqfz88rsidepmoygmvmzuory money-bits.jpeg image/jpeg {"identified":true} local 927913 1iDbHbeEqFL5qloXcbnSzg== 2022-09-02 18:31:40.657526 +31 hvlm8gb3nktx69eteqqt7atj9qrs money-bits.jpeg image/jpeg {"identified":true} local 930216 GDQRFyc+9JP2t4jYJHi7EQ== 2022-09-02 18:33:03.586501 +32 bz2awto4gfx6t6udd7k5gjvke8i7 money-bits.jpeg image/jpeg {"identified":true} local 986590 M+ek08qj38Ji7feazaiO8Q== 2022-09-02 18:33:09.031386 +33 0r42dufnbi6rctn4vap71d1urqk9 octo-bits.jpeg image/jpeg {"identified":true} local 241272 NuxNL0YyHeKIF1sASRT97A== 2022-09-02 18:39:42.409353 +34 dbagqumqgq1z6319o338j7bmt5pq octo-bits.jpeg image/jpeg {"identified":true} local 49159 sqkjHyWt2rPAY5q7ruUqgQ== 2022-09-02 18:39:43.304605 +35 msm81dgmxk4ggqiud2bv4j9waoie octo-bits.jpeg image/jpeg {"identified":true} local 38361 oeUTnZsxghMF1aO5O7v+KQ== 2022-09-02 18:40:17.543007 +36 pk18k7l7xvz7fcz9ecz20m01mbg1 octo-bits.jpeg image/jpeg {"identified":true} local 40567 SrFwtDhvXJzhWls05pzdzw== 2022-09-02 18:40:36.165326 +49 77of4hptz6t0rf0gn04v0kqjt4dm octo-bits.jpeg image/jpeg {"identified":true} local 100180 VZ6BkQVMlbvYs4EqLM/Auw== 2022-09-02 18:46:54.428156 +77 tcuywtfa5bo7iswkbmocinkv4obn bits-by-dre.jpeg image/jpeg {"identified":true} local 51236 EfpZWM2xmoj7MQuE71RIyQ== 2022-09-13 20:45:20.984736 +78 tq3q5lsbdzh1hfwfto2ub0dwuuul og-bits.jpeg image/jpeg {"identified":true} local 1151702 0Yuvf2ntSpa0Gb5VGtepzw== 2022-09-13 20:55:14.197795 +79 rcp1c0ffcrahrxl6ddwdj502lrzh og-bits.jpeg image/jpeg {"identified":true} local 972140 /hpLInzJskGPWV9QIVLLQQ== 2022-09-13 20:55:15.55344 +80 vn912gigj022zdj21b018id2vb0h og-bits.jpeg image/jpeg {"identified":true} local 1024852 m8dJdUhVnmZxI7oDBj56eg== 2022-09-13 20:55:19.207845 +81 fk0o9nsutjpswot205kna7pdoj02 og-bits.jpeg image/jpeg {"identified":true} local 962633 zQSTI0DGiSAJC+4llwmG4w== 2022-09-13 20:56:01.257696 +82 ox4iruasiwuftdu71u98l5t4rpgm rainbow-bits.jpeg image/jpeg {"identified":true} local 259193 efsoMAdOKxIbVSCwg2/YFA== 2022-09-13 20:56:26.329573 +83 v2d6kiibpmi2n5wei0zvfmgcrcp6 rainbow-bits.jpeg image/jpeg {"identified":true} local 50906 hzjMyPp7yLnGK08HEKI4+w== 2022-09-13 20:56:27.635727 +84 6f852pkntrw16c0w9wzpdx2rnmud rainbow-bits.jpeg image/jpeg {"identified":true} local 110174 Mr9AnVJZuwi+NMzBR409mQ== 2022-09-13 20:57:15.200353 +85 rp62efuo0c81qrdzczbw9vbu1eih space-bits.jpeg image/jpeg {"identified":true} local 204816 v5mgn8jlxaBVDDh8LeBNyg== 2022-09-13 20:57:51.289216 +86 azwswza6kecyh2bmfnlpr7besvvb stonk-bits.jpeg image/jpeg {"identified":true} local 211078 PB5hl6/YiHQKDvQmpvH8/w== 2022-09-13 20:58:02.72886 +87 l0idqd59oxu5iz00z9m3iep48pjm student-bits.jpeg image/jpeg {"identified":true} local 1092884 wklF2uDWboHOf4qkukL3Gg== 2022-09-13 20:58:22.795426 +88 t2gbiuwefu2cu69nx6ef7mxvlkyf stonk-bits.jpeg image/jpeg {"identified":true} local 47293 Vqnn8/ONG6Qzb1/s1FFEMw== 2022-09-13 20:58:23.685776 +89 1cn3v98qnmqwts7m6l5xkbhzvffn student-bits.jpeg image/jpeg {"identified":true} local 934184 Ur0hmwkICrISUfpSgAVzcw== 2022-09-13 20:58:25.299251 +90 ziae3tzvaen6pm7pdzsya7rv46l3 sunset-bits.jpeg image/jpeg {"identified":true} local 216353 aXoMYGfRJSfhcGrhVRbMnQ== 2022-09-13 20:58:36.655123 +91 oifpdmfenjck5p39s91m8ij5ya5a sunset-bits.jpeg image/jpeg {"identified":true} local 46938 lHVXqqxJgx6PoGGedTHq3A== 2022-09-13 20:58:38.271792 +92 8drwmhakoag0ra8a1myjdr80mt57 summit-denver.jpeg image/jpeg {"identified":true} local 265693 0yTT+jLLPh/PFOEHlfEgcg== 2022-09-13 20:58:51.549532 +93 q869nghoropy7vm31r30cgs85x0d summit-denver.jpeg image/jpeg {"identified":true} local 48059 CXWmqZ1vH06pKaFssa5s8w== 2022-09-13 20:58:52.713025 +94 5beayoc679qsbk1udyydvujp3tuv summit-denver.jpeg image/jpeg {"identified":true} local 38249 KIpZ6xWcIwScorOuJILSVQ== 2022-09-13 20:58:55.863754 +95 j4j2wb67ekv1hle6t5z2aq19gstf space-bits.jpeg image/jpeg {"identified":true} local 8347 AiFsjCezMe9MF+xL73BFvg== 2022-09-13 20:58:55.87748 +96 wpik6q4kgdlnd8zy9vxfayze9bxl stonk-bits.jpeg image/jpeg {"identified":true} local 40088 fdq55rYupPV6x9aLfruPXw== 2022-09-13 20:58:55.995317 +97 osvherjecbdx3ezy3jvar6vvfwrk rainbow-bits.jpeg image/jpeg {"identified":true} local 41520 7VX0r/Epk4dnKEc+Y+7Lbw== 2022-09-13 20:58:56.197497 +98 niywd6phcjdfuxw97lxi1y8t1sya student-bits.jpeg image/jpeg {"identified":true} local 924503 pu5jsJqi/HYNK0LTZ4rcEg== 2022-09-13 20:58:56.312249 +99 bfkgrq99dea00vq7i74ludx4q31l sunset-bits.jpeg image/jpeg {"identified":true} local 39803 VzZgZrPB82opPBFfJq8MOg== 2022-09-13 20:58:56.382249 +100 97xen0j7t6ketkwt4l8vobq14qq9 aapihm-bits.jpeg image/jpeg {"identified":true} local 343741 eZTuAgNrYgfLggtJUa1c/w== 2022-09-13 20:59:13.18072 +101 dqc7t23uxsm5axhesoap039wqjeb aapihm-bits.jpeg image/jpeg {"identified":true} local 54179 N+Kdai0kqbj/tKP/g2CnAw== 2022-09-13 20:59:14.224158 +102 x0j50n6qwk4g0p72hy9h9gmz9l41 summit-denver.jpeg image/jpeg {"identified":true} local 114428 xxurWrUOWSTgyBbYeJTC0w== 2022-09-13 20:59:35.288053 +103 bbxn5vhfqpqdykae8z2cdf5x3dgs space-bits.jpeg image/jpeg {"identified":true} local 76325 C5b9U36Azm+17rksRdyRmw== 2022-09-13 20:59:35.303957 +104 89to0ymiqabe72nctvgrgqzyrk0o student-bits.jpeg image/jpeg {"identified":true} local 979837 s8S7lz63WqubLuwyZkUlvQ== 2022-09-13 20:59:35.466817 +105 z8lp9oe5quoqzkewjtvj14rubeg0 aapihm-bits.jpeg image/jpeg {"identified":true} local 110578 tyOLd68VxrlORI9USR6TnA== 2022-09-13 20:59:35.559995 +106 169tp3memt7id57sh22o8ejtcblg sunset-bits.jpeg image/jpeg {"identified":true} local 91553 l8Bed84NaeR7ZnrBeZ+OMg== 2022-09-13 20:59:35.559872 +107 lplrh3v056du1izagk5o76sfu98p aapihm-bits.jpeg image/jpeg {"identified":true,"width":100,"height":100,"analyzed":true} local 41613 jrWG/WtbBlWrj/ei8oz6YQ== 2024-02-12 20:10:35.570313 +108 jlmgno906bkhwsytjqiyns2hqut8 cool-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 38209 Zgv9AzRamNZaSnpefDfvDw== 2024-02-12 20:10:40.221576 +109 3pnujzkcnksw26a0cu1vtyp1uviz aapihm-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 38773 ClHnVE8vXEF1CTGVX96zNQ== 2024-02-12 20:49:24.205225 +110 jrqti00rfi88kdgvjnw4s0tdv7xc stonk-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 38358 1RpJqbKy+qefjdu1X5ZWqQ== 2024-02-12 20:50:30.502843 +111 0izgp4zdrg4bxwvji5e0598oa8mp summit-denver.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 36250 xIzrcJB4sJTSc+CjUn+u0w== 2024-02-12 20:52:16.039346 +112 cbkxlh6px78ymmakilgwygcm0qn5 og-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 960237 0ycR/MiYr8+o+583UKvgow== 2024-02-12 20:53:09.040772 +113 f7tg9iqtd0i6tqxzkf15010kl9xq rainbow-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 39231 M0FtcE3lsZSDoTezBEVyuQ== 2024-02-12 20:53:30.048806 +114 rx4ig9xw7h5y1y2sqqmawsq1x17p space-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 5508 T3qb/i/Dp1OXe0QZ6lxzAQ== 2024-02-12 20:53:36.8159 +115 n1m4ol3mo2fbg77imv5qn156swi4 student-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 922000 lVdVBn+UTlr3ndnRG9nrfg== 2024-02-12 21:00:37.08116 +116 r0l3vmf800tdhnaha8ipdutspb1e sunset-bits.jpeg image/jpeg {"identified":true,"width":48,"height":48,"analyzed":true} local 38098 /9sG1YpOsD/dvxgbei6LPw== 2024-02-12 21:00:46.846515 +\. + + +-- +-- Data for Name: active_storage_variant_records; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.active_storage_variant_records (id, blob_id, variation_digest) FROM stdin; +6 9 fwVpW23gRniI1V/Mq72agowuN5s= +7 9 d3LOd3YXIQx0J6s9ItQoFa4APBo= +8 12 fwVpW23gRniI1V/Mq72agowuN5s= +9 12 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +10 9 xKmKND+TjDHsG4nik8rAoillPTg= +11 12 xKmKND+TjDHsG4nik8rAoillPTg= +12 12 d3LOd3YXIQx0J6s9ItQoFa4APBo= +13 18 fwVpW23gRniI1V/Mq72agowuN5s= +14 18 xKmKND+TjDHsG4nik8rAoillPTg= +15 18 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +16 18 d3LOd3YXIQx0J6s9ItQoFa4APBo= +17 23 fwVpW23gRniI1V/Mq72agowuN5s= +18 23 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +19 23 d3LOd3YXIQx0J6s9ItQoFa4APBo= +20 23 xKmKND+TjDHsG4nik8rAoillPTg= +21 28 fwVpW23gRniI1V/Mq72agowuN5s= +22 28 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +23 28 d3LOd3YXIQx0J6s9ItQoFa4APBo= +24 28 xKmKND+TjDHsG4nik8rAoillPTg= +25 33 fwVpW23gRniI1V/Mq72agowuN5s= +26 33 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +27 33 d3LOd3YXIQx0J6s9ItQoFa4APBo= +37 33 xKmKND+TjDHsG4nik8rAoillPTg= +60 12 LMY3gm7ksOYX5XlHmCdPt9vS3Xk= +61 78 fwVpW23gRniI1V/Mq72agowuN5s= +62 78 xKmKND+TjDHsG4nik8rAoillPTg= +63 78 d3LOd3YXIQx0J6s9ItQoFa4APBo= +64 82 fwVpW23gRniI1V/Mq72agowuN5s= +65 82 xKmKND+TjDHsG4nik8rAoillPTg= +66 86 fwVpW23gRniI1V/Mq72agowuN5s= +67 87 fwVpW23gRniI1V/Mq72agowuN5s= +68 90 fwVpW23gRniI1V/Mq72agowuN5s= +69 92 fwVpW23gRniI1V/Mq72agowuN5s= +70 92 d3LOd3YXIQx0J6s9ItQoFa4APBo= +71 85 d3LOd3YXIQx0J6s9ItQoFa4APBo= +72 86 d3LOd3YXIQx0J6s9ItQoFa4APBo= +73 82 d3LOd3YXIQx0J6s9ItQoFa4APBo= +74 87 d3LOd3YXIQx0J6s9ItQoFa4APBo= +75 90 d3LOd3YXIQx0J6s9ItQoFa4APBo= +76 100 fwVpW23gRniI1V/Mq72agowuN5s= +77 85 xKmKND+TjDHsG4nik8rAoillPTg= +78 92 xKmKND+TjDHsG4nik8rAoillPTg= +79 87 xKmKND+TjDHsG4nik8rAoillPTg= +80 100 xKmKND+TjDHsG4nik8rAoillPTg= +81 90 xKmKND+TjDHsG4nik8rAoillPTg= +82 100 d3LOd3YXIQx0J6s9ItQoFa4APBo= +83 9 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +84 100 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +85 86 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +86 92 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +87 78 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +88 82 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +89 85 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +90 87 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +91 90 bBI9nAYRWRjVu1pk9y6xAFWlb5I= +\. + + +-- +-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin; +environment development 2022-07-12 18:09:53.552384 2022-07-12 18:09:53.552384 +\. + + +-- +-- Data for Name: friendly_id_slugs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.friendly_id_slugs (id, slug, sluggable_id, sluggable_type, scope, created_at, deleted_at) FROM stdin; +1 categories 1 Spree::Taxon \N 2022-07-12 18:13:13.083664 \N +18 categories/new 18 Spree::Taxon \N 2022-07-12 18:13:16.078291 \N +19 categories/bestsellers 19 Spree::Taxon \N 2022-07-12 18:13:16.175428 \N +20 categories/trending 20 Spree::Taxon \N 2022-07-12 18:13:16.278428 \N +63 midi-skirt-with-bottoms 37 Spree::Product \N 2022-07-12 18:13:30.823182 2022-09-02 16:28:29.055025 +71 pleated-skirt-2 45 Spree::Product \N 2022-07-12 18:13:33.741768 2022-09-02 16:28:32.708205 +33 regular-shirt 7 Spree::Product \N 2022-07-12 18:13:19.566485 2022-09-02 16:28:35.26686 +42 raw-edge-t-shirt 16 Spree::Product \N 2022-07-12 18:13:22.637858 2022-09-02 16:28:35.912895 +87 printed-wrapped-blouse 61 Spree::Product \N 2022-07-12 18:13:39.831363 2022-09-02 16:28:36.646095 +32 printed-short-sleeve-shirt 6 Spree::Product \N 2022-07-12 18:13:19.225018 2022-09-02 16:28:39.146282 +78 printed-dress 52 Spree::Product \N 2022-07-12 18:13:36.478442 2022-09-02 16:28:42.251783 +38 polo-t-shirt 12 Spree::Product \N 2022-07-12 18:13:21.257287 2022-09-02 16:28:43.046868 +88 pleated-sleeve-v-neck-shirt 62 Spree::Product \N 2022-07-12 18:13:40.17749 2022-09-02 16:28:44.135869 +65 a-line-suede-skirt 39 Spree::Product \N 2022-07-12 18:13:31.562211 2022-09-02 14:33:31.850158 +56 anorak-with-hood 30 Spree::Product \N 2022-07-12 18:13:28.064217 2022-09-02 14:33:33.896846 +28 checked-shirt 2 Spree::Product \N 2022-07-12 18:13:17.875797 2022-09-02 16:25:46.959859 +34 checked-slim-fit-shirt 8 Spree::Product \N 2022-07-12 18:13:19.902246 2022-09-02 16:25:48.491309 +89 cotton-shirt 63 Spree::Product \N 2022-07-12 18:13:40.519858 2022-09-02 16:25:51.869278 +62 flared-midi-skirt 36 Spree::Product \N 2022-07-12 18:13:30.464192 2022-09-02 16:26:03.119669 +74 flared-dress 48 Spree::Product \N 2022-07-12 18:13:35.007832 2022-09-02 16:26:03.89484 +75 elegant-flared-dress 49 Spree::Product \N 2022-07-12 18:13:35.36242 2022-09-02 16:26:04.827718 +80 dress-with-belt 54 Spree::Product \N 2022-07-12 18:13:37.20395 2022-09-02 16:26:06.075147 +59 down-jacket-with-hood 33 Spree::Product \N 2022-07-12 18:13:29.374519 2022-09-02 16:26:06.827193 +35 dotted-shirt 9 Spree::Product \N 2022-07-12 18:13:20.250901 2022-09-02 16:26:08.712587 +27 denim-shirt 1 Spree::Product \N 2022-07-12 18:13:17.391548 2022-09-02 16:26:09.422832 +57 denim-jacket 31 Spree::Product \N 2022-07-12 18:13:28.498678 2022-09-02 16:26:10.059145 +67 flared-skirt 41 Spree::Product \N 2022-07-12 18:13:32.266387 2022-09-02 16:26:59.6843 +70 floral-flared-skirt 44 Spree::Product \N 2022-07-12 18:13:33.367018 2022-09-02 16:27:01.002974 +82 flounced-dress 56 Spree::Product \N 2022-07-12 18:13:37.942049 2022-09-02 16:27:02.430326 +55 hooded-jacket 29 Spree::Product \N 2022-07-12 18:13:27.656624 2022-09-02 16:27:04.026367 +61 jacket-with-liner 35 Spree::Product \N 2022-07-12 18:13:30.092724 2022-09-02 16:27:05.133601 +36 linen-shirt 10 Spree::Product \N 2022-07-12 18:13:20.597271 2022-09-02 16:27:09.651986 +53 long-sleeve-jumper 27 Spree::Product \N 2022-07-12 18:13:26.796275 2022-09-02 16:27:10.393769 +39 long-sleeve-t-shirt 13 Spree::Product \N 2022-07-12 18:13:21.593241 2022-09-02 16:27:12.682961 +76 long-sleeve-knitted-dress 50 Spree::Product \N 2022-07-12 18:13:35.72999 2022-09-02 16:27:13.786225 +48 long-sleeve-jumper-with-pocket 22 Spree::Product \N 2022-07-12 18:13:24.918844 2022-09-02 16:27:14.593762 +49 jumper 23 Spree::Product \N 2022-07-12 18:13:25.27837 2022-09-02 16:27:18.207794 +51 hoodie 25 Spree::Product \N 2022-07-12 18:13:26.059903 2022-09-02 16:27:21.243482 +46 high-neck-sweater 20 Spree::Product \N 2022-07-12 18:13:24.21039 2022-09-02 16:27:23.108076 +72 floral-wrap-dress 46 Spree::Product \N 2022-07-12 18:13:34.267159 2022-09-02 16:27:23.809729 +37 regular-shirt-with-rolled-up-sleeves 11 Spree::Product \N 2022-07-12 18:13:20.921038 2022-09-02 16:27:31.394288 +69 skater-short-skirt 43 Spree::Product \N 2022-07-12 18:13:33.000338 2022-09-02 16:27:36.455511 +84 semi-sheer-shirt-with-floral-cuffs 58 Spree::Product \N 2022-07-12 18:13:38.637894 2022-09-02 16:27:41.235812 +31 short-sleeve-shirt 5 Spree::Product \N 2022-07-12 18:13:18.886327 2022-09-02 16:27:42.480717 +30 slim-fit-shirt 4 Spree::Product \N 2022-07-12 18:13:18.551534 2022-09-02 16:27:43.070848 +41 t-shirt-with-holes 15 Spree::Product \N 2022-07-12 18:13:22.284972 2022-09-02 16:27:45.27874 +54 suede-biker-jacket 28 Spree::Product \N 2022-07-12 18:13:27.254036 2022-09-02 16:27:45.913157 +47 stripped-jumper 21 Spree::Product \N 2022-07-12 18:13:24.56147 2022-09-02 16:27:46.504259 +85 striped-shirt 59 Spree::Product \N 2022-07-12 18:13:38.984475 2022-09-02 16:27:47.893673 +83 slit-maxi-dress 57 Spree::Product \N 2022-07-12 18:13:38.296968 2022-09-02 16:27:53.239001 +68 skater-skirt 42 Spree::Product \N 2022-07-12 18:13:32.636966 2022-09-02 16:27:53.776979 +52 zipped-high-neck-sweater 26 Spree::Product \N 2022-07-12 18:13:26.437851 2022-09-02 16:28:00.940544 +58 wool-blend-short-coat 32 Spree::Product \N 2022-07-12 18:13:28.998576 2022-09-02 16:28:01.53455 +60 wool-blend-coat 34 Spree::Product \N 2022-07-12 18:13:29.724248 2022-09-02 16:28:02.839935 +86 v-neck-wide-shirt 60 Spree::Product \N 2022-07-12 18:13:39.482443 2022-09-02 16:28:03.493133 +73 v-neck-floral-maxi-dress 47 Spree::Product \N 2022-07-12 18:13:34.648966 2022-09-02 16:28:06.015972 +81 v-neck-floral-dress 55 Spree::Product \N 2022-07-12 18:13:37.588042 2022-09-02 16:28:06.681009 +44 tank-top 18 Spree::Product \N 2022-07-12 18:13:23.476906 2022-09-02 16:28:07.230612 +117 loose-fitted-jacket 91 Spree::Product \N 2022-07-12 18:13:51.85172 2022-09-02 16:28:28.237147 +125 oversize-t-shirt-wrapped-on-back 99 Spree::Product \N 2022-07-12 18:13:54.955027 2022-09-02 16:28:31.060241 +97 oversized-knitted-sweater 71 Spree::Product \N 2022-07-12 18:13:43.435431 2022-09-02 16:28:31.560588 +3 categories/women 3 Spree::Taxon \N 2022-07-12 18:13:14.272231 2022-09-08 15:34:52.819141 +9 categories/women/skirts 9 Spree::Taxon \N 2022-07-12 18:13:15.113846 2022-09-08 15:34:52.835567 +10 categories/women/dresses 10 Spree::Taxon \N 2022-07-12 18:13:15.2217 2022-09-08 15:34:52.907897 +11 categories/women/shirts-and-blouses 11 Spree::Taxon \N 2022-07-12 18:13:15.332583 2022-09-08 15:34:52.939048 +4 categories/sportswear 4 Spree::Taxon \N 2022-07-12 18:13:14.523262 2022-09-08 15:34:54.460201 +15 categories/sportswear/tops 15 Spree::Taxon \N 2022-07-12 18:13:15.759122 2022-09-08 15:34:54.480126 +16 categories/sportswear/sweatshirts 16 Spree::Taxon \N 2022-07-12 18:13:15.872582 2022-09-08 15:34:54.537832 +17 categories/sportswear/pants 17 Spree::Taxon \N 2022-07-12 18:13:15.980192 2022-09-08 15:34:54.567141 +21 categories/streetstyle 21 Spree::Taxon \N 2022-07-12 18:13:16.38138 2022-09-08 15:34:58.105786 +22 categories/summer-sale 22 Spree::Taxon \N 2022-07-12 18:13:16.481395 2022-09-08 15:35:00.062536 +23 categories/new-collection 23 Spree::Taxon \N 2022-07-12 18:13:16.576708 2022-09-08 15:35:01.679377 +24 categories/new-collection/summer-2022 24 Spree::Taxon \N 2022-07-12 18:13:16.677109 2022-09-08 15:35:01.696286 +25 categories/special-offers 25 Spree::Taxon \N 2022-07-12 18:13:16.783992 2022-09-08 15:35:03.037446 +26 categories/special-offers/30-percent-off 26 Spree::Taxon \N 2022-07-12 18:13:16.885386 2022-09-08 15:35:03.054373 +98 oversized-sweatshirt 72 Spree::Product \N 2022-07-12 18:13:43.788205 2022-09-02 16:28:32.150322 +103 printed-t-shirt 77 Spree::Product \N 2022-07-12 18:13:46.039057 2022-09-02 16:28:37.805941 +79 printed-slit-sleeves-dress 53 Spree::Product \N 2022-07-12 18:13:36.843434 2022-09-02 16:28:38.422272 +95 printed-shirt 69 Spree::Product \N 2022-07-12 18:13:42.727813 2022-09-02 16:28:39.83849 +138 printed-pants-with-holes 112 Spree::Product \N 2022-07-12 18:13:59.940315 2022-09-02 16:28:41.009839 +140 printed-pants 114 Spree::Product \N 2022-07-12 18:14:00.781607 2022-09-02 16:28:41.618543 +105 pleated-sleeve-t-shirt 79 Spree::Product \N 2022-07-12 18:13:47.128416 2022-09-02 16:28:44.852538 +139 pants 113 Spree::Product \N 2022-07-12 18:14:00.340149 2022-09-02 16:28:46.728787 +40 3-4-sleeve-t-shirt 14 Spree::Product \N 2022-07-12 18:13:21.937549 2022-09-02 14:33:28.47632 +113 asymmetric-coat 87 Spree::Product \N 2022-07-12 18:13:50.069067 2022-09-02 14:33:39.315698 +96 asymmetric-sweater-with-wide-sleeves 70 Spree::Product \N 2022-07-12 18:13:43.081179 2022-09-02 14:33:48.805744 +110 basic-loose-t-shirt 84 Spree::Product \N 2022-07-12 18:13:48.956844 2022-09-02 16:25:39.662708 +45 basic-t-shirt 19 Spree::Product \N 2022-07-12 18:13:23.840223 2022-09-02 16:25:41.699458 +90 blouse-with-wide-flounced-sleeve 64 Spree::Product \N 2022-07-12 18:13:40.857366 2022-09-02 16:25:43.54228 +122 bomber-jacket 96 Spree::Product \N 2022-07-12 18:13:53.902506 2022-09-02 16:25:45.237334 +111 coat-with-pockets 85 Spree::Product \N 2022-07-12 18:13:49.331533 2022-09-02 16:25:50.229757 +29 covered-placket-shirt 3 Spree::Product \N 2022-07-12 18:13:18.212175 2022-09-02 16:25:53.853856 +107 crop-top 81 Spree::Product \N 2022-07-12 18:13:47.838767 2022-09-02 16:25:55.83698 +102 crop-top-with-tie 76 Spree::Product \N 2022-07-12 18:13:45.515237 2022-09-02 16:25:57.651034 +101 cropped-fitted-sweater 75 Spree::Product \N 2022-07-12 18:13:45.103196 2022-09-02 16:25:59.308128 +121 denim-hooded-jacket 95 Spree::Product \N 2022-07-12 18:13:53.472548 2022-09-02 16:26:01.087577 +64 fitted-skirt 38 Spree::Product \N 2022-07-12 18:13:31.192728 2022-09-02 16:26:04.320074 +91 elegant-blouse-with-chocker 65 Spree::Product \N 2022-07-12 18:13:41.235558 2022-09-02 16:26:05.519245 +115 down-jacket 89 Spree::Product \N 2022-07-12 18:13:50.996822 2022-09-02 16:26:07.319952 +118 double-breasted-jacket 92 Spree::Product \N 2022-07-12 18:13:52.344577 2022-09-02 16:26:07.938081 +92 floral-shirt 66 Spree::Product \N 2022-07-12 18:13:41.583424 2022-09-02 16:27:01.793663 +142 high-waist-pants 116 Spree::Product \N 2022-07-12 18:14:01.470925 2022-09-02 16:27:03.199042 +100 knitted-v-neck-sweater 74 Spree::Product \N 2022-07-12 18:13:44.56209 2022-09-02 16:27:06.983492 +127 laced-crop-top 101 Spree::Product \N 2022-07-12 18:13:55.662217 2022-09-02 16:27:07.853505 +66 leather-skirt-with-lacing 40 Spree::Product \N 2022-07-12 18:13:31.910474 2022-09-02 16:27:08.792747 +50 long-sleeve-sweatshirt 24 Spree::Product \N 2022-07-12 18:13:25.619472 2022-09-02 16:27:13.228068 +114 long-coat-with-belt 88 Spree::Product \N 2022-07-12 18:13:50.457509 2022-09-02 16:27:15.211718 +132 lightweight-running-jacket 106 Spree::Product \N 2022-07-12 18:13:57.718611 2022-09-02 16:27:15.915888 +119 leather-biker-jacket 93 Spree::Product \N 2022-07-12 18:13:52.708819 2022-09-02 16:27:16.727687 +99 knitted-high-neck-sweater 73 Spree::Product \N 2022-07-12 18:13:44.174709 2022-09-02 16:27:17.24782 +141 high-waist-pants-with-pockets 115 Spree::Product \N 2022-07-12 18:14:01.121957 2022-09-02 16:27:22.384356 +131 running-sweatshirt 105 Spree::Product \N 2022-07-12 18:13:57.350003 2022-09-02 16:27:33.456304 +106 scrappy-crop-top-with-tie 80 Spree::Product \N 2022-07-12 18:13:47.481286 2022-09-02 16:27:34.018458 +104 scrappy-top 78 Spree::Product \N 2022-07-12 18:13:46.678373 2022-09-02 16:27:34.551231 +93 semi-sheer-shirt-with-pockets 67 Spree::Product \N 2022-07-12 18:13:41.953205 2022-09-02 16:27:35.237365 +137 short-pants 111 Spree::Product \N 2022-07-12 18:13:59.544369 2022-09-02 16:27:35.727347 +109 sleeveless-loose-top 83 Spree::Product \N 2022-07-12 18:13:48.562812 2022-09-02 16:27:37.929657 +136 shined-pants 110 Spree::Product \N 2022-07-12 18:13:59.195099 2022-09-02 16:27:41.885035 +77 striped-shirt-dress 51 Spree::Product \N 2022-07-12 18:13:36.104067 2022-09-02 16:27:47.226898 +128 sports-bra-medium-support 102 Spree::Product \N 2022-07-12 18:13:56.078907 2022-09-02 16:27:48.452709 +123 sports-bra-low-support 97 Spree::Product \N 2022-07-12 18:13:54.256842 2022-09-02 16:27:49.304381 +129 sports-bra 103 Spree::Product \N 2022-07-12 18:13:56.47307 2022-09-02 16:27:49.783414 +134 sport-windproof-jacket 108 Spree::Product \N 2022-07-12 18:13:58.451411 2022-09-02 16:27:50.496978 +135 sport-waistcoat 109 Spree::Product \N 2022-07-12 18:13:58.844993 2022-09-02 16:27:51.084328 +130 sport-cropp-top 104 Spree::Product \N 2022-07-12 18:13:56.965012 2022-09-02 16:27:52.526309 +116 zipped-jacket 90 Spree::Product \N 2022-07-12 18:13:51.469815 2022-09-02 16:28:00.290683 +120 wool-blend-coat-with-belt 94 Spree::Product \N 2022-07-12 18:13:53.105882 2022-09-02 16:28:02.269597 +43 v-neck-t-shirt 17 Spree::Product \N 2022-07-12 18:13:23.125292 2022-09-02 16:28:04.199333 +94 v-neck-shirt 68 Spree::Product \N 2022-07-12 18:13:42.329942 2022-09-02 16:28:04.769093 +126 long-sleeves-crop-top 100 Spree::Product \N 2022-07-12 18:13:55.308272 2022-09-02 16:28:18.523906 +124 long-sleeves-yoga-crop-top 98 Spree::Product \N 2022-07-12 18:13:54.609189 2022-09-02 16:28:19.075653 +112 long-wool-blend-coat-with-belt 86 Spree::Product \N 2022-07-12 18:13:49.685374 2022-09-02 16:28:19.723758 +108 loose-t-shirt-with-pocket-imitation 82 Spree::Product \N 2022-07-12 18:13:48.187155 2022-09-02 16:28:20.274588 +133 oversize-sweatshirt 107 Spree::Product \N 2022-07-12 18:13:58.092111 2022-09-02 16:28:20.679522 +143 cool-bits 117 Spree::Product \N 2022-09-02 16:33:37.973746 \N +144 bits-by-dre 118 Spree::Product \N 2022-09-02 17:09:21.875584 \N +145 hockey-bits 119 Spree::Product \N 2022-09-02 17:19:14.023568 \N +146 learning-bits 120 Spree::Product \N 2022-09-02 17:31:19.87545 \N +147 money-bits 121 Spree::Product \N 2022-09-02 18:30:31.112102 \N +148 octo-bits 122 Spree::Product \N 2022-09-02 18:38:46.537239 \N +149 og-bits 123 Spree::Product \N 2022-09-02 18:41:05.477631 \N +150 rainbow-bits 124 Spree::Product \N 2022-09-02 18:42:26.69742 \N +151 space-bits 125 Spree::Product \N 2022-09-02 18:44:36.270215 \N +152 student-bits 126 Spree::Product \N 2022-09-02 18:50:49.35208 \N +153 stonk-bits 127 Spree::Product \N 2022-09-02 18:52:56.405091 \N +154 april-2022-summit-denver-sticker 128 Spree::Product \N 2022-09-02 18:57:21.707566 \N +155 sunset-bits 129 Spree::Product \N 2022-09-02 18:59:14.783891 \N +156 asian-american-pacific-islander-heritage-month-bits 130 Spree::Product \N 2022-09-02 19:01:55.426845 \N +2 categories/men 2 Spree::Taxon \N 2022-07-12 18:13:14.080667 2022-09-08 15:34:50.391933 +5 categories/men/shirts 5 Spree::Taxon \N 2022-07-12 18:13:14.68329 2022-09-08 15:34:50.411443 +6 categories/men/t-shirts 6 Spree::Taxon \N 2022-07-12 18:13:14.786199 2022-09-08 15:34:50.468818 +7 categories/men/sweaters 7 Spree::Taxon \N 2022-07-12 18:13:14.896758 2022-09-08 15:34:50.505046 +8 categories/men/jackets-and-coats 8 Spree::Taxon \N 2022-07-12 18:13:15.007581 2022-09-08 15:34:50.530938 +12 categories/women/sweaters 12 Spree::Taxon \N 2022-07-12 18:13:15.440709 2022-09-08 15:34:52.967938 +13 categories/women/tops-and-t-shirts 13 Spree::Taxon \N 2022-07-12 18:13:15.544872 2022-09-08 15:34:52.996035 +14 categories/women/jackets-and-coats 14 Spree::Taxon \N 2022-07-12 18:13:15.653372 2022-09-08 15:34:53.025033 +157 categories/events 20 Spree::Taxon \N 2022-09-08 15:35:17.890243 \N +158 brands 27 Spree::Taxon \N 2022-09-08 15:35:27.741904 \N +159 brands/datadog 28 Spree::Taxon \N 2022-09-08 15:35:34.002604 \N +160 categories/stickers 29 Spree::Taxon \N 2022-09-08 15:37:54.657045 \N +161 aapi-heritage-month-bits 130 Spree::Product \N 2022-09-08 15:40:49.280758 \N +\. + + +-- +-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.schema_migrations (version) FROM stdin; +20211203185331 +20211203185340 +20211203185341 +20211203185342 +20211203185343 +20211203185344 +20211203185345 +20211203185346 +20211203185347 +20211203185348 +20211203185349 +20211203185350 +20211203185351 +20211203185352 +20211203185353 +20211203185354 +20211203185355 +20211203185356 +20211203185357 +20211203185358 +20211203185359 +20211203185360 +20211203185361 +20211203185362 +20211203185363 +20211203185364 +20211203185365 +20211203185366 +20211203185367 +20211203185368 +20211203185369 +20211203185370 +20211203185371 +20211203185372 +20211203185373 +20211203185374 +20211203185375 +20211203185376 +20211203185377 +20211203185378 +20211203185379 +20211203185380 +20211203185381 +20211203185382 +20211203185383 +20211203185384 +20211203185385 +20211203185386 +20211203185387 +\. + + +-- +-- Data for Name: spree_addresses; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_addresses (id, firstname, lastname, address1, address2, city, zipcode, phone, state_name, alternative_phone, company, state_id, country_id, created_at, updated_at, user_id, deleted_at, label, public_metadata, private_metadata) FROM stdin; +1 Adele Satterfield 04245 Earlene Extension Suite 250 West Zadastad 16804 (778)684-6703 x261 \N \N \N 516 224 2022-07-12 18:13:09.456662 2022-07-12 18:13:09.456662 \N \N \N \N \N +2 Darla Kub 214 Dara Fork Apt. 821 Lake Lavinia 16804 922-854-2026 x1611 \N \N \N 516 224 2022-07-12 18:13:09.478497 2022-07-12 18:13:09.478497 \N \N \N \N \N +3 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:51:15.386159 2024-02-09 22:51:15.386159 \N \N \N \N \N +4 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:51:15.403901 2024-02-09 22:51:15.403901 \N \N \N \N \N +5 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:52:13.647492 2024-02-09 22:52:13.647492 \N \N \N \N \N +6 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:52:13.665449 2024-02-09 22:52:13.665449 \N \N \N \N \N +7 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:53:12.041411 2024-02-09 22:53:12.041411 \N \N \N \N \N +8 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:53:12.059131 2024-02-09 22:53:12.059131 \N \N \N \N \N +9 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:54:10.4952 2024-02-09 22:54:10.4952 \N \N \N \N \N +10 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:54:10.511737 2024-02-09 22:54:10.511737 \N \N \N \N \N +11 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:55:08.972055 2024-02-09 22:55:08.972055 \N \N \N \N \N +12 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:55:08.989945 2024-02-09 22:55:08.989945 \N \N \N \N \N +13 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:56:07.468359 2024-02-09 22:56:07.468359 \N \N \N \N \N +14 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 22:56:07.484751 2024-02-09 22:56:07.484751 \N \N \N \N \N +15 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 23:12:38.701527 2024-02-09 23:12:38.701527 \N \N \N \N \N +16 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-09 23:12:38.719535 2024-02-09 23:12:38.719535 \N \N \N \N \N +17 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 02:50:50.500654 2024-02-10 02:50:50.500654 \N \N \N \N \N +18 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 02:50:50.516822 2024-02-10 02:50:50.516822 \N \N \N \N \N +19 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 06:06:54.017958 2024-02-10 06:06:54.017958 \N \N \N \N \N +20 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 06:06:54.038437 2024-02-10 06:06:54.038437 \N \N \N \N \N +21 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 12:00:19.503403 2024-02-10 12:00:19.503403 \N \N \N \N \N +22 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 12:00:19.520349 2024-02-10 12:00:19.520349 \N \N \N \N \N +23 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 12:55:47.013736 2024-02-10 12:55:47.013736 \N \N \N \N \N +24 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 12:55:47.031308 2024-02-10 12:55:47.031308 \N \N \N \N \N +25 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 14:20:39.563845 2024-02-10 14:20:39.563845 \N \N \N \N \N +26 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 14:20:39.582161 2024-02-10 14:20:39.582161 \N \N \N \N \N +27 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 15:55:28.215476 2024-02-10 15:55:28.215476 \N \N \N \N \N +28 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 15:55:28.234386 2024-02-10 15:55:28.234386 \N \N \N \N \N +29 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 16:56:27.755566 2024-02-10 16:56:27.755566 \N \N \N \N \N +30 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 16:56:27.774254 2024-02-10 16:56:27.774254 \N \N \N \N \N +31 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 21:00:28.258955 2024-02-10 21:00:28.258955 \N \N \N \N \N +32 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 21:00:28.316252 2024-02-10 21:00:28.316252 \N \N \N \N \N +33 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 23:02:31.319057 2024-02-10 23:02:31.319057 \N \N \N \N \N +34 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-10 23:02:31.338506 2024-02-10 23:02:31.338506 \N \N \N \N \N +35 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 02:45:37.78059 2024-02-11 02:45:37.78059 \N \N \N \N \N +36 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 02:45:37.798624 2024-02-11 02:45:37.798624 \N \N \N \N \N +37 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 06:00:08.394234 2024-02-11 06:00:08.394234 \N \N \N \N \N +38 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 06:00:08.42168 2024-02-11 06:00:08.42168 \N \N \N \N \N +39 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 09:54:50.051337 2024-02-11 09:54:50.051337 \N \N \N \N \N +40 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 09:54:50.070334 2024-02-11 09:54:50.070334 \N \N \N \N \N +41 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 13:55:27.600968 2024-02-11 13:55:27.600968 \N \N \N \N \N +42 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 13:55:27.619391 2024-02-11 13:55:27.619391 \N \N \N \N \N +43 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 15:06:13.161574 2024-02-11 15:06:13.161574 \N \N \N \N \N +44 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 15:06:13.178984 2024-02-11 15:06:13.178984 \N \N \N \N \N +45 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 20:00:57.337895 2024-02-11 20:00:57.337895 \N \N \N \N \N +46 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 20:00:57.356331 2024-02-11 20:00:57.356331 \N \N \N \N \N +47 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 21:01:59.808862 2024-02-11 21:01:59.808862 \N \N \N \N \N +48 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-11 21:01:59.828391 2024-02-11 21:01:59.828391 \N \N \N \N \N +49 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 00:21:54.59996 2024-02-12 00:21:54.59996 \N \N \N \N \N +50 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 00:21:54.619223 2024-02-12 00:21:54.619223 \N \N \N \N \N +51 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 02:43:54.295948 2024-02-12 02:43:54.295948 \N \N \N \N \N +52 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 02:43:54.314189 2024-02-12 02:43:54.314189 \N \N \N \N \N +53 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 06:13:15.220799 2024-02-12 06:13:15.220799 \N \N \N \N \N +54 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 06:13:15.239116 2024-02-12 06:13:15.239116 \N \N \N \N \N +55 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 09:00:28.451255 2024-02-12 09:00:28.451255 \N \N \N \N \N +56 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 09:00:28.470188 2024-02-12 09:00:28.470188 \N \N \N \N \N +57 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 10:48:51.715063 2024-02-12 10:48:51.715063 \N \N \N \N \N +58 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 10:48:51.732925 2024-02-12 10:48:51.732925 \N \N \N \N \N +59 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 12:23:49.255634 2024-02-12 12:23:49.255634 \N \N \N \N \N +60 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 12:23:49.273691 2024-02-12 12:23:49.273691 \N \N \N \N \N +61 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:11:07.509627 2024-02-12 13:11:07.509627 \N \N \N \N \N +62 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:11:07.529141 2024-02-12 13:11:07.529141 \N \N \N \N \N +63 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:12:04.48554 2024-02-12 13:12:04.48554 \N \N \N \N \N +64 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:12:04.528276 2024-02-12 13:12:04.528276 \N \N \N \N \N +65 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:13:01.53803 2024-02-12 13:13:01.53803 \N \N \N \N \N +66 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:13:01.552546 2024-02-12 13:13:01.552546 \N \N \N \N \N +67 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:13:58.803914 2024-02-12 13:13:58.803914 \N \N \N \N \N +68 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:13:58.819798 2024-02-12 13:13:58.819798 \N \N \N \N \N +71 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:15:52.724407 2024-02-12 13:15:52.724407 \N \N \N \N \N +72 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:15:52.73932 2024-02-12 13:15:52.73932 \N \N \N \N \N +73 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:16:49.846063 2024-02-12 13:16:49.846063 \N \N \N \N \N +74 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:16:49.85984 2024-02-12 13:16:49.85984 \N \N \N \N \N +75 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:17:46.648341 2024-02-12 13:17:46.648341 \N \N \N \N \N +76 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:17:46.661777 2024-02-12 13:17:46.661777 \N \N \N \N \N +1689 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.75227 2024-02-12 20:33:11.75227 \N \N \N \N \N +1690 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.795566 2024-02-12 20:33:11.795566 \N \N \N \N \N +1695 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.318916 2024-02-12 20:33:12.318916 \N \N \N \N \N +1697 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.371245 2024-02-12 20:33:12.371245 \N \N \N \N \N +1705 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.930759 2024-02-12 20:33:12.930759 \N \N \N \N \N +1706 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.981536 2024-02-12 20:33:12.981536 \N \N \N \N \N +1711 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.594688 2024-02-12 20:33:13.594688 \N \N \N \N \N +1713 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.650105 2024-02-12 20:33:13.650105 \N \N \N \N \N +1721 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.452116 2024-02-12 20:33:14.452116 \N \N \N \N \N +1722 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.509543 2024-02-12 20:33:14.509543 \N \N \N \N \N +1729 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.048577 2024-02-12 20:33:15.048577 \N \N \N \N \N +1730 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.084575 2024-02-12 20:33:15.084575 \N \N \N \N \N +1737 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.720473 2024-02-12 20:33:15.720473 \N \N \N \N \N +1738 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.761371 2024-02-12 20:33:15.761371 \N \N \N \N \N +1744 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.222188 2024-02-12 20:33:16.222188 \N \N \N \N \N +1745 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.276804 2024-02-12 20:33:16.276804 \N \N \N \N \N +1753 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.870523 2024-02-12 20:33:16.870523 \N \N \N \N \N +1754 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.985045 2024-02-12 20:33:16.985045 \N \N \N \N \N +1759 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.494837 2024-02-12 20:33:17.494837 \N \N \N \N \N +1761 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.585647 2024-02-12 20:33:17.585647 \N \N \N \N \N +1766 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.126974 2024-02-12 20:33:18.126974 \N \N \N \N \N +1769 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.228503 2024-02-12 20:33:18.228503 \N \N \N \N \N +1772 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.849809 2024-02-12 20:33:18.849809 \N \N \N \N \N +1774 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.913759 2024-02-12 20:33:18.913759 \N \N \N \N \N +1782 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.441325 2024-02-12 20:33:19.441325 \N \N \N \N \N +1783 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.489027 2024-02-12 20:33:19.489027 \N \N \N \N \N +1789 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.138494 2024-02-12 20:33:20.138494 \N \N \N \N \N +1790 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.202037 2024-02-12 20:33:20.202037 \N \N \N \N \N +1795 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.889201 2024-02-12 20:33:20.889201 \N \N \N \N \N +1797 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.000613 2024-02-12 20:33:21.000613 \N \N \N \N \N +1803 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.721965 2024-02-12 20:33:21.721965 \N \N \N \N \N +1804 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.823089 2024-02-12 20:33:21.823089 \N \N \N \N \N +1811 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.263602 2024-02-12 20:33:22.263602 \N \N \N \N \N +1812 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.320956 2024-02-12 20:33:22.320956 \N \N \N \N \N +1819 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.847998 2024-02-12 20:33:22.847998 \N \N \N \N \N +1820 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.917548 2024-02-12 20:33:22.917548 \N \N \N \N \N +1827 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.6063 2024-02-12 20:33:23.6063 \N \N \N \N \N +1828 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.648652 2024-02-12 20:33:23.648652 \N \N \N \N \N +1835 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.174861 2024-02-12 20:33:24.174861 \N \N \N \N \N +1837 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.219238 2024-02-12 20:33:24.219238 \N \N \N \N \N +1843 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.744053 2024-02-12 20:33:24.744053 \N \N \N \N \N +1844 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.824044 2024-02-12 20:33:24.824044 \N \N \N \N \N +69 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:14:55.822495 2024-02-12 13:14:55.822495 \N \N \N \N \N +70 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:14:55.838934 2024-02-12 13:14:55.838934 \N \N \N \N \N +77 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:18:43.591996 2024-02-12 13:18:43.591996 \N \N \N \N \N +78 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:18:43.607969 2024-02-12 13:18:43.607969 \N \N \N \N \N +79 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:19:40.574925 2024-02-12 13:19:40.574925 \N \N \N \N \N +80 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:19:40.588623 2024-02-12 13:19:40.588623 \N \N \N \N \N +81 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:20:37.430385 2024-02-12 13:20:37.430385 \N \N \N \N \N +82 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:20:37.44471 2024-02-12 13:20:37.44471 \N \N \N \N \N +83 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:21:34.347456 2024-02-12 13:21:34.347456 \N \N \N \N \N +84 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:21:34.362377 2024-02-12 13:21:34.362377 \N \N \N \N \N +85 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:22:31.288424 2024-02-12 13:22:31.288424 \N \N \N \N \N +86 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:22:31.305105 2024-02-12 13:22:31.305105 \N \N \N \N \N +87 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:23:28.068748 2024-02-12 13:23:28.068748 \N \N \N \N \N +88 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:23:28.085622 2024-02-12 13:23:28.085622 \N \N \N \N \N +89 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:24:24.919495 2024-02-12 13:24:24.919495 \N \N \N \N \N +90 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:24:24.933598 2024-02-12 13:24:24.933598 \N \N \N \N \N +91 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:25:21.79022 2024-02-12 13:25:21.79022 \N \N \N \N \N +92 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:25:21.804364 2024-02-12 13:25:21.804364 \N \N \N \N \N +93 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:26:18.704834 2024-02-12 13:26:18.704834 \N \N \N \N \N +94 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:26:18.719996 2024-02-12 13:26:18.719996 \N \N \N \N \N +95 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:27:15.415441 2024-02-12 13:27:15.415441 \N \N \N \N \N +96 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:27:15.431168 2024-02-12 13:27:15.431168 \N \N \N \N \N +97 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:28:12.262153 2024-02-12 13:28:12.262153 \N \N \N \N \N +98 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:28:12.277663 2024-02-12 13:28:12.277663 \N \N \N \N \N +99 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:29:09.013178 2024-02-12 13:29:09.013178 \N \N \N \N \N +100 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:29:09.02796 2024-02-12 13:29:09.02796 \N \N \N \N \N +101 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:30:05.887549 2024-02-12 13:30:05.887549 \N \N \N \N \N +102 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:30:05.903713 2024-02-12 13:30:05.903713 \N \N \N \N \N +103 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:31:02.674838 2024-02-12 13:31:02.674838 \N \N \N \N \N +104 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:31:02.689084 2024-02-12 13:31:02.689084 \N \N \N \N \N +105 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:31:59.610544 2024-02-12 13:31:59.610544 \N \N \N \N \N +106 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:31:59.635396 2024-02-12 13:31:59.635396 \N \N \N \N \N +107 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:32:56.74673 2024-02-12 13:32:56.74673 \N \N \N \N \N +108 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:32:56.76105 2024-02-12 13:32:56.76105 \N \N \N \N \N +109 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:33:53.59631 2024-02-12 13:33:53.59631 \N \N \N \N \N +110 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:33:53.610843 2024-02-12 13:33:53.610843 \N \N \N \N \N +111 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:34:50.492695 2024-02-12 13:34:50.492695 \N \N \N \N \N +112 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:34:50.50683 2024-02-12 13:34:50.50683 \N \N \N \N \N +113 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:35:47.238365 2024-02-12 13:35:47.238365 \N \N \N \N \N +114 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:35:47.253183 2024-02-12 13:35:47.253183 \N \N \N \N \N +115 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:36:44.07745 2024-02-12 13:36:44.07745 \N \N \N \N \N +116 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:36:44.092168 2024-02-12 13:36:44.092168 \N \N \N \N \N +117 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:37:41.099386 2024-02-12 13:37:41.099386 \N \N \N \N \N +118 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:37:41.113078 2024-02-12 13:37:41.113078 \N \N \N \N \N +119 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:38:38.177031 2024-02-12 13:38:38.177031 \N \N \N \N \N +120 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:38:38.192886 2024-02-12 13:38:38.192886 \N \N \N \N \N +121 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:39:34.966572 2024-02-12 13:39:34.966572 \N \N \N \N \N +122 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:39:34.981406 2024-02-12 13:39:34.981406 \N \N \N \N \N +123 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:40:31.720221 2024-02-12 13:40:31.720221 \N \N \N \N \N +124 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:40:31.734385 2024-02-12 13:40:31.734385 \N \N \N \N \N +125 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:41:28.44496 2024-02-12 13:41:28.44496 \N \N \N \N \N +126 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:41:28.457838 2024-02-12 13:41:28.457838 \N \N \N \N \N +127 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:42:25.380547 2024-02-12 13:42:25.380547 \N \N \N \N \N +128 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:42:25.394491 2024-02-12 13:42:25.394491 \N \N \N \N \N +129 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:43:22.309445 2024-02-12 13:43:22.309445 \N \N \N \N \N +130 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:43:22.323669 2024-02-12 13:43:22.323669 \N \N \N \N \N +131 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:44:18.887949 2024-02-12 13:44:18.887949 \N \N \N \N \N +132 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:44:18.901213 2024-02-12 13:44:18.901213 \N \N \N \N \N +133 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:45:15.699508 2024-02-12 13:45:15.699508 \N \N \N \N \N +134 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:45:15.714081 2024-02-12 13:45:15.714081 \N \N \N \N \N +135 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:46:12.556934 2024-02-12 13:46:12.556934 \N \N \N \N \N +136 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:46:12.571047 2024-02-12 13:46:12.571047 \N \N \N \N \N +139 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:48:06.807631 2024-02-12 13:48:06.807631 \N \N \N \N \N +140 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:48:06.822426 2024-02-12 13:48:06.822426 \N \N \N \N \N +143 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:50:00.53892 2024-02-12 13:50:00.53892 \N \N \N \N \N +144 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:50:00.552804 2024-02-12 13:50:00.552804 \N \N \N \N \N +145 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:50:57.43632 2024-02-12 13:50:57.43632 \N \N \N \N \N +146 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:50:57.451081 2024-02-12 13:50:57.451081 \N \N \N \N \N +149 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:52:51.474429 2024-02-12 13:52:51.474429 \N \N \N \N \N +150 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:52:51.488601 2024-02-12 13:52:51.488601 \N \N \N \N \N +153 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:54:45.200697 2024-02-12 13:54:45.200697 \N \N \N \N \N +154 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:54:45.215508 2024-02-12 13:54:45.215508 \N \N \N \N \N +155 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:55:42.038453 2024-02-12 13:55:42.038453 \N \N \N \N \N +156 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:55:42.053945 2024-02-12 13:55:42.053945 \N \N \N \N \N +1691 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.160629 2024-02-12 20:33:12.160629 \N \N \N \N \N +1692 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.200173 2024-02-12 20:33:12.200173 \N \N \N \N \N +1703 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.715734 2024-02-12 20:33:12.715734 \N \N \N \N \N +1704 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.769424 2024-02-12 20:33:12.769424 \N \N \N \N \N +1707 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.391917 2024-02-12 20:33:13.391917 \N \N \N \N \N +1708 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.474491 2024-02-12 20:33:13.474491 \N \N \N \N \N +1719 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.090784 2024-02-12 20:33:14.090784 \N \N \N \N \N +1720 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.259747 2024-02-12 20:33:14.259747 \N \N \N \N \N +1723 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.87917 2024-02-12 20:33:14.87917 \N \N \N \N \N +1725 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.926308 2024-02-12 20:33:14.926308 \N \N \N \N \N +1734 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.633689 2024-02-12 20:33:15.633689 \N \N \N \N \N +1736 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.68922 2024-02-12 20:33:15.68922 \N \N \N \N \N +1740 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.134015 2024-02-12 20:33:16.134015 \N \N \N \N \N +1743 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.182579 2024-02-12 20:33:16.182579 \N \N \N \N \N +1751 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.717948 2024-02-12 20:33:16.717948 \N \N \N \N \N +1752 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.849608 2024-02-12 20:33:16.849608 \N \N \N \N \N +1756 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.433761 2024-02-12 20:33:17.433761 \N \N \N \N \N +1760 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.499511 2024-02-12 20:33:17.499511 \N \N \N \N \N +1767 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.163111 2024-02-12 20:33:18.163111 \N \N \N \N \N +1770 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.254106 2024-02-12 20:33:18.254106 \N \N \N \N \N +1776 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.949669 2024-02-12 20:33:18.949669 \N \N \N \N \N +1777 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.992507 2024-02-12 20:33:18.992507 \N \N \N \N \N +1784 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.498606 2024-02-12 20:33:19.498606 \N \N \N \N \N +1786 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.632722 2024-02-12 20:33:19.632722 \N \N \N \N \N +1791 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.225322 2024-02-12 20:33:20.225322 \N \N \N \N \N +1792 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.26512 2024-02-12 20:33:20.26512 \N \N \N \N \N +1798 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.087831 2024-02-12 20:33:21.087831 \N \N \N \N \N +1799 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.157637 2024-02-12 20:33:21.157637 \N \N \N \N \N +1806 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.873791 2024-02-12 20:33:21.873791 \N \N \N \N \N +1807 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.914648 2024-02-12 20:33:21.914648 \N \N \N \N \N +1814 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.409834 2024-02-12 20:33:22.409834 \N \N \N \N \N +1815 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.447487 2024-02-12 20:33:22.447487 \N \N \N \N \N +1821 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.954615 2024-02-12 20:33:22.954615 \N \N \N \N \N +1822 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.006332 2024-02-12 20:33:23.006332 \N \N \N \N \N +1829 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.74342 2024-02-12 20:33:23.74342 \N \N \N \N \N +1830 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.809372 2024-02-12 20:33:23.809372 \N \N \N \N \N +1839 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.326141 2024-02-12 20:33:24.326141 \N \N \N \N \N +1840 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.372244 2024-02-12 20:33:24.372244 \N \N \N \N \N +1845 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.900314 2024-02-12 20:33:24.900314 \N \N \N \N \N +1846 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.963055 2024-02-12 20:33:24.963055 \N \N \N \N \N +1855 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.533574 2024-02-12 20:33:25.533574 \N \N \N \N \N +1856 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.583237 2024-02-12 20:33:25.583237 \N \N \N \N \N +137 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:47:09.787998 2024-02-12 13:47:09.787998 \N \N \N \N \N +138 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:47:09.802995 2024-02-12 13:47:09.802995 \N \N \N \N \N +141 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:49:03.677881 2024-02-12 13:49:03.677881 \N \N \N \N \N +142 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:49:03.69386 2024-02-12 13:49:03.69386 \N \N \N \N \N +147 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:51:54.439523 2024-02-12 13:51:54.439523 \N \N \N \N \N +148 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:51:54.453569 2024-02-12 13:51:54.453569 \N \N \N \N \N +151 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:53:48.314326 2024-02-12 13:53:48.314326 \N \N \N \N \N +152 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:53:48.330466 2024-02-12 13:53:48.330466 \N \N \N \N \N +157 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:56:39.130602 2024-02-12 13:56:39.130602 \N \N \N \N \N +158 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:56:39.145954 2024-02-12 13:56:39.145954 \N \N \N \N \N +159 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:57:35.927669 2024-02-12 13:57:35.927669 \N \N \N \N \N +160 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:57:35.950782 2024-02-12 13:57:35.950782 \N \N \N \N \N +161 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:58:32.735832 2024-02-12 13:58:32.735832 \N \N \N \N \N +162 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:58:32.753136 2024-02-12 13:58:32.753136 \N \N \N \N \N +163 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:59:29.61652 2024-02-12 13:59:29.61652 \N \N \N \N \N +164 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 13:59:29.630746 2024-02-12 13:59:29.630746 \N \N \N \N \N +165 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:00:26.405063 2024-02-12 14:00:26.405063 \N \N \N \N \N +166 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:00:26.419238 2024-02-12 14:00:26.419238 \N \N \N \N \N +167 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:01:23.430922 2024-02-12 14:01:23.430922 \N \N \N \N \N +168 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:01:23.446008 2024-02-12 14:01:23.446008 \N \N \N \N \N +169 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:02:20.310605 2024-02-12 14:02:20.310605 \N \N \N \N \N +170 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:02:20.325335 2024-02-12 14:02:20.325335 \N \N \N \N \N +171 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:03:17.009853 2024-02-12 14:03:17.009853 \N \N \N \N \N +172 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:03:17.024564 2024-02-12 14:03:17.024564 \N \N \N \N \N +173 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:04:13.968214 2024-02-12 14:04:13.968214 \N \N \N \N \N +174 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:04:13.982216 2024-02-12 14:04:13.982216 \N \N \N \N \N +175 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:05:10.785057 2024-02-12 14:05:10.785057 \N \N \N \N \N +176 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:05:10.800915 2024-02-12 14:05:10.800915 \N \N \N \N \N +177 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:06:07.790211 2024-02-12 14:06:07.790211 \N \N \N \N \N +178 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:06:07.804601 2024-02-12 14:06:07.804601 \N \N \N \N \N +179 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:07:04.61283 2024-02-12 14:07:04.61283 \N \N \N \N \N +180 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:07:04.627882 2024-02-12 14:07:04.627882 \N \N \N \N \N +181 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:08:01.487966 2024-02-12 14:08:01.487966 \N \N \N \N \N +182 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:08:01.501813 2024-02-12 14:08:01.501813 \N \N \N \N \N +183 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:08:58.296677 2024-02-12 14:08:58.296677 \N \N \N \N \N +184 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:08:58.31026 2024-02-12 14:08:58.31026 \N \N \N \N \N +185 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:09:55.254368 2024-02-12 14:09:55.254368 \N \N \N \N \N +186 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:09:55.268493 2024-02-12 14:09:55.268493 \N \N \N \N \N +187 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:10:52.147556 2024-02-12 14:10:52.147556 \N \N \N \N \N +188 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:10:52.162296 2024-02-12 14:10:52.162296 \N \N \N \N \N +189 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:11:48.986118 2024-02-12 14:11:48.986118 \N \N \N \N \N +190 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:11:49.00222 2024-02-12 14:11:49.00222 \N \N \N \N \N +191 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:12:45.908407 2024-02-12 14:12:45.908407 \N \N \N \N \N +192 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:12:45.922976 2024-02-12 14:12:45.922976 \N \N \N \N \N +193 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:13:42.93598 2024-02-12 14:13:42.93598 \N \N \N \N \N +194 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:13:42.949983 2024-02-12 14:13:42.949983 \N \N \N \N \N +195 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:14:39.774536 2024-02-12 14:14:39.774536 \N \N \N \N \N +196 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:14:39.787946 2024-02-12 14:14:39.787946 \N \N \N \N \N +197 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:15:36.642862 2024-02-12 14:15:36.642862 \N \N \N \N \N +198 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:15:36.657477 2024-02-12 14:15:36.657477 \N \N \N \N \N +199 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:16:33.602327 2024-02-12 14:16:33.602327 \N \N \N \N \N +200 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:16:33.616525 2024-02-12 14:16:33.616525 \N \N \N \N \N +201 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:17:30.587649 2024-02-12 14:17:30.587649 \N \N \N \N \N +202 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:17:30.612272 2024-02-12 14:17:30.612272 \N \N \N \N \N +203 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:18:27.464773 2024-02-12 14:18:27.464773 \N \N \N \N \N +204 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:18:27.480655 2024-02-12 14:18:27.480655 \N \N \N \N \N +205 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:19:24.275315 2024-02-12 14:19:24.275315 \N \N \N \N \N +206 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:19:24.289754 2024-02-12 14:19:24.289754 \N \N \N \N \N +207 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:20:21.142131 2024-02-12 14:20:21.142131 \N \N \N \N \N +208 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:20:21.156288 2024-02-12 14:20:21.156288 \N \N \N \N \N +219 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:26:02.548892 2024-02-12 14:26:02.548892 \N \N \N \N \N +220 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:26:02.562732 2024-02-12 14:26:02.562732 \N \N \N \N \N +221 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:26:59.386414 2024-02-12 14:26:59.386414 \N \N \N \N \N +222 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:26:59.401003 2024-02-12 14:26:59.401003 \N \N \N \N \N +225 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:28:53.213378 2024-02-12 14:28:53.213378 \N \N \N \N \N +226 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:28:53.229285 2024-02-12 14:28:53.229285 \N \N \N \N \N +227 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:29:50.309065 2024-02-12 14:29:50.309065 \N \N \N \N \N +228 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:29:50.323698 2024-02-12 14:29:50.323698 \N \N \N \N \N +229 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:30:46.996755 2024-02-12 14:30:46.996755 \N \N \N \N \N +230 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:30:47.012436 2024-02-12 14:30:47.012436 \N \N \N \N \N +231 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:31:43.846667 2024-02-12 14:31:43.846667 \N \N \N \N \N +232 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:31:43.860877 2024-02-12 14:31:43.860877 \N \N \N \N \N +233 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:32:40.706486 2024-02-12 14:32:40.706486 \N \N \N \N \N +234 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:32:40.72148 2024-02-12 14:32:40.72148 \N \N \N \N \N +237 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:34:34.502574 2024-02-12 14:34:34.502574 \N \N \N \N \N +238 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:34:34.515372 2024-02-12 14:34:34.515372 \N \N \N \N \N +1693 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.234118 2024-02-12 20:33:12.234118 \N \N \N \N \N +1696 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.323304 2024-02-12 20:33:12.323304 \N \N \N \N \N +1709 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.502853 2024-02-12 20:33:13.502853 \N \N \N \N \N +1712 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.619409 2024-02-12 20:33:13.619409 \N \N \N \N \N +1726 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.942415 2024-02-12 20:33:14.942415 \N \N \N \N \N +1728 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.023087 2024-02-12 20:33:15.023087 \N \N \N \N \N +1742 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.17931 2024-02-12 20:33:16.17931 \N \N \N \N \N +1746 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.289541 2024-02-12 20:33:16.289541 \N \N \N \N \N +1758 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.484886 2024-02-12 20:33:17.484886 \N \N \N \N \N +1762 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.637903 2024-02-12 20:33:17.637903 \N \N \N \N \N +1775 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.938095 2024-02-12 20:33:18.938095 \N \N \N \N \N +1778 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.030526 2024-02-12 20:33:19.030526 \N \N \N \N \N +1793 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.36831 2024-02-12 20:33:20.36831 \N \N \N \N \N +1794 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.438348 2024-02-12 20:33:20.438348 \N \N \N \N \N +1809 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.949687 2024-02-12 20:33:21.949687 \N \N \N \N \N +1810 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.071395 2024-02-12 20:33:22.071395 \N \N \N \N \N +1824 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.18945 2024-02-12 20:33:23.18945 \N \N \N \N \N +1826 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.3284 2024-02-12 20:33:23.3284 \N \N \N \N \N +1841 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.404188 2024-02-12 20:33:24.404188 \N \N \N \N \N +1842 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.507459 2024-02-12 20:33:24.507459 \N \N \N \N \N +1857 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.660122 2024-02-12 20:33:25.660122 \N \N \N \N \N +1858 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.743914 2024-02-12 20:33:25.743914 \N \N \N \N \N +1873 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.820741 2024-02-12 20:33:26.820741 \N \N \N \N \N +1874 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.928259 2024-02-12 20:33:26.928259 \N \N \N \N \N +1889 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.998009 2024-02-12 20:33:27.998009 \N \N \N \N \N +1890 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.084157 2024-02-12 20:33:28.084157 \N \N \N \N \N +1905 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.10796 2024-02-12 20:33:29.10796 \N \N \N \N \N +1906 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.190281 2024-02-12 20:33:29.190281 \N \N \N \N \N +1920 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.192189 2024-02-12 20:33:30.192189 \N \N \N \N \N +1922 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.275022 2024-02-12 20:33:30.275022 \N \N \N \N \N +1937 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.46161 2024-02-12 20:33:31.46161 \N \N \N \N \N +1938 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.57789 2024-02-12 20:33:31.57789 \N \N \N \N \N +1953 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.776163 2024-02-12 20:33:32.776163 \N \N \N \N \N +1954 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.877439 2024-02-12 20:33:32.877439 \N \N \N \N \N +1968 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.990437 2024-02-12 20:33:33.990437 \N \N \N \N \N +1970 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.121187 2024-02-12 20:33:34.121187 \N \N \N \N \N +1983 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.252707 2024-02-12 20:33:35.252707 \N \N \N \N \N +1986 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.376169 2024-02-12 20:33:35.376169 \N \N \N \N \N +1996 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.381083 2024-02-12 20:33:36.381083 \N \N \N \N \N +2001 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.483737 2024-02-12 20:33:36.483737 \N \N \N \N \N +209 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:21:18.538879 2024-02-12 14:21:18.538879 \N \N \N \N \N +210 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:21:18.55319 2024-02-12 14:21:18.55319 \N \N \N \N \N +211 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:22:15.205637 2024-02-12 14:22:15.205637 \N \N \N \N \N +212 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:22:15.219684 2024-02-12 14:22:15.219684 \N \N \N \N \N +213 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:23:12.182412 2024-02-12 14:23:12.182412 \N \N \N \N \N +214 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:23:12.196554 2024-02-12 14:23:12.196554 \N \N \N \N \N +215 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:24:08.929849 2024-02-12 14:24:08.929849 \N \N \N \N \N +216 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:24:08.944807 2024-02-12 14:24:08.944807 \N \N \N \N \N +217 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:25:05.692676 2024-02-12 14:25:05.692676 \N \N \N \N \N +218 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:25:05.70729 2024-02-12 14:25:05.70729 \N \N \N \N \N +223 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:27:56.291729 2024-02-12 14:27:56.291729 \N \N \N \N \N +224 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:27:56.306569 2024-02-12 14:27:56.306569 \N \N \N \N \N +235 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:33:37.685835 2024-02-12 14:33:37.685835 \N \N \N \N \N +236 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:33:37.70298 2024-02-12 14:33:37.70298 \N \N \N \N \N +239 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:35:31.414108 2024-02-12 14:35:31.414108 \N \N \N \N \N +240 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:35:31.433584 2024-02-12 14:35:31.433584 \N \N \N \N \N +241 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:36:28.438736 2024-02-12 14:36:28.438736 \N \N \N \N \N +242 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:36:28.456828 2024-02-12 14:36:28.456828 \N \N \N \N \N +243 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:37:25.374317 2024-02-12 14:37:25.374317 \N \N \N \N \N +244 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:37:25.388617 2024-02-12 14:37:25.388617 \N \N \N \N \N +245 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:38:22.407339 2024-02-12 14:38:22.407339 \N \N \N \N \N +246 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:38:22.425143 2024-02-12 14:38:22.425143 \N \N \N \N \N +247 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:39:19.342414 2024-02-12 14:39:19.342414 \N \N \N \N \N +248 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:39:19.357338 2024-02-12 14:39:19.357338 \N \N \N \N \N +249 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:40:16.30935 2024-02-12 14:40:16.30935 \N \N \N \N \N +250 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:40:16.323609 2024-02-12 14:40:16.323609 \N \N \N \N \N +251 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:41:13.157438 2024-02-12 14:41:13.157438 \N \N \N \N \N +252 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:41:13.171055 2024-02-12 14:41:13.171055 \N \N \N \N \N +253 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:42:10.037281 2024-02-12 14:42:10.037281 \N \N \N \N \N +254 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:42:10.052965 2024-02-12 14:42:10.052965 \N \N \N \N \N +255 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:43:07.347988 2024-02-12 14:43:07.347988 \N \N \N \N \N +256 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:43:07.362225 2024-02-12 14:43:07.362225 \N \N \N \N \N +257 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:44:04.148302 2024-02-12 14:44:04.148302 \N \N \N \N \N +258 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:44:04.1631 2024-02-12 14:44:04.1631 \N \N \N \N \N +259 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:45:01.058824 2024-02-12 14:45:01.058824 \N \N \N \N \N +260 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:45:01.074738 2024-02-12 14:45:01.074738 \N \N \N \N \N +261 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:45:57.899346 2024-02-12 14:45:57.899346 \N \N \N \N \N +262 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:45:57.912461 2024-02-12 14:45:57.912461 \N \N \N \N \N +263 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:46:54.807062 2024-02-12 14:46:54.807062 \N \N \N \N \N +264 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:46:54.821262 2024-02-12 14:46:54.821262 \N \N \N \N \N +265 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:47:51.488412 2024-02-12 14:47:51.488412 \N \N \N \N \N +266 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:47:51.502094 2024-02-12 14:47:51.502094 \N \N \N \N \N +267 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:48:48.303019 2024-02-12 14:48:48.303019 \N \N \N \N \N +268 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:48:48.317068 2024-02-12 14:48:48.317068 \N \N \N \N \N +269 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:49:45.253875 2024-02-12 14:49:45.253875 \N \N \N \N \N +270 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:49:45.268807 2024-02-12 14:49:45.268807 \N \N \N \N \N +271 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:50:42.282726 2024-02-12 14:50:42.282726 \N \N \N \N \N +272 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:50:42.298689 2024-02-12 14:50:42.298689 \N \N \N \N \N +273 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:51:39.205938 2024-02-12 14:51:39.205938 \N \N \N \N \N +274 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:51:39.219789 2024-02-12 14:51:39.219789 \N \N \N \N \N +275 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:52:36.102038 2024-02-12 14:52:36.102038 \N \N \N \N \N +276 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:52:36.115677 2024-02-12 14:52:36.115677 \N \N \N \N \N +277 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:53:32.900553 2024-02-12 14:53:32.900553 \N \N \N \N \N +278 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:53:32.915461 2024-02-12 14:53:32.915461 \N \N \N \N \N +279 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:54:29.904635 2024-02-12 14:54:29.904635 \N \N \N \N \N +280 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:54:29.919958 2024-02-12 14:54:29.919958 \N \N \N \N \N +281 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:55:26.783902 2024-02-12 14:55:26.783902 \N \N \N \N \N +282 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:55:26.797858 2024-02-12 14:55:26.797858 \N \N \N \N \N +283 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:56:23.640649 2024-02-12 14:56:23.640649 \N \N \N \N \N +284 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:56:23.657075 2024-02-12 14:56:23.657075 \N \N \N \N \N +285 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:57:20.469557 2024-02-12 14:57:20.469557 \N \N \N \N \N +286 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:57:20.484358 2024-02-12 14:57:20.484358 \N \N \N \N \N +289 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:59:14.224676 2024-02-12 14:59:14.224676 \N \N \N \N \N +290 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:59:14.241647 2024-02-12 14:59:14.241647 \N \N \N \N \N +293 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:01:07.993858 2024-02-12 15:01:07.993858 \N \N \N \N \N +294 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:01:08.009833 2024-02-12 15:01:08.009833 \N \N \N \N \N +1694 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.302254 2024-02-12 20:33:12.302254 \N \N \N \N \N +1698 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.393624 2024-02-12 20:33:12.393624 \N \N \N \N \N +1710 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.569674 2024-02-12 20:33:13.569674 \N \N \N \N \N +1714 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.67754 2024-02-12 20:33:13.67754 \N \N \N \N \N +1724 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.918706 2024-02-12 20:33:14.918706 \N \N \N \N \N +1727 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.017001 2024-02-12 20:33:15.017001 \N \N \N \N \N +1739 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.078934 2024-02-12 20:33:16.078934 \N \N \N \N \N +1741 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.167419 2024-02-12 20:33:16.167419 \N \N \N \N \N +1755 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.316335 2024-02-12 20:33:17.316335 \N \N \N \N \N +1757 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.436039 2024-02-12 20:33:17.436039 \N \N \N \N \N +1771 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.763029 2024-02-12 20:33:18.763029 \N \N \N \N \N +1773 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.894501 2024-02-12 20:33:18.894501 \N \N \N \N \N +1787 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.980386 2024-02-12 20:33:19.980386 \N \N \N \N \N +1788 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.136105 2024-02-12 20:33:20.136105 \N \N \N \N \N +1805 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.855068 2024-02-12 20:33:21.855068 \N \N \N \N \N +1808 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.945996 2024-02-12 20:33:21.945996 \N \N \N \N \N +1823 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.09341 2024-02-12 20:33:23.09341 \N \N \N \N \N +1825 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.20805 2024-02-12 20:33:23.20805 \N \N \N \N \N +1836 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.188523 2024-02-12 20:33:24.188523 \N \N \N \N \N +1838 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.272865 2024-02-12 20:33:24.272865 \N \N \N \N \N +1851 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.373441 2024-02-12 20:33:25.373441 \N \N \N \N \N +1852 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.461465 2024-02-12 20:33:25.461465 \N \N \N \N \N +1867 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.615157 2024-02-12 20:33:26.615157 \N \N \N \N \N +1871 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.749108 2024-02-12 20:33:26.749108 \N \N \N \N \N +1887 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.813413 2024-02-12 20:33:27.813413 \N \N \N \N \N +1888 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.890564 2024-02-12 20:33:27.890564 \N \N \N \N \N +1900 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.01267 2024-02-12 20:33:29.01267 \N \N \N \N \N +1904 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.087178 2024-02-12 20:33:29.087178 \N \N \N \N \N +1915 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.085788 2024-02-12 20:33:30.085788 \N \N \N \N \N +1917 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.156922 2024-02-12 20:33:30.156922 \N \N \N \N \N +1931 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.261923 2024-02-12 20:33:31.261923 \N \N \N \N \N +1933 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.388234 2024-02-12 20:33:31.388234 \N \N \N \N \N +1948 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.507097 2024-02-12 20:33:32.507097 \N \N \N \N \N +1952 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.650108 2024-02-12 20:33:32.650108 \N \N \N \N \N +1967 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.891356 2024-02-12 20:33:33.891356 \N \N \N \N \N +1969 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.033801 2024-02-12 20:33:34.033801 \N \N \N \N \N +1979 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.146544 2024-02-12 20:33:35.146544 \N \N \N \N \N +1981 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.224685 2024-02-12 20:33:35.224685 \N \N \N \N \N +1995 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.227298 2024-02-12 20:33:36.227298 \N \N \N \N \N +1998 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.417979 2024-02-12 20:33:36.417979 \N \N \N \N \N +2012 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.526914 2024-02-12 20:33:37.526914 \N \N \N \N \N +2017 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.644223 2024-02-12 20:33:37.644223 \N \N \N \N \N +2029 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.84536 2024-02-12 20:33:38.84536 \N \N \N \N \N +2033 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.943608 2024-02-12 20:33:38.943608 \N \N \N \N \N +2043 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.981616 2024-02-12 20:33:39.981616 \N \N \N \N \N +2045 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.079898 2024-02-12 20:33:40.079898 \N \N \N \N \N +2059 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.061442 2024-02-12 20:33:41.061442 \N \N \N \N \N +2061 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.134428 2024-02-12 20:33:41.134428 \N \N \N \N \N +2074 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.151228 2024-02-12 20:33:42.151228 \N \N \N \N \N +2077 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.251589 2024-02-12 20:33:42.251589 \N \N \N \N \N +287 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:58:17.374523 2024-02-12 14:58:17.374523 \N \N \N \N \N +288 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 14:58:17.388579 2024-02-12 14:58:17.388579 \N \N \N \N \N +291 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:00:10.973814 2024-02-12 15:00:10.973814 \N \N \N \N \N +292 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:00:10.989831 2024-02-12 15:00:10.989831 \N \N \N \N \N +295 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:02:05.047886 2024-02-12 15:02:05.047886 \N \N \N \N \N +296 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:02:05.062524 2024-02-12 15:02:05.062524 \N \N \N \N \N +297 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:03:01.929684 2024-02-12 15:03:01.929684 \N \N \N \N \N +298 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:03:01.945008 2024-02-12 15:03:01.945008 \N \N \N \N \N +299 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:03:58.704358 2024-02-12 15:03:58.704358 \N \N \N \N \N +300 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:03:58.719582 2024-02-12 15:03:58.719582 \N \N \N \N \N +301 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:04:55.81663 2024-02-12 15:04:55.81663 \N \N \N \N \N +302 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:04:55.830196 2024-02-12 15:04:55.830196 \N \N \N \N \N +303 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:05:52.588223 2024-02-12 15:05:52.588223 \N \N \N \N \N +304 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:05:52.602007 2024-02-12 15:05:52.602007 \N \N \N \N \N +305 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:06:49.445632 2024-02-12 15:06:49.445632 \N \N \N \N \N +306 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:06:49.459322 2024-02-12 15:06:49.459322 \N \N \N \N \N +307 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:07:46.599445 2024-02-12 15:07:46.599445 \N \N \N \N \N +308 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:07:46.614907 2024-02-12 15:07:46.614907 \N \N \N \N \N +309 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:08:43.500462 2024-02-12 15:08:43.500462 \N \N \N \N \N +310 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:08:43.517219 2024-02-12 15:08:43.517219 \N \N \N \N \N +311 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:09:40.440442 2024-02-12 15:09:40.440442 \N \N \N \N \N +312 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:09:40.455745 2024-02-12 15:09:40.455745 \N \N \N \N \N +313 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:10:37.269827 2024-02-12 15:10:37.269827 \N \N \N \N \N +314 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:10:37.283482 2024-02-12 15:10:37.283482 \N \N \N \N \N +315 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:11:34.174508 2024-02-12 15:11:34.174508 \N \N \N \N \N +316 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:11:34.188957 2024-02-12 15:11:34.188957 \N \N \N \N \N +317 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:12:31.095124 2024-02-12 15:12:31.095124 \N \N \N \N \N +318 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:12:31.110342 2024-02-12 15:12:31.110342 \N \N \N \N \N +319 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:13:27.831414 2024-02-12 15:13:27.831414 \N \N \N \N \N +320 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:13:27.845934 2024-02-12 15:13:27.845934 \N \N \N \N \N +321 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:14:24.893026 2024-02-12 15:14:24.893026 \N \N \N \N \N +322 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:14:24.907052 2024-02-12 15:14:24.907052 \N \N \N \N \N +323 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:15:21.719578 2024-02-12 15:15:21.719578 \N \N \N \N \N +324 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:15:21.733151 2024-02-12 15:15:21.733151 \N \N \N \N \N +325 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:16:18.760822 2024-02-12 15:16:18.760822 \N \N \N \N \N +326 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:16:18.776388 2024-02-12 15:16:18.776388 \N \N \N \N \N +327 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:17:15.639403 2024-02-12 15:17:15.639403 \N \N \N \N \N +328 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:17:15.656946 2024-02-12 15:17:15.656946 \N \N \N \N \N +329 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:18:12.46871 2024-02-12 15:18:12.46871 \N \N \N \N \N +330 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:18:12.483877 2024-02-12 15:18:12.483877 \N \N \N \N \N +331 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:19:09.368102 2024-02-12 15:19:09.368102 \N \N \N \N \N +332 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:19:09.382228 2024-02-12 15:19:09.382228 \N \N \N \N \N +333 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:20:06.323459 2024-02-12 15:20:06.323459 \N \N \N \N \N +334 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:20:06.337816 2024-02-12 15:20:06.337816 \N \N \N \N \N +335 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:21:03.202233 2024-02-12 15:21:03.202233 \N \N \N \N \N +336 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:21:03.216511 2024-02-12 15:21:03.216511 \N \N \N \N \N +337 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:21:59.97985 2024-02-12 15:21:59.97985 \N \N \N \N \N +338 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:21:59.994031 2024-02-12 15:21:59.994031 \N \N \N \N \N +339 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:22:56.942596 2024-02-12 15:22:56.942596 \N \N \N \N \N +340 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:22:56.958701 2024-02-12 15:22:56.958701 \N \N \N \N \N +341 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:23:53.789056 2024-02-12 15:23:53.789056 \N \N \N \N \N +342 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:23:53.80663 2024-02-12 15:23:53.80663 \N \N \N \N \N +343 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:24:50.824963 2024-02-12 15:24:50.824963 \N \N \N \N \N +344 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:24:50.83902 2024-02-12 15:24:50.83902 \N \N \N \N \N +345 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:25:47.659084 2024-02-12 15:25:47.659084 \N \N \N \N \N +346 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:25:47.672664 2024-02-12 15:25:47.672664 \N \N \N \N \N +347 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:26:44.544625 2024-02-12 15:26:44.544625 \N \N \N \N \N +348 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:26:44.560991 2024-02-12 15:26:44.560991 \N \N \N \N \N +349 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:27:41.340175 2024-02-12 15:27:41.340175 \N \N \N \N \N +350 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:27:41.354418 2024-02-12 15:27:41.354418 \N \N \N \N \N +351 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:28:38.246708 2024-02-12 15:28:38.246708 \N \N \N \N \N +352 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:28:38.261549 2024-02-12 15:28:38.261549 \N \N \N \N \N +363 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:34:19.005354 2024-02-12 15:34:19.005354 \N \N \N \N \N +364 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:34:19.019644 2024-02-12 15:34:19.019644 \N \N \N \N \N +371 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:38:06.433751 2024-02-12 15:38:06.433751 \N \N \N \N \N +372 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:38:06.453606 2024-02-12 15:38:06.453606 \N \N \N \N \N +1699 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.467916 2024-02-12 20:33:12.467916 \N \N \N \N \N +1701 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.573654 2024-02-12 20:33:12.573654 \N \N \N \N \N +1715 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.874789 2024-02-12 20:33:13.874789 \N \N \N \N \N +1717 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.028791 2024-02-12 20:33:14.028791 \N \N \N \N \N +1731 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.281784 2024-02-12 20:33:15.281784 \N \N \N \N \N +1732 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.470227 2024-02-12 20:33:15.470227 \N \N \N \N \N +1747 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.567911 2024-02-12 20:33:16.567911 \N \N \N \N \N +1749 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.710501 2024-02-12 20:33:16.710501 \N \N \N \N \N +1764 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.034018 2024-02-12 20:33:18.034018 \N \N \N \N \N +1768 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.177535 2024-02-12 20:33:18.177535 \N \N \N \N \N +1781 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.434867 2024-02-12 20:33:19.434867 \N \N \N \N \N +1785 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.534511 2024-02-12 20:33:19.534511 \N \N \N \N \N +1801 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.231976 2024-02-12 20:33:21.231976 \N \N \N \N \N +1802 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.372627 2024-02-12 20:33:21.372627 \N \N \N \N \N +1816 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.482842 2024-02-12 20:33:22.482842 \N \N \N \N \N +1818 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.591661 2024-02-12 20:33:22.591661 \N \N \N \N \N +1832 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.902426 2024-02-12 20:33:23.902426 \N \N \N \N \N +1834 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.021712 2024-02-12 20:33:24.021712 \N \N \N \N \N +1848 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.104385 2024-02-12 20:33:25.104385 \N \N \N \N \N +1850 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.281006 2024-02-12 20:33:25.281006 \N \N \N \N \N +1865 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.328684 2024-02-12 20:33:26.328684 \N \N \N \N \N +1866 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.404001 2024-02-12 20:33:26.404001 \N \N \N \N \N +1880 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.389326 2024-02-12 20:33:27.389326 \N \N \N \N \N +1882 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.500902 2024-02-12 20:33:27.500902 \N \N \N \N \N +1897 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.640187 2024-02-12 20:33:28.640187 \N \N \N \N \N +1898 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.78478 2024-02-12 20:33:28.78478 \N \N \N \N \N +1913 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.835734 2024-02-12 20:33:29.835734 \N \N \N \N \N +1914 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.966212 2024-02-12 20:33:29.966212 \N \N \N \N \N +1929 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.11912 2024-02-12 20:33:31.11912 \N \N \N \N \N +1930 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.217967 2024-02-12 20:33:31.217967 \N \N \N \N \N +1945 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.071401 2024-02-12 20:33:32.071401 \N \N \N \N \N +1946 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.271742 2024-02-12 20:33:32.271742 \N \N \N \N \N +1960 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.387882 2024-02-12 20:33:33.387882 \N \N \N \N \N +1962 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.488392 2024-02-12 20:33:33.488392 \N \N \N \N \N +1975 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.739393 2024-02-12 20:33:34.739393 \N \N \N \N \N +1977 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.848356 2024-02-12 20:33:34.848356 \N \N \N \N \N +1992 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.931011 2024-02-12 20:33:35.931011 \N \N \N \N \N +1993 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.003165 2024-02-12 20:33:36.003165 \N \N \N \N \N +2006 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.02644 2024-02-12 20:33:37.02644 \N \N \N \N \N +2009 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.15831 2024-02-12 20:33:37.15831 \N \N \N \N \N +2023 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.472506 2024-02-12 20:33:38.472506 \N \N \N \N \N +2025 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.581914 2024-02-12 20:33:38.581914 \N \N \N \N \N +2039 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.651256 2024-02-12 20:33:39.651256 \N \N \N \N \N +2041 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.787642 2024-02-12 20:33:39.787642 \N \N \N \N \N +2056 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.891677 2024-02-12 20:33:40.891677 \N \N \N \N \N +2058 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.996596 2024-02-12 20:33:40.996596 \N \N \N \N \N +2073 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.068438 2024-02-12 20:33:42.068438 \N \N \N \N \N +2075 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.214156 2024-02-12 20:33:42.214156 \N \N \N \N \N +2089 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.443987 2024-02-12 20:33:43.443987 \N \N \N \N \N +2096 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.556908 2024-02-12 20:33:43.556908 \N \N \N \N \N +353 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:29:35.246599 2024-02-12 15:29:35.246599 \N \N \N \N \N +354 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:29:35.268609 2024-02-12 15:29:35.268609 \N \N \N \N \N +355 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:30:31.946316 2024-02-12 15:30:31.946316 \N \N \N \N \N +356 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:30:31.960051 2024-02-12 15:30:31.960051 \N \N \N \N \N +357 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:31:28.73228 2024-02-12 15:31:28.73228 \N \N \N \N \N +358 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:31:28.746468 2024-02-12 15:31:28.746468 \N \N \N \N \N +359 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:32:25.521506 2024-02-12 15:32:25.521506 \N \N \N \N \N +360 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:32:25.537155 2024-02-12 15:32:25.537155 \N \N \N \N \N +361 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:33:22.207145 2024-02-12 15:33:22.207145 \N \N \N \N \N +362 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:33:22.223365 2024-02-12 15:33:22.223365 \N \N \N \N \N +365 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:35:15.861692 2024-02-12 15:35:15.861692 \N \N \N \N \N +366 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:35:15.87719 2024-02-12 15:35:15.87719 \N \N \N \N \N +367 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:36:12.648851 2024-02-12 15:36:12.648851 \N \N \N \N \N +368 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:36:12.663836 2024-02-12 15:36:12.663836 \N \N \N \N \N +369 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:37:09.603629 2024-02-12 15:37:09.603629 \N \N \N \N \N +370 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:37:09.618524 2024-02-12 15:37:09.618524 \N \N \N \N \N +373 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:39:03.445941 2024-02-12 15:39:03.445941 \N \N \N \N \N +374 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:39:03.461343 2024-02-12 15:39:03.461343 \N \N \N \N \N +375 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:40:00.317106 2024-02-12 15:40:00.317106 \N \N \N \N \N +376 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:40:00.332085 2024-02-12 15:40:00.332085 \N \N \N \N \N +377 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:40:57.150191 2024-02-12 15:40:57.150191 \N \N \N \N \N +378 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:40:57.167429 2024-02-12 15:40:57.167429 \N \N \N \N \N +379 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:41:53.981991 2024-02-12 15:41:53.981991 \N \N \N \N \N +380 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:41:53.996465 2024-02-12 15:41:53.996465 \N \N \N \N \N +381 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:42:50.766818 2024-02-12 15:42:50.766818 \N \N \N \N \N +382 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:42:50.785521 2024-02-12 15:42:50.785521 \N \N \N \N \N +383 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:43:47.679117 2024-02-12 15:43:47.679117 \N \N \N \N \N +384 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:43:47.696053 2024-02-12 15:43:47.696053 \N \N \N \N \N +385 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:44:44.518452 2024-02-12 15:44:44.518452 \N \N \N \N \N +386 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:44:44.532224 2024-02-12 15:44:44.532224 \N \N \N \N \N +387 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:45:41.333068 2024-02-12 15:45:41.333068 \N \N \N \N \N +388 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:45:41.348755 2024-02-12 15:45:41.348755 \N \N \N \N \N +389 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:46:38.245777 2024-02-12 15:46:38.245777 \N \N \N \N \N +390 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:46:38.262225 2024-02-12 15:46:38.262225 \N \N \N \N \N +391 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:47:35.117905 2024-02-12 15:47:35.117905 \N \N \N \N \N +392 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:47:35.133223 2024-02-12 15:47:35.133223 \N \N \N \N \N +393 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:48:32.007271 2024-02-12 15:48:32.007271 \N \N \N \N \N +394 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:48:32.022131 2024-02-12 15:48:32.022131 \N \N \N \N \N +395 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:49:28.927903 2024-02-12 15:49:28.927903 \N \N \N \N \N +396 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:49:28.945312 2024-02-12 15:49:28.945312 \N \N \N \N \N +397 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:50:25.687766 2024-02-12 15:50:25.687766 \N \N \N \N \N +398 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:50:25.70232 2024-02-12 15:50:25.70232 \N \N \N \N \N +399 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:51:22.463929 2024-02-12 15:51:22.463929 \N \N \N \N \N +400 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:51:22.478375 2024-02-12 15:51:22.478375 \N \N \N \N \N +401 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:52:19.371682 2024-02-12 15:52:19.371682 \N \N \N \N \N +402 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:52:19.386476 2024-02-12 15:52:19.386476 \N \N \N \N \N +403 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:53:16.243033 2024-02-12 15:53:16.243033 \N \N \N \N \N +404 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:53:16.257626 2024-02-12 15:53:16.257626 \N \N \N \N \N +405 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:54:13.254105 2024-02-12 15:54:13.254105 \N \N \N \N \N +406 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:54:13.269966 2024-02-12 15:54:13.269966 \N \N \N \N \N +407 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:55:10.538557 2024-02-12 15:55:10.538557 \N \N \N \N \N +408 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:55:10.577116 2024-02-12 15:55:10.577116 \N \N \N \N \N +409 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:56:07.454894 2024-02-12 15:56:07.454894 \N \N \N \N \N +410 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:56:07.469432 2024-02-12 15:56:07.469432 \N \N \N \N \N +411 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:57:04.334799 2024-02-12 15:57:04.334799 \N \N \N \N \N +412 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:57:04.350602 2024-02-12 15:57:04.350602 \N \N \N \N \N +413 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:58:01.318885 2024-02-12 15:58:01.318885 \N \N \N \N \N +414 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:58:01.334242 2024-02-12 15:58:01.334242 \N \N \N \N \N +415 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:58:58.396258 2024-02-12 15:58:58.396258 \N \N \N \N \N +416 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:58:58.414054 2024-02-12 15:58:58.414054 \N \N \N \N \N +417 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:59:55.842202 2024-02-12 15:59:55.842202 \N \N \N \N \N +418 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 15:59:55.858784 2024-02-12 15:59:55.858784 \N \N \N \N \N +419 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:00:52.828386 2024-02-12 16:00:52.828386 \N \N \N \N \N +420 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:00:52.844852 2024-02-12 16:00:52.844852 \N \N \N \N \N +421 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:01:49.928046 2024-02-12 16:01:49.928046 \N \N \N \N \N +422 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:01:49.94185 2024-02-12 16:01:49.94185 \N \N \N \N \N +423 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:02:47.018409 2024-02-12 16:02:47.018409 \N \N \N \N \N +424 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:02:47.03482 2024-02-12 16:02:47.03482 \N \N \N \N \N +427 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:04:41.088555 2024-02-12 16:04:41.088555 \N \N \N \N \N +428 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:04:41.137593 2024-02-12 16:04:41.137593 \N \N \N \N \N +429 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:05:37.921802 2024-02-12 16:05:37.921802 \N \N \N \N \N +430 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:05:37.936948 2024-02-12 16:05:37.936948 \N \N \N \N \N +433 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:07:31.746866 2024-02-12 16:07:31.746866 \N \N \N \N \N +434 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:07:31.761879 2024-02-12 16:07:31.761879 \N \N \N \N \N +435 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:08:28.762205 2024-02-12 16:08:28.762205 \N \N \N \N \N +436 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:08:28.783178 2024-02-12 16:08:28.783178 \N \N \N \N \N +443 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:12:16.486701 2024-02-12 16:12:16.486701 \N \N \N \N \N +444 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:12:16.50038 2024-02-12 16:12:16.50038 \N \N \N \N \N +445 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:13:13.488098 2024-02-12 16:13:13.488098 \N \N \N \N \N +446 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:13:13.504457 2024-02-12 16:13:13.504457 \N \N \N \N \N +451 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:16:04.195699 2024-02-12 16:16:04.195699 \N \N \N \N \N +452 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:16:04.220193 2024-02-12 16:16:04.220193 \N \N \N \N \N +455 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:17:58.257327 2024-02-12 16:17:58.257327 \N \N \N \N \N +456 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:17:58.270651 2024-02-12 16:17:58.270651 \N \N \N \N \N +461 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:20:49.054788 2024-02-12 16:20:49.054788 \N \N \N \N \N +462 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:20:49.070258 2024-02-12 16:20:49.070258 \N \N \N \N \N +465 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:22:42.991235 2024-02-12 16:22:42.991235 \N \N \N \N \N +466 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:22:43.005457 2024-02-12 16:22:43.005457 \N \N \N \N \N +467 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:23:40.112632 2024-02-12 16:23:40.112632 \N \N \N \N \N +468 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:23:40.127303 2024-02-12 16:23:40.127303 \N \N \N \N \N +471 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:25:34.179455 2024-02-12 16:25:34.179455 \N \N \N \N \N +472 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:25:34.195958 2024-02-12 16:25:34.195958 \N \N \N \N \N +1700 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.543479 2024-02-12 20:33:12.543479 \N \N \N \N \N +1702 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:12.639132 2024-02-12 20:33:12.639132 \N \N \N \N \N +1716 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:13.902496 2024-02-12 20:33:13.902496 \N \N \N \N \N +1718 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:14.059953 2024-02-12 20:33:14.059953 \N \N \N \N \N +1733 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.544216 2024-02-12 20:33:15.544216 \N \N \N \N \N +1735 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:15.672895 2024-02-12 20:33:15.672895 \N \N \N \N \N +1748 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.571161 2024-02-12 20:33:16.571161 \N \N \N \N \N +1750 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:16.716095 2024-02-12 20:33:16.716095 \N \N \N \N \N +1763 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:17.928974 2024-02-12 20:33:17.928974 \N \N \N \N \N +1765 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:18.039815 2024-02-12 20:33:18.039815 \N \N \N \N \N +1779 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.245546 2024-02-12 20:33:19.245546 \N \N \N \N \N +1780 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:19.373598 2024-02-12 20:33:19.373598 \N \N \N \N \N +1796 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:20.987707 2024-02-12 20:33:20.987707 \N \N \N \N \N +1800 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:21.168427 2024-02-12 20:33:21.168427 \N \N \N \N \N +1813 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.406963 2024-02-12 20:33:22.406963 \N \N \N \N \N +1817 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:22.512475 2024-02-12 20:33:22.512475 \N \N \N \N \N +1831 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.833798 2024-02-12 20:33:23.833798 \N \N \N \N \N +1833 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:23.944667 2024-02-12 20:33:23.944667 \N \N \N \N \N +1847 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:24.985362 2024-02-12 20:33:24.985362 \N \N \N \N \N +1849 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.117635 2024-02-12 20:33:25.117635 \N \N \N \N \N +1863 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.238103 2024-02-12 20:33:26.238103 \N \N \N \N \N +1864 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.309507 2024-02-12 20:33:26.309507 \N \N \N \N \N +1879 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.301522 2024-02-12 20:33:27.301522 \N \N \N \N \N +1881 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.393612 2024-02-12 20:33:27.393612 \N \N \N \N \N +425 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:03:44.052782 2024-02-12 16:03:44.052782 \N \N \N \N \N +426 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:03:44.068205 2024-02-12 16:03:44.068205 \N \N \N \N \N +431 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:06:34.742461 2024-02-12 16:06:34.742461 \N \N \N \N \N +432 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:06:34.757529 2024-02-12 16:06:34.757529 \N \N \N \N \N +437 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:09:25.686694 2024-02-12 16:09:25.686694 \N \N \N \N \N +438 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:09:25.701948 2024-02-12 16:09:25.701948 \N \N \N \N \N +439 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:10:22.662978 2024-02-12 16:10:22.662978 \N \N \N \N \N +440 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:10:22.678648 2024-02-12 16:10:22.678648 \N \N \N \N \N +441 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:11:19.60982 2024-02-12 16:11:19.60982 \N \N \N \N \N +442 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:11:19.625129 2024-02-12 16:11:19.625129 \N \N \N \N \N +447 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:14:10.380124 2024-02-12 16:14:10.380124 \N \N \N \N \N +448 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:14:10.394356 2024-02-12 16:14:10.394356 \N \N \N \N \N +449 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:15:07.383955 2024-02-12 16:15:07.383955 \N \N \N \N \N +450 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:15:07.3977 2024-02-12 16:15:07.3977 \N \N \N \N \N +453 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:17:01.371871 2024-02-12 16:17:01.371871 \N \N \N \N \N +454 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:17:01.386298 2024-02-12 16:17:01.386298 \N \N \N \N \N +457 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:18:55.207973 2024-02-12 16:18:55.207973 \N \N \N \N \N +458 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:18:55.222785 2024-02-12 16:18:55.222785 \N \N \N \N \N +459 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:19:52.087551 2024-02-12 16:19:52.087551 \N \N \N \N \N +460 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:19:52.102658 2024-02-12 16:19:52.102658 \N \N \N \N \N +463 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:21:46.029166 2024-02-12 16:21:46.029166 \N \N \N \N \N +464 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:21:46.04566 2024-02-12 16:21:46.04566 \N \N \N \N \N +469 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:24:37.289995 2024-02-12 16:24:37.289995 \N \N \N \N \N +470 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:24:37.304316 2024-02-12 16:24:37.304316 \N \N \N \N \N +473 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:26:31.256558 2024-02-12 16:26:31.256558 \N \N \N \N \N +474 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:26:31.272173 2024-02-12 16:26:31.272173 \N \N \N \N \N +475 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:27:28.187556 2024-02-12 16:27:28.187556 \N \N \N \N \N +476 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:27:28.20269 2024-02-12 16:27:28.20269 \N \N \N \N \N +477 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:28:25.036464 2024-02-12 16:28:25.036464 \N \N \N \N \N +478 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:28:25.05248 2024-02-12 16:28:25.05248 \N \N \N \N \N +479 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:29:21.876321 2024-02-12 16:29:21.876321 \N \N \N \N \N +480 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:29:21.892026 2024-02-12 16:29:21.892026 \N \N \N \N \N +481 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:30:18.938722 2024-02-12 16:30:18.938722 \N \N \N \N \N +482 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:30:18.95598 2024-02-12 16:30:18.95598 \N \N \N \N \N +483 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:31:15.734196 2024-02-12 16:31:15.734196 \N \N \N \N \N +484 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:31:15.749862 2024-02-12 16:31:15.749862 \N \N \N \N \N +485 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:32:12.818397 2024-02-12 16:32:12.818397 \N \N \N \N \N +486 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:32:12.83321 2024-02-12 16:32:12.83321 \N \N \N \N \N +487 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:33:09.848764 2024-02-12 16:33:09.848764 \N \N \N \N \N +488 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:33:09.865188 2024-02-12 16:33:09.865188 \N \N \N \N \N +489 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:34:06.756381 2024-02-12 16:34:06.756381 \N \N \N \N \N +490 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:34:06.771337 2024-02-12 16:34:06.771337 \N \N \N \N \N +491 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:35:03.912462 2024-02-12 16:35:03.912462 \N \N \N \N \N +492 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:35:03.926004 2024-02-12 16:35:03.926004 \N \N \N \N \N +493 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:36:00.906725 2024-02-12 16:36:00.906725 \N \N \N \N \N +494 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:36:00.923075 2024-02-12 16:36:00.923075 \N \N \N \N \N +495 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:36:57.66954 2024-02-12 16:36:57.66954 \N \N \N \N \N +496 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:36:57.683081 2024-02-12 16:36:57.683081 \N \N \N \N \N +497 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:37:54.604357 2024-02-12 16:37:54.604357 \N \N \N \N \N +498 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:37:54.619903 2024-02-12 16:37:54.619903 \N \N \N \N \N +499 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:38:51.432111 2024-02-12 16:38:51.432111 \N \N \N \N \N +500 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:38:51.447146 2024-02-12 16:38:51.447146 \N \N \N \N \N +501 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:39:48.276901 2024-02-12 16:39:48.276901 \N \N \N \N \N +502 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:39:48.291754 2024-02-12 16:39:48.291754 \N \N \N \N \N +503 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:40:45.082399 2024-02-12 16:40:45.082399 \N \N \N \N \N +504 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:40:45.09646 2024-02-12 16:40:45.09646 \N \N \N \N \N +505 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:41:41.810101 2024-02-12 16:41:41.810101 \N \N \N \N \N +506 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:41:41.825102 2024-02-12 16:41:41.825102 \N \N \N \N \N +507 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:42:38.809428 2024-02-12 16:42:38.809428 \N \N \N \N \N +508 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:42:38.823613 2024-02-12 16:42:38.823613 \N \N \N \N \N +513 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:45:30.083365 2024-02-12 16:45:30.083365 \N \N \N \N \N +514 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:45:30.106268 2024-02-12 16:45:30.106268 \N \N \N \N \N +515 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:46:27.119143 2024-02-12 16:46:27.119143 \N \N \N \N \N +516 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:46:27.135279 2024-02-12 16:46:27.135279 \N \N \N \N \N +517 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:47:24.248386 2024-02-12 16:47:24.248386 \N \N \N \N \N +518 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:47:24.266987 2024-02-12 16:47:24.266987 \N \N \N \N \N +1853 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.478616 2024-02-12 20:33:25.478616 \N \N \N \N \N +1854 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:25.523995 2024-02-12 20:33:25.523995 \N \N \N \N \N +1859 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.12125 2024-02-12 20:33:26.12125 \N \N \N \N \N +1861 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.168339 2024-02-12 20:33:26.168339 \N \N \N \N \N +1868 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.686256 2024-02-12 20:33:26.686256 \N \N \N \N \N +1869 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.743196 2024-02-12 20:33:26.743196 \N \N \N \N \N +1875 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.173859 2024-02-12 20:33:27.173859 \N \N \N \N \N +1876 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.225308 2024-02-12 20:33:27.225308 \N \N \N \N \N +1883 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.667433 2024-02-12 20:33:27.667433 \N \N \N \N \N +1884 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.732608 2024-02-12 20:33:27.732608 \N \N \N \N \N +1891 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.242086 2024-02-12 20:33:28.242086 \N \N \N \N \N +1892 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.284352 2024-02-12 20:33:28.284352 \N \N \N \N \N +1899 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.985754 2024-02-12 20:33:28.985754 \N \N \N \N \N +1902 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.028953 2024-02-12 20:33:29.028953 \N \N \N \N \N +1907 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.537409 2024-02-12 20:33:29.537409 \N \N \N \N \N +1909 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.585493 2024-02-12 20:33:29.585493 \N \N \N \N \N +1916 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.117821 2024-02-12 20:33:30.117821 \N \N \N \N \N +1918 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.161314 2024-02-12 20:33:30.161314 \N \N \N \N \N +1923 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.825268 2024-02-12 20:33:30.825268 \N \N \N \N \N +1925 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.891869 2024-02-12 20:33:30.891869 \N \N \N \N \N +1932 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.356227 2024-02-12 20:33:31.356227 \N \N \N \N \N +1935 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.409023 2024-02-12 20:33:31.409023 \N \N \N \N \N +1939 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.865835 2024-02-12 20:33:31.865835 \N \N \N \N \N +1941 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.914831 2024-02-12 20:33:31.914831 \N \N \N \N \N +1947 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.488493 2024-02-12 20:33:32.488493 \N \N \N \N \N +1950 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.549748 2024-02-12 20:33:32.549748 \N \N \N \N \N +1955 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.077128 2024-02-12 20:33:33.077128 \N \N \N \N \N +1956 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.136951 2024-02-12 20:33:33.136951 \N \N \N \N \N +1963 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.700507 2024-02-12 20:33:33.700507 \N \N \N \N \N +1965 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.793245 2024-02-12 20:33:33.793245 \N \N \N \N \N +1972 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.615876 2024-02-12 20:33:34.615876 \N \N \N \N \N +1974 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.674743 2024-02-12 20:33:34.674743 \N \N \N \N \N +1980 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.218914 2024-02-12 20:33:35.218914 \N \N \N \N \N +1984 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.280362 2024-02-12 20:33:35.280362 \N \N \N \N \N +1988 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.848922 2024-02-12 20:33:35.848922 \N \N \N \N \N +1990 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.917508 2024-02-12 20:33:35.917508 \N \N \N \N \N +1999 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.433953 2024-02-12 20:33:36.433953 \N \N \N \N \N +2002 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.498018 2024-02-12 20:33:36.498018 \N \N \N \N \N +2005 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.007688 2024-02-12 20:33:37.007688 \N \N \N \N \N +2007 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.072279 2024-02-12 20:33:37.072279 \N \N \N \N \N +2016 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.637441 2024-02-12 20:33:37.637441 \N \N \N \N \N +2018 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.679904 2024-02-12 20:33:37.679904 \N \N \N \N \N +2020 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.191875 2024-02-12 20:33:38.191875 \N \N \N \N \N +2022 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.235086 2024-02-12 20:33:38.235086 \N \N \N \N \N +2027 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.815466 2024-02-12 20:33:38.815466 \N \N \N \N \N +2030 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.8592 2024-02-12 20:33:38.8592 \N \N \N \N \N +2036 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.375254 2024-02-12 20:33:39.375254 \N \N \N \N \N +2038 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.432518 2024-02-12 20:33:39.432518 \N \N \N \N \N +2048 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.15174 2024-02-12 20:33:40.15174 \N \N \N \N \N +2050 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.204339 2024-02-12 20:33:40.204339 \N \N \N \N \N +509 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:43:35.591494 2024-02-12 16:43:35.591494 \N \N \N \N \N +510 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:43:35.605762 2024-02-12 16:43:35.605762 \N \N \N \N \N +511 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:44:33.063011 2024-02-12 16:44:33.063011 \N \N \N \N \N +512 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:44:33.088292 2024-02-12 16:44:33.088292 \N \N \N \N \N +519 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:48:20.987511 2024-02-12 16:48:20.987511 \N \N \N \N \N +520 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:48:21.002264 2024-02-12 16:48:21.002264 \N \N \N \N \N +521 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:49:17.907751 2024-02-12 16:49:17.907751 \N \N \N \N \N +522 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:49:17.924964 2024-02-12 16:49:17.924964 \N \N \N \N \N +523 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:50:14.737119 2024-02-12 16:50:14.737119 \N \N \N \N \N +524 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:50:14.750621 2024-02-12 16:50:14.750621 \N \N \N \N \N +525 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:51:12.159269 2024-02-12 16:51:12.159269 \N \N \N \N \N +526 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:51:12.174865 2024-02-12 16:51:12.174865 \N \N \N \N \N +527 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:52:09.1334 2024-02-12 16:52:09.1334 \N \N \N \N \N +528 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:52:09.149966 2024-02-12 16:52:09.149966 \N \N \N \N \N +529 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:53:05.86308 2024-02-12 16:53:05.86308 \N \N \N \N \N +530 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:53:05.877329 2024-02-12 16:53:05.877329 \N \N \N \N \N +531 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:54:02.781197 2024-02-12 16:54:02.781197 \N \N \N \N \N +532 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:54:02.798507 2024-02-12 16:54:02.798507 \N \N \N \N \N +533 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:54:59.884452 2024-02-12 16:54:59.884452 \N \N \N \N \N +534 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:54:59.900211 2024-02-12 16:54:59.900211 \N \N \N \N \N +535 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:55:56.811099 2024-02-12 16:55:56.811099 \N \N \N \N \N +536 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:55:56.824761 2024-02-12 16:55:56.824761 \N \N \N \N \N +537 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:56:54.061399 2024-02-12 16:56:54.061399 \N \N \N \N \N +538 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:56:54.076567 2024-02-12 16:56:54.076567 \N \N \N \N \N +539 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:57:50.923174 2024-02-12 16:57:50.923174 \N \N \N \N \N +540 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:57:50.939974 2024-02-12 16:57:50.939974 \N \N \N \N \N +541 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:58:47.874176 2024-02-12 16:58:47.874176 \N \N \N \N \N +542 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:58:47.889972 2024-02-12 16:58:47.889972 \N \N \N \N \N +543 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:59:44.783295 2024-02-12 16:59:44.783295 \N \N \N \N \N +544 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 16:59:44.797824 2024-02-12 16:59:44.797824 \N \N \N \N \N +545 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:00:42.250388 2024-02-12 17:00:42.250388 \N \N \N \N \N +546 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:00:42.266163 2024-02-12 17:00:42.266163 \N \N \N \N \N +547 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:01:39.49451 2024-02-12 17:01:39.49451 \N \N \N \N \N +548 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:01:39.535036 2024-02-12 17:01:39.535036 \N \N \N \N \N +549 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:02:36.768077 2024-02-12 17:02:36.768077 \N \N \N \N \N +550 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:02:36.784792 2024-02-12 17:02:36.784792 \N \N \N \N \N +551 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:03:34.188548 2024-02-12 17:03:34.188548 \N \N \N \N \N +552 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:03:34.215712 2024-02-12 17:03:34.215712 \N \N \N \N \N +553 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:04:31.387729 2024-02-12 17:04:31.387729 \N \N \N \N \N +554 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:04:31.403933 2024-02-12 17:04:31.403933 \N \N \N \N \N +555 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:05:28.580526 2024-02-12 17:05:28.580526 \N \N \N \N \N +556 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:05:28.597922 2024-02-12 17:05:28.597922 \N \N \N \N \N +557 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:06:25.767326 2024-02-12 17:06:25.767326 \N \N \N \N \N +558 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:06:25.795982 2024-02-12 17:06:25.795982 \N \N \N \N \N +559 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:07:23.042208 2024-02-12 17:07:23.042208 \N \N \N \N \N +560 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:07:23.058722 2024-02-12 17:07:23.058722 \N \N \N \N \N +561 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:08:20.20483 2024-02-12 17:08:20.20483 \N \N \N \N \N +562 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:08:20.219917 2024-02-12 17:08:20.219917 \N \N \N \N \N +563 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:09:17.452276 2024-02-12 17:09:17.452276 \N \N \N \N \N +564 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:09:17.468037 2024-02-12 17:09:17.468037 \N \N \N \N \N +565 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:10:14.582415 2024-02-12 17:10:14.582415 \N \N \N \N \N +566 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:10:14.598133 2024-02-12 17:10:14.598133 \N \N \N \N \N +567 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:11:11.944068 2024-02-12 17:11:11.944068 \N \N \N \N \N +568 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:11:11.962762 2024-02-12 17:11:11.962762 \N \N \N \N \N +569 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:12:08.963333 2024-02-12 17:12:08.963333 \N \N \N \N \N +570 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:12:08.978702 2024-02-12 17:12:08.978702 \N \N \N \N \N +571 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:13:06.40503 2024-02-12 17:13:06.40503 \N \N \N \N \N +572 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:13:06.42176 2024-02-12 17:13:06.42176 \N \N \N \N \N +573 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:14:03.66142 2024-02-12 17:14:03.66142 \N \N \N \N \N +574 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:14:03.678093 2024-02-12 17:14:03.678093 \N \N \N \N \N +575 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:15:00.769797 2024-02-12 17:15:00.769797 \N \N \N \N \N +576 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:15:00.784896 2024-02-12 17:15:00.784896 \N \N \N \N \N +577 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:15:57.929826 2024-02-12 17:15:57.929826 \N \N \N \N \N +578 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:15:57.945234 2024-02-12 17:15:57.945234 \N \N \N \N \N +579 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:16:55.107311 2024-02-12 17:16:55.107311 \N \N \N \N \N +580 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:16:55.124438 2024-02-12 17:16:55.124438 \N \N \N \N \N +1860 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.15361 2024-02-12 20:33:26.15361 \N \N \N \N \N +1862 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.196141 2024-02-12 20:33:26.196141 \N \N \N \N \N +1870 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.746894 2024-02-12 20:33:26.746894 \N \N \N \N \N +1872 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:26.790542 2024-02-12 20:33:26.790542 \N \N \N \N \N +1877 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.248273 2024-02-12 20:33:27.248273 \N \N \N \N \N +1878 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.289267 2024-02-12 20:33:27.289267 \N \N \N \N \N +1885 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.756048 2024-02-12 20:33:27.756048 \N \N \N \N \N +1886 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:27.792515 2024-02-12 20:33:27.792515 \N \N \N \N \N +1893 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.286994 2024-02-12 20:33:28.286994 \N \N \N \N \N +1894 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.35099 2024-02-12 20:33:28.35099 \N \N \N \N \N +1901 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.013626 2024-02-12 20:33:29.013626 \N \N \N \N \N +1903 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.055522 2024-02-12 20:33:29.055522 \N \N \N \N \N +1908 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.566429 2024-02-12 20:33:29.566429 \N \N \N \N \N +1910 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.612045 2024-02-12 20:33:29.612045 \N \N \N \N \N +1919 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.164707 2024-02-12 20:33:30.164707 \N \N \N \N \N +1921 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.207571 2024-02-12 20:33:30.207571 \N \N \N \N \N +1924 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.867068 2024-02-12 20:33:30.867068 \N \N \N \N \N +1926 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.91572 2024-02-12 20:33:30.91572 \N \N \N \N \N +1934 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.398416 2024-02-12 20:33:31.398416 \N \N \N \N \N +1936 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.447707 2024-02-12 20:33:31.447707 \N \N \N \N \N +1942 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.932595 2024-02-12 20:33:31.932595 \N \N \N \N \N +1943 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.978787 2024-02-12 20:33:31.978787 \N \N \N \N \N +1949 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.524377 2024-02-12 20:33:32.524377 \N \N \N \N \N +1951 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.598004 2024-02-12 20:33:32.598004 \N \N \N \N \N +1957 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.143562 2024-02-12 20:33:33.143562 \N \N \N \N \N +1958 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.215488 2024-02-12 20:33:33.215488 \N \N \N \N \N +1964 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.765107 2024-02-12 20:33:33.765107 \N \N \N \N \N +1966 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.878255 2024-02-12 20:33:33.878255 \N \N \N \N \N +1971 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.613043 2024-02-12 20:33:34.613043 \N \N \N \N \N +1973 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.671457 2024-02-12 20:33:34.671457 \N \N \N \N \N +1982 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.231886 2024-02-12 20:33:35.231886 \N \N \N \N \N +1985 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.2939 2024-02-12 20:33:35.2939 \N \N \N \N \N +1987 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.812442 2024-02-12 20:33:35.812442 \N \N \N \N \N +1989 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.85227 2024-02-12 20:33:35.85227 \N \N \N \N \N +1997 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.393169 2024-02-12 20:33:36.393169 \N \N \N \N \N +2000 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.437088 2024-02-12 20:33:36.437088 \N \N \N \N \N +2003 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.897975 2024-02-12 20:33:36.897975 \N \N \N \N \N +2004 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.97416 2024-02-12 20:33:36.97416 \N \N \N \N \N +2013 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.583015 2024-02-12 20:33:37.583015 \N \N \N \N \N +2015 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.626587 2024-02-12 20:33:37.626587 \N \N \N \N \N +2019 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.145623 2024-02-12 20:33:38.145623 \N \N \N \N \N +2021 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.199773 2024-02-12 20:33:38.199773 \N \N \N \N \N +2028 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.831808 2024-02-12 20:33:38.831808 \N \N \N \N \N +2031 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.874374 2024-02-12 20:33:38.874374 \N \N \N \N \N +2035 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.370911 2024-02-12 20:33:39.370911 \N \N \N \N \N +2037 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.428787 2024-02-12 20:33:39.428787 \N \N \N \N \N +2046 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.123538 2024-02-12 20:33:40.123538 \N \N \N \N \N +2049 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.174615 2024-02-12 20:33:40.174615 \N \N \N \N \N +2052 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.754695 2024-02-12 20:33:40.754695 \N \N \N \N \N +2054 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.795458 2024-02-12 20:33:40.795458 \N \N \N \N \N +581 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:17:52.485677 2024-02-12 17:17:52.485677 \N \N \N \N \N +582 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:17:52.503796 2024-02-12 17:17:52.503796 \N \N \N \N \N +583 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:18:49.579422 2024-02-12 17:18:49.579422 \N \N \N \N \N +584 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:18:49.597033 2024-02-12 17:18:49.597033 \N \N \N \N \N +585 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:19:46.840341 2024-02-12 17:19:46.840341 \N \N \N \N \N +586 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:19:46.857864 2024-02-12 17:19:46.857864 \N \N \N \N \N +587 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:20:44.438068 2024-02-12 17:20:44.438068 \N \N \N \N \N +588 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:20:44.453378 2024-02-12 17:20:44.453378 \N \N \N \N \N +589 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:21:41.722857 2024-02-12 17:21:41.722857 \N \N \N \N \N +590 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:21:41.738237 2024-02-12 17:21:41.738237 \N \N \N \N \N +591 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:22:39.229646 2024-02-12 17:22:39.229646 \N \N \N \N \N +592 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:22:39.248842 2024-02-12 17:22:39.248842 \N \N \N \N \N +593 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:23:36.403032 2024-02-12 17:23:36.403032 \N \N \N \N \N +594 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:23:36.419126 2024-02-12 17:23:36.419126 \N \N \N \N \N +595 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:24:33.545942 2024-02-12 17:24:33.545942 \N \N \N \N \N +596 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:24:33.567402 2024-02-12 17:24:33.567402 \N \N \N \N \N +597 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:25:30.700208 2024-02-12 17:25:30.700208 \N \N \N \N \N +598 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:25:30.716052 2024-02-12 17:25:30.716052 \N \N \N \N \N +599 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:26:28.090882 2024-02-12 17:26:28.090882 \N \N \N \N \N +600 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:26:28.113266 2024-02-12 17:26:28.113266 \N \N \N \N \N +601 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:27:25.509683 2024-02-12 17:27:25.509683 \N \N \N \N \N +602 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:27:25.540806 2024-02-12 17:27:25.540806 \N \N \N \N \N +603 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:28:23.086721 2024-02-12 17:28:23.086721 \N \N \N \N \N +604 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:28:23.109155 2024-02-12 17:28:23.109155 \N \N \N \N \N +605 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:29:20.152028 2024-02-12 17:29:20.152028 \N \N \N \N \N +606 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:29:20.172133 2024-02-12 17:29:20.172133 \N \N \N \N \N +607 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:30:17.573888 2024-02-12 17:30:17.573888 \N \N \N \N \N +608 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:30:17.64145 2024-02-12 17:30:17.64145 \N \N \N \N \N +609 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:31:14.807636 2024-02-12 17:31:14.807636 \N \N \N \N \N +610 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:31:14.830846 2024-02-12 17:31:14.830846 \N \N \N \N \N +611 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:32:12.09232 2024-02-12 17:32:12.09232 \N \N \N \N \N +612 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:32:12.10879 2024-02-12 17:32:12.10879 \N \N \N \N \N +613 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:33:08.944874 2024-02-12 17:33:08.944874 \N \N \N \N \N +614 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:33:08.959651 2024-02-12 17:33:08.959651 \N \N \N \N \N +615 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:34:05.585723 2024-02-12 17:34:05.585723 \N \N \N \N \N +616 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:34:05.600557 2024-02-12 17:34:05.600557 \N \N \N \N \N +617 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:35:02.322841 2024-02-12 17:35:02.322841 \N \N \N \N \N +618 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:35:02.336676 2024-02-12 17:35:02.336676 \N \N \N \N \N +619 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:35:59.110099 2024-02-12 17:35:59.110099 \N \N \N \N \N +620 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:35:59.124231 2024-02-12 17:35:59.124231 \N \N \N \N \N +621 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:36:55.92245 2024-02-12 17:36:55.92245 \N \N \N \N \N +622 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:36:55.937424 2024-02-12 17:36:55.937424 \N \N \N \N \N +623 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:37:52.904081 2024-02-12 17:37:52.904081 \N \N \N \N \N +624 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:37:52.919217 2024-02-12 17:37:52.919217 \N \N \N \N \N +625 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:38:49.724671 2024-02-12 17:38:49.724671 \N \N \N \N \N +626 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:38:49.739473 2024-02-12 17:38:49.739473 \N \N \N \N \N +627 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:39:46.625719 2024-02-12 17:39:46.625719 \N \N \N \N \N +628 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:39:46.640278 2024-02-12 17:39:46.640278 \N \N \N \N \N +629 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:40:43.772222 2024-02-12 17:40:43.772222 \N \N \N \N \N +630 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:40:43.789374 2024-02-12 17:40:43.789374 \N \N \N \N \N +631 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:41:40.817242 2024-02-12 17:41:40.817242 \N \N \N \N \N +632 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:41:40.834488 2024-02-12 17:41:40.834488 \N \N \N \N \N +633 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:42:37.695284 2024-02-12 17:42:37.695284 \N \N \N \N \N +634 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:42:37.709095 2024-02-12 17:42:37.709095 \N \N \N \N \N +635 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:43:34.410669 2024-02-12 17:43:34.410669 \N \N \N \N \N +636 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:43:34.425727 2024-02-12 17:43:34.425727 \N \N \N \N \N +637 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:44:31.228429 2024-02-12 17:44:31.228429 \N \N \N \N \N +638 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:44:31.242721 2024-02-12 17:44:31.242721 \N \N \N \N \N +639 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:45:28.513056 2024-02-12 17:45:28.513056 \N \N \N \N \N +640 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:45:28.527999 2024-02-12 17:45:28.527999 \N \N \N \N \N +645 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:48:19.629293 2024-02-12 17:48:19.629293 \N \N \N \N \N +646 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:48:19.643754 2024-02-12 17:48:19.643754 \N \N \N \N \N +647 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:49:16.620832 2024-02-12 17:49:16.620832 \N \N \N \N \N +648 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:49:16.636224 2024-02-12 17:49:16.636224 \N \N \N \N \N +651 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:51:10.558563 2024-02-12 17:51:10.558563 \N \N \N \N \N +652 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:51:10.579586 2024-02-12 17:51:10.579586 \N \N \N \N \N +653 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:52:07.532766 2024-02-12 17:52:07.532766 \N \N \N \N \N +654 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:52:07.547571 2024-02-12 17:52:07.547571 \N \N \N \N \N +655 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:53:04.481436 2024-02-12 17:53:04.481436 \N \N \N \N \N +656 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:53:04.496397 2024-02-12 17:53:04.496397 \N \N \N \N \N +661 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:55:55.579299 2024-02-12 17:55:55.579299 \N \N \N \N \N +662 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:55:55.594834 2024-02-12 17:55:55.594834 \N \N \N \N \N +671 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:00:40.124904 2024-02-12 18:00:40.124904 \N \N \N \N \N +672 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:00:40.139234 2024-02-12 18:00:40.139234 \N \N \N \N \N +677 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:03:30.903534 2024-02-12 18:03:30.903534 \N \N \N \N \N +678 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:03:30.918485 2024-02-12 18:03:30.918485 \N \N \N \N \N +679 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:04:27.851746 2024-02-12 18:04:27.851746 \N \N \N \N \N +680 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:04:27.867281 2024-02-12 18:04:27.867281 \N \N \N \N \N +689 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:09:12.649204 2024-02-12 18:09:12.649204 \N \N \N \N \N +690 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:09:12.669087 2024-02-12 18:09:12.669087 \N \N \N \N \N +1895 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.466979 2024-02-12 20:33:28.466979 \N \N \N \N \N +1896 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:28.610611 2024-02-12 20:33:28.610611 \N \N \N \N \N +1911 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.652725 2024-02-12 20:33:29.652725 \N \N \N \N \N +1912 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:29.76309 2024-02-12 20:33:29.76309 \N \N \N \N \N +1927 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:30.943194 2024-02-12 20:33:30.943194 \N \N \N \N \N +1928 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.019726 2024-02-12 20:33:31.019726 \N \N \N \N \N +1940 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:31.906444 2024-02-12 20:33:31.906444 \N \N \N \N \N +1944 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:32.038491 2024-02-12 20:33:32.038491 \N \N \N \N \N +1959 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.331708 2024-02-12 20:33:33.331708 \N \N \N \N \N +1961 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:33.458346 2024-02-12 20:33:33.458346 \N \N \N \N \N +1976 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.752876 2024-02-12 20:33:34.752876 \N \N \N \N \N +1978 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:34.913057 2024-02-12 20:33:34.913057 \N \N \N \N \N +1991 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:35.922157 2024-02-12 20:33:35.922157 \N \N \N \N \N +1994 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:36.044996 2024-02-12 20:33:36.044996 \N \N \N \N \N +2008 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.081883 2024-02-12 20:33:37.081883 \N \N \N \N \N +2010 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.237359 2024-02-12 20:33:37.237359 \N \N \N \N \N +2024 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.520831 2024-02-12 20:33:38.520831 \N \N \N \N \N +2026 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.645745 2024-02-12 20:33:38.645745 \N \N \N \N \N +2040 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.744482 2024-02-12 20:33:39.744482 \N \N \N \N \N +2042 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:39.85611 2024-02-12 20:33:39.85611 \N \N \N \N \N +2055 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.841804 2024-02-12 20:33:40.841804 \N \N \N \N \N +2057 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.917718 2024-02-12 20:33:40.917718 \N \N \N \N \N +2071 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.90224 2024-02-12 20:33:41.90224 \N \N \N \N \N +2072 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.05423 2024-02-12 20:33:42.05423 \N \N \N \N \N +2087 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.119673 2024-02-12 20:33:43.119673 \N \N \N \N \N +2088 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.192452 2024-02-12 20:33:43.192452 \N \N \N \N \N +2103 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.265003 2024-02-12 20:33:44.265003 \N \N \N \N \N +2104 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.379064 2024-02-12 20:33:44.379064 \N \N \N \N \N +2118 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.52746 2024-02-12 20:33:45.52746 \N \N \N \N \N +2120 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.610808 2024-02-12 20:33:45.610808 \N \N \N \N \N +2135 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.564929 2024-02-12 20:33:46.564929 \N \N \N \N \N +2137 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.716611 2024-02-12 20:33:46.716611 \N \N \N \N \N +2149 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.060992 2024-02-12 20:33:48.060992 \N \N \N \N \N +2152 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.192703 2024-02-12 20:33:48.192703 \N \N \N \N \N +2164 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.419898 2024-02-12 20:33:49.419898 \N \N \N \N \N +2167 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.572318 2024-02-12 20:33:49.572318 \N \N \N \N \N +641 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:46:25.546692 2024-02-12 17:46:25.546692 \N \N \N \N \N +642 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:46:25.562251 2024-02-12 17:46:25.562251 \N \N \N \N \N +643 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:47:22.549172 2024-02-12 17:47:22.549172 \N \N \N \N \N +644 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:47:22.565112 2024-02-12 17:47:22.565112 \N \N \N \N \N +649 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:50:13.630489 2024-02-12 17:50:13.630489 \N \N \N \N \N +650 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:50:13.644655 2024-02-12 17:50:13.644655 \N \N \N \N \N +657 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:54:01.281755 2024-02-12 17:54:01.281755 \N \N \N \N \N +658 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:54:01.297172 2024-02-12 17:54:01.297172 \N \N \N \N \N +659 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:54:58.168968 2024-02-12 17:54:58.168968 \N \N \N \N \N +660 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:54:58.182673 2024-02-12 17:54:58.182673 \N \N \N \N \N +663 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:56:52.747263 2024-02-12 17:56:52.747263 \N \N \N \N \N +664 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:56:52.763965 2024-02-12 17:56:52.763965 \N \N \N \N \N +665 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:57:49.88583 2024-02-12 17:57:49.88583 \N \N \N \N \N +666 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:57:49.904688 2024-02-12 17:57:49.904688 \N \N \N \N \N +667 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:58:46.446175 2024-02-12 17:58:46.446175 \N \N \N \N \N +668 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:58:46.459731 2024-02-12 17:58:46.459731 \N \N \N \N \N +669 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:59:43.435415 2024-02-12 17:59:43.435415 \N \N \N \N \N +670 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 17:59:43.471145 2024-02-12 17:59:43.471145 \N \N \N \N \N +673 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:01:36.97346 2024-02-12 18:01:36.97346 \N \N \N \N \N +674 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:01:36.989035 2024-02-12 18:01:36.989035 \N \N \N \N \N +675 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:02:33.828704 2024-02-12 18:02:33.828704 \N \N \N \N \N +676 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:02:33.84257 2024-02-12 18:02:33.84257 \N \N \N \N \N +681 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:05:24.847766 2024-02-12 18:05:24.847766 \N \N \N \N \N +682 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:05:24.861416 2024-02-12 18:05:24.861416 \N \N \N \N \N +683 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:06:21.785333 2024-02-12 18:06:21.785333 \N \N \N \N \N +684 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:06:21.814202 2024-02-12 18:06:21.814202 \N \N \N \N \N +685 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:07:18.521169 2024-02-12 18:07:18.521169 \N \N \N \N \N +686 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:07:18.53627 2024-02-12 18:07:18.53627 \N \N \N \N \N +687 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:08:15.492705 2024-02-12 18:08:15.492705 \N \N \N \N \N +688 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:08:15.506861 2024-02-12 18:08:15.506861 \N \N \N \N \N +691 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:10:09.502597 2024-02-12 18:10:09.502597 \N \N \N \N \N +692 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:10:09.517858 2024-02-12 18:10:09.517858 \N \N \N \N \N +693 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:11:06.792397 2024-02-12 18:11:06.792397 \N \N \N \N \N +694 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:11:06.82256 2024-02-12 18:11:06.82256 \N \N \N \N \N +695 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:12:04.082321 2024-02-12 18:12:04.082321 \N \N \N \N \N +696 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:12:04.099366 2024-02-12 18:12:04.099366 \N \N \N \N \N +697 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:13:01.213844 2024-02-12 18:13:01.213844 \N \N \N \N \N +698 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:13:01.228341 2024-02-12 18:13:01.228341 \N \N \N \N \N +699 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:13:58.414083 2024-02-12 18:13:58.414083 \N \N \N \N \N +700 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:13:58.43116 2024-02-12 18:13:58.43116 \N \N \N \N \N +701 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:14:55.870902 2024-02-12 18:14:55.870902 \N \N \N \N \N +702 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:14:55.885578 2024-02-12 18:14:55.885578 \N \N \N \N \N +703 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:15:52.7283 2024-02-12 18:15:52.7283 \N \N \N \N \N +704 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:15:52.74205 2024-02-12 18:15:52.74205 \N \N \N \N \N +705 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:16:49.550182 2024-02-12 18:16:49.550182 \N \N \N \N \N +706 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:16:49.565278 2024-02-12 18:16:49.565278 \N \N \N \N \N +707 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:17:46.421449 2024-02-12 18:17:46.421449 \N \N \N \N \N +708 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:17:46.435379 2024-02-12 18:17:46.435379 \N \N \N \N \N +709 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:18:43.387568 2024-02-12 18:18:43.387568 \N \N \N \N \N +710 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:18:43.4044 2024-02-12 18:18:43.4044 \N \N \N \N \N +711 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:19:40.302432 2024-02-12 18:19:40.302432 \N \N \N \N \N +712 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:19:40.321493 2024-02-12 18:19:40.321493 \N \N \N \N \N +713 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:20:37.370623 2024-02-12 18:20:37.370623 \N \N \N \N \N +714 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:20:37.386016 2024-02-12 18:20:37.386016 \N \N \N \N \N +715 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:21:34.415861 2024-02-12 18:21:34.415861 \N \N \N \N \N +716 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:21:34.430542 2024-02-12 18:21:34.430542 \N \N \N \N \N +717 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:22:31.368287 2024-02-12 18:22:31.368287 \N \N \N \N \N +718 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:22:31.384136 2024-02-12 18:22:31.384136 \N \N \N \N \N +719 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:23:28.021371 2024-02-12 18:23:28.021371 \N \N \N \N \N +720 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:23:28.036156 2024-02-12 18:23:28.036156 \N \N \N \N \N +721 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:24:25.117866 2024-02-12 18:24:25.117866 \N \N \N \N \N +722 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:24:25.134188 2024-02-12 18:24:25.134188 \N \N \N \N \N +723 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:25:22.098299 2024-02-12 18:25:22.098299 \N \N \N \N \N +724 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:25:22.117298 2024-02-12 18:25:22.117298 \N \N \N \N \N +725 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:26:18.969432 2024-02-12 18:26:18.969432 \N \N \N \N \N +726 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:26:18.988605 2024-02-12 18:26:18.988605 \N \N \N \N \N +727 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:27:15.931285 2024-02-12 18:27:15.931285 \N \N \N \N \N +728 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:27:15.947054 2024-02-12 18:27:15.947054 \N \N \N \N \N +731 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:29:09.391887 2024-02-12 18:29:09.391887 \N \N \N \N \N +732 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:29:09.406142 2024-02-12 18:29:09.406142 \N \N \N \N \N +735 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:31:03.078475 2024-02-12 18:31:03.078475 \N \N \N \N \N +736 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:31:03.091978 2024-02-12 18:31:03.091978 \N \N \N \N \N +737 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:31:59.806897 2024-02-12 18:31:59.806897 \N \N \N \N \N +738 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:31:59.821588 2024-02-12 18:31:59.821588 \N \N \N \N \N +2011 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.510704 2024-02-12 20:33:37.510704 \N \N \N \N \N +2014 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:37.6062 2024-02-12 20:33:37.6062 \N \N \N \N \N +2032 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.910022 2024-02-12 20:33:38.910022 \N \N \N \N \N +2034 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:38.995303 2024-02-12 20:33:38.995303 \N \N \N \N \N +2044 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.031861 2024-02-12 20:33:40.031861 \N \N \N \N \N +2047 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.12615 2024-02-12 20:33:40.12615 \N \N \N \N \N +2060 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.078991 2024-02-12 20:33:41.078991 \N \N \N \N \N +2062 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.187745 2024-02-12 20:33:41.187745 \N \N \N \N \N +2076 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.24804 2024-02-12 20:33:42.24804 \N \N \N \N \N +2078 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.340646 2024-02-12 20:33:42.340646 \N \N \N \N \N +2090 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.447399 2024-02-12 20:33:43.447399 \N \N \N \N \N +2093 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.536876 2024-02-12 20:33:43.536876 \N \N \N \N \N +2107 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.719962 2024-02-12 20:33:44.719962 \N \N \N \N \N +2111 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.830374 2024-02-12 20:33:44.830374 \N \N \N \N \N +2124 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.78647 2024-02-12 20:33:45.78647 \N \N \N \N \N +2126 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.879391 2024-02-12 20:33:45.879391 \N \N \N \N \N +2140 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.814764 2024-02-12 20:33:46.814764 \N \N \N \N \N +2142 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.908771 2024-02-12 20:33:46.908771 \N \N \N \N \N +2154 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.305255 2024-02-12 20:33:48.305255 \N \N \N \N \N +2157 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.399867 2024-02-12 20:33:48.399867 \N \N \N \N \N +2170 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.67055 2024-02-12 20:33:49.67055 \N \N \N \N \N +2172 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.790987 2024-02-12 20:33:49.790987 \N \N \N \N \N +2182 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.89818 2024-02-12 20:33:50.89818 \N \N \N \N \N +2186 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.047651 2024-02-12 20:33:51.047651 \N \N \N \N \N +2202 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.477283 2024-02-12 20:33:52.477283 \N \N \N \N \N +2205 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.69075 2024-02-12 20:33:52.69075 \N \N \N \N \N +2217 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.230088 2024-02-12 20:33:54.230088 \N \N \N \N \N +2220 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.374871 2024-02-12 20:33:54.374871 \N \N \N \N \N +2233 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.990034 2024-02-12 20:33:55.990034 \N \N \N \N \N +2234 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.126717 2024-02-12 20:33:56.126717 \N \N \N \N \N +2249 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.233465 2024-02-12 20:33:57.233465 \N \N \N \N \N +2250 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.294315 2024-02-12 20:33:57.294315 \N \N \N \N \N +2251 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.353007 2024-02-12 20:33:57.353007 \N \N \N \N \N +2253 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.427527 2024-02-12 20:33:57.427527 \N \N \N \N \N +2266 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.317901 2024-02-12 20:33:58.317901 \N \N \N \N \N +2267 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.398614 2024-02-12 20:33:58.398614 \N \N \N \N \N +2271 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.576732 2024-02-12 20:33:58.576732 \N \N \N \N \N +2272 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.691007 2024-02-12 20:33:58.691007 \N \N \N \N \N +2277 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.531499 2024-02-12 20:33:59.531499 \N \N \N \N \N +2282 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.642277 2024-02-12 20:33:59.642277 \N \N \N \N \N +2287 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.903557 2024-02-12 20:33:59.903557 \N \N \N \N \N +2288 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.961721 2024-02-12 20:33:59.961721 \N \N \N \N \N +729 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:28:12.586974 2024-02-12 18:28:12.586974 \N \N \N \N \N +730 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:28:12.610438 2024-02-12 18:28:12.610438 \N \N \N \N \N +733 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:30:06.187574 2024-02-12 18:30:06.187574 \N \N \N \N \N +734 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:30:06.201427 2024-02-12 18:30:06.201427 \N \N \N \N \N +739 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:32:56.88906 2024-02-12 18:32:56.88906 \N \N \N \N \N +740 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:32:56.902489 2024-02-12 18:32:56.902489 \N \N \N \N \N +741 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:33:53.733532 2024-02-12 18:33:53.733532 \N \N \N \N \N +742 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:33:53.748334 2024-02-12 18:33:53.748334 \N \N \N \N \N +743 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:34:50.575326 2024-02-12 18:34:50.575326 \N \N \N \N \N +744 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:34:50.58987 2024-02-12 18:34:50.58987 \N \N \N \N \N +745 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:35:47.407543 2024-02-12 18:35:47.407543 \N \N \N \N \N +746 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:35:47.420736 2024-02-12 18:35:47.420736 \N \N \N \N \N +747 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:36:44.354665 2024-02-12 18:36:44.354665 \N \N \N \N \N +748 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:36:44.369992 2024-02-12 18:36:44.369992 \N \N \N \N \N +749 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:37:41.147157 2024-02-12 18:37:41.147157 \N \N \N \N \N +750 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:37:41.163459 2024-02-12 18:37:41.163459 \N \N \N \N \N +751 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:38:37.935923 2024-02-12 18:38:37.935923 \N \N \N \N \N +752 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:38:37.949791 2024-02-12 18:38:37.949791 \N \N \N \N \N +753 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:39:34.920183 2024-02-12 18:39:34.920183 \N \N \N \N \N +754 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:39:34.937001 2024-02-12 18:39:34.937001 \N \N \N \N \N +755 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:40:31.794477 2024-02-12 18:40:31.794477 \N \N \N \N \N +756 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:40:31.808439 2024-02-12 18:40:31.808439 \N \N \N \N \N +757 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:41:28.718698 2024-02-12 18:41:28.718698 \N \N \N \N \N +758 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:41:28.733977 2024-02-12 18:41:28.733977 \N \N \N \N \N +759 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:42:25.485872 2024-02-12 18:42:25.485872 \N \N \N \N \N +760 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:42:25.502099 2024-02-12 18:42:25.502099 \N \N \N \N \N +761 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:43:22.32898 2024-02-12 18:43:22.32898 \N \N \N \N \N +762 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:43:22.354745 2024-02-12 18:43:22.354745 \N \N \N \N \N +763 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:44:19.076531 2024-02-12 18:44:19.076531 \N \N \N \N \N +764 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:44:19.091244 2024-02-12 18:44:19.091244 \N \N \N \N \N +765 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:45:15.792558 2024-02-12 18:45:15.792558 \N \N \N \N \N +766 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:45:15.806457 2024-02-12 18:45:15.806457 \N \N \N \N \N +767 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:46:12.517261 2024-02-12 18:46:12.517261 \N \N \N \N \N +768 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:46:12.532549 2024-02-12 18:46:12.532549 \N \N \N \N \N +769 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:47:09.774751 2024-02-12 18:47:09.774751 \N \N \N \N \N +770 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:47:09.790714 2024-02-12 18:47:09.790714 \N \N \N \N \N +771 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:48:06.392114 2024-02-12 18:48:06.392114 \N \N \N \N \N +772 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:48:06.407659 2024-02-12 18:48:06.407659 \N \N \N \N \N +773 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:49:03.115752 2024-02-12 18:49:03.115752 \N \N \N \N \N +774 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:49:03.129984 2024-02-12 18:49:03.129984 \N \N \N \N \N +775 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:49:59.906487 2024-02-12 18:49:59.906487 \N \N \N \N \N +776 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:49:59.921614 2024-02-12 18:49:59.921614 \N \N \N \N \N +777 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:50:57.053581 2024-02-12 18:50:57.053581 \N \N \N \N \N +778 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:50:57.067316 2024-02-12 18:50:57.067316 \N \N \N \N \N +779 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:51:54.147177 2024-02-12 18:51:54.147177 \N \N \N \N \N +780 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:51:54.163393 2024-02-12 18:51:54.163393 \N \N \N \N \N +781 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:52:51.035385 2024-02-12 18:52:51.035385 \N \N \N \N \N +782 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:52:51.052488 2024-02-12 18:52:51.052488 \N \N \N \N \N +783 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:53:47.80755 2024-02-12 18:53:47.80755 \N \N \N \N \N +784 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:53:47.822251 2024-02-12 18:53:47.822251 \N \N \N \N \N +785 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:54:44.705867 2024-02-12 18:54:44.705867 \N \N \N \N \N +786 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:54:44.729643 2024-02-12 18:54:44.729643 \N \N \N \N \N +787 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:55:41.46036 2024-02-12 18:55:41.46036 \N \N \N \N \N +788 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:55:41.475391 2024-02-12 18:55:41.475391 \N \N \N \N \N +789 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:56:38.417231 2024-02-12 18:56:38.417231 \N \N \N \N \N +790 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:56:38.431575 2024-02-12 18:56:38.431575 \N \N \N \N \N +791 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:57:35.348704 2024-02-12 18:57:35.348704 \N \N \N \N \N +792 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:57:35.363333 2024-02-12 18:57:35.363333 \N \N \N \N \N +793 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:58:32.181465 2024-02-12 18:58:32.181465 \N \N \N \N \N +794 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:58:32.195575 2024-02-12 18:58:32.195575 \N \N \N \N \N +805 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:04:13.251966 2024-02-12 19:04:13.251966 \N \N \N \N \N +806 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:04:13.274125 2024-02-12 19:04:13.274125 \N \N \N \N \N +2051 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.736468 2024-02-12 20:33:40.736468 \N \N \N \N \N +2053 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:40.781618 2024-02-12 20:33:40.781618 \N \N \N \N \N +2063 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.243078 2024-02-12 20:33:41.243078 \N \N \N \N \N +2065 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.286325 2024-02-12 20:33:41.286325 \N \N \N \N \N +2067 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.739273 2024-02-12 20:33:41.739273 \N \N \N \N \N +2069 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.811842 2024-02-12 20:33:41.811842 \N \N \N \N \N +2079 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.36042 2024-02-12 20:33:42.36042 \N \N \N \N \N +2080 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.409512 2024-02-12 20:33:42.409512 \N \N \N \N \N +2083 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.93691 2024-02-12 20:33:42.93691 \N \N \N \N \N +2085 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.980375 2024-02-12 20:33:42.980375 \N \N \N \N \N +2092 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.508813 2024-02-12 20:33:43.508813 \N \N \N \N \N +2097 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.569663 2024-02-12 20:33:43.569663 \N \N \N \N \N +2099 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.054273 2024-02-12 20:33:44.054273 \N \N \N \N \N +2100 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.118902 2024-02-12 20:33:44.118902 \N \N \N \N \N +2110 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.784046 2024-02-12 20:33:44.784046 \N \N \N \N \N +2112 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.831659 2024-02-12 20:33:44.831659 \N \N \N \N \N +2115 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.446437 2024-02-12 20:33:45.446437 \N \N \N \N \N +2116 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.489965 2024-02-12 20:33:45.489965 \N \N \N \N \N +2127 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.966073 2024-02-12 20:33:45.966073 \N \N \N \N \N +2129 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.012174 2024-02-12 20:33:46.012174 \N \N \N \N \N +2131 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.461702 2024-02-12 20:33:46.461702 \N \N \N \N \N +2133 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.51047 2024-02-12 20:33:46.51047 \N \N \N \N \N +2143 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.009509 2024-02-12 20:33:47.009509 \N \N \N \N \N +2144 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.104886 2024-02-12 20:33:47.104886 \N \N \N \N \N +2147 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.932988 2024-02-12 20:33:47.932988 \N \N \N \N \N +2148 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.993754 2024-02-12 20:33:47.993754 \N \N \N \N \N +2159 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.583546 2024-02-12 20:33:48.583546 \N \N \N \N \N +2160 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.653471 2024-02-12 20:33:48.653471 \N \N \N \N \N +2163 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.375157 2024-02-12 20:33:49.375157 \N \N \N \N \N +2165 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.433995 2024-02-12 20:33:49.433995 \N \N \N \N \N +2175 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.976907 2024-02-12 20:33:49.976907 \N \N \N \N \N +2176 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.016792 2024-02-12 20:33:50.016792 \N \N \N \N \N +2179 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.664645 2024-02-12 20:33:50.664645 \N \N \N \N \N +2180 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.70741 2024-02-12 20:33:50.70741 \N \N \N \N \N +2193 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.741044 2024-02-12 20:33:51.741044 \N \N \N \N \N +2194 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.791589 2024-02-12 20:33:51.791589 \N \N \N \N \N +2198 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.324376 2024-02-12 20:33:52.324376 \N \N \N \N \N +2199 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.376725 2024-02-12 20:33:52.376725 \N \N \N \N \N +2208 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.406516 2024-02-12 20:33:53.406516 \N \N \N \N \N +2210 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.487117 2024-02-12 20:33:53.487117 \N \N \N \N \N +2213 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.036985 2024-02-12 20:33:54.036985 \N \N \N \N \N +2215 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.084352 2024-02-12 20:33:54.084352 \N \N \N \N \N +2223 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.529809 2024-02-12 20:33:54.529809 \N \N \N \N \N +2225 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.587001 2024-02-12 20:33:54.587001 \N \N \N \N \N +2230 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.38861 2024-02-12 20:33:55.38861 \N \N \N \N \N +2232 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.481297 2024-02-12 20:33:55.481297 \N \N \N \N \N +2238 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.271987 2024-02-12 20:33:56.271987 \N \N \N \N \N +2241 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.31817 2024-02-12 20:33:56.31817 \N \N \N \N \N +2246 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.919705 2024-02-12 20:33:56.919705 \N \N \N \N \N +2248 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.981534 2024-02-12 20:33:56.981534 \N \N \N \N \N +2255 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.52866 2024-02-12 20:33:57.52866 \N \N \N \N \N +2258 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.569421 2024-02-12 20:33:57.569421 \N \N \N \N \N +2261 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.234187 2024-02-12 20:33:58.234187 \N \N \N \N \N +2263 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.28515 2024-02-12 20:33:58.28515 \N \N \N \N \N +795 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:59:29.051951 2024-02-12 18:59:29.051951 \N \N \N \N \N +796 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 18:59:29.067436 2024-02-12 18:59:29.067436 \N \N \N \N \N +797 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:00:25.899757 2024-02-12 19:00:25.899757 \N \N \N \N \N +798 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:00:25.915696 2024-02-12 19:00:25.915696 \N \N \N \N \N +799 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:01:22.684539 2024-02-12 19:01:22.684539 \N \N \N \N \N +800 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:01:22.698568 2024-02-12 19:01:22.698568 \N \N \N \N \N +801 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:02:19.490016 2024-02-12 19:02:19.490016 \N \N \N \N \N +802 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:02:19.504102 2024-02-12 19:02:19.504102 \N \N \N \N \N +803 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:03:16.379143 2024-02-12 19:03:16.379143 \N \N \N \N \N +804 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:03:16.39455 2024-02-12 19:03:16.39455 \N \N \N \N \N +807 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:05:10.152358 2024-02-12 19:05:10.152358 \N \N \N \N \N +808 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:05:10.167996 2024-02-12 19:05:10.167996 \N \N \N \N \N +809 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:06:06.931539 2024-02-12 19:06:06.931539 \N \N \N \N \N +810 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:06:06.946606 2024-02-12 19:06:06.946606 \N \N \N \N \N +811 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:07:03.855763 2024-02-12 19:07:03.855763 \N \N \N \N \N +812 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:07:03.869471 2024-02-12 19:07:03.869471 \N \N \N \N \N +813 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:08:00.838462 2024-02-12 19:08:00.838462 \N \N \N \N \N +814 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:08:00.854321 2024-02-12 19:08:00.854321 \N \N \N \N \N +815 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:08:57.688196 2024-02-12 19:08:57.688196 \N \N \N \N \N +816 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:08:57.702431 2024-02-12 19:08:57.702431 \N \N \N \N \N +817 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:09:54.668334 2024-02-12 19:09:54.668334 \N \N \N \N \N +818 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:09:54.68341 2024-02-12 19:09:54.68341 \N \N \N \N \N +819 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:10:51.482493 2024-02-12 19:10:51.482493 \N \N \N \N \N +820 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:10:51.496334 2024-02-12 19:10:51.496334 \N \N \N \N \N +821 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:11:48.414874 2024-02-12 19:11:48.414874 \N \N \N \N \N +822 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:11:48.430293 2024-02-12 19:11:48.430293 \N \N \N \N \N +823 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:12:45.285559 2024-02-12 19:12:45.285559 \N \N \N \N \N +824 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:12:45.300094 2024-02-12 19:12:45.300094 \N \N \N \N \N +825 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:13:42.208396 2024-02-12 19:13:42.208396 \N \N \N \N \N +826 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:13:42.223696 2024-02-12 19:13:42.223696 \N \N \N \N \N +827 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:14:39.143249 2024-02-12 19:14:39.143249 \N \N \N \N \N +828 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:14:39.159362 2024-02-12 19:14:39.159362 \N \N \N \N \N +829 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:15:36.200709 2024-02-12 19:15:36.200709 \N \N \N \N \N +830 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:15:36.21717 2024-02-12 19:15:36.21717 \N \N \N \N \N +831 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:16:33.039974 2024-02-12 19:16:33.039974 \N \N \N \N \N +832 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:16:33.055509 2024-02-12 19:16:33.055509 \N \N \N \N \N +833 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:17:29.88958 2024-02-12 19:17:29.88958 \N \N \N \N \N +834 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:17:29.904295 2024-02-12 19:17:29.904295 \N \N \N \N \N +835 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:18:26.740838 2024-02-12 19:18:26.740838 \N \N \N \N \N +836 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:18:26.754991 2024-02-12 19:18:26.754991 \N \N \N \N \N +837 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:19:23.65694 2024-02-12 19:19:23.65694 \N \N \N \N \N +838 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:19:23.67233 2024-02-12 19:19:23.67233 \N \N \N \N \N +839 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:20:20.34845 2024-02-12 19:20:20.34845 \N \N \N \N \N +840 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:20:20.363638 2024-02-12 19:20:20.363638 \N \N \N \N \N +841 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:21:17.140085 2024-02-12 19:21:17.140085 \N \N \N \N \N +842 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:21:17.154255 2024-02-12 19:21:17.154255 \N \N \N \N \N +843 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:22:14.238149 2024-02-12 19:22:14.238149 \N \N \N \N \N +844 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:22:14.314993 2024-02-12 19:22:14.314993 \N \N \N \N \N +845 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:23:11.202715 2024-02-12 19:23:11.202715 \N \N \N \N \N +846 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:23:11.217685 2024-02-12 19:23:11.217685 \N \N \N \N \N +847 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:24:08.407781 2024-02-12 19:24:08.407781 \N \N \N \N \N +848 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:24:08.424276 2024-02-12 19:24:08.424276 \N \N \N \N \N +849 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:25:05.504728 2024-02-12 19:25:05.504728 \N \N \N \N \N +850 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:25:05.52206 2024-02-12 19:25:05.52206 \N \N \N \N \N +851 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:26:02.729016 2024-02-12 19:26:02.729016 \N \N \N \N \N +852 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:26:02.743371 2024-02-12 19:26:02.743371 \N \N \N \N \N +853 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:26:59.951882 2024-02-12 19:26:59.951882 \N \N \N \N \N +854 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:26:59.966434 2024-02-12 19:26:59.966434 \N \N \N \N \N +855 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:27:56.98244 2024-02-12 19:27:56.98244 \N \N \N \N \N +856 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:27:57.002622 2024-02-12 19:27:57.002622 \N \N \N \N \N +861 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:30:48.151209 2024-02-12 19:30:48.151209 \N \N \N \N \N +862 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:30:48.168395 2024-02-12 19:30:48.168395 \N \N \N \N \N +863 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:31:45.233304 2024-02-12 19:31:45.233304 \N \N \N \N \N +864 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:31:45.248608 2024-02-12 19:31:45.248608 \N \N \N \N \N +877 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:38:24.4956 2024-02-12 19:38:24.4956 \N \N \N \N \N +878 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:38:24.512419 2024-02-12 19:38:24.512419 \N \N \N \N \N +891 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:45:03.609038 2024-02-12 19:45:03.609038 \N \N \N \N \N +892 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:45:03.630372 2024-02-12 19:45:03.630372 \N \N \N \N \N +895 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:46:57.771436 2024-02-12 19:46:57.771436 \N \N \N \N \N +896 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:46:57.786495 2024-02-12 19:46:57.786495 \N \N \N \N \N +897 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:47:54.724653 2024-02-12 19:47:54.724653 \N \N \N \N \N +898 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:47:54.738668 2024-02-12 19:47:54.738668 \N \N \N \N \N +901 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:49:48.697156 2024-02-12 19:49:48.697156 \N \N \N \N \N +902 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:49:48.713885 2024-02-12 19:49:48.713885 \N \N \N \N \N +907 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:52:39.893549 2024-02-12 19:52:39.893549 \N \N \N \N \N +908 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:52:39.908734 2024-02-12 19:52:39.908734 \N \N \N \N \N +911 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:54:33.64236 2024-02-12 19:54:33.64236 \N \N \N \N \N +912 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:54:33.658237 2024-02-12 19:54:33.658237 \N \N \N \N \N +917 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:57:24.033967 2024-02-12 19:57:24.033967 \N \N \N \N \N +918 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:57:24.047969 2024-02-12 19:57:24.047969 \N \N \N \N \N +921 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:59:18.320901 2024-02-12 19:59:18.320901 \N \N \N \N \N +922 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:59:18.337131 2024-02-12 19:59:18.337131 \N \N \N \N \N +923 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:00:15.250176 2024-02-12 20:00:15.250176 \N \N \N \N \N +924 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:00:15.266219 2024-02-12 20:00:15.266219 \N \N \N \N \N +929 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:03:06.257252 2024-02-12 20:03:06.257252 \N \N \N \N \N +930 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:03:06.272531 2024-02-12 20:03:06.272531 \N \N \N \N \N +935 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:05:56.839041 2024-02-12 20:05:56.839041 \N \N \N \N \N +936 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:05:56.853202 2024-02-12 20:05:56.853202 \N \N \N \N \N +937 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:06:53.792521 2024-02-12 20:06:53.792521 \N \N \N \N \N +938 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:06:53.80717 2024-02-12 20:06:53.80717 \N \N \N \N \N +941 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:08:48.56905 2024-02-12 20:08:48.56905 \N \N \N \N \N +942 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:08:48.58632 2024-02-12 20:08:48.58632 \N \N \N \N \N +2064 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.258409 2024-02-12 20:33:41.258409 \N \N \N \N \N +2066 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.30556 2024-02-12 20:33:41.30556 \N \N \N \N \N +2068 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.807324 2024-02-12 20:33:41.807324 \N \N \N \N \N +2070 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:41.85497 2024-02-12 20:33:41.85497 \N \N \N \N \N +2081 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.434131 2024-02-12 20:33:42.434131 \N \N \N \N \N +2082 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.53015 2024-02-12 20:33:42.53015 \N \N \N \N \N +2084 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:42.977454 2024-02-12 20:33:42.977454 \N \N \N \N \N +2086 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.018536 2024-02-12 20:33:43.018536 \N \N \N \N \N +2094 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.544492 2024-02-12 20:33:43.544492 \N \N \N \N \N +2098 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.594228 2024-02-12 20:33:43.594228 \N \N \N \N \N +2101 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.135712 2024-02-12 20:33:44.135712 \N \N \N \N \N +2102 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.195524 2024-02-12 20:33:44.195524 \N \N \N \N \N +2113 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.841808 2024-02-12 20:33:44.841808 \N \N \N \N \N +2114 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.896062 2024-02-12 20:33:44.896062 \N \N \N \N \N +2117 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.504452 2024-02-12 20:33:45.504452 \N \N \N \N \N +2119 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.546823 2024-02-12 20:33:45.546823 \N \N \N \N \N +2128 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.96895 2024-02-12 20:33:45.96895 \N \N \N \N \N +2130 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.015002 2024-02-12 20:33:46.015002 \N \N \N \N \N +2132 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.486421 2024-02-12 20:33:46.486421 \N \N \N \N \N +2134 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.533076 2024-02-12 20:33:46.533076 \N \N \N \N \N +2145 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.125442 2024-02-12 20:33:47.125442 \N \N \N \N \N +2146 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:47.212947 2024-02-12 20:33:47.212947 \N \N \N \N \N +2150 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.077657 2024-02-12 20:33:48.077657 \N \N \N \N \N +2151 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.129582 2024-02-12 20:33:48.129582 \N \N \N \N \N +857 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:28:53.83704 2024-02-12 19:28:53.83704 \N \N \N \N \N +858 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:28:53.852195 2024-02-12 19:28:53.852195 \N \N \N \N \N +859 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:29:50.842379 2024-02-12 19:29:50.842379 \N \N \N \N \N +860 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:29:50.85729 2024-02-12 19:29:50.85729 \N \N \N \N \N +865 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:32:42.221973 2024-02-12 19:32:42.221973 \N \N \N \N \N +866 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:32:42.239035 2024-02-12 19:32:42.239035 \N \N \N \N \N +867 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:33:39.354112 2024-02-12 19:33:39.354112 \N \N \N \N \N +868 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:33:39.369725 2024-02-12 19:33:39.369725 \N \N \N \N \N +869 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:34:36.470039 2024-02-12 19:34:36.470039 \N \N \N \N \N +870 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:34:36.484953 2024-02-12 19:34:36.484953 \N \N \N \N \N +871 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:35:33.502834 2024-02-12 19:35:33.502834 \N \N \N \N \N +872 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:35:33.520205 2024-02-12 19:35:33.520205 \N \N \N \N \N +873 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:36:30.50839 2024-02-12 19:36:30.50839 \N \N \N \N \N +874 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:36:30.522959 2024-02-12 19:36:30.522959 \N \N \N \N \N +875 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:37:27.585497 2024-02-12 19:37:27.585497 \N \N \N \N \N +876 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:37:27.601311 2024-02-12 19:37:27.601311 \N \N \N \N \N +879 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:39:21.40699 2024-02-12 19:39:21.40699 \N \N \N \N \N +880 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:39:21.422193 2024-02-12 19:39:21.422193 \N \N \N \N \N +881 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:40:18.585865 2024-02-12 19:40:18.585865 \N \N \N \N \N +882 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:40:18.603146 2024-02-12 19:40:18.603146 \N \N \N \N \N +883 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:41:15.636671 2024-02-12 19:41:15.636671 \N \N \N \N \N +884 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:41:15.654571 2024-02-12 19:41:15.654571 \N \N \N \N \N +885 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:42:12.741201 2024-02-12 19:42:12.741201 \N \N \N \N \N +886 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:42:12.756015 2024-02-12 19:42:12.756015 \N \N \N \N \N +887 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:43:09.710952 2024-02-12 19:43:09.710952 \N \N \N \N \N +888 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:43:09.72492 2024-02-12 19:43:09.72492 \N \N \N \N \N +889 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:44:06.624464 2024-02-12 19:44:06.624464 \N \N \N \N \N +890 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:44:06.640824 2024-02-12 19:44:06.640824 \N \N \N \N \N +893 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:46:00.997088 2024-02-12 19:46:00.997088 \N \N \N \N \N +894 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:46:01.012294 2024-02-12 19:46:01.012294 \N \N \N \N \N +899 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:48:51.656692 2024-02-12 19:48:51.656692 \N \N \N \N \N +900 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:48:51.67623 2024-02-12 19:48:51.67623 \N \N \N \N \N +903 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:50:45.647329 2024-02-12 19:50:45.647329 \N \N \N \N \N +904 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:50:45.662127 2024-02-12 19:50:45.662127 \N \N \N \N \N +905 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:51:43.013553 2024-02-12 19:51:43.013553 \N \N \N \N \N +906 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:51:43.028686 2024-02-12 19:51:43.028686 \N \N \N \N \N +909 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:53:36.769157 2024-02-12 19:53:36.769157 \N \N \N \N \N +910 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:53:36.783531 2024-02-12 19:53:36.783531 \N \N \N \N \N +913 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:55:30.541182 2024-02-12 19:55:30.541182 \N \N \N \N \N +914 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:55:30.558837 2024-02-12 19:55:30.558837 \N \N \N \N \N +915 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:56:27.329187 2024-02-12 19:56:27.329187 \N \N \N \N \N +916 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:56:27.343136 2024-02-12 19:56:27.343136 \N \N \N \N \N +919 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:58:21.226331 2024-02-12 19:58:21.226331 \N \N \N \N \N +920 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 19:58:21.240865 2024-02-12 19:58:21.240865 \N \N \N \N \N +925 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:01:12.158454 2024-02-12 20:01:12.158454 \N \N \N \N \N +926 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:01:12.172716 2024-02-12 20:01:12.172716 \N \N \N \N \N +927 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:02:09.160106 2024-02-12 20:02:09.160106 \N \N \N \N \N +928 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:02:09.174423 2024-02-12 20:02:09.174423 \N \N \N \N \N +931 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:04:03.120562 2024-02-12 20:04:03.120562 \N \N \N \N \N +932 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:04:03.134457 2024-02-12 20:04:03.134457 \N \N \N \N \N +933 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:04:59.973799 2024-02-12 20:04:59.973799 \N \N \N \N \N +934 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:04:59.990782 2024-02-12 20:04:59.990782 \N \N \N \N \N +939 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:07:50.712043 2024-02-12 20:07:50.712043 \N \N \N \N \N +940 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:07:50.730444 2024-02-12 20:07:50.730444 \N \N \N \N \N +943 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:09:45.375931 2024-02-12 20:09:45.375931 \N \N \N \N \N +944 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:09:45.393999 2024-02-12 20:09:45.393999 \N \N \N \N \N +945 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:10:42.362955 2024-02-12 20:10:42.362955 \N \N \N \N \N +946 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:10:42.379104 2024-02-12 20:10:42.379104 \N \N \N \N \N +947 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:00.44148 2024-02-12 20:11:00.44148 \N \N \N \N \N +948 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:00.457391 2024-02-12 20:11:00.457391 \N \N \N \N \N +949 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:39.566174 2024-02-12 20:11:39.566174 \N \N \N \N \N +950 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:39.585724 2024-02-12 20:11:39.585724 \N \N \N \N \N +951 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:56.865796 2024-02-12 20:11:56.865796 \N \N \N \N \N +952 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:11:56.885018 2024-02-12 20:11:56.885018 \N \N \N \N \N +953 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:12:37.16113 2024-02-12 20:12:37.16113 \N \N \N \N \N +954 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:12:37.17752 2024-02-12 20:12:37.17752 \N \N \N \N \N +955 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:12:47.277714 2024-02-12 20:12:47.277714 \N \N \N \N \N +956 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:12:47.295388 2024-02-12 20:12:47.295388 \N \N \N \N \N +957 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:13:08.986555 2024-02-12 20:13:08.986555 \N \N \N \N \N +958 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:13:09.002557 2024-02-12 20:13:09.002557 \N \N \N \N \N +959 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:13:31.109046 2024-02-12 20:13:31.109046 \N \N \N \N \N +960 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:13:31.127101 2024-02-12 20:13:31.127101 \N \N \N \N \N +961 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:15:22.22473 2024-02-12 20:15:22.22473 \N \N \N \N \N +962 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:15:22.240249 2024-02-12 20:15:22.240249 \N \N \N \N \N +963 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:15:32.244686 2024-02-12 20:15:32.244686 \N \N \N \N \N +964 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:15:32.260462 2024-02-12 20:15:32.260462 \N \N \N \N \N +965 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:05.439022 2024-02-12 20:17:05.439022 \N \N \N \N \N +966 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:05.454433 2024-02-12 20:17:05.454433 \N \N \N \N \N +967 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:26.842469 2024-02-12 20:17:26.842469 \N \N \N \N \N +968 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:26.863468 2024-02-12 20:17:26.863468 \N \N \N \N \N +969 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:49.188757 2024-02-12 20:17:49.188757 \N \N \N \N \N +970 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:17:49.218211 2024-02-12 20:17:49.218211 \N \N \N \N \N +971 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:19:41.253789 2024-02-12 20:19:41.253789 \N \N \N \N \N +972 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:19:41.271162 2024-02-12 20:19:41.271162 \N \N \N \N \N +973 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:03.00763 2024-02-12 20:20:03.00763 \N \N \N \N \N +974 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:03.022189 2024-02-12 20:20:03.022189 \N \N \N \N \N +975 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:25.16905 2024-02-12 20:20:25.16905 \N \N \N \N \N +976 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:25.187916 2024-02-12 20:20:25.187916 \N \N \N \N \N +977 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:59.149917 2024-02-12 20:20:59.149917 \N \N \N \N \N +978 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:59.192182 2024-02-12 20:20:59.192182 \N \N \N \N \N +979 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:59.228461 2024-02-12 20:20:59.228461 \N \N \N \N \N +980 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:20:59.270358 2024-02-12 20:20:59.270358 \N \N \N \N \N +981 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:21.874946 2024-02-12 20:21:21.874946 \N \N \N \N \N +982 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:21.916198 2024-02-12 20:21:21.916198 \N \N \N \N \N +983 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:21.935458 2024-02-12 20:21:21.935458 \N \N \N \N \N +984 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:21.967852 2024-02-12 20:21:21.967852 \N \N \N \N \N +985 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:37.73057 2024-02-12 20:21:37.73057 \N \N \N \N \N +986 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:21:37.768859 2024-02-12 20:21:37.768859 \N \N \N \N \N +987 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:12.652231 2024-02-12 20:22:12.652231 \N \N \N \N \N +988 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:12.668951 2024-02-12 20:22:12.668951 \N \N \N \N \N +989 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:22.882019 2024-02-12 20:22:22.882019 \N \N \N \N \N +990 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:22.897229 2024-02-12 20:22:22.897229 \N \N \N \N \N +991 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:44.151026 2024-02-12 20:22:44.151026 \N \N \N \N \N +992 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:22:44.170615 2024-02-12 20:22:44.170615 \N \N \N \N \N +993 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:23:06.47358 2024-02-12 20:23:06.47358 \N \N \N \N \N +994 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:23:06.490934 2024-02-12 20:23:06.490934 \N \N \N \N \N +995 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:23:27.963362 2024-02-12 20:23:27.963362 \N \N \N \N \N +996 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:23:27.976367 2024-02-12 20:23:27.976367 \N \N \N \N \N +997 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:24:42.174605 2024-02-12 20:24:42.174605 \N \N \N \N \N +998 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:24:42.190586 2024-02-12 20:24:42.190586 \N \N \N \N \N +999 Cordey Sainteau 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:24:59.403952 2024-02-12 20:24:59.403952 \N \N \N \N \N +1000 Cordey Sainteau 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:24:59.420257 2024-02-12 20:24:59.420257 \N \N \N \N \N +1001 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:31:17.142949 2024-02-12 20:31:17.142949 \N \N \N \N \N +1002 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:31:17.162181 2024-02-12 20:31:17.162181 \N \N \N \N \N +1003 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:31:23.931785 2024-02-12 20:31:23.931785 \N \N \N \N \N +1004 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:31:23.953923 2024-02-12 20:31:23.953923 \N \N \N \N \N +1005 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.73519 2024-02-12 20:32:19.73519 \N \N \N \N \N +1009 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.908742 2024-02-12 20:32:19.908742 \N \N \N \N \N +1027 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.289747 2024-02-12 20:32:21.289747 \N \N \N \N \N +1030 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.384016 2024-02-12 20:32:21.384016 \N \N \N \N \N +1042 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.124096 2024-02-12 20:32:22.124096 \N \N \N \N \N +1045 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.265821 2024-02-12 20:32:22.265821 \N \N \N \N \N +1059 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.032934 2024-02-12 20:32:23.032934 \N \N \N \N \N +1062 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.087483 2024-02-12 20:32:23.087483 \N \N \N \N \N +1075 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.796985 2024-02-12 20:32:23.796985 \N \N \N \N \N +1076 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.852593 2024-02-12 20:32:23.852593 \N \N \N \N \N +1091 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.5473 2024-02-12 20:32:24.5473 \N \N \N \N \N +1093 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.603292 2024-02-12 20:32:24.603292 \N \N \N \N \N +1109 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.441149 2024-02-12 20:32:25.441149 \N \N \N \N \N +1110 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.56738 2024-02-12 20:32:25.56738 \N \N \N \N \N +1125 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.231536 2024-02-12 20:32:26.231536 \N \N \N \N \N +1126 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.289624 2024-02-12 20:32:26.289624 \N \N \N \N \N +1141 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.997617 2024-02-12 20:32:26.997617 \N \N \N \N \N +1144 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.08085 2024-02-12 20:32:27.08085 \N \N \N \N \N +1157 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.686923 2024-02-12 20:32:27.686923 \N \N \N \N \N +1158 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.767644 2024-02-12 20:32:27.767644 \N \N \N \N \N +1173 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.578775 2024-02-12 20:32:28.578775 \N \N \N \N \N +1177 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.774247 2024-02-12 20:32:28.774247 \N \N \N \N \N +1189 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.493628 2024-02-12 20:32:29.493628 \N \N \N \N \N +1190 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.574968 2024-02-12 20:32:29.574968 \N \N \N \N \N +1205 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.282238 2024-02-12 20:32:30.282238 \N \N \N \N \N +1206 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.402363 2024-02-12 20:32:30.402363 \N \N \N \N \N +1221 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.112082 2024-02-12 20:32:31.112082 \N \N \N \N \N +1222 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.201993 2024-02-12 20:32:31.201993 \N \N \N \N \N +1237 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.939463 2024-02-12 20:32:31.939463 \N \N \N \N \N +1238 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.0121 2024-02-12 20:32:32.0121 \N \N \N \N \N +1255 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.911534 2024-02-12 20:32:32.911534 \N \N \N \N \N +1258 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.98593 2024-02-12 20:32:32.98593 \N \N \N \N \N +1269 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.781787 2024-02-12 20:32:33.781787 \N \N \N \N \N +1275 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.865214 2024-02-12 20:32:33.865214 \N \N \N \N \N +1286 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.669729 2024-02-12 20:32:34.669729 \N \N \N \N \N +1289 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.741384 2024-02-12 20:32:34.741384 \N \N \N \N \N +1300 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.476367 2024-02-12 20:32:35.476367 \N \N \N \N \N +1303 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.714516 2024-02-12 20:32:35.714516 \N \N \N \N \N +2091 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.457391 2024-02-12 20:33:43.457391 \N \N \N \N \N +2095 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:43.553326 2024-02-12 20:33:43.553326 \N \N \N \N \N +2105 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.676246 2024-02-12 20:33:44.676246 \N \N \N \N \N +2108 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.771005 2024-02-12 20:33:44.771005 \N \N \N \N \N +2122 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.73857 2024-02-12 20:33:45.73857 \N \N \N \N \N +2125 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.849971 2024-02-12 20:33:45.849971 \N \N \N \N \N +2138 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.767706 2024-02-12 20:33:46.767706 \N \N \N \N \N +2141 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.877008 2024-02-12 20:33:46.877008 \N \N \N \N \N +2155 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.348588 2024-02-12 20:33:48.348588 \N \N \N \N \N +2158 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.530602 2024-02-12 20:33:48.530602 \N \N \N \N \N +2173 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.815321 2024-02-12 20:33:49.815321 \N \N \N \N \N +2174 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.904992 2024-02-12 20:33:49.904992 \N \N \N \N \N +2189 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.22057 2024-02-12 20:33:51.22057 \N \N \N \N \N +2190 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.339009 2024-02-12 20:33:51.339009 \N \N \N \N \N +2195 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.055762 2024-02-12 20:33:52.055762 \N \N \N \N \N +2196 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.081513 2024-02-12 20:33:52.081513 \N \N \N \N \N +2219 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.371057 2024-02-12 20:33:54.371057 \N \N \N \N \N +2222 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.49315 2024-02-12 20:33:54.49315 \N \N \N \N \N +2236 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.21733 2024-02-12 20:33:56.21733 \N \N \N \N \N +2240 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.309907 2024-02-12 20:33:56.309907 \N \N \N \N \N +1006 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.737711 2024-02-12 20:32:19.737711 \N \N \N \N \N +1007 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.770971 2024-02-12 20:32:19.770971 \N \N \N \N \N +1008 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.899792 2024-02-12 20:32:19.899792 \N \N \N \N \N +1010 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.965392 2024-02-12 20:32:19.965392 \N \N \N \N \N +1011 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:19.994572 2024-02-12 20:32:19.994572 \N \N \N \N \N +1012 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.038307 2024-02-12 20:32:20.038307 \N \N \N \N \N +1013 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.064784 2024-02-12 20:32:20.064784 \N \N \N \N \N +1014 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.138306 2024-02-12 20:32:20.138306 \N \N \N \N \N +1015 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.143945 2024-02-12 20:32:20.143945 \N \N \N \N \N +1016 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.224351 2024-02-12 20:32:20.224351 \N \N \N \N \N +1017 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.528722 2024-02-12 20:32:20.528722 \N \N \N \N \N +1018 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.553157 2024-02-12 20:32:20.553157 \N \N \N \N \N +1019 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.941136 2024-02-12 20:32:20.941136 \N \N \N \N \N +1020 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:20.992618 2024-02-12 20:32:20.992618 \N \N \N \N \N +1021 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.030353 2024-02-12 20:32:21.030353 \N \N \N \N \N +1022 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.038925 2024-02-12 20:32:21.038925 \N \N \N \N \N +1023 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.118291 2024-02-12 20:32:21.118291 \N \N \N \N \N +1024 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.178307 2024-02-12 20:32:21.178307 \N \N \N \N \N +1025 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.27806 2024-02-12 20:32:21.27806 \N \N \N \N \N +1026 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.283346 2024-02-12 20:32:21.283346 \N \N \N \N \N +1028 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.35199 2024-02-12 20:32:21.35199 \N \N \N \N \N +1029 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.368718 2024-02-12 20:32:21.368718 \N \N \N \N \N +1031 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.539633 2024-02-12 20:32:21.539633 \N \N \N \N \N +1032 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.580863 2024-02-12 20:32:21.580863 \N \N \N \N \N +1033 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.599392 2024-02-12 20:32:21.599392 \N \N \N \N \N +1034 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.635704 2024-02-12 20:32:21.635704 \N \N \N \N \N +1035 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.907441 2024-02-12 20:32:21.907441 \N \N \N \N \N +1036 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:21.957765 2024-02-12 20:32:21.957765 \N \N \N \N \N +1037 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.008078 2024-02-12 20:32:22.008078 \N \N \N \N \N +1038 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.01166 2024-02-12 20:32:22.01166 \N \N \N \N \N +1039 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.03861 2024-02-12 20:32:22.03861 \N \N \N \N \N +1040 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.040618 2024-02-12 20:32:22.040618 \N \N \N \N \N +1041 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.073065 2024-02-12 20:32:22.073065 \N \N \N \N \N +1043 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.140052 2024-02-12 20:32:22.140052 \N \N \N \N \N +1044 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.158195 2024-02-12 20:32:22.158195 \N \N \N \N \N +1046 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.326365 2024-02-12 20:32:22.326365 \N \N \N \N \N +1047 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.464319 2024-02-12 20:32:22.464319 \N \N \N \N \N +1048 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.469453 2024-02-12 20:32:22.469453 \N \N \N \N \N +1049 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.497409 2024-02-12 20:32:22.497409 \N \N \N \N \N +1050 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.504039 2024-02-12 20:32:22.504039 \N \N \N \N \N +1051 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.74191 2024-02-12 20:32:22.74191 \N \N \N \N \N +1052 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.796159 2024-02-12 20:32:22.796159 \N \N \N \N \N +1053 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.814546 2024-02-12 20:32:22.814546 \N \N \N \N \N +1054 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.838492 2024-02-12 20:32:22.838492 \N \N \N \N \N +1055 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.93006 2024-02-12 20:32:22.93006 \N \N \N \N \N +1056 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.9591 2024-02-12 20:32:22.9591 \N \N \N \N \N +1057 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.964966 2024-02-12 20:32:22.964966 \N \N \N \N \N +1058 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:22.989233 2024-02-12 20:32:22.989233 \N \N \N \N \N +1060 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.039725 2024-02-12 20:32:23.039725 \N \N \N \N \N +1061 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.079862 2024-02-12 20:32:23.079862 \N \N \N \N \N +1063 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.169483 2024-02-12 20:32:23.169483 \N \N \N \N \N +1064 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.189967 2024-02-12 20:32:23.189967 \N \N \N \N \N +1065 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.319905 2024-02-12 20:32:23.319905 \N \N \N \N \N +1066 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.354829 2024-02-12 20:32:23.354829 \N \N \N \N \N +1067 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.444083 2024-02-12 20:32:23.444083 \N \N \N \N \N +1068 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.517278 2024-02-12 20:32:23.517278 \N \N \N \N \N +1069 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.533104 2024-02-12 20:32:23.533104 \N \N \N \N \N +1070 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.547955 2024-02-12 20:32:23.547955 \N \N \N \N \N +1071 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.660021 2024-02-12 20:32:23.660021 \N \N \N \N \N +1074 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.728724 2024-02-12 20:32:23.728724 \N \N \N \N \N +1085 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.347086 2024-02-12 20:32:24.347086 \N \N \N \N \N +1088 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.412888 2024-02-12 20:32:24.412888 \N \N \N \N \N +1102 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.142849 2024-02-12 20:32:25.142849 \N \N \N \N \N +1105 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.205513 2024-02-12 20:32:25.205513 \N \N \N \N \N +1119 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.98798 2024-02-12 20:32:25.98798 \N \N \N \N \N +1121 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.057901 2024-02-12 20:32:26.057901 \N \N \N \N \N +1137 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.771562 2024-02-12 20:32:26.771562 \N \N \N \N \N +1138 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.830738 2024-02-12 20:32:26.830738 \N \N \N \N \N +1153 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.525097 2024-02-12 20:32:27.525097 \N \N \N \N \N +1154 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.586623 2024-02-12 20:32:27.586623 \N \N \N \N \N +1166 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.279574 2024-02-12 20:32:28.279574 \N \N \N \N \N +1170 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.350665 2024-02-12 20:32:28.350665 \N \N \N \N \N +1183 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.226728 2024-02-12 20:32:29.226728 \N \N \N \N \N +1187 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.309654 2024-02-12 20:32:29.309654 \N \N \N \N \N +1198 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.035835 2024-02-12 20:32:30.035835 \N \N \N \N \N +1202 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.114576 2024-02-12 20:32:30.114576 \N \N \N \N \N +1213 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.748604 2024-02-12 20:32:30.748604 \N \N \N \N \N +1215 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.818816 2024-02-12 20:32:30.818816 \N \N \N \N \N +1229 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.609644 2024-02-12 20:32:31.609644 \N \N \N \N \N +1231 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.693412 2024-02-12 20:32:31.693412 \N \N \N \N \N +1246 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.494956 2024-02-12 20:32:32.494956 \N \N \N \N \N +1249 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.553395 2024-02-12 20:32:32.553395 \N \N \N \N \N +1261 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.250342 2024-02-12 20:32:33.250342 \N \N \N \N \N +1262 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.324553 2024-02-12 20:32:33.324553 \N \N \N \N \N +1277 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.031707 2024-02-12 20:32:34.031707 \N \N \N \N \N +1278 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.117568 2024-02-12 20:32:34.117568 \N \N \N \N \N +1293 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.887325 2024-02-12 20:32:34.887325 \N \N \N \N \N +1294 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.949476 2024-02-12 20:32:34.949476 \N \N \N \N \N +1307 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:36.107217 2024-02-12 20:32:36.107217 \N \N \N \N \N +1308 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:36.279399 2024-02-12 20:32:36.279399 \N \N \N \N \N +1310 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.516846 2024-02-12 20:32:37.516846 \N \N \N \N \N +1312 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.581303 2024-02-12 20:32:37.581303 \N \N \N \N \N +1321 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.149728 2024-02-12 20:32:38.149728 \N \N \N \N \N +1322 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.199757 2024-02-12 20:32:38.199757 \N \N \N \N \N +1323 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.642312 2024-02-12 20:32:38.642312 \N \N \N \N \N +1325 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.698908 2024-02-12 20:32:38.698908 \N \N \N \N \N +1339 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.264238 2024-02-12 20:32:41.264238 \N \N \N \N \N +1341 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.309826 2024-02-12 20:32:41.309826 \N \N \N \N \N +1351 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.899923 2024-02-12 20:32:41.899923 \N \N \N \N \N +1353 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.962387 2024-02-12 20:32:41.962387 \N \N \N \N \N +1356 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.599231 2024-02-12 20:32:42.599231 \N \N \N \N \N +1358 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.784282 2024-02-12 20:32:42.784282 \N \N \N \N \N +1367 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.415576 2024-02-12 20:32:43.415576 \N \N \N \N \N +1369 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.47399 2024-02-12 20:32:43.47399 \N \N \N \N \N +1371 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.157093 2024-02-12 20:32:44.157093 \N \N \N \N \N +1372 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.245889 2024-02-12 20:32:44.245889 \N \N \N \N \N +1384 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.912562 2024-02-12 20:32:44.912562 \N \N \N \N \N +1386 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.961764 2024-02-12 20:32:44.961764 \N \N \N \N \N +1389 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.446272 2024-02-12 20:32:45.446272 \N \N \N \N \N +1392 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.493106 2024-02-12 20:32:45.493106 \N \N \N \N \N +1399 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.126201 2024-02-12 20:32:46.126201 \N \N \N \N \N +1401 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.183964 2024-02-12 20:32:46.183964 \N \N \N \N \N +1406 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.71191 2024-02-12 20:32:46.71191 \N \N \N \N \N +1409 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.764462 2024-02-12 20:32:46.764462 \N \N \N \N \N +1415 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.273236 2024-02-12 20:32:47.273236 \N \N \N \N \N +1417 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.3171 2024-02-12 20:32:47.3171 \N \N \N \N \N +1072 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.673764 2024-02-12 20:32:23.673764 \N \N \N \N \N +1073 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.70166 2024-02-12 20:32:23.70166 \N \N \N \N \N +1079 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.008249 2024-02-12 20:32:24.008249 \N \N \N \N \N +1080 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.030937 2024-02-12 20:32:24.030937 \N \N \N \N \N +1086 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.364442 2024-02-12 20:32:24.364442 \N \N \N \N \N +1087 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.391651 2024-02-12 20:32:24.391651 \N \N \N \N \N +1095 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.69456 2024-02-12 20:32:24.69456 \N \N \N \N \N +1096 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.722862 2024-02-12 20:32:24.722862 \N \N \N \N \N +1101 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.120929 2024-02-12 20:32:25.120929 \N \N \N \N \N +1103 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.155172 2024-02-12 20:32:25.155172 \N \N \N \N \N +1111 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.600682 2024-02-12 20:32:25.600682 \N \N \N \N \N +1112 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.636679 2024-02-12 20:32:25.636679 \N \N \N \N \N +1117 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.947753 2024-02-12 20:32:25.947753 \N \N \N \N \N +1118 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.973999 2024-02-12 20:32:25.973999 \N \N \N \N \N +1127 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.320499 2024-02-12 20:32:26.320499 \N \N \N \N \N +1128 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.350005 2024-02-12 20:32:26.350005 \N \N \N \N \N +1133 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.661009 2024-02-12 20:32:26.661009 \N \N \N \N \N +1135 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.689512 2024-02-12 20:32:26.689512 \N \N \N \N \N +1142 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.032759 2024-02-12 20:32:27.032759 \N \N \N \N \N +1143 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.07063 2024-02-12 20:32:27.07063 \N \N \N \N \N +1150 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.462857 2024-02-12 20:32:27.462857 \N \N \N \N \N +1151 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.496356 2024-02-12 20:32:27.496356 \N \N \N \N \N +1159 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.822613 2024-02-12 20:32:27.822613 \N \N \N \N \N +1160 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.854015 2024-02-12 20:32:27.854015 \N \N \N \N \N +1167 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.299651 2024-02-12 20:32:28.299651 \N \N \N \N \N +1168 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.340681 2024-02-12 20:32:28.340681 \N \N \N \N \N +1174 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.722299 2024-02-12 20:32:28.722299 \N \N \N \N \N +1175 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.751987 2024-02-12 20:32:28.751987 \N \N \N \N \N +1184 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.269161 2024-02-12 20:32:29.269161 \N \N \N \N \N +1188 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.332839 2024-02-12 20:32:29.332839 \N \N \N \N \N +1192 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.681232 2024-02-12 20:32:29.681232 \N \N \N \N \N +1195 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.710648 2024-02-12 20:32:29.710648 \N \N \N \N \N +1197 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.023397 2024-02-12 20:32:30.023397 \N \N \N \N \N +1200 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.083554 2024-02-12 20:32:30.083554 \N \N \N \N \N +1207 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.411828 2024-02-12 20:32:30.411828 \N \N \N \N \N +1208 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.446719 2024-02-12 20:32:30.446719 \N \N \N \N \N +1214 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.801181 2024-02-12 20:32:30.801181 \N \N \N \N \N +1217 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.834043 2024-02-12 20:32:30.834043 \N \N \N \N \N +1223 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.206917 2024-02-12 20:32:31.206917 \N \N \N \N \N +1224 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.25209 2024-02-12 20:32:31.25209 \N \N \N \N \N +1230 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.673727 2024-02-12 20:32:31.673727 \N \N \N \N \N +1232 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.712319 2024-02-12 20:32:31.712319 \N \N \N \N \N +1239 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.035844 2024-02-12 20:32:32.035844 \N \N \N \N \N +1240 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.078475 2024-02-12 20:32:32.078475 \N \N \N \N \N +1245 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.464602 2024-02-12 20:32:32.464602 \N \N \N \N \N +1247 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.504278 2024-02-12 20:32:32.504278 \N \N \N \N \N +1253 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.851767 2024-02-12 20:32:32.851767 \N \N \N \N \N +1254 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.894628 2024-02-12 20:32:32.894628 \N \N \N \N \N +1263 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.385998 2024-02-12 20:32:33.385998 \N \N \N \N \N +1264 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.424872 2024-02-12 20:32:33.424872 \N \N \N \N \N +1270 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.786174 2024-02-12 20:32:33.786174 \N \N \N \N \N +1272 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.821812 2024-02-12 20:32:33.821812 \N \N \N \N \N +1279 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.169486 2024-02-12 20:32:34.169486 \N \N \N \N \N +1280 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.20305 2024-02-12 20:32:34.20305 \N \N \N \N \N +1297 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.374908 2024-02-12 20:32:35.374908 \N \N \N \N \N +1299 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.448812 2024-02-12 20:32:35.448812 \N \N \N \N \N +1315 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.787076 2024-02-12 20:32:37.787076 \N \N \N \N \N +1318 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.909594 2024-02-12 20:32:37.909594 \N \N \N \N \N +1077 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.862584 2024-02-12 20:32:23.862584 \N \N \N \N \N +1078 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:23.894932 2024-02-12 20:32:23.894932 \N \N \N \N \N +1083 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.231662 2024-02-12 20:32:24.231662 \N \N \N \N \N +1084 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.259091 2024-02-12 20:32:24.259091 \N \N \N \N \N +1092 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.583103 2024-02-12 20:32:24.583103 \N \N \N \N \N +1094 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.60842 2024-02-12 20:32:24.60842 \N \N \N \N \N +1098 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.981294 2024-02-12 20:32:24.981294 \N \N \N \N \N +1100 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.001015 2024-02-12 20:32:25.001015 \N \N \N \N \N +1107 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.344377 2024-02-12 20:32:25.344377 \N \N \N \N \N +1108 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.423077 2024-02-12 20:32:25.423077 \N \N \N \N \N +1114 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.821217 2024-02-12 20:32:25.821217 \N \N \N \N \N +1116 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.844996 2024-02-12 20:32:25.844996 \N \N \N \N \N +1123 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.177973 2024-02-12 20:32:26.177973 \N \N \N \N \N +1124 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.210323 2024-02-12 20:32:26.210323 \N \N \N \N \N +1130 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.555388 2024-02-12 20:32:26.555388 \N \N \N \N \N +1131 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.577794 2024-02-12 20:32:26.577794 \N \N \N \N \N +1139 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.922002 2024-02-12 20:32:26.922002 \N \N \N \N \N +1140 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.960309 2024-02-12 20:32:26.960309 \N \N \N \N \N +1145 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.289691 2024-02-12 20:32:27.289691 \N \N \N \N \N +1146 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.306755 2024-02-12 20:32:27.306755 \N \N \N \N \N +1155 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.611599 2024-02-12 20:32:27.611599 \N \N \N \N \N +1156 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.639871 2024-02-12 20:32:27.639871 \N \N \N \N \N +1161 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.993826 2024-02-12 20:32:27.993826 \N \N \N \N \N +1162 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.029308 2024-02-12 20:32:28.029308 \N \N \N \N \N +1171 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.373622 2024-02-12 20:32:28.373622 \N \N \N \N \N +1172 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.404337 2024-02-12 20:32:28.404337 \N \N \N \N \N +1176 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.757876 2024-02-12 20:32:28.757876 \N \N \N \N \N +1178 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.79065 2024-02-12 20:32:28.79065 \N \N \N \N \N +1181 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.175347 2024-02-12 20:32:29.175347 \N \N \N \N \N +1185 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.277666 2024-02-12 20:32:29.277666 \N \N \N \N \N +1191 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.649404 2024-02-12 20:32:29.649404 \N \N \N \N \N +1193 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.683561 2024-02-12 20:32:29.683561 \N \N \N \N \N +1201 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.092787 2024-02-12 20:32:30.092787 \N \N \N \N \N +1203 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.129031 2024-02-12 20:32:30.129031 \N \N \N \N \N +1210 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.475138 2024-02-12 20:32:30.475138 \N \N \N \N \N +1211 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.521689 2024-02-12 20:32:30.521689 \N \N \N \N \N +1219 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.901445 2024-02-12 20:32:30.901445 \N \N \N \N \N +1220 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.927292 2024-02-12 20:32:30.927292 \N \N \N \N \N +1226 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.29528 2024-02-12 20:32:31.29528 \N \N \N \N \N +1227 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.350546 2024-02-12 20:32:31.350546 \N \N \N \N \N +1233 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.742074 2024-02-12 20:32:31.742074 \N \N \N \N \N +1235 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.771342 2024-02-12 20:32:31.771342 \N \N \N \N \N +1241 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.157572 2024-02-12 20:32:32.157572 \N \N \N \N \N +1242 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.192753 2024-02-12 20:32:32.192753 \N \N \N \N \N +1248 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.533501 2024-02-12 20:32:32.533501 \N \N \N \N \N +1250 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.565996 2024-02-12 20:32:32.565996 \N \N \N \N \N +1256 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.921364 2024-02-12 20:32:32.921364 \N \N \N \N \N +1257 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.954609 2024-02-12 20:32:32.954609 \N \N \N \N \N +1265 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.441675 2024-02-12 20:32:33.441675 \N \N \N \N \N +1267 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.475162 2024-02-12 20:32:33.475162 \N \N \N \N \N +1273 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.828848 2024-02-12 20:32:33.828848 \N \N \N \N \N +1274 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.860946 2024-02-12 20:32:33.860946 \N \N \N \N \N +1281 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.220216 2024-02-12 20:32:34.220216 \N \N \N \N \N +1282 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.247886 2024-02-12 20:32:34.247886 \N \N \N \N \N +1290 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.748513 2024-02-12 20:32:34.748513 \N \N \N \N \N +1292 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.806942 2024-02-12 20:32:34.806942 \N \N \N \N \N +1298 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.404608 2024-02-12 20:32:35.404608 \N \N \N \N \N +1301 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.513606 2024-02-12 20:32:35.513606 \N \N \N \N \N +1081 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.161637 2024-02-12 20:32:24.161637 \N \N \N \N \N +1082 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.226593 2024-02-12 20:32:24.226593 \N \N \N \N \N +1097 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.920376 2024-02-12 20:32:24.920376 \N \N \N \N \N +1099 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.995821 2024-02-12 20:32:24.995821 \N \N \N \N \N +1113 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.765939 2024-02-12 20:32:25.765939 \N \N \N \N \N +1115 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.835337 2024-02-12 20:32:25.835337 \N \N \N \N \N +1129 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.551947 2024-02-12 20:32:26.551947 \N \N \N \N \N +1132 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.632745 2024-02-12 20:32:26.632745 \N \N \N \N \N +1147 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.309734 2024-02-12 20:32:27.309734 \N \N \N \N \N +1148 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.373854 2024-02-12 20:32:27.373854 \N \N \N \N \N +1163 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.038263 2024-02-12 20:32:28.038263 \N \N \N \N \N +1164 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.11666 2024-02-12 20:32:28.11666 \N \N \N \N \N +1179 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.86304 2024-02-12 20:32:28.86304 \N \N \N \N \N +1180 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.927871 2024-02-12 20:32:28.927871 \N \N \N \N \N +1194 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.687517 2024-02-12 20:32:29.687517 \N \N \N \N \N +1196 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.751768 2024-02-12 20:32:29.751768 \N \N \N \N \N +1209 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.452606 2024-02-12 20:32:30.452606 \N \N \N \N \N +1212 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.570431 2024-02-12 20:32:30.570431 \N \N \N \N \N +1225 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.292445 2024-02-12 20:32:31.292445 \N \N \N \N \N +1228 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.382802 2024-02-12 20:32:31.382802 \N \N \N \N \N +1243 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.253628 2024-02-12 20:32:32.253628 \N \N \N \N \N +1244 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.314609 2024-02-12 20:32:32.314609 \N \N \N \N \N +1259 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.045524 2024-02-12 20:32:33.045524 \N \N \N \N \N +1260 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.103183 2024-02-12 20:32:33.103183 \N \N \N \N \N +1271 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.81174 2024-02-12 20:32:33.81174 \N \N \N \N \N +1276 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.881671 2024-02-12 20:32:33.881671 \N \N \N \N \N +1285 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.663968 2024-02-12 20:32:34.663968 \N \N \N \N \N +1287 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.733335 2024-02-12 20:32:34.733335 \N \N \N \N \N +1302 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.631238 2024-02-12 20:32:35.631238 \N \N \N \N \N +1304 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.772916 2024-02-12 20:32:35.772916 \N \N \N \N \N +1309 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.467427 2024-02-12 20:32:37.467427 \N \N \N \N \N +1311 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.520834 2024-02-12 20:32:37.520834 \N \N \N \N \N +1319 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.090848 2024-02-12 20:32:38.090848 \N \N \N \N \N +1320 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.146624 2024-02-12 20:32:38.146624 \N \N \N \N \N +1324 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.667779 2024-02-12 20:32:38.667779 \N \N \N \N \N +1326 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.722993 2024-02-12 20:32:38.722993 \N \N \N \N \N +1335 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.153489 2024-02-12 20:32:39.153489 \N \N \N \N \N +1336 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.182322 2024-02-12 20:32:39.182322 \N \N \N \N \N +1337 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.938328 2024-02-12 20:32:39.938328 \N \N \N \N \N +1338 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.994033 2024-02-12 20:32:39.994033 \N \N \N \N \N +1340 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.267583 2024-02-12 20:32:41.267583 \N \N \N \N \N +1342 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.313306 2024-02-12 20:32:41.313306 \N \N \N \N \N +1352 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.916158 2024-02-12 20:32:41.916158 \N \N \N \N \N +1354 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.981658 2024-02-12 20:32:41.981658 \N \N \N \N \N +1355 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.595977 2024-02-12 20:32:42.595977 \N \N \N \N \N +1357 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.780207 2024-02-12 20:32:42.780207 \N \N \N \N \N +1368 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.450575 2024-02-12 20:32:43.450575 \N \N \N \N \N +1370 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.51514 2024-02-12 20:32:43.51514 \N \N \N \N \N +1373 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.25807 2024-02-12 20:32:44.25807 \N \N \N \N \N +1375 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.309048 2024-02-12 20:32:44.309048 \N \N \N \N \N +1383 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.909205 2024-02-12 20:32:44.909205 \N \N \N \N \N +1385 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.957974 2024-02-12 20:32:44.957974 \N \N \N \N \N +1390 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.484742 2024-02-12 20:32:45.484742 \N \N \N \N \N +1393 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.539581 2024-02-12 20:32:45.539581 \N \N \N \N \N +1400 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.173179 2024-02-12 20:32:46.173179 \N \N \N \N \N +1402 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.232628 2024-02-12 20:32:46.232628 \N \N \N \N \N +1405 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.707439 2024-02-12 20:32:46.707439 \N \N \N \N \N +1408 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.760564 2024-02-12 20:32:46.760564 \N \N \N \N \N +1089 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.426747 2024-02-12 20:32:24.426747 \N \N \N \N \N +1090 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:24.508364 2024-02-12 20:32:24.508364 \N \N \N \N \N +1104 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.167583 2024-02-12 20:32:25.167583 \N \N \N \N \N +1106 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:25.259165 2024-02-12 20:32:25.259165 \N \N \N \N \N +1120 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.029402 2024-02-12 20:32:26.029402 \N \N \N \N \N +1122 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.08064 2024-02-12 20:32:26.08064 \N \N \N \N \N +1134 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.662746 2024-02-12 20:32:26.662746 \N \N \N \N \N +1136 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:26.732218 2024-02-12 20:32:26.732218 \N \N \N \N \N +1149 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.442503 2024-02-12 20:32:27.442503 \N \N \N \N \N +1152 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:27.509229 2024-02-12 20:32:27.509229 \N \N \N \N \N +1165 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.267312 2024-02-12 20:32:28.267312 \N \N \N \N \N +1169 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:28.34607 2024-02-12 20:32:28.34607 \N \N \N \N \N +1182 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.180439 2024-02-12 20:32:29.180439 \N \N \N \N \N +1186 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:29.295292 2024-02-12 20:32:29.295292 \N \N \N \N \N +1199 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.078379 2024-02-12 20:32:30.078379 \N \N \N \N \N +1204 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.160203 2024-02-12 20:32:30.160203 \N \N \N \N \N +1216 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.821307 2024-02-12 20:32:30.821307 \N \N \N \N \N +1218 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:30.892936 2024-02-12 20:32:30.892936 \N \N \N \N \N +1234 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.765155 2024-02-12 20:32:31.765155 \N \N \N \N \N +1236 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:31.838855 2024-02-12 20:32:31.838855 \N \N \N \N \N +1251 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.656982 2024-02-12 20:32:32.656982 \N \N \N \N \N +1252 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:32.715924 2024-02-12 20:32:32.715924 \N \N \N \N \N +1266 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.473994 2024-02-12 20:32:33.473994 \N \N \N \N \N +1268 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:33.546716 2024-02-12 20:32:33.546716 \N \N \N \N \N +1283 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.267925 2024-02-12 20:32:34.267925 \N \N \N \N \N +1284 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.395674 2024-02-12 20:32:34.395674 \N \N \N \N \N +1288 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.736218 2024-02-12 20:32:34.736218 \N \N \N \N \N +1291 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:34.801613 2024-02-12 20:32:34.801613 \N \N \N \N \N +1295 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.091028 2024-02-12 20:32:35.091028 \N \N \N \N \N +1296 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.178726 2024-02-12 20:32:35.178726 \N \N \N \N \N +1305 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:35.933631 2024-02-12 20:32:35.933631 \N \N \N \N \N +1306 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:36.056897 2024-02-12 20:32:36.056897 \N \N \N \N \N +1313 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.667324 2024-02-12 20:32:37.667324 \N \N \N \N \N +1314 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.711711 2024-02-12 20:32:37.711711 \N \N \N \N \N +1316 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.809066 2024-02-12 20:32:37.809066 \N \N \N \N \N +1317 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:37.852266 2024-02-12 20:32:37.852266 \N \N \N \N \N +1328 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.779813 2024-02-12 20:32:38.779813 \N \N \N \N \N +1330 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.889878 2024-02-12 20:32:38.889878 \N \N \N \N \N +1332 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.900828 2024-02-12 20:32:38.900828 \N \N \N \N \N +1334 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.036652 2024-02-12 20:32:39.036652 \N \N \N \N \N +1344 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.428342 2024-02-12 20:32:41.428342 \N \N \N \N \N +1346 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.46048 2024-02-12 20:32:41.46048 \N \N \N \N \N +1349 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.644659 2024-02-12 20:32:41.644659 \N \N \N \N \N +1350 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.661309 2024-02-12 20:32:41.661309 \N \N \N \N \N +1361 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.012995 2024-02-12 20:32:43.012995 \N \N \N \N \N +1363 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.026528 2024-02-12 20:32:43.026528 \N \N \N \N \N +1365 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.129102 2024-02-12 20:32:43.129102 \N \N \N \N \N +1366 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.168899 2024-02-12 20:32:43.168899 \N \N \N \N \N +1377 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.451728 2024-02-12 20:32:44.451728 \N \N \N \N \N +1378 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.45924 2024-02-12 20:32:44.45924 \N \N \N \N \N +1380 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.585562 2024-02-12 20:32:44.585562 \N \N \N \N \N +1381 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.596492 2024-02-12 20:32:44.596492 \N \N \N \N \N +1391 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.489583 2024-02-12 20:32:45.489583 \N \N \N \N \N +1395 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.625327 2024-02-12 20:32:45.625327 \N \N \N \N \N +1396 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.639065 2024-02-12 20:32:45.639065 \N \N \N \N \N +1398 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.816412 2024-02-12 20:32:45.816412 \N \N \N \N \N +1407 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.740422 2024-02-12 20:32:46.740422 \N \N \N \N \N +1410 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.799874 2024-02-12 20:32:46.799874 \N \N \N \N \N +1327 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.739596 2024-02-12 20:32:38.739596 \N \N \N \N \N +1329 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.831994 2024-02-12 20:32:38.831994 \N \N \N \N \N +1345 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.453066 2024-02-12 20:32:41.453066 \N \N \N \N \N +1348 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.599014 2024-02-12 20:32:41.599014 \N \N \N \N \N +1360 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.905058 2024-02-12 20:32:42.905058 \N \N \N \N \N +1364 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.032944 2024-02-12 20:32:43.032944 \N \N \N \N \N +1379 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.492006 2024-02-12 20:32:44.492006 \N \N \N \N \N +1382 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.638417 2024-02-12 20:32:44.638417 \N \N \N \N \N +1394 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.619704 2024-02-12 20:32:45.619704 \N \N \N \N \N +1397 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.81073 2024-02-12 20:32:45.81073 \N \N \N \N \N +1412 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.876055 2024-02-12 20:32:46.876055 \N \N \N \N \N +1414 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.008699 2024-02-12 20:32:47.008699 \N \N \N \N \N +1428 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.203296 2024-02-12 20:32:48.203296 \N \N \N \N \N +1430 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.291475 2024-02-12 20:32:48.291475 \N \N \N \N \N +1441 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.213478 2024-02-12 20:32:49.213478 \N \N \N \N \N +1444 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.310533 2024-02-12 20:32:49.310533 \N \N \N \N \N +1456 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.424276 2024-02-12 20:32:50.424276 \N \N \N \N \N +1460 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.538467 2024-02-12 20:32:50.538467 \N \N \N \N \N +1474 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.568029 2024-02-12 20:32:51.568029 \N \N \N \N \N +1478 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.65069 2024-02-12 20:32:51.65069 \N \N \N \N \N +1488 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.931418 2024-02-12 20:32:52.931418 \N \N \N \N \N +1491 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.084282 2024-02-12 20:32:53.084282 \N \N \N \N \N +1503 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.312409 2024-02-12 20:32:54.312409 \N \N \N \N \N +1506 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.409741 2024-02-12 20:32:54.409741 \N \N \N \N \N +1521 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.914139 2024-02-12 20:32:55.914139 \N \N \N \N \N +1526 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.026166 2024-02-12 20:32:56.026166 \N \N \N \N \N +1537 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.210972 2024-02-12 20:32:57.210972 \N \N \N \N \N +1542 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.318001 2024-02-12 20:32:57.318001 \N \N \N \N \N +1556 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.965379 2024-02-12 20:32:58.965379 \N \N \N \N \N +1558 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.103792 2024-02-12 20:32:59.103792 \N \N \N \N \N +1571 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.12304 2024-02-12 20:33:00.12304 \N \N \N \N \N +1574 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.208184 2024-02-12 20:33:00.208184 \N \N \N \N \N +1587 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.358648 2024-02-12 20:33:01.358648 \N \N \N \N \N +1589 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.435879 2024-02-12 20:33:01.435879 \N \N \N \N \N +1601 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.509754 2024-02-12 20:33:02.509754 \N \N \N \N \N +1605 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.947816 2024-02-12 20:33:02.947816 \N \N \N \N \N +1619 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.608107 2024-02-12 20:33:04.608107 \N \N \N \N \N +1622 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.82353 2024-02-12 20:33:04.82353 \N \N \N \N \N +1635 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.286039 2024-02-12 20:33:06.286039 \N \N \N \N \N +1638 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.39976 2024-02-12 20:33:06.39976 \N \N \N \N \N +1653 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.801709 2024-02-12 20:33:07.801709 \N \N \N \N \N +1654 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.914932 2024-02-12 20:33:07.914932 \N \N \N \N \N +1669 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.387534 2024-02-12 20:33:09.387534 \N \N \N \N \N +1670 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.504754 2024-02-12 20:33:09.504754 \N \N \N \N \N +1684 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.238908 2024-02-12 20:33:11.238908 \N \N \N \N \N +1686 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.351386 2024-02-12 20:33:11.351386 \N \N \N \N \N +2106 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.68783 2024-02-12 20:33:44.68783 \N \N \N \N \N +2109 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:44.774192 2024-02-12 20:33:44.774192 \N \N \N \N \N +2121 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.659406 2024-02-12 20:33:45.659406 \N \N \N \N \N +2123 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:45.745462 2024-02-12 20:33:45.745462 \N \N \N \N \N +2136 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.659214 2024-02-12 20:33:46.659214 \N \N \N \N \N +2139 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:46.798342 2024-02-12 20:33:46.798342 \N \N \N \N \N +2153 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.24276 2024-02-12 20:33:48.24276 \N \N \N \N \N +2156 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.355507 2024-02-12 20:33:48.355507 \N \N \N \N \N +2169 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.620028 2024-02-12 20:33:49.620028 \N \N \N \N \N +2171 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.765363 2024-02-12 20:33:49.765363 \N \N \N \N \N +2185 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.0155 2024-02-12 20:33:51.0155 \N \N \N \N \N +2188 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.116587 2024-02-12 20:33:51.116587 \N \N \N \N \N +1331 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:38.895745 2024-02-12 20:32:38.895745 \N \N \N \N \N +1333 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:39.008848 2024-02-12 20:32:39.008848 \N \N \N \N \N +1343 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.375922 2024-02-12 20:32:41.375922 \N \N \N \N \N +1347 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:41.546565 2024-02-12 20:32:41.546565 \N \N \N \N \N +1359 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:42.893772 2024-02-12 20:32:42.893772 \N \N \N \N \N +1362 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:43.022396 2024-02-12 20:32:43.022396 \N \N \N \N \N +1374 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.264798 2024-02-12 20:32:44.264798 \N \N \N \N \N +1376 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:44.401855 2024-02-12 20:32:44.401855 \N \N \N \N \N +1387 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.319857 2024-02-12 20:32:45.319857 \N \N \N \N \N +1388 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:45.397894 2024-02-12 20:32:45.397894 \N \N \N \N \N +1403 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.619908 2024-02-12 20:32:46.619908 \N \N \N \N \N +1404 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.684792 2024-02-12 20:32:46.684792 \N \N \N \N \N +1421 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.883895 2024-02-12 20:32:47.883895 \N \N \N \N \N +1424 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.00662 2024-02-12 20:32:48.00662 \N \N \N \N \N +1435 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.079291 2024-02-12 20:32:49.079291 \N \N \N \N \N +1443 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.236161 2024-02-12 20:32:49.236161 \N \N \N \N \N +1451 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.293477 2024-02-12 20:32:50.293477 \N \N \N \N \N +1454 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.415933 2024-02-12 20:32:50.415933 \N \N \N \N \N +1467 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.389682 2024-02-12 20:32:51.389682 \N \N \N \N \N +1470 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.475337 2024-02-12 20:32:51.475337 \N \N \N \N \N +1485 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.767248 2024-02-12 20:32:52.767248 \N \N \N \N \N +1487 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.90684 2024-02-12 20:32:52.90684 \N \N \N \N \N +1501 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.191344 2024-02-12 20:32:54.191344 \N \N \N \N \N +1502 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.306601 2024-02-12 20:32:54.306601 \N \N \N \N \N +1517 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.705766 2024-02-12 20:32:55.705766 \N \N \N \N \N +1518 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.831274 2024-02-12 20:32:55.831274 \N \N \N \N \N +1533 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.982443 2024-02-12 20:32:56.982443 \N \N \N \N \N +1535 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.158764 2024-02-12 20:32:57.158764 \N \N \N \N \N +1550 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.757748 2024-02-12 20:32:58.757748 \N \N \N \N \N +1555 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.935634 2024-02-12 20:32:58.935634 \N \N \N \N \N +1566 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.026163 2024-02-12 20:33:00.026163 \N \N \N \N \N +1572 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.132563 2024-02-12 20:33:00.132563 \N \N \N \N \N +1582 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.214957 2024-02-12 20:33:01.214957 \N \N \N \N \N +1585 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.328734 2024-02-12 20:33:01.328734 \N \N \N \N \N +1598 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.360165 2024-02-12 20:33:02.360165 \N \N \N \N \N +1602 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.577322 2024-02-12 20:33:02.577322 \N \N \N \N \N +1613 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.250342 2024-02-12 20:33:04.250342 \N \N \N \N \N +1616 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.484101 2024-02-12 20:33:04.484101 \N \N \N \N \N +1631 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.153897 2024-02-12 20:33:06.153897 \N \N \N \N \N +1637 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.308915 2024-02-12 20:33:06.308915 \N \N \N \N \N +1647 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.515443 2024-02-12 20:33:07.515443 \N \N \N \N \N +1651 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.665447 2024-02-12 20:33:07.665447 \N \N \N \N \N +1665 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.229218 2024-02-12 20:33:09.229218 \N \N \N \N \N +1668 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.347953 2024-02-12 20:33:09.347953 \N \N \N \N \N +1682 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.062415 2024-02-12 20:33:11.062415 \N \N \N \N \N +1685 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.270081 2024-02-12 20:33:11.270081 \N \N \N \N \N +2161 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.890137 2024-02-12 20:33:48.890137 \N \N \N \N \N +2162 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:48.942653 2024-02-12 20:33:48.942653 \N \N \N \N \N +2166 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.540745 2024-02-12 20:33:49.540745 \N \N \N \N \N +2168 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:49.582884 2024-02-12 20:33:49.582884 \N \N \N \N \N +2177 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.117092 2024-02-12 20:33:50.117092 \N \N \N \N \N +2178 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.161834 2024-02-12 20:33:50.161834 \N \N \N \N \N +2184 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.001756 2024-02-12 20:33:51.001756 \N \N \N \N \N +2187 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.048337 2024-02-12 20:33:51.048337 \N \N \N \N \N +2191 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.554463 2024-02-12 20:33:51.554463 \N \N \N \N \N +2192 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:51.600581 2024-02-12 20:33:51.600581 \N \N \N \N \N +2201 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.414627 2024-02-12 20:33:52.414627 \N \N \N \N \N +2203 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.506641 2024-02-12 20:33:52.506641 \N \N \N \N \N +1411 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.868365 2024-02-12 20:32:46.868365 \N \N \N \N \N +1425 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.076982 2024-02-12 20:32:48.076982 \N \N \N \N \N +1427 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.154189 2024-02-12 20:32:48.154189 \N \N \N \N \N +1437 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.115609 2024-02-12 20:32:49.115609 \N \N \N \N \N +1442 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.217224 2024-02-12 20:32:49.217224 \N \N \N \N \N +1455 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.419611 2024-02-12 20:32:50.419611 \N \N \N \N \N +1458 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.51619 2024-02-12 20:32:50.51619 \N \N \N \N \N +1471 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.50829 2024-02-12 20:32:51.50829 \N \N \N \N \N +1475 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.584906 2024-02-12 20:32:51.584906 \N \N \N \N \N +1492 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.09394 2024-02-12 20:32:53.09394 \N \N \N \N \N +1494 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.228141 2024-02-12 20:32:53.228141 \N \N \N \N \N +1507 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.440122 2024-02-12 20:32:54.440122 \N \N \N \N \N +1509 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.518499 2024-02-12 20:32:54.518499 \N \N \N \N \N +1520 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.89437 2024-02-12 20:32:55.89437 \N \N \N \N \N +1524 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.99518 2024-02-12 20:32:55.99518 \N \N \N \N \N +1534 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.133184 2024-02-12 20:32:57.133184 \N \N \N \N \N +1539 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.245203 2024-02-12 20:32:57.245203 \N \N \N \N \N +1549 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.689811 2024-02-12 20:32:58.689811 \N \N \N \N \N +1554 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.903487 2024-02-12 20:32:58.903487 \N \N \N \N \N +1565 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.960756 2024-02-12 20:32:59.960756 \N \N \N \N \N +1568 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.070419 2024-02-12 20:33:00.070419 \N \N \N \N \N +1581 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.208911 2024-02-12 20:33:01.208911 \N \N \N \N \N +1586 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.337672 2024-02-12 20:33:01.337672 \N \N \N \N \N +1597 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.353762 2024-02-12 20:33:02.353762 \N \N \N \N \N +1600 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.486522 2024-02-12 20:33:02.486522 \N \N \N \N \N +1614 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.28172 2024-02-12 20:33:04.28172 \N \N \N \N \N +1620 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.632688 2024-02-12 20:33:04.632688 \N \N \N \N \N +1632 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.162319 2024-02-12 20:33:06.162319 \N \N \N \N \N +1636 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.291678 2024-02-12 20:33:06.291678 \N \N \N \N \N +1645 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.478138 2024-02-12 20:33:07.478138 \N \N \N \N \N +1650 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.636579 2024-02-12 20:33:07.636579 \N \N \N \N \N +1663 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.147492 2024-02-12 20:33:09.147492 \N \N \N \N \N +1666 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.27572 2024-02-12 20:33:09.27572 \N \N \N \N \N +1677 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:10.812759 2024-02-12 20:33:10.812759 \N \N \N \N \N +1680 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.007117 2024-02-12 20:33:11.007117 \N \N \N \N \N +2181 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.839143 2024-02-12 20:33:50.839143 \N \N \N \N \N +2183 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:50.975398 2024-02-12 20:33:50.975398 \N \N \N \N \N +2204 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.66018 2024-02-12 20:33:52.66018 \N \N \N \N \N +2206 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.820149 2024-02-12 20:33:52.820149 \N \N \N \N \N +2218 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.295547 2024-02-12 20:33:54.295547 \N \N \N \N \N +2221 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.460795 2024-02-12 20:33:54.460795 \N \N \N \N \N +2235 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.212851 2024-02-12 20:33:56.212851 \N \N \N \N \N +2242 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.32482 2024-02-12 20:33:56.32482 \N \N \N \N \N +2252 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.424975 2024-02-12 20:33:57.424975 \N \N \N \N \N +2257 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.541298 2024-02-12 20:33:57.541298 \N \N \N \N \N +2265 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.308391 2024-02-12 20:33:58.308391 \N \N \N \N \N +2268 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.402391 2024-02-12 20:33:58.402391 \N \N \N \N \N +2273 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.967918 2024-02-12 20:33:58.967918 \N \N \N \N \N +2275 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.012104 2024-02-12 20:33:59.012104 \N \N \N \N \N +2278 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.560416 2024-02-12 20:33:59.560416 \N \N \N \N \N +2279 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.563618 2024-02-12 20:33:59.563618 \N \N \N \N \N +2281 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.610888 2024-02-12 20:33:59.610888 \N \N \N \N \N +2284 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.669663 2024-02-12 20:33:59.669663 \N \N \N \N \N +2290 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:00.032767 2024-02-12 20:34:00.032767 \N \N \N \N \N +2292 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:00.078599 2024-02-12 20:34:00.078599 \N \N \N \N \N +2294 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.099117 2024-02-12 20:34:01.099117 \N \N \N \N \N +2298 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.210116 2024-02-12 20:34:01.210116 \N \N \N \N \N +2299 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.259612 2024-02-12 20:34:01.259612 \N \N \N \N \N +1413 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:46.925071 2024-02-12 20:32:46.925071 \N \N \N \N \N +1426 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.114338 2024-02-12 20:32:48.114338 \N \N \N \N \N +1429 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.251135 2024-02-12 20:32:48.251135 \N \N \N \N \N +1445 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.347537 2024-02-12 20:32:49.347537 \N \N \N \N \N +1446 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.451931 2024-02-12 20:32:49.451931 \N \N \N \N \N +1459 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.518838 2024-02-12 20:32:50.518838 \N \N \N \N \N +1462 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.61729 2024-02-12 20:32:50.61729 \N \N \N \N \N +1472 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.549558 2024-02-12 20:32:51.549558 \N \N \N \N \N +1477 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.632302 2024-02-12 20:32:51.632302 \N \N \N \N \N +1490 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.066659 2024-02-12 20:32:53.066659 \N \N \N \N \N +1493 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.215077 2024-02-12 20:32:53.215077 \N \N \N \N \N +1508 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.513194 2024-02-12 20:32:54.513194 \N \N \N \N \N +1510 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.613033 2024-02-12 20:32:54.613033 \N \N \N \N \N +1523 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.931686 2024-02-12 20:32:55.931686 \N \N \N \N \N +1525 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.018882 2024-02-12 20:32:56.018882 \N \N \N \N \N +1536 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.173252 2024-02-12 20:32:57.173252 \N \N \N \N \N +1540 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.286509 2024-02-12 20:32:57.286509 \N \N \N \N \N +1552 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.831042 2024-02-12 20:32:58.831042 \N \N \N \N \N +1557 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.997585 2024-02-12 20:32:58.997585 \N \N \N \N \N +1570 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.081925 2024-02-12 20:33:00.081925 \N \N \N \N \N +1573 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.20048 2024-02-12 20:33:00.20048 \N \N \N \N \N +1588 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.386628 2024-02-12 20:33:01.386628 \N \N \N \N \N +1590 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.491043 2024-02-12 20:33:01.491043 \N \N \N \N \N +1604 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.795507 2024-02-12 20:33:02.795507 \N \N \N \N \N +1606 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.951925 2024-02-12 20:33:02.951925 \N \N \N \N \N +1615 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.369402 2024-02-12 20:33:04.369402 \N \N \N \N \N +1621 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.638473 2024-02-12 20:33:04.638473 \N \N \N \N \N +1629 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.075101 2024-02-12 20:33:06.075101 \N \N \N \N \N +1634 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.196996 2024-02-12 20:33:06.196996 \N \N \N \N \N +1646 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.511674 2024-02-12 20:33:07.511674 \N \N \N \N \N +1652 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.737506 2024-02-12 20:33:07.737506 \N \N \N \N \N +1662 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.127688 2024-02-12 20:33:09.127688 \N \N \N \N \N +1667 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.279647 2024-02-12 20:33:09.279647 \N \N \N \N \N +1679 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:10.984476 2024-02-12 20:33:10.984476 \N \N \N \N \N +1683 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.06801 2024-02-12 20:33:11.06801 \N \N \N \N \N +2197 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.293776 2024-02-12 20:33:52.293776 \N \N \N \N \N +2200 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:52.377945 2024-02-12 20:33:52.377945 \N \N \N \N \N +2293 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.058776 2024-02-12 20:34:01.058776 \N \N \N \N \N +2297 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.204844 2024-02-12 20:34:01.204844 \N \N \N \N \N +2302 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.336673 2024-02-12 20:34:01.336673 \N \N \N \N \N +2305 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:02.638117 2024-02-12 20:34:02.638117 \N \N \N \N \N +2306 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:02.656971 2024-02-12 20:34:02.656971 \N \N \N \N \N +2325 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:58.134379 2024-02-12 20:36:58.134379 \N \N \N \N \N +2326 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:58.150074 2024-02-12 20:36:58.150074 \N \N \N \N \N +2333 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:08.570543 2024-02-12 20:37:08.570543 \N \N \N \N \N +2334 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:08.584529 2024-02-12 20:37:08.584529 \N \N \N \N \N +2339 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:24:22.61021 2024-02-12 21:24:22.61021 \N \N \N \N \N +2340 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:24:22.627271 2024-02-12 21:24:22.627271 \N \N \N \N \N +2343 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:35.513753 2024-02-12 21:26:35.513753 \N \N \N \N \N +2344 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:35.54832 2024-02-12 21:26:35.54832 \N \N \N \N \N +2345 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:37.466819 2024-02-12 21:26:37.466819 \N \N \N \N \N +2346 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:37.484498 2024-02-12 21:26:37.484498 \N \N \N \N \N +2371 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:28.678152 2024-02-12 21:27:28.678152 \N \N \N \N \N +2372 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:28.694788 2024-02-12 21:27:28.694788 \N \N \N \N \N +2374 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:19.764113 2024-02-12 21:28:19.764113 \N \N \N \N \N +2375 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:25.256833 2024-02-12 21:28:25.256833 \N \N \N \N \N +2376 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:25.27294 2024-02-12 21:28:25.27294 \N \N \N \N \N +2377 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:29.882017 2024-02-12 21:28:29.882017 \N \N \N \N \N +1416 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.295683 2024-02-12 20:32:47.295683 \N \N \N \N \N +1418 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.339029 2024-02-12 20:32:47.339029 \N \N \N \N \N +1419 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.87385 2024-02-12 20:32:47.87385 \N \N \N \N \N +1422 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.923885 2024-02-12 20:32:47.923885 \N \N \N \N \N +1431 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.409888 2024-02-12 20:32:48.409888 \N \N \N \N \N +1433 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.455645 2024-02-12 20:32:48.455645 \N \N \N \N \N +1436 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.085609 2024-02-12 20:32:49.085609 \N \N \N \N \N +1439 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.130227 2024-02-12 20:32:49.130227 \N \N \N \N \N +1447 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.592311 2024-02-12 20:32:49.592311 \N \N \N \N \N +1448 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.650198 2024-02-12 20:32:49.650198 \N \N \N \N \N +1452 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.337772 2024-02-12 20:32:50.337772 \N \N \N \N \N +1453 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.39709 2024-02-12 20:32:50.39709 \N \N \N \N \N +1463 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.906835 2024-02-12 20:32:50.906835 \N \N \N \N \N +1464 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.946018 2024-02-12 20:32:50.946018 \N \N \N \N \N +1468 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.429804 2024-02-12 20:32:51.429804 \N \N \N \N \N +1469 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.466334 2024-02-12 20:32:51.466334 \N \N \N \N \N +1479 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.969464 2024-02-12 20:32:51.969464 \N \N \N \N \N +1480 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.044758 2024-02-12 20:32:52.044758 \N \N \N \N \N +1483 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.643943 2024-02-12 20:32:52.643943 \N \N \N \N \N +1484 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.713349 2024-02-12 20:32:52.713349 \N \N \N \N \N +1495 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.392956 2024-02-12 20:32:53.392956 \N \N \N \N \N +1496 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.452853 2024-02-12 20:32:53.452853 \N \N \N \N \N +1499 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.091168 2024-02-12 20:32:54.091168 \N \N \N \N \N +1500 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.147004 2024-02-12 20:32:54.147004 \N \N \N \N \N +1511 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.721364 2024-02-12 20:32:54.721364 \N \N \N \N \N +1512 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.769564 2024-02-12 20:32:54.769564 \N \N \N \N \N +1515 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.532262 2024-02-12 20:32:55.532262 \N \N \N \N \N +1516 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.614429 2024-02-12 20:32:55.614429 \N \N \N \N \N +1527 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.230261 2024-02-12 20:32:56.230261 \N \N \N \N \N +1528 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.36218 2024-02-12 20:32:56.36218 \N \N \N \N \N +1531 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.923706 2024-02-12 20:32:56.923706 \N \N \N \N \N +1532 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.973967 2024-02-12 20:32:56.973967 \N \N \N \N \N +1543 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.58898 2024-02-12 20:32:57.58898 \N \N \N \N \N +1544 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.677065 2024-02-12 20:32:57.677065 \N \N \N \N \N +1547 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.441761 2024-02-12 20:32:58.441761 \N \N \N \N \N +1548 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.537418 2024-02-12 20:32:58.537418 \N \N \N \N \N +1559 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.190993 2024-02-12 20:32:59.190993 \N \N \N \N \N +1560 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.242306 2024-02-12 20:32:59.242306 \N \N \N \N \N +1563 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.831116 2024-02-12 20:32:59.831116 \N \N \N \N \N +1564 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.881182 2024-02-12 20:32:59.881182 \N \N \N \N \N +1575 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.385763 2024-02-12 20:33:00.385763 \N \N \N \N \N +1576 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.439789 2024-02-12 20:33:00.439789 \N \N \N \N \N +1579 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.030508 2024-02-12 20:33:01.030508 \N \N \N \N \N +1580 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.116978 2024-02-12 20:33:01.116978 \N \N \N \N \N +1591 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.567397 2024-02-12 20:33:01.567397 \N \N \N \N \N +1592 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.613473 2024-02-12 20:33:01.613473 \N \N \N \N \N +1595 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.160777 2024-02-12 20:33:02.160777 \N \N \N \N \N +1596 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.224333 2024-02-12 20:33:02.224333 \N \N \N \N \N +1607 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:03.206913 2024-02-12 20:33:03.206913 \N \N \N \N \N +1608 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:03.324997 2024-02-12 20:33:03.324997 \N \N \N \N \N +1611 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.176119 2024-02-12 20:33:04.176119 \N \N \N \N \N +1612 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.249101 2024-02-12 20:33:04.249101 \N \N \N \N \N +1623 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.084743 2024-02-12 20:33:05.084743 \N \N \N \N \N +1624 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.139665 2024-02-12 20:33:05.139665 \N \N \N \N \N +1627 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.885718 2024-02-12 20:33:05.885718 \N \N \N \N \N +1628 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.932758 2024-02-12 20:33:05.932758 \N \N \N \N \N +1639 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.618013 2024-02-12 20:33:06.618013 \N \N \N \N \N +1640 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.701028 2024-02-12 20:33:06.701028 \N \N \N \N \N +1420 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.883169 2024-02-12 20:32:47.883169 \N \N \N \N \N +1423 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:47.93175 2024-02-12 20:32:47.93175 \N \N \N \N \N +1432 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.41714 2024-02-12 20:32:48.41714 \N \N \N \N \N +1434 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:48.463477 2024-02-12 20:32:48.463477 \N \N \N \N \N +1438 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.127388 2024-02-12 20:32:49.127388 \N \N \N \N \N +1440 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.172408 2024-02-12 20:32:49.172408 \N \N \N \N \N +1449 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.692821 2024-02-12 20:32:49.692821 \N \N \N \N \N +1450 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:49.731711 2024-02-12 20:32:49.731711 \N \N \N \N \N +1457 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.496645 2024-02-12 20:32:50.496645 \N \N \N \N \N +1461 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:50.548617 2024-02-12 20:32:50.548617 \N \N \N \N \N +1465 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.062117 2024-02-12 20:32:51.062117 \N \N \N \N \N +1466 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.132684 2024-02-12 20:32:51.132684 \N \N \N \N \N +1473 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.565723 2024-02-12 20:32:51.565723 \N \N \N \N \N +1476 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:51.611275 2024-02-12 20:32:51.611275 \N \N \N \N \N +1481 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.257104 2024-02-12 20:32:52.257104 \N \N \N \N \N +1482 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.304569 2024-02-12 20:32:52.304569 \N \N \N \N \N +1486 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.897659 2024-02-12 20:32:52.897659 \N \N \N \N \N +1489 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:52.96708 2024-02-12 20:32:52.96708 \N \N \N \N \N +1497 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.65933 2024-02-12 20:32:53.65933 \N \N \N \N \N +1498 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:53.705161 2024-02-12 20:32:53.705161 \N \N \N \N \N +1504 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.349245 2024-02-12 20:32:54.349245 \N \N \N \N \N +1505 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.404883 2024-02-12 20:32:54.404883 \N \N \N \N \N +1513 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:54.998657 2024-02-12 20:32:54.998657 \N \N \N \N \N +1514 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.054562 2024-02-12 20:32:55.054562 \N \N \N \N \N +1519 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.879383 2024-02-12 20:32:55.879383 \N \N \N \N \N +1522 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:55.931277 2024-02-12 20:32:55.931277 \N \N \N \N \N +1529 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.643513 2024-02-12 20:32:56.643513 \N \N \N \N \N +1530 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:56.681022 2024-02-12 20:32:56.681022 \N \N \N \N \N +1538 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.218101 2024-02-12 20:32:57.218101 \N \N \N \N \N +1541 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.295694 2024-02-12 20:32:57.295694 \N \N \N \N \N +1545 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.952743 2024-02-12 20:32:57.952743 \N \N \N \N \N +1546 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:57.999662 2024-02-12 20:32:57.999662 \N \N \N \N \N +1551 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.804854 2024-02-12 20:32:58.804854 \N \N \N \N \N +1553 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:58.886683 2024-02-12 20:32:58.886683 \N \N \N \N \N +1561 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.458949 2024-02-12 20:32:59.458949 \N \N \N \N \N +1562 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:32:59.514298 2024-02-12 20:32:59.514298 \N \N \N \N \N +1567 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.029506 2024-02-12 20:33:00.029506 \N \N \N \N \N +1569 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.078601 2024-02-12 20:33:00.078601 \N \N \N \N \N +1577 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.670692 2024-02-12 20:33:00.670692 \N \N \N \N \N +1578 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:00.709928 2024-02-12 20:33:00.709928 \N \N \N \N \N +1583 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.280238 2024-02-12 20:33:01.280238 \N \N \N \N \N +1584 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.318018 2024-02-12 20:33:01.318018 \N \N \N \N \N +1593 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.781829 2024-02-12 20:33:01.781829 \N \N \N \N \N +1594 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:01.851667 2024-02-12 20:33:01.851667 \N \N \N \N \N +1599 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.409541 2024-02-12 20:33:02.409541 \N \N \N \N \N +1603 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:02.604226 2024-02-12 20:33:02.604226 \N \N \N \N \N +1609 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:03.693264 2024-02-12 20:33:03.693264 \N \N \N \N \N +1610 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:03.782303 2024-02-12 20:33:03.782303 \N \N \N \N \N +1617 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.484965 2024-02-12 20:33:04.484965 \N \N \N \N \N +1618 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:04.547986 2024-02-12 20:33:04.547986 \N \N \N \N \N +1625 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.419036 2024-02-12 20:33:05.419036 \N \N \N \N \N +1626 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:05.473509 2024-02-12 20:33:05.473509 \N \N \N \N \N +1630 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.118105 2024-02-12 20:33:06.118105 \N \N \N \N \N +1633 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.174532 2024-02-12 20:33:06.174532 \N \N \N \N \N +1641 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.880501 2024-02-12 20:33:06.880501 \N \N \N \N \N +1642 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:06.977363 2024-02-12 20:33:06.977363 \N \N \N \N \N +1648 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.534681 2024-02-12 20:33:07.534681 \N \N \N \N \N +1649 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.60396 2024-02-12 20:33:07.60396 \N \N \N \N \N +1643 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.359346 2024-02-12 20:33:07.359346 \N \N \N \N \N +1644 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:07.394398 2024-02-12 20:33:07.394398 \N \N \N \N \N +1655 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.096452 2024-02-12 20:33:08.096452 \N \N \N \N \N +1656 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.188464 2024-02-12 20:33:08.188464 \N \N \N \N \N +1659 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.774182 2024-02-12 20:33:08.774182 \N \N \N \N \N +1660 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.882881 2024-02-12 20:33:08.882881 \N \N \N \N \N +1671 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.564511 2024-02-12 20:33:09.564511 \N \N \N \N \N +1672 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.61863 2024-02-12 20:33:09.61863 \N \N \N \N \N +1675 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:10.706908 2024-02-12 20:33:10.706908 \N \N \N \N \N +1676 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:10.779633 2024-02-12 20:33:10.779633 \N \N \N \N \N +1687 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.443265 2024-02-12 20:33:11.443265 \N \N \N \N \N +1688 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.532264 2024-02-12 20:33:11.532264 \N \N \N \N \N +2207 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.394749 2024-02-12 20:33:53.394749 \N \N \N \N \N +2209 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.455496 2024-02-12 20:33:53.455496 \N \N \N \N \N +2214 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.063745 2024-02-12 20:33:54.063745 \N \N \N \N \N +2216 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.102143 2024-02-12 20:33:54.102143 \N \N \N \N \N +2224 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.550687 2024-02-12 20:33:54.550687 \N \N \N \N \N +2226 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:54.610612 2024-02-12 20:33:54.610612 \N \N \N \N \N +2229 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.383733 2024-02-12 20:33:55.383733 \N \N \N \N \N +2231 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.475886 2024-02-12 20:33:55.475886 \N \N \N \N \N +2237 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.255521 2024-02-12 20:33:56.255521 \N \N \N \N \N +2239 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.302737 2024-02-12 20:33:56.302737 \N \N \N \N \N +2245 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.883425 2024-02-12 20:33:56.883425 \N \N \N \N \N +2247 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.957664 2024-02-12 20:33:56.957664 \N \N \N \N \N +2254 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.485876 2024-02-12 20:33:57.485876 \N \N \N \N \N +2256 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.535376 2024-02-12 20:33:57.535376 \N \N \N \N \N +2262 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.252931 2024-02-12 20:33:58.252931 \N \N \N \N \N +2264 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.304987 2024-02-12 20:33:58.304987 \N \N \N \N \N +2274 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.975768 2024-02-12 20:33:58.975768 \N \N \N \N \N +2276 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.021758 2024-02-12 20:33:59.021758 \N \N \N \N \N +2280 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.60161 2024-02-12 20:33:59.60161 \N \N \N \N \N +2283 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.648762 2024-02-12 20:33:59.648762 \N \N \N \N \N +2289 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:00.01457 2024-02-12 20:34:00.01457 \N \N \N \N \N +2291 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:00.052062 2024-02-12 20:34:00.052062 \N \N \N \N \N +2295 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.125268 2024-02-12 20:34:01.125268 \N \N \N \N \N +2300 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.268011 2024-02-12 20:34:01.268011 \N \N \N \N \N +2307 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:37.037196 2024-02-12 20:34:37.037196 \N \N \N \N \N +2308 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:37.052734 2024-02-12 20:34:37.052734 \N \N \N \N \N +2309 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:39.411057 2024-02-12 20:34:39.411057 \N \N \N \N \N +2310 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:39.427817 2024-02-12 20:34:39.427817 \N \N \N \N \N +2311 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:35:35.174408 2024-02-12 20:35:35.174408 \N \N \N \N \N +2312 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:35:35.191575 2024-02-12 20:35:35.191575 \N \N \N \N \N +2313 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:35:36.831324 2024-02-12 20:35:36.831324 \N \N \N \N \N +2314 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:35:36.846854 2024-02-12 20:35:36.846854 \N \N \N \N \N +2317 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:15.280955 2024-02-12 20:36:15.280955 \N \N \N \N \N +2318 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:15.320911 2024-02-12 20:36:15.320911 \N \N \N \N \N +2319 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:19.571328 2024-02-12 20:36:19.571328 \N \N \N \N \N +2320 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:19.589454 2024-02-12 20:36:19.589454 \N \N \N \N \N +2321 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:21.137701 2024-02-12 20:36:21.137701 \N \N \N \N \N +2322 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:21.156096 2024-02-12 20:36:21.156096 \N \N \N \N \N +2323 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:57.847332 2024-02-12 20:36:57.847332 \N \N \N \N \N +2324 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:57.874913 2024-02-12 20:36:57.874913 \N \N \N \N \N +2327 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:01.809305 2024-02-12 20:37:01.809305 \N \N \N \N \N +2328 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:01.826659 2024-02-12 20:37:01.826659 \N \N \N \N \N +2329 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:03.249156 2024-02-12 20:37:03.249156 \N \N \N \N \N +2330 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:03.267343 2024-02-12 20:37:03.267343 \N \N \N \N \N +2331 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:07.772971 2024-02-12 20:37:07.772971 \N \N \N \N \N +2332 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:07.787477 2024-02-12 20:37:07.787477 \N \N \N \N \N +1657 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.373538 2024-02-12 20:33:08.373538 \N \N \N \N \N +1658 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:08.433448 2024-02-12 20:33:08.433448 \N \N \N \N \N +1661 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.119252 2024-02-12 20:33:09.119252 \N \N \N \N \N +1664 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.21228 2024-02-12 20:33:09.21228 \N \N \N \N \N +1673 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.89755 2024-02-12 20:33:09.89755 \N \N \N \N \N +1674 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:09.953042 2024-02-12 20:33:09.953042 \N \N \N \N \N +1678 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:10.971394 2024-02-12 20:33:10.971394 \N \N \N \N \N +1681 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:11.019576 2024-02-12 20:33:11.019576 \N \N \N \N \N +2211 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.54838 2024-02-12 20:33:53.54838 \N \N \N \N \N +2212 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:53.699713 2024-02-12 20:33:53.699713 \N \N \N \N \N +2227 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.118724 2024-02-12 20:33:55.118724 \N \N \N \N \N +2228 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:55.308794 2024-02-12 20:33:55.308794 \N \N \N \N \N +2243 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.693831 2024-02-12 20:33:56.693831 \N \N \N \N \N +2244 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:56.806939 2024-02-12 20:33:56.806939 \N \N \N \N \N +2259 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.830211 2024-02-12 20:33:57.830211 \N \N \N \N \N +2260 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:57.913539 2024-02-12 20:33:57.913539 \N \N \N \N \N +2269 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.501373 2024-02-12 20:33:58.501373 \N \N \N \N \N +2270 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:58.57179 2024-02-12 20:33:58.57179 \N \N \N \N \N +2285 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.696869 2024-02-12 20:33:59.696869 \N \N \N \N \N +2286 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:33:59.787159 2024-02-12 20:33:59.787159 \N \N \N \N \N +2296 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.136714 2024-02-12 20:34:01.136714 \N \N \N \N \N +2301 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:01.270924 2024-02-12 20:34:01.270924 \N \N \N \N \N +2303 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:02.123451 2024-02-12 20:34:02.123451 \N \N \N \N \N +2304 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:34:02.158778 2024-02-12 20:34:02.158778 \N \N \N \N \N +2315 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:14.944641 2024-02-12 20:36:14.944641 \N \N \N \N \N +2316 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:36:14.969635 2024-02-12 20:36:14.969635 \N \N \N \N \N +2335 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:09.173784 2024-02-12 20:37:09.173784 \N \N \N \N \N +2336 Jade Angelou 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:37:09.189176 2024-02-12 20:37:09.189176 \N \N \N \N \N +2337 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:40:21.88861 2024-02-12 20:40:21.88861 \N \N \N \N \N +2338 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 20:40:21.906023 2024-02-12 20:40:21.906023 \N \N \N \N \N +2341 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:30.078811 2024-02-12 21:26:30.078811 \N \N \N \N \N +2342 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:30.104986 2024-02-12 21:26:30.104986 \N \N \N \N \N +2347 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:40.118932 2024-02-12 21:26:40.118932 \N \N \N \N \N +2348 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:40.141794 2024-02-12 21:26:40.141794 \N \N \N \N \N +2349 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:42.483619 2024-02-12 21:26:42.483619 \N \N \N \N \N +2350 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:42.502275 2024-02-12 21:26:42.502275 \N \N \N \N \N +2351 Melvyn Tolchard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:43.926754 2024-02-12 21:26:43.926754 \N \N \N \N \N +2352 Melvyn Tolchard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:43.961264 2024-02-12 21:26:43.961264 \N \N \N \N \N +2353 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:45.396606 2024-02-12 21:26:45.396606 \N \N \N \N \N +2354 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:45.414306 2024-02-12 21:26:45.414306 \N \N \N \N \N +2355 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:47.294663 2024-02-12 21:26:47.294663 \N \N \N \N \N +2356 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:26:47.312437 2024-02-12 21:26:47.312437 \N \N \N \N \N +2357 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:00.447393 2024-02-12 21:27:00.447393 \N \N \N \N \N +2358 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:00.465412 2024-02-12 21:27:00.465412 \N \N \N \N \N +2359 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:02.808237 2024-02-12 21:27:02.808237 \N \N \N \N \N +2360 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:02.824855 2024-02-12 21:27:02.824855 \N \N \N \N \N +2361 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:05.593323 2024-02-12 21:27:05.593323 \N \N \N \N \N +2362 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:05.612677 2024-02-12 21:27:05.612677 \N \N \N \N \N +2363 Melvyn Tolchard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:06.015722 2024-02-12 21:27:06.015722 \N \N \N \N \N +2364 Melvyn Tolchard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:06.035385 2024-02-12 21:27:06.035385 \N \N \N \N \N +2365 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:07.602273 2024-02-12 21:27:07.602273 \N \N \N \N \N +2366 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:07.618961 2024-02-12 21:27:07.618961 \N \N \N \N \N +2367 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:17.711225 2024-02-12 21:27:17.711225 \N \N \N \N \N +2368 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:17.727182 2024-02-12 21:27:17.727182 \N \N \N \N \N +2369 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:23.853888 2024-02-12 21:27:23.853888 \N \N \N \N \N +2370 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:27:23.871097 2024-02-12 21:27:23.871097 \N \N \N \N \N +2373 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:19.745466 2024-02-12 21:28:19.745466 \N \N \N \N \N +2378 Grady Grierson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:29.90504 2024-02-12 21:28:29.90504 \N \N \N \N \N +2409 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:28.4121 2024-02-12 21:33:28.4121 \N \N \N \N \N +2410 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:28.437832 2024-02-12 21:33:28.437832 \N \N \N \N \N +2411 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:44.97541 2024-02-12 21:33:44.97541 \N \N \N \N \N +2412 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:44.991274 2024-02-12 21:33:44.991274 \N \N \N \N \N +2413 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:46.837287 2024-02-12 21:33:46.837287 \N \N \N \N \N +2414 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:46.857841 2024-02-12 21:33:46.857841 \N \N \N \N \N +2415 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:55.016847 2024-02-12 21:33:55.016847 \N \N \N \N \N +2416 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:55.032029 2024-02-12 21:33:55.032029 \N \N \N \N \N +2417 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:56.722543 2024-02-12 21:33:56.722543 \N \N \N \N \N +2418 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:33:56.740354 2024-02-12 21:33:56.740354 \N \N \N \N \N +2419 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:34:50.335541 2024-02-12 21:34:50.335541 \N \N \N \N \N +2420 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:34:50.3518 2024-02-12 21:34:50.3518 \N \N \N \N \N +2431 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:48.429847 2024-02-12 21:36:48.429847 \N \N \N \N \N +2432 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:48.445243 2024-02-12 21:36:48.445243 \N \N \N \N \N +2437 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:58.612108 2024-02-12 21:36:58.612108 \N \N \N \N \N +2438 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:58.629806 2024-02-12 21:36:58.629806 \N \N \N \N \N +2447 Hyatt Edmands 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:14.338977 2024-02-12 21:37:14.338977 \N \N \N \N \N +2448 Hyatt Edmands 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:14.354978 2024-02-12 21:37:14.354978 \N \N \N \N \N +2449 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:20.907167 2024-02-12 21:37:20.907167 \N \N \N \N \N +2450 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:20.925628 2024-02-12 21:37:20.925628 \N \N \N \N \N +2451 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:28.114126 2024-02-12 21:37:28.114126 \N \N \N \N \N +2452 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:28.131384 2024-02-12 21:37:28.131384 \N \N \N \N \N +2457 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:31.885258 2024-02-12 21:37:31.885258 \N \N \N \N \N +2458 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:31.903778 2024-02-12 21:37:31.903778 \N \N \N \N \N +2463 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:36.151812 2024-02-12 21:38:36.151812 \N \N \N \N \N +2464 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:36.169312 2024-02-12 21:38:36.169312 \N \N \N \N \N +2467 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:39:40.746001 2024-02-12 21:39:40.746001 \N \N \N \N \N +2468 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:39:40.761363 2024-02-12 21:39:40.761363 \N \N \N \N \N +2469 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:40:40.034835 2024-02-12 21:40:40.034835 \N \N \N \N \N +2470 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:40:40.05895 2024-02-12 21:40:40.05895 \N \N \N \N \N +2479 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:07.24198 2024-02-12 21:44:07.24198 \N \N \N \N \N +2480 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:07.259762 2024-02-12 21:44:07.259762 \N \N \N \N \N +2481 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:08.923638 2024-02-12 21:44:08.923638 \N \N \N \N \N +2482 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:08.94068 2024-02-12 21:44:08.94068 \N \N \N \N \N +2483 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:10.964265 2024-02-12 21:44:10.964265 \N \N \N \N \N +2484 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:10.980849 2024-02-12 21:44:10.980849 \N \N \N \N \N +2489 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:12.856382 2024-02-12 21:44:12.856382 \N \N \N \N \N +2490 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:12.878931 2024-02-12 21:44:12.878931 \N \N \N \N \N +2493 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:09.533096 2024-02-12 21:45:09.533096 \N \N \N \N \N +2494 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:09.5597 2024-02-12 21:45:09.5597 \N \N \N \N \N +2497 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:11.519276 2024-02-12 21:45:11.519276 \N \N \N \N \N +2498 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:11.544463 2024-02-12 21:45:11.544463 \N \N \N \N \N +2503 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:19.343483 2024-02-12 21:45:19.343483 \N \N \N \N \N +2504 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:19.360048 2024-02-12 21:45:19.360048 \N \N \N \N \N +2507 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:21.604066 2024-02-12 21:45:21.604066 \N \N \N \N \N +2508 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:21.62525 2024-02-12 21:45:21.62525 \N \N \N \N \N +2537 Rosina Danilevich 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:51:05.386461 2024-02-12 21:51:05.386461 \N \N \N \N \N +2538 Rosina Danilevich 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:51:05.421695 2024-02-12 21:51:05.421695 \N \N \N \N \N +2569 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:35.420431 2024-02-12 21:53:35.420431 \N \N \N \N \N +2570 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:35.436963 2024-02-12 21:53:35.436963 \N \N \N \N \N +2583 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:49.270518 2024-02-12 21:57:49.270518 \N \N \N \N \N +2584 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:49.285275 2024-02-12 21:57:49.285275 \N \N \N \N \N +2585 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:51.439989 2024-02-12 21:57:51.439989 \N \N \N \N \N +2586 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:51.456421 2024-02-12 21:57:51.456421 \N \N \N \N \N +2587 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:55.139959 2024-02-12 21:57:55.139959 \N \N \N \N \N +2379 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:35.151476 2024-02-12 21:28:35.151476 \N \N \N \N \N +2380 Karilynn Braven 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:28:35.167733 2024-02-12 21:28:35.167733 \N \N \N \N \N +2381 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:31:55.225271 2024-02-12 21:31:55.225271 \N \N \N \N \N +2382 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:31:55.241927 2024-02-12 21:31:55.241927 \N \N \N \N \N +2387 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:03.155434 2024-02-12 21:32:03.155434 \N \N \N \N \N +2388 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:03.170438 2024-02-12 21:32:03.170438 \N \N \N \N \N +2389 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:17.118442 2024-02-12 21:32:17.118442 \N \N \N \N \N +2390 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:17.133467 2024-02-12 21:32:17.133467 \N \N \N \N \N +2393 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:21.281322 2024-02-12 21:32:21.281322 \N \N \N \N \N +2394 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:21.297879 2024-02-12 21:32:21.297879 \N \N \N \N \N +2395 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:23.398096 2024-02-12 21:32:23.398096 \N \N \N \N \N +2396 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:23.417047 2024-02-12 21:32:23.417047 \N \N \N \N \N +2397 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:33.991391 2024-02-12 21:32:33.991391 \N \N \N \N \N +2398 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:34.008603 2024-02-12 21:32:34.008603 \N \N \N \N \N +2399 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:39.178619 2024-02-12 21:32:39.178619 \N \N \N \N \N +2400 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:39.194956 2024-02-12 21:32:39.194956 \N \N \N \N \N +2401 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:43.189598 2024-02-12 21:32:43.189598 \N \N \N \N \N +2402 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:43.208332 2024-02-12 21:32:43.208332 \N \N \N \N \N +2403 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:44.203748 2024-02-12 21:32:44.203748 \N \N \N \N \N +2404 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:44.22079 2024-02-12 21:32:44.22079 \N \N \N \N \N +2405 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:45.006682 2024-02-12 21:32:45.006682 \N \N \N \N \N +2406 Wilhelmine Maskrey 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:45.023339 2024-02-12 21:32:45.023339 \N \N \N \N \N +2407 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:45.624848 2024-02-12 21:32:45.624848 \N \N \N \N \N +2408 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:45.641465 2024-02-12 21:32:45.641465 \N \N \N \N \N +2421 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:40.909799 2024-02-12 21:36:40.909799 \N \N \N \N \N +2422 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:40.925741 2024-02-12 21:36:40.925741 \N \N \N \N \N +2423 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:42.888665 2024-02-12 21:36:42.888665 \N \N \N \N \N +2424 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:42.905144 2024-02-12 21:36:42.905144 \N \N \N \N \N +2429 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:47.999554 2024-02-12 21:36:47.999554 \N \N \N \N \N +2430 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:48.015793 2024-02-12 21:36:48.015793 \N \N \N \N \N +2433 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:53.06835 2024-02-12 21:36:53.06835 \N \N \N \N \N +2434 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:53.08625 2024-02-12 21:36:53.08625 \N \N \N \N \N +2435 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:58.014247 2024-02-12 21:36:58.014247 \N \N \N \N \N +2436 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:58.035124 2024-02-12 21:36:58.035124 \N \N \N \N \N +2439 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:01.155085 2024-02-12 21:37:01.155085 \N \N \N \N \N +2440 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:01.171284 2024-02-12 21:37:01.171284 \N \N \N \N \N +2441 Lina Gallaher 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:05.596793 2024-02-12 21:37:05.596793 \N \N \N \N \N +2442 Lina Gallaher 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:05.613378 2024-02-12 21:37:05.613378 \N \N \N \N \N +2455 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:29.456491 2024-02-12 21:37:29.456491 \N \N \N \N \N +2456 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:29.484927 2024-02-12 21:37:29.484927 \N \N \N \N \N +2459 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:22.311761 2024-02-12 21:38:22.311761 \N \N \N \N \N +2460 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:22.33658 2024-02-12 21:38:22.33658 \N \N \N \N \N +2465 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:36.184375 2024-02-12 21:38:36.184375 \N \N \N \N \N +2466 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:36.209288 2024-02-12 21:38:36.209288 \N \N \N \N \N +2475 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:40.303174 2024-02-12 21:43:40.303174 \N \N \N \N \N +2476 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:40.326632 2024-02-12 21:43:40.326632 \N \N \N \N \N +2477 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:50.088657 2024-02-12 21:43:50.088657 \N \N \N \N \N +2478 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:50.103362 2024-02-12 21:43:50.103362 \N \N \N \N \N +2485 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:11.986598 2024-02-12 21:44:11.986598 \N \N \N \N \N +2486 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:12.003995 2024-02-12 21:44:12.003995 \N \N \N \N \N +2511 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:46:14.80852 2024-02-12 21:46:14.80852 \N \N \N \N \N +2512 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:46:14.825447 2024-02-12 21:46:14.825447 \N \N \N \N \N +2517 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:29.753923 2024-02-12 21:49:29.753923 \N \N \N \N \N +2518 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:29.770982 2024-02-12 21:49:29.770982 \N \N \N \N \N +2521 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:30.875323 2024-02-12 21:49:30.875323 \N \N \N \N \N +2522 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:30.891668 2024-02-12 21:49:30.891668 \N \N \N \N \N +2383 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:31:57.453687 2024-02-12 21:31:57.453687 \N \N \N \N \N +2384 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:31:57.471829 2024-02-12 21:31:57.471829 \N \N \N \N \N +2385 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:00.977868 2024-02-12 21:32:00.977868 \N \N \N \N \N +2386 Ludovico Grigor 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:00.994673 2024-02-12 21:32:00.994673 \N \N \N \N \N +2391 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:17.817179 2024-02-12 21:32:17.817179 \N \N \N \N \N +2392 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:32:17.834495 2024-02-12 21:32:17.834495 \N \N \N \N \N +2425 Lina Gallaher 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:43.846339 2024-02-12 21:36:43.846339 \N \N \N \N \N +2426 Lina Gallaher 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:43.861678 2024-02-12 21:36:43.861678 \N \N \N \N \N +2427 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:45.300106 2024-02-12 21:36:45.300106 \N \N \N \N \N +2428 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:36:45.314879 2024-02-12 21:36:45.314879 \N \N \N \N \N +2443 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:06.971198 2024-02-12 21:37:06.971198 \N \N \N \N \N +2444 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:06.986454 2024-02-12 21:37:06.986454 \N \N \N \N \N +2445 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:13.41348 2024-02-12 21:37:13.41348 \N \N \N \N \N +2446 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:13.430291 2024-02-12 21:37:13.430291 \N \N \N \N \N +2453 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:28.928439 2024-02-12 21:37:28.928439 \N \N \N \N \N +2454 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:37:28.960678 2024-02-12 21:37:28.960678 \N \N \N \N \N +2461 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:25.993531 2024-02-12 21:38:25.993531 \N \N \N \N \N +2462 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:38:26.014115 2024-02-12 21:38:26.014115 \N \N \N \N \N +2471 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:17.682586 2024-02-12 21:43:17.682586 \N \N \N \N \N +2472 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:17.698829 2024-02-12 21:43:17.698829 \N \N \N \N \N +2473 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:29.754983 2024-02-12 21:43:29.754983 \N \N \N \N \N +2474 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:43:29.773018 2024-02-12 21:43:29.773018 \N \N \N \N \N +2487 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:12.226895 2024-02-12 21:44:12.226895 \N \N \N \N \N +2488 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:44:12.248722 2024-02-12 21:44:12.248722 \N \N \N \N \N +2491 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:08.948109 2024-02-12 21:45:08.948109 \N \N \N \N \N +2492 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:08.96635 2024-02-12 21:45:08.96635 \N \N \N \N \N +2495 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:10.672704 2024-02-12 21:45:10.672704 \N \N \N \N \N +2496 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:10.694226 2024-02-12 21:45:10.694226 \N \N \N \N \N +2499 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:12.56777 2024-02-12 21:45:12.56777 \N \N \N \N \N +2500 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:12.58546 2024-02-12 21:45:12.58546 \N \N \N \N \N +2501 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:18.755749 2024-02-12 21:45:18.755749 \N \N \N \N \N +2502 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:18.771636 2024-02-12 21:45:18.771636 \N \N \N \N \N +2505 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:20.762261 2024-02-12 21:45:20.762261 \N \N \N \N \N +2506 Guthrie Robert 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:20.834764 2024-02-12 21:45:20.834764 \N \N \N \N \N +2509 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:22.477403 2024-02-12 21:45:22.477403 \N \N \N \N \N +2510 Arty Morad 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:45:22.497681 2024-02-12 21:45:22.497681 \N \N \N \N \N +2513 Mortimer Knowlson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:25.535438 2024-02-12 21:49:25.535438 \N \N \N \N \N +2514 Mortimer Knowlson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:25.552344 2024-02-12 21:49:25.552344 \N \N \N \N \N +2515 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:27.83231 2024-02-12 21:49:27.83231 \N \N \N \N \N +2516 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:27.848515 2024-02-12 21:49:27.848515 \N \N \N \N \N +2519 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:30.494453 2024-02-12 21:49:30.494453 \N \N \N \N \N +2520 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:30.510879 2024-02-12 21:49:30.510879 \N \N \N \N \N +2523 Mortimer Knowlson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:35.819248 2024-02-12 21:49:35.819248 \N \N \N \N \N +2524 Mortimer Knowlson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:35.83692 2024-02-12 21:49:35.83692 \N \N \N \N \N +2533 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:16.933851 2024-02-12 21:50:16.933851 \N \N \N \N \N +2534 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:16.951361 2024-02-12 21:50:16.951361 \N \N \N \N \N +2551 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:56.790632 2024-02-12 21:52:56.790632 \N \N \N \N \N +2552 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:56.805598 2024-02-12 21:52:56.805598 \N \N \N \N \N +2563 Horace Pyrke 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:17.036231 2024-02-12 21:53:17.036231 \N \N \N \N \N +2564 Horace Pyrke 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:17.064601 2024-02-12 21:53:17.064601 \N \N \N \N \N +2575 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:54:42.038887 2024-02-12 21:54:42.038887 \N \N \N \N \N +2576 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:54:42.055564 2024-02-12 21:54:42.055564 \N \N \N \N \N +2581 Peterus Weems 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:44.415034 2024-02-12 21:57:44.415034 \N \N \N \N \N +2582 Peterus Weems 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:44.431468 2024-02-12 21:57:44.431468 \N \N \N \N \N +2525 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:39.709506 2024-02-12 21:49:39.709506 \N \N \N \N \N +2526 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:39.726481 2024-02-12 21:49:39.726481 \N \N \N \N \N +2527 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:53.025517 2024-02-12 21:49:53.025517 \N \N \N \N \N +2528 Ardyce Kiossel 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:53.043169 2024-02-12 21:49:53.043169 \N \N \N \N \N +2529 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:59.981681 2024-02-12 21:49:59.981681 \N \N \N \N \N +2530 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:49:59.999388 2024-02-12 21:49:59.999388 \N \N \N \N \N +2531 Rosina Danilevich 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:11.672472 2024-02-12 21:50:11.672472 \N \N \N \N \N +2532 Rosina Danilevich 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:11.691493 2024-02-12 21:50:11.691493 \N \N \N \N \N +2535 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:19.268706 2024-02-12 21:50:19.268706 \N \N \N \N \N +2536 Bea O'Siaghail 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:50:19.284581 2024-02-12 21:50:19.284581 \N \N \N \N \N +2539 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:51:11.673021 2024-02-12 21:51:11.673021 \N \N \N \N \N +2540 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:51:11.690438 2024-02-12 21:51:11.690438 \N \N \N \N \N +2547 Horace Pyrke 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:54.497553 2024-02-12 21:52:54.497553 \N \N \N \N \N +2548 Horace Pyrke 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:54.514505 2024-02-12 21:52:54.514505 \N \N \N \N \N +2555 Miranda Shimoni 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:58.703166 2024-02-12 21:52:58.703166 \N \N \N \N \N +2556 Miranda Shimoni 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:58.718739 2024-02-12 21:52:58.718739 \N \N \N \N \N +2559 Miranda Shimoni 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:08.912984 2024-02-12 21:53:08.912984 \N \N \N \N \N +2560 Miranda Shimoni 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:08.936325 2024-02-12 21:53:08.936325 \N \N \N \N \N +2561 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:12.999699 2024-02-12 21:53:12.999699 \N \N \N \N \N +2562 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:13.016257 2024-02-12 21:53:13.016257 \N \N \N \N \N +2567 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:26.625372 2024-02-12 21:53:26.625372 \N \N \N \N \N +2568 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:26.64086 2024-02-12 21:53:26.64086 \N \N \N \N \N +2571 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:43.380135 2024-02-12 21:53:43.380135 \N \N \N \N \N +2572 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:43.396453 2024-02-12 21:53:43.396453 \N \N \N \N \N +2573 Nerissa Seton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:45.989067 2024-02-12 21:53:45.989067 \N \N \N \N \N +2574 Nerissa Seton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:46.003952 2024-02-12 21:53:46.003952 \N \N \N \N \N +2577 Nerissa Seton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:54:47.467431 2024-02-12 21:54:47.467431 \N \N \N \N \N +2578 Nerissa Seton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:54:47.483318 2024-02-12 21:54:47.483318 \N \N \N \N \N +2591 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:56.739431 2024-02-12 21:57:56.739431 \N \N \N \N \N +2592 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:56.769183 2024-02-12 21:57:56.769183 \N \N \N \N \N +2593 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:59.159359 2024-02-12 21:57:59.159359 \N \N \N \N \N +2594 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:59.178522 2024-02-12 21:57:59.178522 \N \N \N \N \N +2595 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:05.907681 2024-02-12 21:58:05.907681 \N \N \N \N \N +2596 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:05.923715 2024-02-12 21:58:05.923715 \N \N \N \N \N +2541 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:45.58983 2024-02-12 21:52:45.58983 \N \N \N \N \N +2542 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:45.606975 2024-02-12 21:52:45.606975 \N \N \N \N \N +2543 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:50.696874 2024-02-12 21:52:50.696874 \N \N \N \N \N +2544 Margarita Priestman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:50.711615 2024-02-12 21:52:50.711615 \N \N \N \N \N +2545 Dario Heyball 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:51.984214 2024-02-12 21:52:51.984214 \N \N \N \N \N +2546 Dario Heyball 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:52.000887 2024-02-12 21:52:52.000887 \N \N \N \N \N +2549 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:54.654917 2024-02-12 21:52:54.654917 \N \N \N \N \N +2550 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:54.685038 2024-02-12 21:52:54.685038 \N \N \N \N \N +2553 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:57.628766 2024-02-12 21:52:57.628766 \N \N \N \N \N +2554 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:52:57.64561 2024-02-12 21:52:57.64561 \N \N \N \N \N +2557 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:04.69381 2024-02-12 21:53:04.69381 \N \N \N \N \N +2558 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:04.711642 2024-02-12 21:53:04.711642 \N \N \N \N \N +2565 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:17.804813 2024-02-12 21:53:17.804813 \N \N \N \N \N +2566 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:53:17.827462 2024-02-12 21:53:17.827462 \N \N \N \N \N +2579 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:55:32.988756 2024-02-12 21:55:32.988756 \N \N \N \N \N +2580 Vail Eirwin 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:55:33.011921 2024-02-12 21:55:33.011921 \N \N \N \N \N +2588 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:55.156188 2024-02-12 21:57:55.156188 \N \N \N \N \N +2589 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:56.350878 2024-02-12 21:57:56.350878 \N \N \N \N \N +2590 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:57:56.376001 2024-02-12 21:57:56.376001 \N \N \N \N \N +2597 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:13.937731 2024-02-12 21:58:13.937731 \N \N \N \N \N +2598 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:13.955688 2024-02-12 21:58:13.955688 \N \N \N \N \N +2599 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:17.274544 2024-02-12 21:58:17.274544 \N \N \N \N \N +2600 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:17.290921 2024-02-12 21:58:17.290921 \N \N \N \N \N +2601 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:21.232702 2024-02-12 21:58:21.232702 \N \N \N \N \N +2602 Erl Collar 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:21.248491 2024-02-12 21:58:21.248491 \N \N \N \N \N +2603 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:26.117173 2024-02-12 21:58:26.117173 \N \N \N \N \N +2604 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:26.135727 2024-02-12 21:58:26.135727 \N \N \N \N \N +2605 Opalina Boman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:40.652272 2024-02-12 21:58:40.652272 \N \N \N \N \N +2606 Opalina Boman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:40.668552 2024-02-12 21:58:40.668552 \N \N \N \N \N +2607 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:41.688522 2024-02-12 21:58:41.688522 \N \N \N \N \N +2608 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:41.704213 2024-02-12 21:58:41.704213 \N \N \N \N \N +2609 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:47.122294 2024-02-12 21:58:47.122294 \N \N \N \N \N +2610 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:58:47.139647 2024-02-12 21:58:47.139647 \N \N \N \N \N +2611 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:59:44.336106 2024-02-12 21:59:44.336106 \N \N \N \N \N +2612 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:59:44.354264 2024-02-12 21:59:44.354264 \N \N \N \N \N +2613 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:59:46.123833 2024-02-12 21:59:46.123833 \N \N \N \N \N +2614 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 21:59:46.140373 2024-02-12 21:59:46.140373 \N \N \N \N \N +2615 Tiffanie Rawsen 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:02:55.78062 2024-02-12 22:02:55.78062 \N \N \N \N \N +2616 Tiffanie Rawsen 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:02:55.875207 2024-02-12 22:02:55.875207 \N \N \N \N \N +2617 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:03.901503 2024-02-12 22:03:03.901503 \N \N \N \N \N +2618 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:03.919731 2024-02-12 22:03:03.919731 \N \N \N \N \N +2619 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:06.533 2024-02-12 22:03:06.533 \N \N \N \N \N +2620 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:06.552626 2024-02-12 22:03:06.552626 \N \N \N \N \N +2621 Andriette Whisson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:07.385209 2024-02-12 22:03:07.385209 \N \N \N \N \N +2622 Andriette Whisson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:07.402646 2024-02-12 22:03:07.402646 \N \N \N \N \N +2623 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:08.640591 2024-02-12 22:03:08.640591 \N \N \N \N \N +2624 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:08.657201 2024-02-12 22:03:08.657201 \N \N \N \N \N +2625 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:13.77739 2024-02-12 22:03:13.77739 \N \N \N \N \N +2626 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:13.796545 2024-02-12 22:03:13.796545 \N \N \N \N \N +2627 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:16.433499 2024-02-12 22:03:16.433499 \N \N \N \N \N +2628 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:16.456119 2024-02-12 22:03:16.456119 \N \N \N \N \N +2629 Tiffanie Rawsen 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:18.612208 2024-02-12 22:03:18.612208 \N \N \N \N \N +2630 Tiffanie Rawsen 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:18.633575 2024-02-12 22:03:18.633575 \N \N \N \N \N +2631 Andriette Whisson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:27.356957 2024-02-12 22:03:27.356957 \N \N \N \N \N +2632 Andriette Whisson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:27.372613 2024-02-12 22:03:27.372613 \N \N \N \N \N +2633 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:30.858989 2024-02-12 22:03:30.858989 \N \N \N \N \N +2634 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:30.876385 2024-02-12 22:03:30.876385 \N \N \N \N \N +2635 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:33.951895 2024-02-12 22:03:33.951895 \N \N \N \N \N +2636 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:33.968015 2024-02-12 22:03:33.968015 \N \N \N \N \N +2637 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:51.608088 2024-02-12 22:03:51.608088 \N \N \N \N \N +2638 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:03:51.622254 2024-02-12 22:03:51.622254 \N \N \N \N \N +2639 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:04:40.472178 2024-02-12 22:04:40.472178 \N \N \N \N \N +2640 Meggi Wallbrook 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:04:40.49616 2024-02-12 22:04:40.49616 \N \N \N \N \N +2641 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:04:45.211746 2024-02-12 22:04:45.211746 \N \N \N \N \N +2642 Helena Kersaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:04:45.243554 2024-02-12 22:04:45.243554 \N \N \N \N \N +2643 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:30.665437 2024-02-12 22:06:30.665437 \N \N \N \N \N +2644 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:30.682954 2024-02-12 22:06:30.682954 \N \N \N \N \N +2645 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:31.699919 2024-02-12 22:06:31.699919 \N \N \N \N \N +2646 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:31.714613 2024-02-12 22:06:31.714613 \N \N \N \N \N +2647 Gabriel Scullard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:36.026302 2024-02-12 22:06:36.026302 \N \N \N \N \N +2648 Gabriel Scullard 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:36.042687 2024-02-12 22:06:36.042687 \N \N \N \N \N +2649 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:41.652405 2024-02-12 22:06:41.652405 \N \N \N \N \N +2650 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:41.674911 2024-02-12 22:06:41.674911 \N \N \N \N \N +2653 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:01.73578 2024-02-12 22:07:01.73578 \N \N \N \N \N +2654 Danita Rockwill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:01.752615 2024-02-12 22:07:01.752615 \N \N \N \N \N +2657 Nada Shilliday 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:09.653127 2024-02-12 22:07:09.653127 \N \N \N \N \N +2658 Nada Shilliday 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:09.682389 2024-02-12 22:07:09.682389 \N \N \N \N \N +2665 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:22.295997 2024-02-12 22:07:22.295997 \N \N \N \N \N +2666 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:22.313976 2024-02-12 22:07:22.313976 \N \N \N \N \N +2669 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:03.062414 2024-02-12 22:08:03.062414 \N \N \N \N \N +2670 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:03.078765 2024-02-12 22:08:03.078765 \N \N \N \N \N +2673 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:12.784206 2024-02-12 22:08:12.784206 \N \N \N \N \N +2674 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:12.801252 2024-02-12 22:08:12.801252 \N \N \N \N \N +2675 Nada Shilliday 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:14.00253 2024-02-12 22:08:14.00253 \N \N \N \N \N +2676 Nada Shilliday 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:14.018048 2024-02-12 22:08:14.018048 \N \N \N \N \N +2677 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:19.625441 2024-02-12 22:08:19.625441 \N \N \N \N \N +2678 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:19.649234 2024-02-12 22:08:19.649234 \N \N \N \N \N +2681 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:25.034067 2024-02-12 22:08:25.034067 \N \N \N \N \N +2682 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:25.049819 2024-02-12 22:08:25.049819 \N \N \N \N \N +2683 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:29.487844 2024-02-12 22:08:29.487844 \N \N \N \N \N +2684 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:29.505515 2024-02-12 22:08:29.505515 \N \N \N \N \N +2691 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:11:55.187875 2024-02-12 22:11:55.187875 \N \N \N \N \N +2692 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:11:55.211514 2024-02-12 22:11:55.211514 \N \N \N \N \N +2693 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:11:56.664348 2024-02-12 22:11:56.664348 \N \N \N \N \N +2694 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:11:56.680964 2024-02-12 22:11:56.680964 \N \N \N \N \N +2697 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:00.307127 2024-02-12 22:12:00.307127 \N \N \N \N \N +2698 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:00.338419 2024-02-12 22:12:00.338419 \N \N \N \N \N +2699 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:03.612418 2024-02-12 22:12:03.612418 \N \N \N \N \N +2700 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:03.62881 2024-02-12 22:12:03.62881 \N \N \N \N \N +2703 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:10.604549 2024-02-12 22:12:10.604549 \N \N \N \N \N +2704 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:10.630861 2024-02-12 22:12:10.630861 \N \N \N \N \N +2705 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:13.569816 2024-02-12 22:12:13.569816 \N \N \N \N \N +2706 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:13.589386 2024-02-12 22:12:13.589386 \N \N \N \N \N +2707 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:15.830199 2024-02-12 22:12:15.830199 \N \N \N \N \N +2708 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:15.846759 2024-02-12 22:12:15.846759 \N \N \N \N \N +2709 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:18.906574 2024-02-12 22:12:18.906574 \N \N \N \N \N +2710 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:18.923385 2024-02-12 22:12:18.923385 \N \N \N \N \N +2711 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:30.330406 2024-02-12 22:12:30.330406 \N \N \N \N \N +2712 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:30.345832 2024-02-12 22:12:30.345832 \N \N \N \N \N +2713 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:33.088857 2024-02-12 22:12:33.088857 \N \N \N \N \N +2714 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:33.106891 2024-02-12 22:12:33.106891 \N \N \N \N \N +2717 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:45.973727 2024-02-12 22:12:45.973727 \N \N \N \N \N +2718 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:45.988769 2024-02-12 22:12:45.988769 \N \N \N \N \N +2721 Evaleen Palethorpe 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:47.552532 2024-02-12 22:12:47.552532 \N \N \N \N \N +2722 Evaleen Palethorpe 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:47.567406 2024-02-12 22:12:47.567406 \N \N \N \N \N +2723 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:49.566474 2024-02-12 22:12:49.566474 \N \N \N \N \N +2724 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:49.582444 2024-02-12 22:12:49.582444 \N \N \N \N \N +2651 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:50.820216 2024-02-12 22:06:50.820216 \N \N \N \N \N +2652 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:06:50.834765 2024-02-12 22:06:50.834765 \N \N \N \N \N +2655 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:02.173506 2024-02-12 22:07:02.173506 \N \N \N \N \N +2656 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:02.191563 2024-02-12 22:07:02.191563 \N \N \N \N \N +2659 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:13.339785 2024-02-12 22:07:13.339785 \N \N \N \N \N +2660 Kippy Pietruszka 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:13.357174 2024-02-12 22:07:13.357174 \N \N \N \N \N +2661 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:17.406509 2024-02-12 22:07:17.406509 \N \N \N \N \N +2662 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:17.44145 2024-02-12 22:07:17.44145 \N \N \N \N \N +2663 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:17.7735 2024-02-12 22:07:17.7735 \N \N \N \N \N +2664 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:17.8002 2024-02-12 22:07:17.8002 \N \N \N \N \N +2667 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:22.665129 2024-02-12 22:07:22.665129 \N \N \N \N \N +2668 Fred Desport 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:07:22.698445 2024-02-12 22:07:22.698445 \N \N \N \N \N +2671 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:11.150853 2024-02-12 22:08:11.150853 \N \N \N \N \N +2672 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:11.175857 2024-02-12 22:08:11.175857 \N \N \N \N \N +2679 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:19.93783 2024-02-12 22:08:19.93783 \N \N \N \N \N +2680 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:08:19.961672 2024-02-12 22:08:19.961672 \N \N \N \N \N +2685 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:09:13.428477 2024-02-12 22:09:13.428477 \N \N \N \N \N +2686 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:09:13.449594 2024-02-12 22:09:13.449594 \N \N \N \N \N +2689 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:10:18.106845 2024-02-12 22:10:18.106845 \N \N \N \N \N +2690 Lucias Genese 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:10:18.122489 2024-02-12 22:10:18.122489 \N \N \N \N \N +2715 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:41.120719 2024-02-12 22:12:41.120719 \N \N \N \N \N +2716 Baron Ciciura 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:41.137842 2024-02-12 22:12:41.137842 \N \N \N \N \N +2719 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:46.457078 2024-02-12 22:12:46.457078 \N \N \N \N \N +2720 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:46.474755 2024-02-12 22:12:46.474755 \N \N \N \N \N +2735 Scarlet Cauldwell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:11.796488 2024-02-12 22:17:11.796488 \N \N \N \N \N +2736 Scarlet Cauldwell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:11.814386 2024-02-12 22:17:11.814386 \N \N \N \N \N +2737 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:13.872429 2024-02-12 22:17:13.872429 \N \N \N \N \N +2738 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:13.938905 2024-02-12 22:17:13.938905 \N \N \N \N \N +2739 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:14.581624 2024-02-12 22:17:14.581624 \N \N \N \N \N +2740 Henrie O' 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:14.630086 2024-02-12 22:17:14.630086 \N \N \N \N \N +2741 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:17.352102 2024-02-12 22:17:17.352102 \N \N \N \N \N +2742 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:17.427861 2024-02-12 22:17:17.427861 \N \N \N \N \N +2755 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:57.080728 2024-02-12 22:17:57.080728 \N \N \N \N \N +2756 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:57.096243 2024-02-12 22:17:57.096243 \N \N \N \N \N +2757 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:18:56.443357 2024-02-12 22:18:56.443357 \N \N \N \N \N +2758 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:18:56.462161 2024-02-12 22:18:56.462161 \N \N \N \N \N +2759 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:19:07.931518 2024-02-12 22:19:07.931518 \N \N \N \N \N +2760 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:19:07.957446 2024-02-12 22:19:07.957446 \N \N \N \N \N +2761 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:20:18.278971 2024-02-12 22:20:18.278971 \N \N \N \N \N +2762 Maureene Onele 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:20:18.294747 2024-02-12 22:20:18.294747 \N \N \N \N \N +2769 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.085377 2024-02-12 22:22:08.085377 \N \N \N \N \N +2770 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.117032 2024-02-12 22:22:08.117032 \N \N \N \N \N +2823 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:21.59392 2024-02-12 22:27:21.59392 \N \N \N \N \N +2824 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:21.60975 2024-02-12 22:27:21.60975 \N \N \N \N \N +2825 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:26.452843 2024-02-12 22:27:26.452843 \N \N \N \N \N +2826 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:26.475799 2024-02-12 22:27:26.475799 \N \N \N \N \N +2829 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:16.732302 2024-02-12 22:28:16.732302 \N \N \N \N \N +2830 Amie Moulsdale 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:16.748479 2024-02-12 22:28:16.748479 \N \N \N \N \N +2865 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:52.32953 2024-02-12 22:32:52.32953 \N \N \N \N \N +2866 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:52.346526 2024-02-12 22:32:52.346526 \N \N \N \N \N +2867 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:58.34071 2024-02-12 22:32:58.34071 \N \N \N \N \N +2868 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:58.361101 2024-02-12 22:32:58.361101 \N \N \N \N \N +2873 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:51.680469 2024-02-12 22:33:51.680469 \N \N \N \N \N +2874 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:51.699292 2024-02-12 22:33:51.699292 \N \N \N \N \N +2883 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:04.630934 2024-02-12 22:37:04.630934 \N \N \N \N \N +2884 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:04.656028 2024-02-12 22:37:04.656028 \N \N \N \N \N +2687 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:09:24.959194 2024-02-12 22:09:24.959194 \N \N \N \N \N +2688 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:09:24.984398 2024-02-12 22:09:24.984398 \N \N \N \N \N +2695 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:00.23438 2024-02-12 22:12:00.23438 \N \N \N \N \N +2696 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:00.279124 2024-02-12 22:12:00.279124 \N \N \N \N \N +2701 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:10.48569 2024-02-12 22:12:10.48569 \N \N \N \N \N +2702 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:12:10.502291 2024-02-12 22:12:10.502291 \N \N \N \N \N +2725 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:53.08401 2024-02-12 22:13:53.08401 \N \N \N \N \N +2726 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:53.112105 2024-02-12 22:13:53.112105 \N \N \N \N \N +2727 Evaleen Palethorpe 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:53.664393 2024-02-12 22:13:53.664393 \N \N \N \N \N +2728 Evaleen Palethorpe 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:53.690161 2024-02-12 22:13:53.690161 \N \N \N \N \N +2729 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:56.629451 2024-02-12 22:13:56.629451 \N \N \N \N \N +2730 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:13:56.64587 2024-02-12 22:13:56.64587 \N \N \N \N \N +2731 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:07.77086 2024-02-12 22:17:07.77086 \N \N \N \N \N +2732 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:07.787458 2024-02-12 22:17:07.787458 \N \N \N \N \N +2733 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:11.01758 2024-02-12 22:17:11.01758 \N \N \N \N \N +2734 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:11.034232 2024-02-12 22:17:11.034232 \N \N \N \N \N +2743 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:20.106767 2024-02-12 22:17:20.106767 \N \N \N \N \N +2744 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:20.124982 2024-02-12 22:17:20.124982 \N \N \N \N \N +2745 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:22.99091 2024-02-12 22:17:22.99091 \N \N \N \N \N +2746 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:23.009602 2024-02-12 22:17:23.009602 \N \N \N \N \N +2747 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:24.436596 2024-02-12 22:17:24.436596 \N \N \N \N \N +2748 Maurie Dorman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:24.463389 2024-02-12 22:17:24.463389 \N \N \N \N \N +2749 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:40.013465 2024-02-12 22:17:40.013465 \N \N \N \N \N +2750 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:40.029553 2024-02-12 22:17:40.029553 \N \N \N \N \N +2751 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:42.211677 2024-02-12 22:17:42.211677 \N \N \N \N \N +2752 Micky Wyss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:42.295045 2024-02-12 22:17:42.295045 \N \N \N \N \N +2753 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:43.372506 2024-02-12 22:17:43.372506 \N \N \N \N \N +2754 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:17:43.396907 2024-02-12 22:17:43.396907 \N \N \N \N \N +2763 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:02.716988 2024-02-12 22:22:02.716988 \N \N \N \N \N +2764 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:02.769661 2024-02-12 22:22:02.769661 \N \N \N \N \N +2765 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:03.10604 2024-02-12 22:22:03.10604 \N \N \N \N \N +2766 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:03.153949 2024-02-12 22:22:03.153949 \N \N \N \N \N +2767 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:06.70287 2024-02-12 22:22:06.70287 \N \N \N \N \N +2768 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:06.74011 2024-02-12 22:22:06.74011 \N \N \N \N \N +2771 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.523848 2024-02-12 22:22:08.523848 \N \N \N \N \N +2772 Charline Stivers 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.547317 2024-02-12 22:22:08.547317 \N \N \N \N \N +2773 Solly Beardall 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.622069 2024-02-12 22:22:08.622069 \N \N \N \N \N +2774 Solly Beardall 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:08.640078 2024-02-12 22:22:08.640078 \N \N \N \N \N +2775 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:16.596851 2024-02-12 22:22:16.596851 \N \N \N \N \N +2776 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:16.613124 2024-02-12 22:22:16.613124 \N \N \N \N \N +2777 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:18.329343 2024-02-12 22:22:18.329343 \N \N \N \N \N +2778 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:18.34983 2024-02-12 22:22:18.34983 \N \N \N \N \N +2779 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:24.092482 2024-02-12 22:22:24.092482 \N \N \N \N \N +2780 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:24.10727 2024-02-12 22:22:24.10727 \N \N \N \N \N +2781 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:26.423431 2024-02-12 22:22:26.423431 \N \N \N \N \N +2782 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:26.438818 2024-02-12 22:22:26.438818 \N \N \N \N \N +2783 Solly Beardall 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:31.115899 2024-02-12 22:22:31.115899 \N \N \N \N \N +2784 Solly Beardall 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:31.141797 2024-02-12 22:22:31.141797 \N \N \N \N \N +2785 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:36.33395 2024-02-12 22:22:36.33395 \N \N \N \N \N +2786 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:36.352364 2024-02-12 22:22:36.352364 \N \N \N \N \N +2787 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:38.363003 2024-02-12 22:22:38.363003 \N \N \N \N \N +2788 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:38.380121 2024-02-12 22:22:38.380121 \N \N \N \N \N +2789 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:47.322872 2024-02-12 22:22:47.322872 \N \N \N \N \N +2790 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:47.339225 2024-02-12 22:22:47.339225 \N \N \N \N \N +2791 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:47.574351 2024-02-12 22:22:47.574351 \N \N \N \N \N +2792 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:22:47.592977 2024-02-12 22:22:47.592977 \N \N \N \N \N +2793 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:41.685102 2024-02-12 22:23:41.685102 \N \N \N \N \N +2794 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:41.715976 2024-02-12 22:23:41.715976 \N \N \N \N \N +2795 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:48.51335 2024-02-12 22:23:48.51335 \N \N \N \N \N +2796 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:48.530696 2024-02-12 22:23:48.530696 \N \N \N \N \N +2797 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:59.352235 2024-02-12 22:23:59.352235 \N \N \N \N \N +2798 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:23:59.368617 2024-02-12 22:23:59.368617 \N \N \N \N \N +2807 Mina Wimmer 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:39.448312 2024-02-12 22:26:39.448312 \N \N \N \N \N +2808 Mina Wimmer 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:39.464057 2024-02-12 22:26:39.464057 \N \N \N \N \N +2809 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:41.94514 2024-02-12 22:26:41.94514 \N \N \N \N \N +2810 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:41.961933 2024-02-12 22:26:41.961933 \N \N \N \N \N +2821 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:09.873236 2024-02-12 22:27:09.873236 \N \N \N \N \N +2822 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:09.889887 2024-02-12 22:27:09.889887 \N \N \N \N \N +2841 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:24.726795 2024-02-12 22:31:24.726795 \N \N \N \N \N +2842 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:24.742465 2024-02-12 22:31:24.742465 \N \N \N \N \N +2843 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:43.088637 2024-02-12 22:31:43.088637 \N \N \N \N \N +2844 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:43.105966 2024-02-12 22:31:43.105966 \N \N \N \N \N +2845 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:47.202835 2024-02-12 22:31:47.202835 \N \N \N \N \N +2846 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:47.218643 2024-02-12 22:31:47.218643 \N \N \N \N \N +2849 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:48.617201 2024-02-12 22:31:48.617201 \N \N \N \N \N +2850 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:48.634823 2024-02-12 22:31:48.634823 \N \N \N \N \N +2853 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:50.136536 2024-02-12 22:31:50.136536 \N \N \N \N \N +2854 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:50.153475 2024-02-12 22:31:50.153475 \N \N \N \N \N +2855 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:42.373233 2024-02-12 22:32:42.373233 \N \N \N \N \N +2856 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:42.389634 2024-02-12 22:32:42.389634 \N \N \N \N \N +2857 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:48.489538 2024-02-12 22:32:48.489538 \N \N \N \N \N +2858 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:48.511096 2024-02-12 22:32:48.511096 \N \N \N \N \N +2895 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:35.130492 2024-02-12 22:37:35.130492 \N \N \N \N \N +2896 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:35.170105 2024-02-12 22:37:35.170105 \N \N \N \N \N +2899 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:42.71174 2024-02-12 22:37:42.71174 \N \N \N \N \N +2900 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:42.725982 2024-02-12 22:37:42.725982 \N \N \N \N \N +2903 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:49.485102 2024-02-12 22:37:49.485102 \N \N \N \N \N +2904 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:49.501465 2024-02-12 22:37:49.501465 \N \N \N \N \N +2905 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:50.477849 2024-02-12 22:37:50.477849 \N \N \N \N \N +2906 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:50.491817 2024-02-12 22:37:50.491817 \N \N \N \N \N +2799 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:32.655814 2024-02-12 22:26:32.655814 \N \N \N \N \N +2800 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:32.686439 2024-02-12 22:26:32.686439 \N \N \N \N \N +2801 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:35.087032 2024-02-12 22:26:35.087032 \N \N \N \N \N +2802 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:35.191623 2024-02-12 22:26:35.191623 \N \N \N \N \N +2803 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:35.739618 2024-02-12 22:26:35.739618 \N \N \N \N \N +2804 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:35.781874 2024-02-12 22:26:35.781874 \N \N \N \N \N +2813 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:45.763707 2024-02-12 22:26:45.763707 \N \N \N \N \N +2814 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:45.794172 2024-02-12 22:26:45.794172 \N \N \N \N \N +2815 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:04.311133 2024-02-12 22:27:04.311133 \N \N \N \N \N +2816 Gaynor Jory 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:04.327089 2024-02-12 22:27:04.327089 \N \N \N \N \N +2817 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:05.336082 2024-02-12 22:27:05.336082 \N \N \N \N \N +2818 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:05.351962 2024-02-12 22:27:05.351962 \N \N \N \N \N +2819 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:07.679337 2024-02-12 22:27:07.679337 \N \N \N \N \N +2820 Curr Letixier 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:27:07.69716 2024-02-12 22:27:07.69716 \N \N \N \N \N +2827 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:08.734944 2024-02-12 22:28:08.734944 \N \N \N \N \N +2828 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:08.749814 2024-02-12 22:28:08.749814 \N \N \N \N \N +2831 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:20.302899 2024-02-12 22:28:20.302899 \N \N \N \N \N +2832 Niven Khan 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:20.328976 2024-02-12 22:28:20.328976 \N \N \N \N \N +2833 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:24.831691 2024-02-12 22:28:24.831691 \N \N \N \N \N +2834 Frederich Heighway 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:28:24.856371 2024-02-12 22:28:24.856371 \N \N \N \N \N +2835 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:30:55.357589 2024-02-12 22:30:55.357589 \N \N \N \N \N +2836 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:30:55.372314 2024-02-12 22:30:55.372314 \N \N \N \N \N +2837 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:02.483404 2024-02-12 22:31:02.483404 \N \N \N \N \N +2838 Ingamar Levane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:02.498777 2024-02-12 22:31:02.498777 \N \N \N \N \N +2839 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:15.568665 2024-02-12 22:31:15.568665 \N \N \N \N \N +2840 Denni Kingswood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:15.583111 2024-02-12 22:31:15.583111 \N \N \N \N \N +2847 Sasha Lapenna 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:48.433928 2024-02-12 22:31:48.433928 \N \N \N \N \N +2848 Sasha Lapenna 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:48.450003 2024-02-12 22:31:48.450003 \N \N \N \N \N +2851 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:49.190832 2024-02-12 22:31:49.190832 \N \N \N \N \N +2852 Gardy Shawdforth 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:31:49.235835 2024-02-12 22:31:49.235835 \N \N \N \N \N +2877 Peterus Weems 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:36:58.649207 2024-02-12 22:36:58.649207 \N \N \N \N \N +2878 Peterus Weems 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:36:58.667418 2024-02-12 22:36:58.667418 \N \N \N \N \N +2897 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:36.732569 2024-02-12 22:37:36.732569 \N \N \N \N \N +2898 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:36.751854 2024-02-12 22:37:36.751854 \N \N \N \N \N +2805 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:37.836639 2024-02-12 22:26:37.836639 \N \N \N \N \N +2806 Genna Shiliton 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:37.853846 2024-02-12 22:26:37.853846 \N \N \N \N \N +2811 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:45.351979 2024-02-12 22:26:45.351979 \N \N \N \N \N +2812 Zulema Yardy 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:26:45.380116 2024-02-12 22:26:45.380116 \N \N \N \N \N +2859 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:48.797259 2024-02-12 22:32:48.797259 \N \N \N \N \N +2860 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:48.814914 2024-02-12 22:32:48.814914 \N \N \N \N \N +2861 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:50.434759 2024-02-12 22:32:50.434759 \N \N \N \N \N +2862 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:50.449278 2024-02-12 22:32:50.449278 \N \N \N \N \N +2863 Sasha Lapenna 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:52.072119 2024-02-12 22:32:52.072119 \N \N \N \N \N +2864 Sasha Lapenna 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:52.107055 2024-02-12 22:32:52.107055 \N \N \N \N \N +2869 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:58.592914 2024-02-12 22:32:58.592914 \N \N \N \N \N +2870 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:32:58.609529 2024-02-12 22:32:58.609529 \N \N \N \N \N +2871 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:00.386396 2024-02-12 22:33:00.386396 \N \N \N \N \N +2872 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:00.403901 2024-02-12 22:33:00.403901 \N \N \N \N \N +2875 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:54.611258 2024-02-12 22:33:54.611258 \N \N \N \N \N +2876 Alexis Peterken 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:33:54.628452 2024-02-12 22:33:54.628452 \N \N \N \N \N +2879 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:36:59.519624 2024-02-12 22:36:59.519624 \N \N \N \N \N +2880 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:36:59.534334 2024-02-12 22:36:59.534334 \N \N \N \N \N +2881 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:01.430696 2024-02-12 22:37:01.430696 \N \N \N \N \N +2882 Marigold Gargett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:01.447327 2024-02-12 22:37:01.447327 \N \N \N \N \N +2901 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:43.977591 2024-02-12 22:37:43.977591 \N \N \N \N \N +2902 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:43.993371 2024-02-12 22:37:43.993371 \N \N \N \N \N +2885 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:04.884545 2024-02-12 22:37:04.884545 \N \N \N \N \N +2886 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:04.91238 2024-02-12 22:37:04.91238 \N \N \N \N \N +2887 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:14.624285 2024-02-12 22:37:14.624285 \N \N \N \N \N +2888 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:14.648359 2024-02-12 22:37:14.648359 \N \N \N \N \N +2889 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:14.910727 2024-02-12 22:37:14.910727 \N \N \N \N \N +2890 Adeline Coade 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:14.936651 2024-02-12 22:37:14.936651 \N \N \N \N \N +2891 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:21.770667 2024-02-12 22:37:21.770667 \N \N \N \N \N +2892 Tiler Garrood 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:21.786457 2024-02-12 22:37:21.786457 \N \N \N \N \N +2893 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:34.458207 2024-02-12 22:37:34.458207 \N \N \N \N \N +2894 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:37:34.486607 2024-02-12 22:37:34.486607 \N \N \N \N \N +2907 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:25.168584 2024-02-12 22:38:25.168584 \N \N \N \N \N +2908 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:25.194962 2024-02-12 22:38:25.194962 \N \N \N \N \N +2909 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:36.636429 2024-02-12 22:38:36.636429 \N \N \N \N \N +2910 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:36.670259 2024-02-12 22:38:36.670259 \N \N \N \N \N +2911 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:43.591386 2024-02-12 22:38:43.591386 \N \N \N \N \N +2912 Benn Hearnshaw 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:43.610186 2024-02-12 22:38:43.610186 \N \N \N \N \N +2913 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:47.226421 2024-02-12 22:38:47.226421 \N \N \N \N \N +2914 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:47.242683 2024-02-12 22:38:47.242683 \N \N \N \N \N +2915 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:57.09099 2024-02-12 22:38:57.09099 \N \N \N \N \N +2916 Barbabas Dufaire 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:38:57.107807 2024-02-12 22:38:57.107807 \N \N \N \N \N +2917 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:41.068023 2024-02-12 22:41:41.068023 \N \N \N \N \N +2918 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:41.086051 2024-02-12 22:41:41.086051 \N \N \N \N \N +2919 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:43.96759 2024-02-12 22:41:43.96759 \N \N \N \N \N +2920 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:43.985023 2024-02-12 22:41:43.985023 \N \N \N \N \N +2921 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:45.275899 2024-02-12 22:41:45.275899 \N \N \N \N \N +2922 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:45.291942 2024-02-12 22:41:45.291942 \N \N \N \N \N +2923 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:45.813242 2024-02-12 22:41:45.813242 \N \N \N \N \N +2924 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:45.828277 2024-02-12 22:41:45.828277 \N \N \N \N \N +2925 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:47.462919 2024-02-12 22:41:47.462919 \N \N \N \N \N +2926 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:47.479605 2024-02-12 22:41:47.479605 \N \N \N \N \N +2927 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:48.27629 2024-02-12 22:41:48.27629 \N \N \N \N \N +2928 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:48.301378 2024-02-12 22:41:48.301378 \N \N \N \N \N +2929 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:50.27103 2024-02-12 22:41:50.27103 \N \N \N \N \N +2930 Donn Jeeks 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:50.287392 2024-02-12 22:41:50.287392 \N \N \N \N \N +2931 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:51.477433 2024-02-12 22:41:51.477433 \N \N \N \N \N +2932 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:51.494259 2024-02-12 22:41:51.494259 \N \N \N \N \N +2933 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:55.798123 2024-02-12 22:41:55.798123 \N \N \N \N \N +2934 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:55.814638 2024-02-12 22:41:55.814638 \N \N \N \N \N +2935 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:58.313648 2024-02-12 22:41:58.313648 \N \N \N \N \N +2936 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:41:58.330456 2024-02-12 22:41:58.330456 \N \N \N \N \N +2937 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:04.623385 2024-02-12 22:42:04.623385 \N \N \N \N \N +2938 Faber Heaysman 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:04.637848 2024-02-12 22:42:04.637848 \N \N \N \N \N +2939 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:07.321552 2024-02-12 22:42:07.321552 \N \N \N \N \N +2940 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:07.346308 2024-02-12 22:42:07.346308 \N \N \N \N \N +2941 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:08.391404 2024-02-12 22:42:08.391404 \N \N \N \N \N +2942 Barbee Deane 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:08.406947 2024-02-12 22:42:08.406947 \N \N \N \N \N +2943 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:13.346492 2024-02-12 22:42:13.346492 \N \N \N \N \N +2944 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:13.366491 2024-02-12 22:42:13.366491 \N \N \N \N \N +2945 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:13.511222 2024-02-12 22:42:13.511222 \N \N \N \N \N +2946 Pepito Furlonge 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:13.52926 2024-02-12 22:42:13.52926 \N \N \N \N \N +2947 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:17.787838 2024-02-12 22:42:17.787838 \N \N \N \N \N +2948 Petrina Cottrell 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:17.805712 2024-02-12 22:42:17.805712 \N \N \N \N \N +2949 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:20.339502 2024-02-12 22:42:20.339502 \N \N \N \N \N +2950 Rita Joskovitch 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:20.355009 2024-02-12 22:42:20.355009 \N \N \N \N \N +2951 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:29.59999 2024-02-12 22:42:29.59999 \N \N \N \N \N +2952 Ebeneser Carlucci 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:42:29.616553 2024-02-12 22:42:29.616553 \N \N \N \N \N +2953 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:43:12.409199 2024-02-12 22:43:12.409199 \N \N \N \N \N +2954 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:43:12.424496 2024-02-12 22:43:12.424496 \N \N \N \N \N +2955 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:43:22.31365 2024-02-12 22:43:22.31365 \N \N \N \N \N +2956 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:43:22.329074 2024-02-12 22:43:22.329074 \N \N \N \N \N +2957 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:44:15.896019 2024-02-12 22:44:15.896019 \N \N \N \N \N +2958 Kristal Skynner 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:44:15.913507 2024-02-12 22:44:15.913507 \N \N \N \N \N +2959 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:11.251707 2024-02-12 22:47:11.251707 \N \N \N \N \N +2960 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:11.271768 2024-02-12 22:47:11.271768 \N \N \N \N \N +2961 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:15.680672 2024-02-12 22:47:15.680672 \N \N \N \N \N +2962 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:15.702745 2024-02-12 22:47:15.702745 \N \N \N \N \N +2963 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:19.155771 2024-02-12 22:47:19.155771 \N \N \N \N \N +2964 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:19.175526 2024-02-12 22:47:19.175526 \N \N \N \N \N +2965 Malanie Patrie 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:21.57082 2024-02-12 22:47:21.57082 \N \N \N \N \N +2966 Malanie Patrie 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:21.618082 2024-02-12 22:47:21.618082 \N \N \N \N \N +2975 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:44.039332 2024-02-12 22:47:44.039332 \N \N \N \N \N +2976 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:44.079447 2024-02-12 22:47:44.079447 \N \N \N \N \N +2977 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:54.739909 2024-02-12 22:47:54.739909 \N \N \N \N \N +2978 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:54.763649 2024-02-12 22:47:54.763649 \N \N \N \N \N +2983 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:49:00.67602 2024-02-12 22:49:00.67602 \N \N \N \N \N +2984 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:49:00.709107 2024-02-12 22:49:00.709107 \N \N \N \N \N +2991 Theadora Prickett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:20.827592 2024-02-12 22:51:20.827592 \N \N \N \N \N +2992 Theadora Prickett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:20.863861 2024-02-12 22:51:20.863861 \N \N \N \N \N +3015 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:53:00.495867 2024-02-12 22:53:00.495867 \N \N \N \N \N +3016 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:53:00.529165 2024-02-12 22:53:00.529165 \N \N \N \N \N +2967 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:21.916962 2024-02-12 22:47:21.916962 \N \N \N \N \N +2968 Tiffany Franca 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:21.958174 2024-02-12 22:47:21.958174 \N \N \N \N \N +2969 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:22.527141 2024-02-12 22:47:22.527141 \N \N \N \N \N +2970 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:22.571259 2024-02-12 22:47:22.571259 \N \N \N \N \N +2971 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:25.932119 2024-02-12 22:47:25.932119 \N \N \N \N \N +2972 Elyssa Gregoratti 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:25.954437 2024-02-12 22:47:25.954437 \N \N \N \N \N +2973 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:32.172425 2024-02-12 22:47:32.172425 \N \N \N \N \N +2974 Carline Cardon 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:47:32.19831 2024-02-12 22:47:32.19831 \N \N \N \N \N +2979 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:48:01.857793 2024-02-12 22:48:01.857793 \N \N \N \N \N +2980 Livvie Pennone 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:48:01.879599 2024-02-12 22:48:01.879599 \N \N \N \N \N +2981 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:48:06.092297 2024-02-12 22:48:06.092297 \N \N \N \N \N +2982 Dorita Kitson 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:48:06.121758 2024-02-12 22:48:06.121758 \N \N \N \N \N +2985 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:15.611913 2024-02-12 22:51:15.611913 \N \N \N \N \N +2986 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:15.641742 2024-02-12 22:51:15.641742 \N \N \N \N \N +2987 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:16.848797 2024-02-12 22:51:16.848797 \N \N \N \N \N +2988 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:16.869031 2024-02-12 22:51:16.869031 \N \N \N \N \N +2989 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:20.453099 2024-02-12 22:51:20.453099 \N \N \N \N \N +2990 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:20.474481 2024-02-12 22:51:20.474481 \N \N \N \N \N +2993 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:22.073173 2024-02-12 22:51:22.073173 \N \N \N \N \N +2994 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:22.093473 2024-02-12 22:51:22.093473 \N \N \N \N \N +2995 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:30.323503 2024-02-12 22:51:30.323503 \N \N \N \N \N +2996 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:30.344547 2024-02-12 22:51:30.344547 \N \N \N \N \N +2997 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:36.764137 2024-02-12 22:51:36.764137 \N \N \N \N \N +2998 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:36.788697 2024-02-12 22:51:36.788697 \N \N \N \N \N +2999 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:39.599579 2024-02-12 22:51:39.599579 \N \N \N \N \N +3000 Marcelo Bordiss 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:39.619369 2024-02-12 22:51:39.619369 \N \N \N \N \N +3001 Theadora Prickett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:42.605581 2024-02-12 22:51:42.605581 \N \N \N \N \N +3002 Theadora Prickett 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:42.62419 2024-02-12 22:51:42.62419 \N \N \N \N \N +3003 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:44.454778 2024-02-12 22:51:44.454778 \N \N \N \N \N +3004 Ron Yorkston 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:44.473098 2024-02-12 22:51:44.473098 \N \N \N \N \N +3005 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:50.546534 2024-02-12 22:51:50.546534 \N \N \N \N \N +3006 Lilias Ravilus 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:50.577429 2024-02-12 22:51:50.577429 \N \N \N \N \N +3007 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:58.931646 2024-02-12 22:51:58.931646 \N \N \N \N \N +3008 Gena Spinello 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:51:58.95097 2024-02-12 22:51:58.95097 \N \N \N \N \N +3009 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:05.612472 2024-02-12 22:52:05.612472 \N \N \N \N \N +3010 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:05.631666 2024-02-12 22:52:05.631666 \N \N \N \N \N +3011 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:06.371668 2024-02-12 22:52:06.371668 \N \N \N \N \N +3012 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:06.392853 2024-02-12 22:52:06.392853 \N \N \N \N \N +3013 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:11.265771 2024-02-12 22:52:11.265771 \N \N \N \N \N +3014 Eimile Kenward 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:52:11.284291 2024-02-12 22:52:11.284291 \N \N \N \N \N +3017 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:53:06.010425 2024-02-12 22:53:06.010425 \N \N \N \N \N +3018 Valry Overill 32 Stenson Drive \N San Francisco 94016 555-555-5555 \N \N \N 486 224 2024-02-12 22:53:06.029956 2024-02-12 22:53:06.029956 \N \N \N \N \N +\. + + +-- +-- Data for Name: spree_adjustments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_adjustments (id, source_type, source_id, adjustable_type, adjustable_id, amount, label, mandatory, eligible, created_at, updated_at, state, order_id, included) FROM stdin; +2 Spree::TaxRate 1 Spree::Order 2 0.00 Tax t t 2022-07-12 18:15:53.394824 2022-09-02 16:14:11.43712 open 2 f +\. + + +-- +-- Data for Name: spree_assets; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_assets (id, viewable_type, viewable_id, attachment_width, attachment_height, attachment_file_size, "position", attachment_content_type, attachment_file_name, type, attachment_updated_at, alt, created_at, updated_at, public_metadata, private_metadata) FROM stdin; +2 Spree::Variant 233 \N \N \N 1 \N \N \N \N Cool Bits sticker 2022-09-02 16:34:35.494874 2022-09-02 17:04:42.62459 \N \N +3 Spree::Variant 234 \N \N \N 1 \N \N \N \N Bits by Dre sticker 2022-09-02 17:12:23.644569 2022-09-02 17:12:23.684878 \N \N +4 Spree::Variant 235 \N \N \N 1 \N \N \N \N Hockey Bits sticker 2022-09-02 17:22:59.508172 2022-09-02 17:22:59.547485 \N \N +5 Spree::Variant 236 \N \N \N 1 \N \N \N \N Learning bits sticker 2022-09-02 17:36:28.595446 2022-09-02 17:36:28.63616 \N \N +6 Spree::Variant 237 \N \N \N 1 \N \N \N \N Money Bits sticker 2022-09-02 18:30:57.959969 2022-09-02 18:30:57.998578 \N \N +7 Spree::Variant 238 \N \N \N 1 \N \N \N \N Octo Bits sticker 2022-09-02 18:39:42.383161 2022-09-02 18:39:42.417844 \N \N +8 Spree::Variant 239 \N \N \N 1 \N \N \N \N OG Bits sticker 2022-09-02 18:41:29.371737 2022-09-13 20:55:14.211482 \N \N +9 Spree::Variant 240 \N \N \N 1 \N \N \N \N Rainbow Bits sticker 2022-09-02 18:43:39.165283 2022-09-13 20:56:26.343792 \N \N +10 Spree::Variant 241 \N \N \N 1 \N \N \N \N Space Bits sticker 2022-09-02 18:45:13.006084 2022-09-13 20:57:51.32745 \N \N +12 Spree::Variant 243 \N \N \N 1 \N \N \N \N Stonk Bits sticker 2022-09-02 18:53:24.824158 2022-09-13 20:58:02.744495 \N \N +11 Spree::Variant 242 \N \N \N 1 \N \N \N \N Student Bits sticker 2022-09-02 18:51:15.601178 2022-09-13 20:58:22.806642 \N \N +14 Spree::Variant 245 \N \N \N 1 \N \N \N \N Sunset Bits sticker 2022-09-02 18:59:30.607167 2022-09-13 20:58:36.669417 \N \N +13 Spree::Variant 244 \N \N \N 1 \N \N \N \N Summit Denver stickers 2022-09-02 18:58:02.91531 2022-09-13 20:58:51.560572 \N \N +15 Spree::Variant 246 \N \N \N 1 \N \N \N \N AAPIHM Bits sticker 2022-09-02 19:02:32.264095 2022-09-13 20:59:13.191025 \N \N +\. + + +-- +-- Data for Name: spree_calculators; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_calculators (id, type, calculable_type, calculable_id, created_at, updated_at, preferences, deleted_at) FROM stdin; +1 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 1 2022-07-12 18:13:10.104397 2022-07-12 18:13:10.315893 ---\n:amount: 5\n:currency: USD\n \N +4 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 4 2022-07-12 18:13:10.241184 2022-07-12 18:13:10.337498 ---\n:amount: 5\n:currency: USD\n \N +3 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 3 2022-07-12 18:13:10.206767 2022-07-12 18:13:10.369779 ---\n:amount: 15\n:currency: USD\n \N +2 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 2 2022-07-12 18:13:10.17193 2022-07-12 18:13:10.395073 ---\n:amount: 10\n:currency: USD\n \N +5 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 5 2022-07-12 18:13:10.276986 2022-07-12 18:13:10.417847 ---\n:amount: 8\n:currency: EUR\n \N +6 Spree::Calculator::DefaultTax Spree::TaxRate 1 2022-07-12 18:13:10.495961 2022-07-12 18:13:10.510239 \N \N +\. + + +-- +-- Data for Name: spree_checks; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_checks (id, payment_method_id, user_id, account_holder_name, account_holder_type, routing_number, account_number, account_type, status, last_digits, gateway_customer_profile_id, gateway_payment_profile_id, created_at, updated_at, deleted_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_cms_pages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_cms_pages (id, title, meta_title, content, meta_description, visible, slug, type, locale, deleted_at, store_id, created_at, updated_at) FROM stdin; +1 About Us \N Numquam cupiditate voluptatum quis excepturi dolorum eos. Officia magnam beatae consequuntur eum nobis dignissimos. In consequuntur assumenda possimus magnam praesentium eveniet blanditiis minus. Cumque quae laudantium tenetur animi rem impedit dolores. Eligendi illum dolorum et repellat. Laudantium vel tempore culpa officiis voluptates adipisci minus repellat. Consequatur voluptatum perferendis saepe dicta reprehenderit suscipit nisi ab. Accusantium facere quibusdam deleniti sint eum corrupti aperiam. Facilis asperiores debitis quis voluptatum aliquid exercitationem. Enim explicabo blanditiis facere dolorum. \N t about-us Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.560263 2022-07-12 18:15:54.560263 +2 Privacy Policy \N Perferendis praesentium reprehenderit veniam consectetur. Animi sequi excepturi eligendi rerum tempora molestiae. Sunt ea optio recusandae ad quam harum quaerat. Asperiores voluptatum inventore consequatur animi amet earum vitae sed. Quos aperiam quia tenetur animi. Possimus consequuntur excepturi vel iste ut atque odio blanditiis. Harum ullam hic animi tenetur molestias. Blanditiis optio cumque cum inventore. Dignissimos vitae eligendi dolor reprehenderit sunt mollitia culpa quod. \N t privacy-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.586117 2022-07-12 18:15:54.586117 +3 Shipping Policy \N Quis suscipit consequatur tempora delectus commodi ipsa velit. Dignissimos laboriosam nam voluptates hic accusamus. Quos unde aperiam iusto illum corrupti. Similique blanditiis fugiat debitis corporis odio quia. Perferendis modi consequatur enim adipisci provident. Omnis eos non facere a nemo ad id praesentium. Blanditiis quaerat aperiam ea aliquid dolore. Quasi minus odit temporibus illum nostrum. Debitis ipsum nisi architecto recusandae. Ipsum delectus reprehenderit exercitationem ipsam officia magnam repellendus doloribus. \N t shipping-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.610922 2022-07-12 18:15:54.610922 +4 Returns Policy \N Excepturi debitis iusto optio quae nemo iure animi repellendus. Aperiam inventore tenetur fuga sunt aut dolores ratione. Eos ullam voluptatum exercitationem excepturi. Eius mollitia quibusdam ipsam aut. Iste esse voluptates totam molestiae velit a labore. Incidunt architecto totam dolores amet laboriosam dignissimos dolorum. Itaque corrupti voluptatum dolore occaecati molestiae excepturi deleniti laborum. Occaecati alias aperiam reiciendis culpa voluptates. \N t returns-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.636864 2022-07-12 18:15:54.636864 +5 À propos de nous \N Ab vero architecto dolorum fugiat. Deleniti quaerat minima doloribus fugit odit voluptatibus recusandae. Modi officiis accusamus mollitia neque illo placeat. Magnam veniam repellat animi quos. Ab laudantium eveniet at harum. Dolorem molestiae quaerat accusantium laboriosam aliquid in nesciunt. Consequatur recusandae optio quibusdam ullam omnis. Aliquid magni sed praesentium nisi. Magnam ad vel nesciunt beatae perferendis dignissimos praesentium ullam. Id nostrum incidunt voluptas repellendus hic culpa soluta veniam. \N t a-propos-de-nous Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.664297 2022-07-12 18:15:54.664297 +6 Politique de confidentialité \N Delectus est consequuntur totam unde. Repellat neque sit eos consequatur. Illo tempore illum ratione ducimus maxime. Repellendus odio suscipit ipsam magni laborum quam. Magni veniam voluptates dolorum illum voluptatibus qui veritatis iure. Laboriosam assumenda debitis repellat vel voluptatibus. Ad eveniet qui in saepe cumque. Nesciunt vitae inventore aspernatur amet distinctio optio quam. \N t politique-de-confidentialite Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.687268 2022-07-12 18:15:54.687268 +7 Politique d'expédition \N Natus sequi mollitia incidunt libero quo neque. Repellat a nulla accusamus maiores dolorum enim. Vero corrupti earum reiciendis iure nesciunt debitis. Magni consectetur quibusdam odio nulla deleniti. In ab tempora excepturi nulla sunt. Vero ipsum placeat omnis nemo esse occaecati unde. Veniam dolores blanditiis suscipit laborum doloribus non quas debitis. Quibusdam doloremque amet impedit recusandae fugiat beatae magni porro. Quos cum dignissimos aliquid quasi nam voluptatem. Labore magni quae dolor dolorem. \N t politique-dexpedition Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.711129 2022-07-12 18:15:54.711129 +8 Politique de retour \N Dolore minus natus delectus eaque. Quam sapiente facilis possimus neque voluptatem ipsa molestias nobis. Deleniti accusantium animi dolor veniam. Sequi libero in dolorem expedita modi iste tenetur. Quam expedita unde dignissimos exercitationem. Architecto accusantium dolorum explicabo vel numquam illum. Earum iusto vero amet doloremque. Illum nobis voluptate maiores ad delectus suscipit quibusdam. Amet consequatur iste asperiores cupiditate. Quisquam atque porro temporibus officia laudantium facere nulla eius. \N t politique-de-retour Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.734712 2022-07-12 18:15:54.734712 +9 Über uns \N Assumenda fugiat maiores voluptates et ipsa exercitationem inventore provident. Facilis amet a id veritatis repellendus ad nostrum perferendis. Id deserunt fugit tempora delectus reiciendis neque doloribus culpa. Modi ducimus voluptatem eaque doloribus molestiae consequatur error. Vel blanditiis illum quam distinctio aut aperiam. Quia repudiandae totam officiis unde possimus et. Temporibus facere dicta tempore in est ut. Temporibus error velit soluta possimus ratione fugit. Incidunt veniam ipsa error molestiae. \N t uber-uns Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.758315 2022-07-12 18:15:54.758315 +10 Datenschutz-Bestimmungen \N Hic rerum cumque unde cum. Nulla delectus porro nisi tempore laudantium. Asperiores corporis quibusdam praesentium libero. Ea beatae ab blanditiis vitae rem aut consectetur libero. Repellendus odit eos mollitia impedit officiis tempora. Maxime consequatur placeat laborum eum odit voluptates. Rerum a dolor pariatur veritatis neque esse. Libero veniam saepe modi officiis minus odio. \N t datenschutz-bestimmungen Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.780969 2022-07-12 18:15:54.780969 +11 Versandbedingungen \N Est quos illo quas hic natus iure velit animi. Blanditiis aspernatur repudiandae illum necessitatibus quibusdam. Nobis facere quaerat aliquid alias fuga. Voluptas omnis ducimus laboriosam voluptates ex asperiores nam fugit. Officiis illum omnis nesciunt nemo dolorem. Fugiat nesciunt eveniet totam cumque laudantium. Velit modi quaerat laudantium distinctio officia iusto dolores. Necessitatibus earum doloremque sapiente consectetur. \N t versandbedingungen Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.804449 2022-07-12 18:15:54.804449 +12 Rückgaberecht \N Aliquid accusamus sequi explicabo totam error. Facilis maxime eveniet sapiente ipsam nemo tenetur. Iusto porro necessitatibus beatae numquam cumque. Illum nesciunt cupiditate corrupti hic ducimus voluptatum aut odio. Porro id magni ipsam voluptatibus voluptates. Culpa quos beatae aliquam quibusdam corporis rem et. Odit dolorem enim praesentium esse ratione officia. Fugiat maxime alias consectetur placeat doloremque deserunt. Minus harum doloribus id maxime eveniet eius quisquam. Error nostrum veritatis architecto facere voluptatem optio aperiam. \N t ruckgaberecht Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.82804 2022-07-12 18:15:54.82804 +30 Feature Page \N \N \N t feature-page Spree::Cms::Pages::FeaturePage en \N 3 2022-07-12 18:15:55.296624 2022-07-12 18:15:58.584345 +31 Homepage (English) \N \N \N t \N Spree::Cms::Pages::Homepage en \N 1 2022-07-12 18:15:55.337838 2022-07-12 18:15:58.63349 +25 Feature Page \N \N \N t feature-page Spree::Cms::Pages::FeaturePage en \N 1 2022-07-12 18:15:55.17607 2022-07-12 18:15:58.682065 +13 Sobre nosotros \N Tenetur error minima nam tempora sit voluptates nesciunt perferendis. Neque maiores nemo tempora eaque dolore odio fugit impedit. Saepe consectetur aliquam alias nesciunt nostrum quam ratione delectus. Minima veniam placeat explicabo accusamus cum voluptatum officiis. Aspernatur ipsam fugiat impedit placeat error nihil exercitationem pariatur. Recusandae voluptatibus et assumenda modi odit ipsum veniam nam. Magnam laborum iusto dolorem hic veniam magni quod commodi. Vel numquam doloremque soluta aspernatur. Possimus dolor minus inventore architecto. \N t sobre-nosotros Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.850831 2022-07-12 18:15:54.850831 +14 Política de privacidad \N Recusandae perspiciatis a quo occaecati laudantium exercitationem ratione. Quas ipsam assumenda distinctio occaecati. Id sapiente laboriosam libero assumenda unde perferendis. Esse cum error nisi minus officiis. Laborum deleniti necessitatibus ipsam repellat dolorum eaque. Est at vel tempore fugiat adipisci animi. Perferendis totam recusandae voluptas quidem. Odit error quae consequuntur iusto ea itaque. Temporibus voluptatem iusto delectus itaque quia quo. Blanditiis ratione illum quasi ex corrupti officiis libero. \N t politica-de-privacidad Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.889774 2022-07-12 18:15:54.889774 +15 Politica de envios \N Vitae at adipisci quasi provident temporibus odio. Est sapiente suscipit consequuntur optio perferendis. Libero repellat natus eius ducimus amet explicabo. Illo ducimus blanditiis quae quasi eum mollitia provident. Suscipit ipsum inventore consequatur ullam voluptatum unde ducimus. Accusamus adipisci omnis impedit eos. Illum consectetur quo culpa aperiam assumenda ipsum cupiditate. Hic quaerat fugit quia tenetur perferendis rerum perspiciatis. \N t politica-de-envios Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.915987 2022-07-12 18:15:54.915987 +16 Política de devoluciones \N Iste ipsam quaerat corrupti impedit doloremque repellendus itaque fugiat. Quibusdam in quo maxime architecto repudiandae voluptas. Impedit corrupti eius quia tenetur. Culpa magnam cum temporibus ipsa beatae recusandae. Nihil rerum sequi eaque reiciendis repellendus praesentium perspiciatis veritatis. Hic cupiditate libero blanditiis eum aperiam eveniet animi. Nemo quibusdam sapiente consequatur voluptates minus nihil. Cumque quis ex odio iste enim impedit soluta aut. Blanditiis tenetur corporis quod commodi minima. Dolorum suscipit enim saepe quas dolore. \N t politica-de-devoluciones Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.940717 2022-07-12 18:15:54.940717 +17 À propos de nous \N Sit aspernatur expedita amet veritatis quia iure exercitationem unde. Voluptas tempore veniam unde molestiae praesentium eum modi. Voluptatum libero inventore accusamus ipsa in labore vero. Deserunt nobis expedita nihil totam eveniet quia eum. Eveniet deleniti hic rem reprehenderit id. Eveniet tempore commodi consectetur vel autem. Facere at similique doloribus accusantium commodi tenetur nam sunt. Provident consectetur eum dolorem vero non aliquam harum. \N t a-propos-de-nous Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:54.965114 2022-07-12 18:15:54.965114 +18 Politique de confidentialité \N Voluptates inventore molestias magni consequatur temporibus esse. Assumenda maiores beatae numquam nam fugit at. Placeat quidem accusantium error voluptatum fuga blanditiis ab. Perferendis dignissimos magni dolorum laborum facilis aspernatur minus. Perspiciatis fugiat quas iusto id error cumque. Reiciendis repudiandae porro dolore amet aperiam minus repellat mollitia. Ab fugit quia dolor eveniet quidem. Officia eveniet labore aut illo. Ipsa voluptatem dolore ab quo esse assumenda. \N t politique-de-confidentialite Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:54.989845 2022-07-12 18:15:54.989845 +19 Politique d'expédition \N Deleniti qui cupiditate totam hic. Voluptatem voluptas autem praesentium sunt beatae amet. Deserunt ullam delectus totam hic culpa repellat placeat. Laboriosam animi recusandae accusamus commodi. Totam quis et vel incidunt veniam molestiae aliquid. Unde dolore quam sapiente omnis perferendis nulla in. Perferendis maxime quasi ex eum saepe incidunt. Voluptates repellendus aperiam ipsam totam debitis facere. Fugiat quas consectetur exercitationem illum eos cumque dignissimos aspernatur. Perspiciatis ad ipsam est impedit nemo expedita. \N t politique-dexpedition Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:55.013195 2022-07-12 18:15:55.013195 +20 Politique de retour \N Possimus maxime est necessitatibus similique quas temporibus quibusdam pariatur. Quos odio maiores cupiditate labore atque. Aliquam eum vitae ullam quidem fugiat voluptatibus iure. Facilis cupiditate modi pariatur eius reiciendis. Sint cumque maxime sed ullam velit vitae. Tempora commodi fugit velit aspernatur. Repellat cupiditate vel voluptates occaecati. Magnam possimus placeat reiciendis voluptas ea odio consequatur voluptatibus. \N t politique-de-retour Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:55.036933 2022-07-12 18:15:55.036933 +21 About Us \N Consequuntur omnis sunt tenetur iusto quia quisquam quaerat cumque. Perspiciatis magnam maiores beatae incidunt quaerat quasi voluptatum. Veritatis exercitationem explicabo rerum eveniet hic soluta eligendi sapiente. Error sint reprehenderit consectetur commodi voluptas mollitia. Repudiandae nisi explicabo ullam voluptates. Minus iusto quas ipsam doloremque amet reiciendis. Rem illum aspernatur animi ex quis. Nisi recusandae quibusdam officia ex animi. \N t about-us Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.060692 2022-07-12 18:15:55.060692 +22 Privacy Policy \N Aliquid eius quaerat tenetur sint optio. Sint labore harum sed minima quas iusto rem. In hic officia corporis enim sapiente. Magni quas at dicta aperiam iusto quam inventore nostrum. Voluptatem minus alias impedit quaerat illum labore ab. Doloribus laboriosam iusto laborum saepe ut voluptatibus. Rem minima itaque quae maiores quis. Sunt ullam praesentium commodi delectus nostrum dolore deserunt. Harum perspiciatis eligendi qui molestias. Qui eaque non id illo inventore aut architecto. \N t privacy-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.084057 2022-07-12 18:15:55.084057 +23 Shipping Policy \N Maxime a velit placeat quidem consequatur veniam. Dolores aut sequi sed doloremque fuga debitis. Vitae nulla ipsa debitis reprehenderit. Qui laborum ad vel soluta ratione quae pariatur. Doloremque cupiditate veritatis sapiente ea amet sit. Blanditiis est sapiente aperiam deserunt. Harum quis perferendis autem quidem cumque ab officiis at. Quam atque rem quo incidunt nulla praesentium dicta ipsam. \N t shipping-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.107639 2022-07-12 18:15:55.107639 +24 Returns Policy \N Nemo quibusdam adipisci ipsam sunt possimus nulla. Distinctio assumenda consequatur ab quam. Facere quo ipsam veniam dignissimos doloremque. Incidunt quod vel hic doloribus magnam mollitia numquam quisquam. Illum vel hic dolor distinctio fugit quibusdam consectetur vitae. At minus fugiat rerum tempora. Corrupti cupiditate dolore adipisci ea quo quae. Id blanditiis harum facere fugiat. \N t returns-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.133015 2022-07-12 18:15:55.133015 +26 Page de fonctionnalité \N \N \N t page-de-fonctionnalite Spree::Cms::Pages::FeaturePage fr \N 1 2022-07-12 18:15:55.202656 2022-07-12 18:15:58.730069 +27 Feature-Seite \N \N \N t feature-seite Spree::Cms::Pages::FeaturePage de \N 2 2022-07-12 18:15:55.22675 2022-07-12 18:15:58.777897 +28 Página de características \N \N \N t pagina-de-caracteristicas Spree::Cms::Pages::FeaturePage es \N 2 2022-07-12 18:15:55.250857 2022-07-12 18:15:58.825561 +29 Page de fonctionnalité \N \N \N t page-de-fonctionnalite Spree::Cms::Pages::FeaturePage fr \N 2 2022-07-12 18:15:55.273745 2022-07-12 18:15:58.537818 +32 Page d'accueil (Français) \N \N \N t \N Spree::Cms::Pages::Homepage fr \N 1 2022-07-12 18:15:55.362441 2022-07-12 18:15:58.870774 +33 Startseite (Deutsche) \N \N \N t \N Spree::Cms::Pages::Homepage de \N 2 2022-07-12 18:15:55.384683 2022-07-12 18:15:58.91885 +34 Página principal (Español) \N \N \N t \N Spree::Cms::Pages::Homepage es \N 2 2022-07-12 18:15:55.407121 2022-07-12 18:15:58.970005 +35 Page d'accueil (Français) \N \N \N t \N Spree::Cms::Pages::Homepage fr \N 2 2022-07-12 18:15:55.428994 2022-07-12 18:15:59.019988 +36 Homepage (English) \N \N \N t \N Spree::Cms::Pages::Homepage en \N 3 2022-07-12 18:15:55.450192 2022-07-12 18:15:59.069959 +\. + + +-- +-- Data for Name: spree_cms_sections; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_cms_sections (id, name, content, settings, fit, destination, type, "position", linked_resource_type, linked_resource_id, cms_page_id, created_at, updated_at) FROM stdin; +1 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 29 2022-07-12 18:15:55.52107 2022-07-12 18:15:55.545821 +2 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 30 2022-07-12 18:15:55.573302 2022-07-12 18:15:55.595191 +3 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 31 2022-07-12 18:15:55.620585 2022-07-12 18:15:55.642242 +4 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 25 2022-07-12 18:15:55.667202 2022-07-12 18:15:55.689382 +5 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 26 2022-07-12 18:15:55.715811 2022-07-12 18:15:55.737806 +6 Heldenbild {"title":"Sommerkollektion","button_text":"Jetzt einkaufen"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 27 2022-07-12 18:15:55.763014 2022-07-12 18:15:55.78468 +7 Imagen de héroe {"title":"Colección de verano","button_text":"Compra ahora"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 28 2022-07-12 18:15:55.809817 2022-07-12 18:15:55.831323 +8 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 32 2022-07-12 18:15:55.856691 2022-07-12 18:15:55.878194 +9 Heldenbild {"title":"Sommerkollektion","button_text":"Jetzt einkaufen"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 33 2022-07-12 18:15:55.904474 2022-07-12 18:15:55.935383 +10 Imagen de héroe {"title":"Colección de verano","button_text":"Compra ahora"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 34 2022-07-12 18:15:55.962148 2022-07-12 18:15:55.984702 +11 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 35 2022-07-12 18:15:56.009291 2022-07-12 18:15:56.031215 +12 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 36 2022-07-12 18:15:56.056942 2022-07-12 18:15:56.079635 +13 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 29 2022-07-12 18:15:56.117329 2022-07-12 18:15:56.1696 +14 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 30 2022-07-12 18:15:56.194408 2022-07-12 18:15:56.216213 +15 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 31 2022-07-12 18:15:56.240559 2022-07-12 18:15:56.261829 +16 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 25 2022-07-12 18:15:56.285505 2022-07-12 18:15:56.308319 +17 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 26 2022-07-12 18:15:56.333669 2022-07-12 18:15:56.356077 +18 Haupttaxa {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Männer","title_two":"Frauen","title_three":"Sportbekleidung"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 27 2022-07-12 18:15:56.379835 2022-07-12 18:15:56.402265 +19 Taxón principal {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hombres","title_two":"Mujeres","title_three":"Ropa de deporte"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 28 2022-07-12 18:15:56.425491 2022-07-12 18:15:56.447825 +20 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 32 2022-07-12 18:15:56.471758 2022-07-12 18:15:56.494202 +21 Haupttaxa {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Männer","title_two":"Frauen","title_three":"Sportbekleidung"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 33 2022-07-12 18:15:56.518188 2022-07-12 18:15:56.540731 +22 Taxón principal {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hombres","title_two":"Mujeres","title_three":"Ropa de deporte"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 34 2022-07-12 18:15:56.564825 2022-07-12 18:15:56.585697 +23 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 35 2022-07-12 18:15:56.60759 2022-07-12 18:15:56.629302 +24 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 36 2022-07-12 18:15:56.65259 2022-07-12 18:15:56.673811 +25 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 29 2022-07-12 18:15:56.711287 2022-07-12 18:15:56.734269 +26 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 30 2022-07-12 18:15:56.758921 2022-07-12 18:15:56.779991 +27 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 31 2022-07-12 18:15:56.804631 2022-07-12 18:15:56.828049 +28 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 25 2022-07-12 18:15:56.853111 2022-07-12 18:15:56.874961 +29 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 26 2022-07-12 18:15:56.89901 2022-07-12 18:15:56.920741 +30 Bestseller Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 27 2022-07-12 18:15:56.944375 2022-07-12 18:15:56.966003 +31 Carrusel de los más vendidos \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 28 2022-07-12 18:15:56.990451 2022-07-12 18:15:57.020058 +32 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 32 2022-07-12 18:15:57.046935 2022-07-12 18:15:57.069233 +33 Bestseller Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 33 2022-07-12 18:15:57.093448 2022-07-12 18:15:57.114807 +34 Carrusel de los más vendidos \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 34 2022-07-12 18:15:57.139868 2022-07-12 18:15:57.16093 +35 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 35 2022-07-12 18:15:57.18608 2022-07-12 18:15:57.209135 +36 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 36 2022-07-12 18:15:57.233276 2022-07-12 18:15:57.255589 +37 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Last we saw Bits, he was snorkeling in the Cayman Islands. Not sure who this octopus is...
2022-09-01 05:00:00 \N octo-bits \N 1 2022-09-02 18:38:46.408336 2024-02-12 22:52:22.576631 t \N \N \N +125 Space BitsEverybody Laikas this vinyl sticker! (We would never send Bits into space alone without having a safe recovery plan.)
2022-09-01 05:00:00 \N space-bits \N 1 2022-09-02 18:44:36.118532 2024-02-12 22:47:59.513009 t \N \N \N +128 April 2022 Summit Denver StickerThe year was 2022 and hundreds of observability folks converged on Denver to talk metrics, logs, and events. This is the commemorative vinyl sticker.
2022-09-01 05:00:00 \N april-2022-summit-denver-sticker \N 1 2022-09-02 18:57:21.587803 2024-02-12 22:52:58.75172 t \N \N \N +129 Sunset BitsRemember the amazing Miami sunsets of the 80s? Bits sure does. Slap this everlasting vinly sticker on your jet ski and hit the waves!
2022-09-01 05:00:00 \N sunset-bits \N 1 2022-09-02 18:59:14.653772 2024-02-12 22:38:45.826389 t \N \N \N +123 OG BitsIt's hard to beat a classic. The original Datadog logo on a durable vinyl sticker.
2022-09-01 05:00:00 \N og-bits \N 1 2022-09-02 18:41:05.372097 2024-02-12 22:52:24.648684 t \N \N \N +126 Student BitsShow the folks at the cafe that you're as smart (and obedient) as Bits! Lifelong vinyl sticker.
2022-09-01 05:00:00 \N student-bits \N 1 2022-09-02 18:50:49.226403 2024-02-12 22:52:22.685138 t \N \N \N +121 Money BitsWith good breeding and a little bit of luck, a good dog can rise to the top. Show your admiration for the top 1% with this fancy vinyl sticker.
2022-09-01 05:00:00 \N money-bits \N 1 2022-09-02 18:30:30.895575 2024-02-12 22:35:00.489803 t \N \N \N +124 Rainbow BitsBe as proud as Bits with this colorful vinyl sticker.
2022-09-01 05:00:00 \N rainbow-bits \N 1 2022-09-02 18:42:26.495532 2024-02-12 22:42:30.504401 t \N \N \N +118 Bits by DreBits got some dope cans for his fat beats! Show the world that you like dogs that like hip hop with this tasteful vinyl sticker.
2022-09-01 05:00:00 \N bits-by-dre \N 1 2022-09-02 17:09:21.541099 2024-02-12 22:52:24.546331 t \N \N \N +119 Hockey BitsJust as iconic as Gritty.
2022-09-01 05:00:00 \N hockey-bits \N 1 2022-09-02 17:19:13.882198 2024-02-12 22:52:19.372246 t \N \N \N +127 Stonk BitsThis sticker is so hot we're legally not allowed to sell it.
\N \N stonk-bits \N 1 2022-09-02 18:52:56.259081 2024-02-12 20:51:22.956816 t \N \N \N +130 AAPI Heritage Month BitsCelebrate Asian American Pacific Islander Heritage Month with Bits!
2022-09-01 05:00:00 \N aapi-heritage-month-bits \N 1 2022-09-02 19:01:55.285004 2024-02-12 22:52:58.509608 t \N \N \N +120 Learning BitsShow that you're the head of the class.
2022-09-01 05:00:00 \N learning-bits \N 1 2022-09-02 17:31:19.71234 2024-02-12 22:52:58.635551 t \N \N \N +117 Cool BitsSlap this onto your favorite water bottle and be as cool as Bits.
2022-09-01 05:00:00 \N cool-bits \N 1 2022-09-02 16:33:37.715722 2024-02-12 22:38:45.750211 t \N \N \N +\. + + +-- +-- Data for Name: spree_products_stores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_products_stores (id, product_id, store_id, created_at, updated_at) FROM stdin; +1 1 1 2022-07-12 18:13:17.310316 2022-07-12 18:13:17.310316 +2 1 2 2022-07-12 18:13:17.316702 2022-07-12 18:13:17.316702 +3 1 3 2022-07-12 18:13:17.322354 2022-07-12 18:13:17.322354 +4 2 1 2022-07-12 18:13:17.784646 2022-07-12 18:13:17.784646 +5 2 2 2022-07-12 18:13:17.790959 2022-07-12 18:13:17.790959 +6 2 3 2022-07-12 18:13:17.796506 2022-07-12 18:13:17.796506 +7 3 1 2022-07-12 18:13:18.128786 2022-07-12 18:13:18.128786 +8 3 2 2022-07-12 18:13:18.135631 2022-07-12 18:13:18.135631 +9 3 3 2022-07-12 18:13:18.141454 2022-07-12 18:13:18.141454 +10 4 1 2022-07-12 18:13:18.46825 2022-07-12 18:13:18.46825 +11 4 2 2022-07-12 18:13:18.473954 2022-07-12 18:13:18.473954 +12 4 3 2022-07-12 18:13:18.479651 2022-07-12 18:13:18.479651 +13 5 1 2022-07-12 18:13:18.796834 2022-07-12 18:13:18.796834 +14 5 2 2022-07-12 18:13:18.802695 2022-07-12 18:13:18.802695 +15 5 3 2022-07-12 18:13:18.808737 2022-07-12 18:13:18.808737 +16 6 1 2022-07-12 18:13:19.142255 2022-07-12 18:13:19.142255 +17 6 2 2022-07-12 18:13:19.148573 2022-07-12 18:13:19.148573 +18 6 3 2022-07-12 18:13:19.154427 2022-07-12 18:13:19.154427 +19 7 1 2022-07-12 18:13:19.48072 2022-07-12 18:13:19.48072 +20 7 2 2022-07-12 18:13:19.48687 2022-07-12 18:13:19.48687 +21 7 3 2022-07-12 18:13:19.493185 2022-07-12 18:13:19.493185 +22 8 1 2022-07-12 18:13:19.81796 2022-07-12 18:13:19.81796 +23 8 2 2022-07-12 18:13:19.823828 2022-07-12 18:13:19.823828 +24 8 3 2022-07-12 18:13:19.829981 2022-07-12 18:13:19.829981 +25 9 1 2022-07-12 18:13:20.165516 2022-07-12 18:13:20.165516 +26 9 2 2022-07-12 18:13:20.171644 2022-07-12 18:13:20.171644 +27 9 3 2022-07-12 18:13:20.177652 2022-07-12 18:13:20.177652 +28 10 1 2022-07-12 18:13:20.511997 2022-07-12 18:13:20.511997 +29 10 2 2022-07-12 18:13:20.518128 2022-07-12 18:13:20.518128 +30 10 3 2022-07-12 18:13:20.524043 2022-07-12 18:13:20.524043 +31 11 1 2022-07-12 18:13:20.839969 2022-07-12 18:13:20.839969 +32 11 2 2022-07-12 18:13:20.845785 2022-07-12 18:13:20.845785 +33 11 3 2022-07-12 18:13:20.851819 2022-07-12 18:13:20.851819 +34 12 1 2022-07-12 18:13:21.174726 2022-07-12 18:13:21.174726 +35 12 2 2022-07-12 18:13:21.180923 2022-07-12 18:13:21.180923 +36 12 3 2022-07-12 18:13:21.186399 2022-07-12 18:13:21.186399 +37 13 1 2022-07-12 18:13:21.510996 2022-07-12 18:13:21.510996 +38 13 2 2022-07-12 18:13:21.517176 2022-07-12 18:13:21.517176 +39 13 3 2022-07-12 18:13:21.522711 2022-07-12 18:13:21.522711 +40 14 1 2022-07-12 18:13:21.841853 2022-07-12 18:13:21.841853 +41 14 2 2022-07-12 18:13:21.84833 2022-07-12 18:13:21.84833 +42 14 3 2022-07-12 18:13:21.860431 2022-07-12 18:13:21.860431 +43 15 1 2022-07-12 18:13:22.198649 2022-07-12 18:13:22.198649 +44 15 2 2022-07-12 18:13:22.204852 2022-07-12 18:13:22.204852 +45 15 3 2022-07-12 18:13:22.210877 2022-07-12 18:13:22.210877 +46 16 1 2022-07-12 18:13:22.55177 2022-07-12 18:13:22.55177 +47 16 2 2022-07-12 18:13:22.557306 2022-07-12 18:13:22.557306 +48 16 3 2022-07-12 18:13:22.563251 2022-07-12 18:13:22.563251 +49 17 1 2022-07-12 18:13:23.040633 2022-07-12 18:13:23.040633 +50 17 2 2022-07-12 18:13:23.046415 2022-07-12 18:13:23.046415 +51 17 3 2022-07-12 18:13:23.052106 2022-07-12 18:13:23.052106 +52 18 1 2022-07-12 18:13:23.387824 2022-07-12 18:13:23.387824 +53 18 2 2022-07-12 18:13:23.393434 2022-07-12 18:13:23.393434 +54 18 3 2022-07-12 18:13:23.399913 2022-07-12 18:13:23.399913 +55 19 1 2022-07-12 18:13:23.745681 2022-07-12 18:13:23.745681 +56 19 2 2022-07-12 18:13:23.752195 2022-07-12 18:13:23.752195 +57 19 3 2022-07-12 18:13:23.75834 2022-07-12 18:13:23.75834 +58 20 1 2022-07-12 18:13:24.121642 2022-07-12 18:13:24.121642 +59 20 2 2022-07-12 18:13:24.127981 2022-07-12 18:13:24.127981 +60 20 3 2022-07-12 18:13:24.135404 2022-07-12 18:13:24.135404 +61 21 1 2022-07-12 18:13:24.474733 2022-07-12 18:13:24.474733 +62 21 2 2022-07-12 18:13:24.481447 2022-07-12 18:13:24.481447 +63 21 3 2022-07-12 18:13:24.487858 2022-07-12 18:13:24.487858 +64 22 1 2022-07-12 18:13:24.833991 2022-07-12 18:13:24.833991 +65 22 2 2022-07-12 18:13:24.839888 2022-07-12 18:13:24.839888 +66 22 3 2022-07-12 18:13:24.846406 2022-07-12 18:13:24.846406 +67 23 1 2022-07-12 18:13:25.181981 2022-07-12 18:13:25.181981 +68 23 2 2022-07-12 18:13:25.188229 2022-07-12 18:13:25.188229 +69 23 3 2022-07-12 18:13:25.193859 2022-07-12 18:13:25.193859 +70 24 1 2022-07-12 18:13:25.534579 2022-07-12 18:13:25.534579 +71 24 2 2022-07-12 18:13:25.539993 2022-07-12 18:13:25.539993 +72 24 3 2022-07-12 18:13:25.546235 2022-07-12 18:13:25.546235 +73 25 1 2022-07-12 18:13:25.899947 2022-07-12 18:13:25.899947 +74 25 2 2022-07-12 18:13:25.906612 2022-07-12 18:13:25.906612 +75 25 3 2022-07-12 18:13:25.913536 2022-07-12 18:13:25.913536 +76 26 1 2022-07-12 18:13:26.347235 2022-07-12 18:13:26.347235 +77 26 2 2022-07-12 18:13:26.353899 2022-07-12 18:13:26.353899 +78 26 3 2022-07-12 18:13:26.361376 2022-07-12 18:13:26.361376 +79 27 1 2022-07-12 18:13:26.706026 2022-07-12 18:13:26.706026 +80 27 2 2022-07-12 18:13:26.712252 2022-07-12 18:13:26.712252 +81 27 3 2022-07-12 18:13:26.718644 2022-07-12 18:13:26.718644 +82 28 1 2022-07-12 18:13:27.143972 2022-07-12 18:13:27.143972 +83 28 2 2022-07-12 18:13:27.151014 2022-07-12 18:13:27.151014 +84 28 3 2022-07-12 18:13:27.1587 2022-07-12 18:13:27.1587 +85 29 1 2022-07-12 18:13:27.563502 2022-07-12 18:13:27.563502 +86 29 2 2022-07-12 18:13:27.570298 2022-07-12 18:13:27.570298 +87 29 3 2022-07-12 18:13:27.576575 2022-07-12 18:13:27.576575 +88 30 1 2022-07-12 18:13:27.932548 2022-07-12 18:13:27.932548 +89 30 2 2022-07-12 18:13:27.940794 2022-07-12 18:13:27.940794 +90 30 3 2022-07-12 18:13:27.952595 2022-07-12 18:13:27.952595 +91 31 1 2022-07-12 18:13:28.395544 2022-07-12 18:13:28.395544 +92 31 2 2022-07-12 18:13:28.40198 2022-07-12 18:13:28.40198 +93 31 3 2022-07-12 18:13:28.407804 2022-07-12 18:13:28.407804 +94 32 1 2022-07-12 18:13:28.907919 2022-07-12 18:13:28.907919 +95 32 2 2022-07-12 18:13:28.91444 2022-07-12 18:13:28.91444 +96 32 3 2022-07-12 18:13:28.920461 2022-07-12 18:13:28.920461 +97 33 1 2022-07-12 18:13:29.277752 2022-07-12 18:13:29.277752 +98 33 2 2022-07-12 18:13:29.290271 2022-07-12 18:13:29.290271 +99 33 3 2022-07-12 18:13:29.296626 2022-07-12 18:13:29.296626 +100 34 1 2022-07-12 18:13:29.635609 2022-07-12 18:13:29.635609 +101 34 2 2022-07-12 18:13:29.641978 2022-07-12 18:13:29.641978 +102 34 3 2022-07-12 18:13:29.648659 2022-07-12 18:13:29.648659 +103 35 1 2022-07-12 18:13:30.005009 2022-07-12 18:13:30.005009 +104 35 2 2022-07-12 18:13:30.01119 2022-07-12 18:13:30.01119 +105 35 3 2022-07-12 18:13:30.017514 2022-07-12 18:13:30.017514 +106 36 1 2022-07-12 18:13:30.36826 2022-07-12 18:13:30.36826 +107 36 2 2022-07-12 18:13:30.374248 2022-07-12 18:13:30.374248 +108 36 3 2022-07-12 18:13:30.379926 2022-07-12 18:13:30.379926 +109 37 1 2022-07-12 18:13:30.73493 2022-07-12 18:13:30.73493 +110 37 2 2022-07-12 18:13:30.741859 2022-07-12 18:13:30.741859 +111 37 3 2022-07-12 18:13:30.748063 2022-07-12 18:13:30.748063 +112 38 1 2022-07-12 18:13:31.104296 2022-07-12 18:13:31.104296 +113 38 2 2022-07-12 18:13:31.110312 2022-07-12 18:13:31.110312 +114 38 3 2022-07-12 18:13:31.117477 2022-07-12 18:13:31.117477 +115 39 1 2022-07-12 18:13:31.468574 2022-07-12 18:13:31.468574 +116 39 2 2022-07-12 18:13:31.474373 2022-07-12 18:13:31.474373 +117 39 3 2022-07-12 18:13:31.486526 2022-07-12 18:13:31.486526 +118 40 1 2022-07-12 18:13:31.826322 2022-07-12 18:13:31.826322 +119 40 2 2022-07-12 18:13:31.83229 2022-07-12 18:13:31.83229 +120 40 3 2022-07-12 18:13:31.838119 2022-07-12 18:13:31.838119 +121 41 1 2022-07-12 18:13:32.18286 2022-07-12 18:13:32.18286 +122 41 2 2022-07-12 18:13:32.188826 2022-07-12 18:13:32.188826 +123 41 3 2022-07-12 18:13:32.194539 2022-07-12 18:13:32.194539 +124 42 1 2022-07-12 18:13:32.54752 2022-07-12 18:13:32.54752 +125 42 2 2022-07-12 18:13:32.554003 2022-07-12 18:13:32.554003 +126 42 3 2022-07-12 18:13:32.560238 2022-07-12 18:13:32.560238 +127 43 1 2022-07-12 18:13:32.905748 2022-07-12 18:13:32.905748 +128 43 2 2022-07-12 18:13:32.911224 2022-07-12 18:13:32.911224 +129 43 3 2022-07-12 18:13:32.917356 2022-07-12 18:13:32.917356 +130 44 1 2022-07-12 18:13:33.279924 2022-07-12 18:13:33.279924 +131 44 2 2022-07-12 18:13:33.285991 2022-07-12 18:13:33.285991 +132 44 3 2022-07-12 18:13:33.291941 2022-07-12 18:13:33.291941 +133 45 1 2022-07-12 18:13:33.651669 2022-07-12 18:13:33.651669 +134 45 2 2022-07-12 18:13:33.658273 2022-07-12 18:13:33.658273 +135 45 3 2022-07-12 18:13:33.664388 2022-07-12 18:13:33.664388 +136 46 1 2022-07-12 18:13:34.174354 2022-07-12 18:13:34.174354 +137 46 2 2022-07-12 18:13:34.181103 2022-07-12 18:13:34.181103 +138 46 3 2022-07-12 18:13:34.188291 2022-07-12 18:13:34.188291 +139 47 1 2022-07-12 18:13:34.553389 2022-07-12 18:13:34.553389 +140 47 2 2022-07-12 18:13:34.559641 2022-07-12 18:13:34.559641 +141 47 3 2022-07-12 18:13:34.566073 2022-07-12 18:13:34.566073 +142 48 1 2022-07-12 18:13:34.923528 2022-07-12 18:13:34.923528 +143 48 2 2022-07-12 18:13:34.929431 2022-07-12 18:13:34.929431 +144 48 3 2022-07-12 18:13:34.935364 2022-07-12 18:13:34.935364 +145 49 1 2022-07-12 18:13:35.277249 2022-07-12 18:13:35.277249 +146 49 2 2022-07-12 18:13:35.28385 2022-07-12 18:13:35.28385 +147 49 3 2022-07-12 18:13:35.289078 2022-07-12 18:13:35.289078 +148 50 1 2022-07-12 18:13:35.635883 2022-07-12 18:13:35.635883 +149 50 2 2022-07-12 18:13:35.64191 2022-07-12 18:13:35.64191 +150 50 3 2022-07-12 18:13:35.649261 2022-07-12 18:13:35.649261 +151 51 1 2022-07-12 18:13:36.016609 2022-07-12 18:13:36.016609 +152 51 2 2022-07-12 18:13:36.022392 2022-07-12 18:13:36.022392 +153 51 3 2022-07-12 18:13:36.027959 2022-07-12 18:13:36.027959 +154 52 1 2022-07-12 18:13:36.385707 2022-07-12 18:13:36.385707 +155 52 2 2022-07-12 18:13:36.392364 2022-07-12 18:13:36.392364 +156 52 3 2022-07-12 18:13:36.398539 2022-07-12 18:13:36.398539 +157 53 1 2022-07-12 18:13:36.749183 2022-07-12 18:13:36.749183 +158 53 2 2022-07-12 18:13:36.754907 2022-07-12 18:13:36.754907 +159 53 3 2022-07-12 18:13:36.760849 2022-07-12 18:13:36.760849 +160 54 1 2022-07-12 18:13:37.118572 2022-07-12 18:13:37.118572 +161 54 2 2022-07-12 18:13:37.123918 2022-07-12 18:13:37.123918 +162 54 3 2022-07-12 18:13:37.13026 2022-07-12 18:13:37.13026 +163 55 1 2022-07-12 18:13:37.476278 2022-07-12 18:13:37.476278 +164 55 2 2022-07-12 18:13:37.482588 2022-07-12 18:13:37.482588 +165 55 3 2022-07-12 18:13:37.488379 2022-07-12 18:13:37.488379 +166 56 1 2022-07-12 18:13:37.855999 2022-07-12 18:13:37.855999 +167 56 2 2022-07-12 18:13:37.862453 2022-07-12 18:13:37.862453 +168 56 3 2022-07-12 18:13:37.868283 2022-07-12 18:13:37.868283 +169 57 1 2022-07-12 18:13:38.207653 2022-07-12 18:13:38.207653 +170 57 2 2022-07-12 18:13:38.213908 2022-07-12 18:13:38.213908 +171 57 3 2022-07-12 18:13:38.219795 2022-07-12 18:13:38.219795 +172 58 1 2022-07-12 18:13:38.552998 2022-07-12 18:13:38.552998 +173 58 2 2022-07-12 18:13:38.558748 2022-07-12 18:13:38.558748 +174 58 3 2022-07-12 18:13:38.564558 2022-07-12 18:13:38.564558 +175 59 1 2022-07-12 18:13:38.89942 2022-07-12 18:13:38.89942 +176 59 2 2022-07-12 18:13:38.904859 2022-07-12 18:13:38.904859 +177 59 3 2022-07-12 18:13:38.910263 2022-07-12 18:13:38.910263 +178 60 1 2022-07-12 18:13:39.389195 2022-07-12 18:13:39.389195 +179 60 2 2022-07-12 18:13:39.396007 2022-07-12 18:13:39.396007 +180 60 3 2022-07-12 18:13:39.401944 2022-07-12 18:13:39.401944 +181 61 1 2022-07-12 18:13:39.744162 2022-07-12 18:13:39.744162 +182 61 2 2022-07-12 18:13:39.750402 2022-07-12 18:13:39.750402 +183 61 3 2022-07-12 18:13:39.75649 2022-07-12 18:13:39.75649 +184 62 1 2022-07-12 18:13:40.093875 2022-07-12 18:13:40.093875 +185 62 2 2022-07-12 18:13:40.099758 2022-07-12 18:13:40.099758 +186 62 3 2022-07-12 18:13:40.105523 2022-07-12 18:13:40.105523 +187 63 1 2022-07-12 18:13:40.426786 2022-07-12 18:13:40.426786 +188 63 2 2022-07-12 18:13:40.432778 2022-07-12 18:13:40.432778 +189 63 3 2022-07-12 18:13:40.438503 2022-07-12 18:13:40.438503 +190 64 1 2022-07-12 18:13:40.775212 2022-07-12 18:13:40.775212 +191 64 2 2022-07-12 18:13:40.78123 2022-07-12 18:13:40.78123 +192 64 3 2022-07-12 18:13:40.786738 2022-07-12 18:13:40.786738 +193 65 1 2022-07-12 18:13:41.11639 2022-07-12 18:13:41.11639 +194 65 2 2022-07-12 18:13:41.123019 2022-07-12 18:13:41.123019 +195 65 3 2022-07-12 18:13:41.129483 2022-07-12 18:13:41.129483 +196 66 1 2022-07-12 18:13:41.489595 2022-07-12 18:13:41.489595 +197 66 2 2022-07-12 18:13:41.495558 2022-07-12 18:13:41.495558 +198 66 3 2022-07-12 18:13:41.501378 2022-07-12 18:13:41.501378 +199 67 1 2022-07-12 18:13:41.854588 2022-07-12 18:13:41.854588 +200 67 2 2022-07-12 18:13:41.862916 2022-07-12 18:13:41.862916 +201 67 3 2022-07-12 18:13:41.869994 2022-07-12 18:13:41.869994 +202 68 1 2022-07-12 18:13:42.237211 2022-07-12 18:13:42.237211 +203 68 2 2022-07-12 18:13:42.243654 2022-07-12 18:13:42.243654 +204 68 3 2022-07-12 18:13:42.250544 2022-07-12 18:13:42.250544 +205 69 1 2022-07-12 18:13:42.621994 2022-07-12 18:13:42.621994 +206 69 2 2022-07-12 18:13:42.627875 2022-07-12 18:13:42.627875 +207 69 3 2022-07-12 18:13:42.635078 2022-07-12 18:13:42.635078 +208 70 1 2022-07-12 18:13:42.993477 2022-07-12 18:13:42.993477 +209 70 2 2022-07-12 18:13:42.999431 2022-07-12 18:13:42.999431 +210 70 3 2022-07-12 18:13:43.005463 2022-07-12 18:13:43.005463 +211 71 1 2022-07-12 18:13:43.349304 2022-07-12 18:13:43.349304 +212 71 2 2022-07-12 18:13:43.35562 2022-07-12 18:13:43.35562 +213 71 3 2022-07-12 18:13:43.361399 2022-07-12 18:13:43.361399 +214 72 1 2022-07-12 18:13:43.701202 2022-07-12 18:13:43.701202 +215 72 2 2022-07-12 18:13:43.707166 2022-07-12 18:13:43.707166 +216 72 3 2022-07-12 18:13:43.713174 2022-07-12 18:13:43.713174 +217 73 1 2022-07-12 18:13:44.074126 2022-07-12 18:13:44.074126 +218 73 2 2022-07-12 18:13:44.080298 2022-07-12 18:13:44.080298 +219 73 3 2022-07-12 18:13:44.086991 2022-07-12 18:13:44.086991 +220 74 1 2022-07-12 18:13:44.464662 2022-07-12 18:13:44.464662 +221 74 2 2022-07-12 18:13:44.471287 2022-07-12 18:13:44.471287 +222 74 3 2022-07-12 18:13:44.478285 2022-07-12 18:13:44.478285 +223 75 1 2022-07-12 18:13:45.011185 2022-07-12 18:13:45.011185 +224 75 2 2022-07-12 18:13:45.017849 2022-07-12 18:13:45.017849 +225 75 3 2022-07-12 18:13:45.023604 2022-07-12 18:13:45.023604 +226 76 1 2022-07-12 18:13:45.412766 2022-07-12 18:13:45.412766 +227 76 2 2022-07-12 18:13:45.421853 2022-07-12 18:13:45.421853 +228 76 3 2022-07-12 18:13:45.428221 2022-07-12 18:13:45.428221 +229 77 1 2022-07-12 18:13:45.832101 2022-07-12 18:13:45.832101 +230 77 2 2022-07-12 18:13:45.849066 2022-07-12 18:13:45.849066 +231 77 3 2022-07-12 18:13:45.861508 2022-07-12 18:13:45.861508 +232 78 1 2022-07-12 18:13:46.561117 2022-07-12 18:13:46.561117 +233 78 2 2022-07-12 18:13:46.568557 2022-07-12 18:13:46.568557 +234 78 3 2022-07-12 18:13:46.575232 2022-07-12 18:13:46.575232 +235 79 1 2022-07-12 18:13:47.002271 2022-07-12 18:13:47.002271 +236 79 2 2022-07-12 18:13:47.008452 2022-07-12 18:13:47.008452 +237 79 3 2022-07-12 18:13:47.014169 2022-07-12 18:13:47.014169 +238 80 1 2022-07-12 18:13:47.395905 2022-07-12 18:13:47.395905 +239 80 2 2022-07-12 18:13:47.401666 2022-07-12 18:13:47.401666 +240 80 3 2022-07-12 18:13:47.40741 2022-07-12 18:13:47.40741 +241 81 1 2022-07-12 18:13:47.749234 2022-07-12 18:13:47.749234 +242 81 2 2022-07-12 18:13:47.755112 2022-07-12 18:13:47.755112 +243 81 3 2022-07-12 18:13:47.761728 2022-07-12 18:13:47.761728 +244 82 1 2022-07-12 18:13:48.096119 2022-07-12 18:13:48.096119 +245 82 2 2022-07-12 18:13:48.101897 2022-07-12 18:13:48.101897 +246 82 3 2022-07-12 18:13:48.107904 2022-07-12 18:13:48.107904 +247 83 1 2022-07-12 18:13:48.470157 2022-07-12 18:13:48.470157 +248 83 2 2022-07-12 18:13:48.47659 2022-07-12 18:13:48.47659 +249 83 3 2022-07-12 18:13:48.482593 2022-07-12 18:13:48.482593 +250 84 1 2022-07-12 18:13:48.863986 2022-07-12 18:13:48.863986 +251 84 2 2022-07-12 18:13:48.870058 2022-07-12 18:13:48.870058 +252 84 3 2022-07-12 18:13:48.877139 2022-07-12 18:13:48.877139 +253 85 1 2022-07-12 18:13:49.238018 2022-07-12 18:13:49.238018 +254 85 2 2022-07-12 18:13:49.244722 2022-07-12 18:13:49.244722 +255 85 3 2022-07-12 18:13:49.251091 2022-07-12 18:13:49.251091 +256 86 1 2022-07-12 18:13:49.592752 2022-07-12 18:13:49.592752 +257 86 2 2022-07-12 18:13:49.598487 2022-07-12 18:13:49.598487 +258 86 3 2022-07-12 18:13:49.605455 2022-07-12 18:13:49.605455 +259 87 1 2022-07-12 18:13:49.974723 2022-07-12 18:13:49.974723 +260 87 2 2022-07-12 18:13:49.981019 2022-07-12 18:13:49.981019 +261 87 3 2022-07-12 18:13:49.987121 2022-07-12 18:13:49.987121 +262 88 1 2022-07-12 18:13:50.340927 2022-07-12 18:13:50.340927 +263 88 2 2022-07-12 18:13:50.349408 2022-07-12 18:13:50.349408 +264 88 3 2022-07-12 18:13:50.358928 2022-07-12 18:13:50.358928 +265 89 1 2022-07-12 18:13:50.892306 2022-07-12 18:13:50.892306 +266 89 2 2022-07-12 18:13:50.899689 2022-07-12 18:13:50.899689 +267 89 3 2022-07-12 18:13:50.906085 2022-07-12 18:13:50.906085 +268 90 1 2022-07-12 18:13:51.312594 2022-07-12 18:13:51.312594 +269 90 2 2022-07-12 18:13:51.342594 2022-07-12 18:13:51.342594 +270 90 3 2022-07-12 18:13:51.352469 2022-07-12 18:13:51.352469 +271 91 1 2022-07-12 18:13:51.758865 2022-07-12 18:13:51.758865 +272 91 2 2022-07-12 18:13:51.764915 2022-07-12 18:13:51.764915 +273 91 3 2022-07-12 18:13:51.770894 2022-07-12 18:13:51.770894 +274 92 1 2022-07-12 18:13:52.245528 2022-07-12 18:13:52.245528 +275 92 2 2022-07-12 18:13:52.252501 2022-07-12 18:13:52.252501 +276 92 3 2022-07-12 18:13:52.259511 2022-07-12 18:13:52.259511 +277 93 1 2022-07-12 18:13:52.620424 2022-07-12 18:13:52.620424 +278 93 2 2022-07-12 18:13:52.627298 2022-07-12 18:13:52.627298 +279 93 3 2022-07-12 18:13:52.633608 2022-07-12 18:13:52.633608 +280 94 1 2022-07-12 18:13:53.011419 2022-07-12 18:13:53.011419 +281 94 2 2022-07-12 18:13:53.017638 2022-07-12 18:13:53.017638 +282 94 3 2022-07-12 18:13:53.024088 2022-07-12 18:13:53.024088 +283 95 1 2022-07-12 18:13:53.3759 2022-07-12 18:13:53.3759 +284 95 2 2022-07-12 18:13:53.381545 2022-07-12 18:13:53.381545 +285 95 3 2022-07-12 18:13:53.388302 2022-07-12 18:13:53.388302 +286 96 1 2022-07-12 18:13:53.80834 2022-07-12 18:13:53.80834 +287 96 2 2022-07-12 18:13:53.814148 2022-07-12 18:13:53.814148 +288 96 3 2022-07-12 18:13:53.819829 2022-07-12 18:13:53.819829 +289 97 1 2022-07-12 18:13:54.168998 2022-07-12 18:13:54.168998 +290 97 2 2022-07-12 18:13:54.17527 2022-07-12 18:13:54.17527 +291 97 3 2022-07-12 18:13:54.181654 2022-07-12 18:13:54.181654 +292 98 1 2022-07-12 18:13:54.514447 2022-07-12 18:13:54.514447 +293 98 2 2022-07-12 18:13:54.520814 2022-07-12 18:13:54.520814 +294 98 3 2022-07-12 18:13:54.527043 2022-07-12 18:13:54.527043 +295 99 1 2022-07-12 18:13:54.869499 2022-07-12 18:13:54.869499 +296 99 2 2022-07-12 18:13:54.875422 2022-07-12 18:13:54.875422 +297 99 3 2022-07-12 18:13:54.881126 2022-07-12 18:13:54.881126 +298 100 1 2022-07-12 18:13:55.224584 2022-07-12 18:13:55.224584 +299 100 2 2022-07-12 18:13:55.230587 2022-07-12 18:13:55.230587 +300 100 3 2022-07-12 18:13:55.236193 2022-07-12 18:13:55.236193 +301 101 1 2022-07-12 18:13:55.578684 2022-07-12 18:13:55.578684 +302 101 2 2022-07-12 18:13:55.584385 2022-07-12 18:13:55.584385 +303 101 3 2022-07-12 18:13:55.590576 2022-07-12 18:13:55.590576 +304 102 1 2022-07-12 18:13:55.964783 2022-07-12 18:13:55.964783 +305 102 2 2022-07-12 18:13:55.970627 2022-07-12 18:13:55.970627 +306 102 3 2022-07-12 18:13:55.976264 2022-07-12 18:13:55.976264 +307 103 1 2022-07-12 18:13:56.388267 2022-07-12 18:13:56.388267 +308 103 2 2022-07-12 18:13:56.394559 2022-07-12 18:13:56.394559 +309 103 3 2022-07-12 18:13:56.400372 2022-07-12 18:13:56.400372 +310 104 1 2022-07-12 18:13:56.88211 2022-07-12 18:13:56.88211 +311 104 2 2022-07-12 18:13:56.887848 2022-07-12 18:13:56.887848 +312 104 3 2022-07-12 18:13:56.893422 2022-07-12 18:13:56.893422 +313 105 1 2022-07-12 18:13:57.241316 2022-07-12 18:13:57.241316 +314 105 2 2022-07-12 18:13:57.249216 2022-07-12 18:13:57.249216 +315 105 3 2022-07-12 18:13:57.256902 2022-07-12 18:13:57.256902 +316 106 1 2022-07-12 18:13:57.626869 2022-07-12 18:13:57.626869 +317 106 2 2022-07-12 18:13:57.633398 2022-07-12 18:13:57.633398 +318 106 3 2022-07-12 18:13:57.640037 2022-07-12 18:13:57.640037 +319 107 1 2022-07-12 18:13:58.00104 2022-07-12 18:13:58.00104 +320 107 2 2022-07-12 18:13:58.007403 2022-07-12 18:13:58.007403 +321 107 3 2022-07-12 18:13:58.01348 2022-07-12 18:13:58.01348 +322 108 1 2022-07-12 18:13:58.359361 2022-07-12 18:13:58.359361 +323 108 2 2022-07-12 18:13:58.365092 2022-07-12 18:13:58.365092 +324 108 3 2022-07-12 18:13:58.370907 2022-07-12 18:13:58.370907 +325 109 1 2022-07-12 18:13:58.757657 2022-07-12 18:13:58.757657 +326 109 2 2022-07-12 18:13:58.763909 2022-07-12 18:13:58.763909 +327 109 3 2022-07-12 18:13:58.769494 2022-07-12 18:13:58.769494 +328 110 1 2022-07-12 18:13:59.105033 2022-07-12 18:13:59.105033 +329 110 2 2022-07-12 18:13:59.111092 2022-07-12 18:13:59.111092 +330 110 3 2022-07-12 18:13:59.117467 2022-07-12 18:13:59.117467 +331 111 1 2022-07-12 18:13:59.457691 2022-07-12 18:13:59.457691 +332 111 2 2022-07-12 18:13:59.463591 2022-07-12 18:13:59.463591 +333 111 3 2022-07-12 18:13:59.469908 2022-07-12 18:13:59.469908 +334 112 1 2022-07-12 18:13:59.808853 2022-07-12 18:13:59.808853 +335 112 2 2022-07-12 18:13:59.81516 2022-07-12 18:13:59.81516 +336 112 3 2022-07-12 18:13:59.821428 2022-07-12 18:13:59.821428 +337 113 1 2022-07-12 18:14:00.244009 2022-07-12 18:14:00.244009 +338 113 2 2022-07-12 18:14:00.251509 2022-07-12 18:14:00.251509 +339 113 3 2022-07-12 18:14:00.257647 2022-07-12 18:14:00.257647 +340 114 1 2022-07-12 18:14:00.685835 2022-07-12 18:14:00.685835 +341 114 2 2022-07-12 18:14:00.691449 2022-07-12 18:14:00.691449 +342 114 3 2022-07-12 18:14:00.698193 2022-07-12 18:14:00.698193 +343 115 1 2022-07-12 18:14:01.039502 2022-07-12 18:14:01.039502 +344 115 2 2022-07-12 18:14:01.04508 2022-07-12 18:14:01.04508 +345 115 3 2022-07-12 18:14:01.05082 2022-07-12 18:14:01.05082 +346 116 1 2022-07-12 18:14:01.388872 2022-07-12 18:14:01.388872 +347 116 2 2022-07-12 18:14:01.394901 2022-07-12 18:14:01.394901 +348 116 3 2022-07-12 18:14:01.40089 2022-07-12 18:14:01.40089 +349 117 1 2022-09-02 16:33:37.773767 2022-09-02 16:33:37.773767 +350 118 1 2022-09-02 17:09:21.608572 2022-09-02 17:09:21.608572 +351 119 1 2022-09-02 17:19:13.924526 2022-09-02 17:19:13.924526 +352 120 1 2022-09-02 17:31:19.763415 2022-09-02 17:31:19.763415 +353 121 1 2022-09-02 18:30:30.943849 2022-09-02 18:30:30.943849 +354 122 1 2022-09-02 18:38:46.473805 2022-09-02 18:38:46.473805 +355 123 1 2022-09-02 18:41:05.420086 2022-09-02 18:41:05.420086 +356 124 1 2022-09-02 18:42:26.534284 2022-09-02 18:42:26.534284 +357 125 1 2022-09-02 18:44:36.161054 2022-09-02 18:44:36.161054 +358 126 1 2022-09-02 18:50:49.264648 2022-09-02 18:50:49.264648 +359 127 1 2022-09-02 18:52:56.31228 2022-09-02 18:52:56.31228 +360 128 1 2022-09-02 18:57:21.624564 2022-09-02 18:57:21.624564 +361 129 1 2022-09-02 18:59:14.692689 2022-09-02 18:59:14.692689 +362 130 1 2022-09-02 19:01:55.325934 2022-09-02 19:01:55.325934 +\. + + +-- +-- Data for Name: spree_products_taxons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_products_taxons (id, product_id, taxon_id, "position", created_at, updated_at) FROM stdin; +443 128 20 1 2022-09-08 15:37:36.94075 2022-09-08 15:37:36.94075 +444 128 28 1 2022-09-08 15:37:36.960267 2022-09-08 15:37:36.960267 +445 128 29 1 2022-09-08 15:38:03.559114 2022-09-08 15:38:03.559114 +446 130 29 2 2022-09-08 15:40:49.166807 2022-09-08 15:40:49.166807 +447 130 20 2 2022-09-08 15:40:49.183751 2022-09-08 15:40:49.183751 +448 130 19 1 2022-09-08 15:40:49.197238 2022-09-08 15:40:49.197238 +449 130 28 2 2022-09-08 15:40:49.212418 2022-09-08 15:40:49.212418 +450 118 29 3 2022-09-08 15:41:32.876813 2022-09-08 15:41:32.876813 +451 118 28 3 2022-09-08 15:41:32.893066 2022-09-08 15:41:32.893066 +452 118 18 1 2022-09-08 15:41:32.907083 2022-09-08 15:41:32.907083 +453 117 29 4 2022-09-08 15:42:11.641904 2022-09-08 15:42:11.641904 +454 117 28 4 2022-09-08 15:42:11.659588 2022-09-08 15:42:11.659588 +455 119 29 5 2022-09-08 15:42:47.535023 2022-09-08 15:42:47.535023 +456 119 19 2 2022-09-08 15:42:47.550984 2022-09-08 15:42:47.550984 +457 119 28 5 2022-09-08 15:42:47.5661 2022-09-08 15:42:47.5661 +458 120 28 6 2022-09-08 15:43:22.546437 2022-09-08 15:43:22.546437 +459 120 29 6 2022-09-08 15:43:22.561934 2022-09-08 15:43:22.561934 +460 120 19 3 2022-09-08 15:43:22.576769 2022-09-08 15:43:22.576769 +461 121 29 7 2022-09-08 15:45:34.769867 2022-09-08 15:45:34.769867 +462 121 28 7 2022-09-08 15:45:34.785124 2022-09-08 15:45:34.785124 +463 123 29 8 2022-09-08 15:46:12.569638 2022-09-08 15:46:12.569638 +464 123 28 8 2022-09-08 15:46:12.585329 2022-09-08 15:46:12.585329 +465 123 19 4 2022-09-08 15:46:12.601459 2022-09-08 15:46:12.601459 +466 122 28 9 2022-09-08 15:47:28.832643 2022-09-08 15:47:28.832643 +467 122 29 9 2022-09-08 15:47:28.850399 2022-09-08 15:47:28.850399 +468 124 29 10 2022-09-08 15:48:04.694272 2022-09-08 15:48:04.694272 +469 124 28 10 2022-09-08 15:48:04.714955 2022-09-08 15:48:04.714955 +470 124 19 5 2022-09-08 15:48:04.732727 2022-09-08 15:48:04.732727 +471 125 29 11 2022-09-08 15:50:11.593253 2022-09-08 15:50:11.593253 +472 125 18 2 2022-09-08 15:50:11.618906 2022-09-08 15:50:11.618906 +473 125 28 11 2022-09-08 15:50:11.636523 2022-09-08 15:50:11.636523 +474 127 29 12 2022-09-08 15:50:36.842369 2022-09-08 15:50:36.842369 +475 127 28 12 2022-09-08 15:50:36.858573 2022-09-08 15:50:36.858573 +476 126 28 13 2022-09-08 15:51:12.200937 2022-09-08 15:51:12.200937 +477 126 29 13 2022-09-08 15:51:12.216067 2022-09-08 15:51:12.216067 +478 126 18 3 2022-09-08 15:51:12.231002 2022-09-08 15:51:12.231002 +479 129 18 4 2022-09-08 15:52:54.916087 2022-09-08 15:52:54.916087 +480 129 29 14 2022-09-08 15:52:54.933648 2022-09-08 15:52:54.933648 +481 129 28 14 2022-09-08 15:52:54.954857 2022-09-08 15:52:54.954857 +\. + + +-- +-- Data for Name: spree_promotion_action_line_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_action_line_items (id, promotion_action_id, variant_id, quantity, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_promotion_actions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_actions (id, promotion_id, "position", type, deleted_at, created_at, updated_at) FROM stdin; +1 1 \N Spree::Promotion::Actions::FreeShipping \N 2022-07-12 18:14:10.844503 2022-07-12 18:14:10.844503 +\. + + +-- +-- Data for Name: spree_promotion_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_categories (id, name, created_at, updated_at, code) FROM stdin; +\. + + +-- +-- Data for Name: spree_promotion_rule_taxons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_rule_taxons (id, taxon_id, promotion_rule_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_promotion_rule_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_rule_users (id, user_id, promotion_rule_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_promotion_rules; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotion_rules (id, promotion_id, user_id, product_group_id, type, created_at, updated_at, code, preferences) FROM stdin; +1 1 \N \N Spree::Promotion::Rules::OptionValue 2022-07-12 18:14:10.81453 2022-07-12 18:14:10.81453 \N ---\n:eligible_values:\n '1': '23,3'\n:match_policy: any\n +\. + + +-- +-- Data for Name: spree_promotions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotions (id, description, expires_at, starts_at, name, type, usage_limit, match_policy, code, advertise, path, created_at, updated_at, promotion_category_id, public_metadata, private_metadata) FROM stdin; +1 \N \N free shipping \N \N any \N f \N 2022-07-12 18:14:10.64848 2022-07-12 18:14:10.678912 \N \N \N +\. + + +-- +-- Data for Name: spree_promotions_stores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_promotions_stores (id, promotion_id, store_id, created_at, updated_at) FROM stdin; +1 1 1 2022-07-12 18:14:10.657425 2022-07-12 18:14:10.657425 +2 1 2 2022-07-12 18:14:10.668288 2022-07-12 18:14:10.668288 +3 1 3 2022-07-12 18:14:10.675654 2022-07-12 18:14:10.675654 +\. + + +-- +-- Data for Name: spree_properties; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_properties (id, name, presentation, created_at, updated_at, filterable, filter_param, public_metadata, private_metadata) FROM stdin; +11 made_from Made from 2022-07-12 18:15:12.434047 2022-07-12 18:15:12.434047 f made_from \N \N +12 type Type 2022-07-12 18:15:12.449715 2022-07-12 18:15:12.449715 f type \N \N +13 size Size 2022-07-12 18:15:12.461444 2022-07-12 18:15:12.461444 f size \N \N +14 length Lenght 2022-07-12 18:15:12.474625 2022-07-12 18:15:12.474625 f length \N \N +15 color Color 2022-07-12 18:15:12.486094 2022-07-12 18:15:12.486094 f color \N \N +16 collection Collection 2022-07-12 18:15:12.49772 2022-07-12 18:15:12.49772 f collection \N \N +9 type type 2022-07-12 18:14:18.692257 2022-09-02 16:28:46.765699 f type \N \N +10 collection collection 2022-07-12 18:14:18.741137 2022-09-02 16:28:46.774382 f collection \N \N +1 manufacturer Manufacturer 2022-07-12 18:14:10.879153 2022-09-02 16:28:46.78273 t manufacturer \N \N +6 material Material 2022-07-12 18:14:11.131286 2022-09-02 16:28:46.799385 f material \N \N +7 fit Fit 2022-07-12 18:14:11.177046 2022-09-02 16:28:46.807727 f fit \N \N +8 gender Gender 2022-07-12 18:14:11.220511 2022-09-02 16:28:46.81619 f gender \N \N +3 model Model 2022-07-12 18:14:10.990963 2022-09-02 16:28:46.824642 f model \N \N +4 shirt_type Shirt type 2022-07-12 18:14:11.035921 2022-09-02 16:28:44.922294 f shirt_type \N \N +5 sleeve_type Sleeve type 2022-07-12 18:14:11.08378 2022-09-02 16:28:44.930706 f sleeve_type \N \N +2 brand Brand 2022-07-12 18:14:10.947028 2022-09-02 19:03:22.795257 t brand \N \N +\. + + +-- +-- Data for Name: spree_property_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_property_prototypes (id, prototype_id, property_id, created_at, updated_at) FROM stdin; +1 1 1 2022-07-12 18:15:12.586831 2022-07-12 18:15:12.586831 +2 1 2 2022-07-12 18:15:12.601081 2022-07-12 18:15:12.601081 +3 1 3 2022-07-12 18:15:12.614942 2022-07-12 18:15:12.614942 +4 1 14 2022-07-12 18:15:12.628837 2022-07-12 18:15:12.628837 +5 1 11 2022-07-12 18:15:12.64238 2022-07-12 18:15:12.64238 +6 1 6 2022-07-12 18:15:12.655098 2022-07-12 18:15:12.655098 +7 1 7 2022-07-12 18:15:12.669658 2022-07-12 18:15:12.669658 +8 1 8 2022-07-12 18:15:12.684844 2022-07-12 18:15:12.684844 +9 2 12 2022-07-12 18:15:12.710267 2022-07-12 18:15:12.710267 +10 2 13 2022-07-12 18:15:12.723704 2022-07-12 18:15:12.723704 +11 2 6 2022-07-12 18:15:12.736991 2022-07-12 18:15:12.736991 +12 3 13 2022-07-12 18:15:12.765498 2022-07-12 18:15:12.765498 +13 3 12 2022-07-12 18:15:12.779121 2022-07-12 18:15:12.779121 +14 4 2 2022-09-02 16:33:05.851131 2022-09-02 16:33:05.851131 +\. + + +-- +-- Data for Name: spree_prototype_taxons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_prototype_taxons (id, taxon_id, prototype_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_prototypes (id, name, created_at, updated_at, public_metadata, private_metadata) FROM stdin; +1 Shirt 2022-07-12 18:15:12.550256 2022-07-12 18:15:12.550256 \N \N +2 Bag 2022-07-12 18:15:12.691724 2022-07-12 18:15:12.691724 \N \N +3 Mugs 2022-07-12 18:15:12.744761 2022-07-12 18:15:12.744761 \N \N +4 Stickers 2022-09-02 16:33:05.840431 2022-09-02 16:33:05.840431 \N \N +\. + + +-- +-- Data for Name: spree_refund_reasons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_refund_reasons (id, name, active, mutable, created_at, updated_at) FROM stdin; +1 Return processing t f 2022-07-12 18:10:12.374693 2022-07-12 18:10:12.374693 +\. + + +-- +-- Data for Name: spree_refunds; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_refunds (id, payment_id, amount, transaction_id, created_at, updated_at, refund_reason_id, reimbursement_id, public_metadata, private_metadata) FROM stdin; +\. + + +-- +-- Data for Name: spree_reimbursement_credits; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_reimbursement_credits (id, amount, reimbursement_id, creditable_id, creditable_type, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_reimbursement_types; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_reimbursement_types (id, name, active, mutable, created_at, updated_at, type) FROM stdin; +\. + + +-- +-- Data for Name: spree_reimbursements; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_reimbursements (id, number, reimbursement_status, customer_return_id, order_id, total, created_at, updated_at) FROM stdin; +1 RI109591719 pending \N 1 \N 2022-07-12 18:15:54.389019 2022-07-12 18:15:54.389019 +\. + + +-- +-- Data for Name: spree_return_authorization_reasons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_return_authorization_reasons (id, name, active, mutable, created_at, updated_at) FROM stdin; +1 Better price available t t 2022-07-12 18:15:54.422179 2022-07-12 18:15:54.422179 +2 Missed estimated delivery date t t 2022-07-12 18:15:54.43343 2022-07-12 18:15:54.43343 +3 Missing parts or accessories t t 2022-07-12 18:15:54.44452 2022-07-12 18:15:54.44452 +4 Damaged/Defective t t 2022-07-12 18:15:54.456162 2022-07-12 18:15:54.456162 +5 Different from what was ordered t t 2022-07-12 18:15:54.467092 2022-07-12 18:15:54.467092 +6 Different from description t t 2022-07-12 18:15:54.477401 2022-07-12 18:15:54.477401 +7 No longer needed/wanted t t 2022-07-12 18:15:54.488238 2022-07-12 18:15:54.488238 +8 Accidental order t t 2022-07-12 18:15:54.498187 2022-07-12 18:15:54.498187 +9 Unauthorized purchase t t 2022-07-12 18:15:54.508012 2022-07-12 18:15:54.508012 +\. + + +-- +-- Data for Name: spree_return_authorizations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_return_authorizations (id, number, state, order_id, memo, created_at, updated_at, stock_location_id, return_authorization_reason_id) FROM stdin; +\. + + +-- +-- Data for Name: spree_return_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_return_items (id, return_authorization_id, inventory_unit_id, exchange_variant_id, created_at, updated_at, pre_tax_amount, included_tax_total, additional_tax_total, reception_status, acceptance_status, customer_return_id, reimbursement_id, acceptance_status_errors, preferred_reimbursement_type_id, override_reimbursement_type_id, resellable) FROM stdin; +\. + + +-- +-- Data for Name: spree_role_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_role_users (id, role_id, user_id, created_at, updated_at) FROM stdin; +1 1 1 2022-07-12 18:10:57.986839 2022-07-12 18:10:57.986839 +2 1 2 2022-09-02 14:43:42.067732 2022-09-02 14:43:42.067732 +\. + + +-- +-- Data for Name: spree_roles; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_roles (id, name, created_at, updated_at) FROM stdin; +1 admin 2022-07-12 18:10:12.358597 2022-07-12 18:10:12.358597 +\. + + +-- +-- Data for Name: spree_shipments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipments (id, tracking, number, cost, shipped_at, order_id, address_id, state, created_at, updated_at, stock_location_id, adjustment_total, additional_tax_total, promo_total, included_tax_total, pre_tax_amount, taxable_adjustment_total, non_taxable_adjustment_total, public_metadata, private_metadata) FROM stdin; +10 \N H53541878822 5.00 \N 71 18 pending 2024-02-10 02:50:51.250155 2024-02-10 02:50:51.648781 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +16 \N H18286597458 5.00 \N 77 30 pending 2024-02-10 16:56:28.044039 2024-02-10 16:56:28.3462 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +3 \N H65756871967 5.00 \N 63 4 pending 2024-02-09 22:51:15.792755 2024-02-09 22:51:16.153467 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +21 \N H23137240649 5.00 \N 83 40 pending 2024-02-11 09:54:50.472637 2024-02-11 09:54:50.8452 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +43 \N H83717649124 5.00 \N 108 84 pending 2024-02-12 13:21:34.558759 2024-02-12 13:21:34.813558 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +11 \N H08477213299 5.00 \N 72 20 pending 2024-02-10 06:06:54.291816 2024-02-10 06:06:54.58236 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +4 \N H53651165428 5.00 \N 65 6 pending 2024-02-09 22:52:14.001876 2024-02-09 22:52:14.440457 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +33 \N H94454076693 5.00 \N 98 64 pending 2024-02-12 13:12:04.783453 2024-02-12 13:12:05.075127 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +17 \N H25465077870 5.00 \N 78 32 pending 2024-02-10 21:00:28.589362 2024-02-10 21:00:28.886642 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +38 \N H14365423264 5.00 \N 103 74 pending 2024-02-12 13:16:50.076455 2024-02-12 13:16:50.326929 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +5 \N H30579171924 5.00 \N 66 8 pending 2024-02-09 22:53:12.29077 2024-02-09 22:53:12.567988 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +12 \N H23327845708 5.00 \N 73 22 pending 2024-02-10 12:00:19.740061 2024-02-10 12:00:20.032088 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +30 \N H11774581299 5.00 \N 94 58 pending 2024-02-12 10:48:52.172782 2024-02-12 10:48:53.006458 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +22 \N H61903493246 5.00 \N 84 42 pending 2024-02-11 13:55:28.052149 2024-02-11 13:55:28.379598 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +6 \N H67157482785 5.00 \N 67 10 pending 2024-02-09 22:54:10.744931 2024-02-09 22:54:11.02831 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +26 \N H61535345896 5.00 \N 88 50 pending 2024-02-12 00:21:55.004961 2024-02-12 00:21:55.527949 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +18 \N H04650158165 5.00 \N 79 34 pending 2024-02-10 23:02:31.551481 2024-02-10 23:02:31.836908 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +13 \N H64727782195 5.00 \N 74 24 pending 2024-02-10 12:55:47.236382 2024-02-10 12:55:47.524314 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +7 \N H85737978544 5.00 \N 68 12 pending 2024-02-09 22:55:09.243778 2024-02-09 22:55:09.51877 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +14 \N H73629242001 5.00 \N 75 26 pending 2024-02-10 14:20:39.81404 2024-02-10 14:20:40.104497 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +8 \N H68776097325 5.00 \N 69 14 pending 2024-02-09 22:56:07.706832 2024-02-09 22:56:08.000697 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +23 \N H59130739946 5.00 \N 85 44 pending 2024-02-11 15:06:13.539567 2024-02-11 15:06:13.905002 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +19 \N H88696263090 5.00 \N 81 36 pending 2024-02-11 02:45:38.200082 2024-02-11 02:45:38.583748 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +9 \N H31486117238 5.00 \N 70 16 pending 2024-02-09 23:12:38.944286 2024-02-09 23:12:39.262409 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +36 \N H35057082912 5.00 \N 101 70 pending 2024-02-12 13:14:56.041331 2024-02-12 13:14:56.395978 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +27 \N H92458018369 5.00 \N 89 52 pending 2024-02-12 02:43:54.678494 2024-02-12 02:43:55.042002 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +20 \N H65571169425 5.00 \N 82 38 pending 2024-02-11 06:00:08.789631 2024-02-11 06:00:09.127446 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +15 \N H77547958889 5.00 \N 76 28 pending 2024-02-10 15:55:28.442952 2024-02-10 15:55:28.760421 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +34 \N H07704472228 5.00 \N 99 66 pending 2024-02-12 13:13:01.753575 2024-02-12 13:13:02.015149 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +24 \N H61047739221 5.00 \N 86 46 pending 2024-02-11 20:00:57.735319 2024-02-11 20:00:58.078411 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +31 \N H46389371228 5.00 \N 96 60 pending 2024-02-12 12:23:49.511807 2024-02-12 12:23:49.802393 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +28 \N H67076788655 5.00 \N 90 54 pending 2024-02-12 06:13:15.701412 2024-02-12 06:13:16.096185 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +40 \N H68726939919 5.00 \N 105 78 pending 2024-02-12 13:18:43.809893 2024-02-12 13:18:44.047857 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +49 \N H04380991569 5.00 \N 114 96 pending 2024-02-12 13:27:15.628231 2024-02-12 13:27:15.871173 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +25 \N H36706484504 5.00 \N 87 48 pending 2024-02-11 21:02:00.180433 2024-02-11 21:02:00.517882 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +32 \N H90858084864 5.00 \N 97 62 pending 2024-02-12 13:11:07.966079 2024-02-12 13:11:08.270112 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +29 \N H93648656465 5.00 \N 92 56 pending 2024-02-12 09:00:28.807934 2024-02-12 09:00:29.132118 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +39 \N H99988537994 5.00 \N 104 76 pending 2024-02-12 13:17:46.862163 2024-02-12 13:17:47.099996 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +37 \N H52481581508 5.00 \N 102 72 pending 2024-02-12 13:15:52.946089 2024-02-12 13:15:53.308676 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +42 \N H97109422225 5.00 \N 107 82 pending 2024-02-12 13:20:37.635834 2024-02-12 13:20:37.975877 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +35 \N H40568477649 5.00 \N 100 68 pending 2024-02-12 13:13:59.020378 2024-02-12 13:13:59.256126 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +45 \N H68427627516 5.00 \N 110 88 pending 2024-02-12 13:23:28.273028 2024-02-12 13:23:28.525921 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +44 \N H94352846641 5.00 \N 109 86 pending 2024-02-12 13:22:31.490268 2024-02-12 13:22:31.748526 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +41 \N H96996539988 5.00 \N 106 80 pending 2024-02-12 13:19:40.803245 2024-02-12 13:19:41.042374 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +50 \N H17164200938 5.00 \N 115 98 pending 2024-02-12 13:28:12.460783 2024-02-12 13:28:12.701031 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +46 \N H79124563284 5.00 \N 111 90 pending 2024-02-12 13:24:25.222568 2024-02-12 13:24:25.465953 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +47 \N H00095249314 5.00 \N 112 92 pending 2024-02-12 13:25:21.990484 2024-02-12 13:25:22.252079 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +48 \N H37787037749 5.00 \N 113 94 pending 2024-02-12 13:26:18.913948 2024-02-12 13:26:19.151893 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +51 \N H46624874829 5.00 \N 116 100 pending 2024-02-12 13:29:09.221565 2024-02-12 13:29:09.471325 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +52 \N H21014857055 5.00 \N 117 102 pending 2024-02-12 13:30:06.099447 2024-02-12 13:30:06.354393 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +53 \N H09907332279 5.00 \N 118 104 pending 2024-02-12 13:31:02.868111 2024-02-12 13:31:03.110231 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +54 \N H91893924980 5.00 \N 119 106 pending 2024-02-12 13:31:59.830697 2024-02-12 13:32:00.078837 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +78 \N H60928636486 5.00 \N 143 154 pending 2024-02-12 13:54:45.412144 2024-02-12 13:54:45.676443 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +55 \N H22089698981 5.00 \N 120 108 pending 2024-02-12 13:32:56.942422 2024-02-12 13:32:57.196811 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +69 \N H75453619040 5.00 \N 134 136 pending 2024-02-12 13:46:12.752854 2024-02-12 13:46:12.99267 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +63 \N H20687380343 5.00 \N 128 124 pending 2024-02-12 13:40:31.923236 2024-02-12 13:40:32.159293 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +56 \N H55682112509 5.00 \N 121 110 pending 2024-02-12 13:33:53.792734 2024-02-12 13:33:54.044924 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +74 \N H02538715265 5.00 \N 139 146 pending 2024-02-12 13:50:57.643098 2024-02-12 13:50:57.87689 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +57 \N H71072855025 5.00 \N 122 112 pending 2024-02-12 13:34:50.699612 2024-02-12 13:34:50.950177 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +64 \N H48328436475 5.00 \N 129 126 pending 2024-02-12 13:41:28.636475 2024-02-12 13:41:28.87446 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +70 \N H75671938425 5.00 \N 135 138 pending 2024-02-12 13:47:09.983927 2024-02-12 13:47:10.233433 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +86 \N H43599057978 5.00 \N 151 170 pending 2024-02-12 14:02:20.513833 2024-02-12 14:02:20.816351 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +58 \N H84508462312 5.00 \N 123 114 pending 2024-02-12 13:35:47.445237 2024-02-12 13:35:47.681405 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +75 \N H33177756376 5.00 \N 140 148 pending 2024-02-12 13:51:54.687153 2024-02-12 13:51:54.962626 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +65 \N H87477062037 5.00 \N 130 128 pending 2024-02-12 13:42:25.593719 2024-02-12 13:42:25.841943 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +59 \N H67568014937 5.00 \N 124 116 pending 2024-02-12 13:36:44.271333 2024-02-12 13:36:44.524078 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +79 \N H80746352099 5.00 \N 144 156 pending 2024-02-12 13:55:42.237548 2024-02-12 13:55:42.486873 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +71 \N H62450283673 5.00 \N 136 140 pending 2024-02-12 13:48:07.015683 2024-02-12 13:48:07.25806 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +66 \N H00164092654 5.00 \N 131 130 pending 2024-02-12 13:43:22.503725 2024-02-12 13:43:22.740514 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +60 \N H44876406311 5.00 \N 125 118 pending 2024-02-12 13:37:41.304385 2024-02-12 13:37:41.651378 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +83 \N H75585042922 5.00 \N 148 164 pending 2024-02-12 13:59:29.810919 2024-02-12 13:59:30.064632 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +76 \N H82909306799 5.00 \N 141 150 pending 2024-02-12 13:52:51.692495 2024-02-12 13:52:51.926039 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +61 \N H21545945306 5.00 \N 126 120 pending 2024-02-12 13:38:38.401057 2024-02-12 13:38:38.663745 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +72 \N H06337904580 5.00 \N 137 142 pending 2024-02-12 13:49:03.882705 2024-02-12 13:49:04.123493 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +67 \N H92432498299 5.00 \N 132 132 pending 2024-02-12 13:44:19.088678 2024-02-12 13:44:19.352628 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +62 \N H65595987667 5.00 \N 127 122 pending 2024-02-12 13:39:35.170828 2024-02-12 13:39:35.516677 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +91 \N H11226704735 5.00 \N 156 180 pending 2024-02-12 14:07:04.815853 2024-02-12 14:07:05.051113 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +80 \N H80391125420 5.00 \N 145 158 pending 2024-02-12 13:56:39.344014 2024-02-12 13:56:39.595298 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +68 \N H51890482651 5.00 \N 133 134 pending 2024-02-12 13:45:15.906161 2024-02-12 13:45:16.143495 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +96 \N H69406112940 5.00 \N 161 190 pending 2024-02-12 14:11:49.199071 2024-02-12 14:11:49.443086 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +77 \N H95273300197 5.00 \N 142 152 pending 2024-02-12 13:53:48.531882 2024-02-12 13:53:48.811874 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +73 \N H04635372108 5.00 \N 138 144 pending 2024-02-12 13:50:00.741816 2024-02-12 13:50:01.004962 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +89 \N H92416963205 5.00 \N 154 176 pending 2024-02-12 14:05:10.982567 2024-02-12 14:05:11.215263 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +87 \N H30902781091 5.00 \N 152 172 pending 2024-02-12 14:03:17.205801 2024-02-12 14:03:17.46251 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +84 \N H73160962161 5.00 \N 149 166 pending 2024-02-12 14:00:26.612923 2024-02-12 14:00:26.865087 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +81 \N H64257898982 5.00 \N 146 160 pending 2024-02-12 13:57:36.131597 2024-02-12 13:57:36.487847 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +93 \N H14002992474 5.00 \N 158 184 pending 2024-02-12 14:08:58.482477 2024-02-12 14:08:58.735952 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +85 \N H39274782932 5.00 \N 150 168 pending 2024-02-12 14:01:23.638506 2024-02-12 14:01:23.896353 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +82 \N H70352707997 5.00 \N 147 162 pending 2024-02-12 13:58:32.945708 2024-02-12 13:58:33.188246 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +101 \N H49445410479 5.00 \N 166 200 pending 2024-02-12 14:16:33.806263 2024-02-12 14:16:34.051199 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +92 \N H85558725976 5.00 \N 157 182 pending 2024-02-12 14:08:01.685758 2024-02-12 14:08:01.957903 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +90 \N H81123310723 5.00 \N 155 178 pending 2024-02-12 14:06:08.00024 2024-02-12 14:06:08.248558 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +88 \N H83384405451 5.00 \N 153 174 pending 2024-02-12 14:04:14.179964 2024-02-12 14:04:14.425529 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +95 \N H15633476855 5.00 \N 160 188 pending 2024-02-12 14:10:52.349249 2024-02-12 14:10:52.589585 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +98 \N H79554908195 5.00 \N 163 194 pending 2024-02-12 14:13:43.132665 2024-02-12 14:13:43.391935 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +97 \N H94739592889 5.00 \N 162 192 pending 2024-02-12 14:12:46.111663 2024-02-12 14:12:46.350991 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +94 \N H99793047872 5.00 \N 159 186 pending 2024-02-12 14:09:55.449851 2024-02-12 14:09:55.693568 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +102 \N H32410154783 5.00 \N 167 202 pending 2024-02-12 14:17:30.81631 2024-02-12 14:17:31.062526 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +99 \N H54131945515 5.00 \N 164 196 pending 2024-02-12 14:14:39.966607 2024-02-12 14:14:40.20866 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +100 \N H25320624819 5.00 \N 165 198 pending 2024-02-12 14:15:36.850076 2024-02-12 14:15:37.101739 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +103 \N H92967851028 5.00 \N 168 204 pending 2024-02-12 14:18:27.668482 2024-02-12 14:18:27.899718 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +104 \N H37923485893 5.00 \N 169 206 pending 2024-02-12 14:19:24.470373 2024-02-12 14:19:24.719484 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +105 \N H90686500921 5.00 \N 170 208 pending 2024-02-12 14:20:21.345647 2024-02-12 14:20:21.59828 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +106 \N H20216760695 5.00 \N 171 210 pending 2024-02-12 14:21:18.741688 2024-02-12 14:21:18.999917 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +282 \N H50371849164 5.00 \N 347 562 pending 2024-02-12 17:08:20.438193 2024-02-12 17:08:20.740658 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +318 \N H79295108131 5.00 \N 383 634 pending 2024-02-12 17:42:37.889506 2024-02-12 17:42:38.147382 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +495 \N H52361973477 5.00 \N 551 1000 pending 2024-02-12 20:24:59.637026 2024-02-12 20:25:59.933685 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +107 \N H43851727806 5.00 \N 172 212 pending 2024-02-12 14:22:15.398738 2024-02-12 14:22:15.647759 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +350 \N H35144812984 5.00 \N 415 698 pending 2024-02-12 18:13:01.435311 2024-02-12 18:13:01.699944 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +359 \N H85338803628 5.00 \N 424 716 pending 2024-02-12 18:21:34.612516 2024-02-12 18:21:34.869197 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +108 \N H71074826471 5.00 \N 173 214 pending 2024-02-12 14:23:12.388385 2024-02-12 14:23:12.664817 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +283 \N H10549023930 5.00 \N 348 564 pending 2024-02-12 17:09:17.682276 2024-02-12 17:09:17.971045 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +416 \N H29963023064 5.00 \N 481 830 pending 2024-02-12 19:15:36.422159 2024-02-12 19:15:36.679883 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +296 \N H53280954352 5.00 \N 361 590 pending 2024-02-12 17:21:41.96099 2024-02-12 17:21:42.236822 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +109 \N H62408067621 5.00 \N 174 216 pending 2024-02-12 14:24:09.133057 2024-02-12 14:24:09.38665 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +319 \N H22139101628 5.00 \N 384 636 pending 2024-02-12 17:43:34.612043 2024-02-12 17:43:34.856324 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +381 \N H73879979330 5.00 \N 446 760 pending 2024-02-12 18:42:25.685905 2024-02-12 18:42:25.926062 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +351 \N H56943890787 5.00 \N 416 700 pending 2024-02-12 18:13:58.680146 2024-02-12 18:13:58.968782 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +110 \N H98601978861 5.00 \N 175 218 pending 2024-02-12 14:25:05.900734 2024-02-12 14:25:06.148296 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +297 \N H01448238366 5.00 \N 362 592 pending 2024-02-12 17:22:39.464909 2024-02-12 17:22:39.765611 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +313 \N H72930998310 5.00 \N 378 624 pending 2024-02-12 17:37:53.121971 2024-02-12 17:37:53.403121 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +394 \N H48961149120 5.00 \N 459 786 pending 2024-02-12 18:54:44.916953 2024-02-12 18:54:45.152028 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +320 \N H52008612729 5.00 \N 385 638 pending 2024-02-12 17:44:31.437119 2024-02-12 17:44:31.688452 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +360 \N H96295866260 5.00 \N 425 718 pending 2024-02-12 18:22:31.566236 2024-02-12 18:22:31.797199 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +314 \N H06986714621 5.00 \N 379 626 pending 2024-02-12 17:38:49.943057 2024-02-12 17:38:50.181121 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +374 \N H55792997902 5.00 \N 439 746 pending 2024-02-12 18:35:47.607862 2024-02-12 18:35:47.856441 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +353 \N H67893204451 5.00 \N 418 704 pending 2024-02-12 18:15:52.934105 2024-02-12 18:15:53.177408 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +322 \N H96918652840 5.00 \N 387 642 pending 2024-02-12 17:46:25.783917 2024-02-12 17:46:26.027065 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +315 \N H64484343640 5.00 \N 380 628 pending 2024-02-12 17:39:46.828707 2024-02-12 17:39:47.099668 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +385 \N H72195508359 5.00 \N 450 768 pending 2024-02-12 18:46:12.723999 2024-02-12 18:46:12.974171 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +316 \N H47840784594 5.00 \N 381 630 pending 2024-02-12 17:40:44.01429 2024-02-12 17:40:44.284897 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +323 \N H74002648895 5.00 \N 388 644 pending 2024-02-12 17:47:22.76981 2024-02-12 17:47:23.033444 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +361 \N H65982653379 5.00 \N 426 720 pending 2024-02-12 18:23:28.214437 2024-02-12 18:23:28.554113 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +354 \N H82966980521 5.00 \N 419 706 pending 2024-02-12 18:16:49.75724 2024-02-12 18:16:50.097076 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +317 \N H96404744614 5.00 \N 382 632 pending 2024-02-12 17:41:41.017392 2024-02-12 17:41:41.256808 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +383 \N H09349173963 5.00 \N 448 764 pending 2024-02-12 18:44:19.282159 2024-02-12 18:44:19.535008 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +338 \N H00805753382 5.00 \N 403 674 pending 2024-02-12 18:01:37.181892 2024-02-12 18:01:37.431927 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +378 \N H22423622532 5.00 \N 443 754 pending 2024-02-12 18:39:35.145883 2024-02-12 18:39:35.385726 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +358 \N H01531953964 5.00 \N 423 714 pending 2024-02-12 18:20:37.660863 2024-02-12 18:20:37.975915 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +366 \N H09679937873 5.00 \N 431 730 pending 2024-02-12 18:28:12.81473 2024-02-12 18:28:13.047558 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +399 \N H12482556810 5.00 \N 464 796 pending 2024-02-12 18:59:29.258748 2024-02-12 18:59:29.517049 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +447 \N H69088412190 5.00 \N 512 892 pending 2024-02-12 19:45:03.828675 2024-02-12 19:45:04.088356 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +395 \N H31490144069 5.00 \N 460 788 pending 2024-02-12 18:55:41.664292 2024-02-12 18:55:41.92208 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +380 \N H58733523040 5.00 \N 445 758 pending 2024-02-12 18:41:28.922689 2024-02-12 18:41:29.195697 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +373 \N H20524573553 5.00 \N 438 744 pending 2024-02-12 18:34:50.771222 2024-02-12 18:34:51.029463 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +392 \N H70697151969 5.00 \N 457 782 pending 2024-02-12 18:52:51.254004 2024-02-12 18:52:51.501467 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +414 \N H77797415278 5.00 \N 479 826 pending 2024-02-12 19:13:42.421454 2024-02-12 19:13:42.690619 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +384 \N H11452914317 5.00 \N 449 766 pending 2024-02-12 18:45:15.984148 2024-02-12 18:45:16.233757 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +429 \N H86243225455 5.00 \N 494 856 pending 2024-02-12 19:27:57.193099 2024-02-12 19:27:57.465434 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +417 \N H79565910664 5.00 \N 482 832 pending 2024-02-12 19:16:33.249414 2024-02-12 19:16:33.509297 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +400 \N H22319140844 5.00 \N 465 798 pending 2024-02-12 19:00:26.109674 2024-02-12 19:00:26.350071 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +449 \N H50608041202 5.00 \N 514 896 pending 2024-02-12 19:46:57.974701 2024-02-12 19:46:58.210991 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +432 \N H53283850111 5.00 \N 497 862 pending 2024-02-12 19:30:48.378539 2024-02-12 19:30:48.639711 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +433 \N H01086363204 5.00 \N 498 864 pending 2024-02-12 19:31:45.447565 2024-02-12 19:31:45.701285 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +440 \N H64664704858 5.00 \N 505 878 pending 2024-02-12 19:38:24.813287 2024-02-12 19:38:25.082963 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +450 \N H29163354227 5.00 \N 515 898 pending 2024-02-12 19:47:54.921211 2024-02-12 19:47:55.167441 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +452 \N H95236568307 5.00 \N 517 902 pending 2024-02-12 19:49:48.908408 2024-02-12 19:49:49.162452 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +455 \N H29791163684 5.00 \N 520 908 pending 2024-02-12 19:52:40.09884 2024-02-12 19:52:40.334867 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +465 \N H75461110631 5.00 \N 530 928 pending 2024-02-12 20:02:09.369309 2024-02-12 20:02:09.611522 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +556 \N H15017527919 5.00 \N 585 2446 pending 2024-02-12 21:37:13.71616 2024-02-12 21:37:13.996104 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +588 \N H83427133309 5.00 \N 599 2512 pending 2024-02-12 21:46:15.099641 2024-02-12 21:47:17.161199 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +618 \N H64871349258 5.00 \N 633 2576 pending 2024-02-12 21:54:42.295136 2024-02-12 21:55:33.04479 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +134 \N H31059697949 5.00 \N 199 266 pending 2024-02-12 14:47:51.704594 2024-02-12 14:47:51.95056 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +111 \N H85360662657 5.00 \N 176 220 pending 2024-02-12 14:26:02.759131 2024-02-12 14:26:03.095743 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +125 \N H30757385347 5.00 \N 190 248 pending 2024-02-12 14:39:19.544413 2024-02-12 14:39:19.795456 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +119 \N H37061425054 5.00 \N 184 236 pending 2024-02-12 14:33:37.903851 2024-02-12 14:33:38.146189 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +112 \N H99752341518 5.00 \N 177 222 pending 2024-02-12 14:26:59.577148 2024-02-12 14:26:59.816356 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +130 \N H84977768419 5.00 \N 195 258 pending 2024-02-12 14:44:04.3609 2024-02-12 14:44:04.610721 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +113 \N H72794204907 5.00 \N 178 224 pending 2024-02-12 14:27:56.487976 2024-02-12 14:27:56.719698 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +120 \N H63623559730 5.00 \N 185 238 pending 2024-02-12 14:34:34.696371 2024-02-12 14:34:34.964229 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +126 \N H52485497833 5.00 \N 191 250 pending 2024-02-12 14:40:16.512492 2024-02-12 14:40:16.871144 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +142 \N H36391056360 5.00 \N 207 282 pending 2024-02-12 14:55:26.986669 2024-02-12 14:55:27.246107 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +114 \N H73799283436 5.00 \N 179 226 pending 2024-02-12 14:28:53.428429 2024-02-12 14:28:53.665102 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +131 \N H74612518465 5.00 \N 196 260 pending 2024-02-12 14:45:01.274487 2024-02-12 14:45:01.524432 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +121 \N H52699442694 5.00 \N 186 240 pending 2024-02-12 14:35:31.636047 2024-02-12 14:35:31.870345 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +115 \N H05610373303 5.00 \N 180 228 pending 2024-02-12 14:29:50.528329 2024-02-12 14:29:50.778244 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +135 \N H60369366165 5.00 \N 200 268 pending 2024-02-12 14:48:48.50427 2024-02-12 14:48:48.752132 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +127 \N H38526096809 5.00 \N 192 252 pending 2024-02-12 14:41:13.357758 2024-02-12 14:41:13.611851 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +122 \N H99205077756 5.00 \N 187 242 pending 2024-02-12 14:36:28.702362 2024-02-12 14:36:28.972363 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +116 \N H30770784091 5.00 \N 181 230 pending 2024-02-12 14:30:47.188423 2024-02-12 14:30:47.416551 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +139 \N H29530070436 5.00 \N 204 276 pending 2024-02-12 14:52:36.29761 2024-02-12 14:52:36.543599 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +132 \N H96045839711 5.00 \N 197 262 pending 2024-02-12 14:45:58.099402 2024-02-12 14:45:58.33834 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +117 \N H62797647698 5.00 \N 182 232 pending 2024-02-12 14:31:44.039419 2024-02-12 14:31:44.299056 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +128 \N H21032454698 5.00 \N 193 254 pending 2024-02-12 14:42:10.238897 2024-02-12 14:42:10.491167 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +123 \N H81089066520 5.00 \N 188 244 pending 2024-02-12 14:37:25.591395 2024-02-12 14:37:25.827711 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +118 \N H96982167021 5.00 \N 183 234 pending 2024-02-12 14:32:40.910276 2024-02-12 14:32:41.139837 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +147 \N H58468829622 5.00 \N 212 292 pending 2024-02-12 15:00:11.182777 2024-02-12 15:00:11.44668 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +136 \N H53733339057 5.00 \N 201 270 pending 2024-02-12 14:49:45.45506 2024-02-12 14:49:45.711522 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +124 \N H44995186612 5.00 \N 189 246 pending 2024-02-12 14:38:22.643513 2024-02-12 14:38:22.896833 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +152 \N H97082465353 5.00 \N 217 302 pending 2024-02-12 15:04:56.019034 2024-02-12 15:04:56.276388 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +133 \N H68773398934 5.00 \N 198 264 pending 2024-02-12 14:46:55.021386 2024-02-12 14:46:55.26598 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +129 \N H36101057941 5.00 \N 194 256 pending 2024-02-12 14:43:07.569408 2024-02-12 14:43:07.824763 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +145 \N H75784720347 5.00 \N 210 288 pending 2024-02-12 14:58:17.576712 2024-02-12 14:58:17.85016 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +143 \N H98805134088 5.00 \N 208 284 pending 2024-02-12 14:56:23.844073 2024-02-12 14:56:24.087104 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +140 \N H89783689856 5.00 \N 205 278 pending 2024-02-12 14:53:33.109029 2024-02-12 14:53:33.370579 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +137 \N H09098971857 5.00 \N 202 272 pending 2024-02-12 14:50:42.509456 2024-02-12 14:50:42.775678 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +149 \N H21994755523 5.00 \N 214 296 pending 2024-02-12 15:02:05.26503 2024-02-12 15:02:05.605983 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +141 \N H96270526390 5.00 \N 206 280 pending 2024-02-12 14:54:30.110975 2024-02-12 14:54:30.356506 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +138 \N H03946013848 5.00 \N 203 274 pending 2024-02-12 14:51:39.412842 2024-02-12 14:51:39.659604 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +157 \N H71212681840 5.00 \N 222 312 pending 2024-02-12 15:09:40.638524 2024-02-12 15:09:40.877527 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +148 \N H14130420659 5.00 \N 213 294 pending 2024-02-12 15:01:08.200472 2024-02-12 15:01:08.542744 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +146 \N H48908623605 5.00 \N 211 290 pending 2024-02-12 14:59:14.46853 2024-02-12 14:59:14.765349 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +144 \N H56518460836 5.00 \N 209 286 pending 2024-02-12 14:57:20.795053 2024-02-12 14:57:21.066381 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +151 \N H34774659151 5.00 \N 216 300 pending 2024-02-12 15:03:58.920339 2024-02-12 15:03:59.160738 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +154 \N H72771077982 5.00 \N 219 306 pending 2024-02-12 15:06:49.654029 2024-02-12 15:06:49.995715 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +153 \N H00022631591 5.00 \N 218 304 pending 2024-02-12 15:05:52.800383 2024-02-12 15:05:53.043536 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +150 \N H65191531881 5.00 \N 215 298 pending 2024-02-12 15:03:02.159911 2024-02-12 15:03:02.405647 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +158 \N H26957555142 5.00 \N 223 314 pending 2024-02-12 15:10:37.469643 2024-02-12 15:10:37.742025 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +155 \N H90292683509 5.00 \N 220 308 pending 2024-02-12 15:07:46.818629 2024-02-12 15:07:47.057166 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +156 \N H17384109883 5.00 \N 221 310 pending 2024-02-12 15:08:43.71031 2024-02-12 15:08:43.950775 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +159 \N H84245207397 5.00 \N 224 316 pending 2024-02-12 15:11:34.374607 2024-02-12 15:11:34.622673 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +160 \N H54095910938 5.00 \N 225 318 pending 2024-02-12 15:12:31.39194 2024-02-12 15:12:31.63409 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +161 \N H03682990917 5.00 \N 226 320 pending 2024-02-12 15:13:28.039804 2024-02-12 15:13:28.285984 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +162 \N H67110195913 5.00 \N 227 322 pending 2024-02-12 15:14:25.094602 2024-02-12 15:14:25.350908 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +321 \N H62289690427 5.00 \N 386 640 pending 2024-02-12 17:45:28.739239 2024-02-12 17:45:28.989707 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +669 \N H74970173862 5.00 \N 675 2686 pending 2024-02-12 22:09:13.739903 2024-02-12 22:10:18.145455 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +186 \N H90678827786 5.00 \N 251 370 pending 2024-02-12 15:37:09.807179 2024-02-12 15:37:10.051343 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +163 \N H96663249995 5.00 \N 228 324 pending 2024-02-12 15:15:21.922365 2024-02-12 15:15:22.164743 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +177 \N H88682044139 5.00 \N 242 352 pending 2024-02-12 15:28:38.472334 2024-02-12 15:28:38.718328 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +171 \N H92352020244 5.00 \N 236 340 pending 2024-02-12 15:22:57.16658 2024-02-12 15:22:57.435974 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +164 \N H06860865958 5.00 \N 229 326 pending 2024-02-12 15:16:18.977951 2024-02-12 15:16:19.224707 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +182 \N H16077754455 5.00 \N 247 362 pending 2024-02-12 15:33:22.410003 2024-02-12 15:33:22.652606 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +165 \N H79856330255 5.00 \N 230 328 pending 2024-02-12 15:17:15.846508 2024-02-12 15:17:16.099093 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +172 \N H78556211593 5.00 \N 237 342 pending 2024-02-12 15:23:53.991794 2024-02-12 15:23:54.228712 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +178 \N H40193813583 5.00 \N 243 354 pending 2024-02-12 15:29:35.464546 2024-02-12 15:29:35.713936 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +194 \N H57481745549 5.00 \N 259 386 pending 2024-02-12 15:44:44.729855 2024-02-12 15:44:44.963951 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +166 \N H74847159388 5.00 \N 231 330 pending 2024-02-12 15:18:12.676925 2024-02-12 15:18:12.915131 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +183 \N H06284774991 5.00 \N 248 364 pending 2024-02-12 15:34:19.224883 2024-02-12 15:34:19.515759 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +173 \N H00296851063 5.00 \N 238 344 pending 2024-02-12 15:24:51.03027 2024-02-12 15:24:51.28504 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +167 \N H28005484083 5.00 \N 232 332 pending 2024-02-12 15:19:09.560583 2024-02-12 15:19:09.804907 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +187 \N H94687338051 5.00 \N 252 372 pending 2024-02-12 15:38:06.648009 2024-02-12 15:38:06.891798 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +179 \N H38906131783 5.00 \N 244 356 pending 2024-02-12 15:30:32.146542 2024-02-12 15:30:32.391073 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +174 \N H34435505811 5.00 \N 239 346 pending 2024-02-12 15:25:47.872259 2024-02-12 15:25:48.115694 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +168 \N H53186966396 5.00 \N 233 334 pending 2024-02-12 15:20:06.530806 2024-02-12 15:20:06.781551 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +191 \N H41618801656 5.00 \N 256 380 pending 2024-02-12 15:41:54.190455 2024-02-12 15:41:54.530628 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +184 \N H19797313463 5.00 \N 249 366 pending 2024-02-12 15:35:16.086716 2024-02-12 15:35:16.334851 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +169 \N H58668961888 5.00 \N 234 336 pending 2024-02-12 15:21:03.420147 2024-02-12 15:21:03.770748 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +180 \N H70254296354 5.00 \N 245 358 pending 2024-02-12 15:31:28.937601 2024-02-12 15:31:29.222636 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +175 \N H34589567207 5.00 \N 240 348 pending 2024-02-12 15:26:44.742958 2024-02-12 15:26:44.993274 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +170 \N H95914497336 5.00 \N 235 338 pending 2024-02-12 15:22:00.172859 2024-02-12 15:22:00.41704 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +199 \N H68792415791 5.00 \N 264 396 pending 2024-02-12 15:49:29.154175 2024-02-12 15:49:29.39478 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +188 \N H23264174289 5.00 \N 253 374 pending 2024-02-12 15:39:03.66853 2024-02-12 15:39:03.926445 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +176 \N H38186833192 5.00 \N 241 350 pending 2024-02-12 15:27:41.539033 2024-02-12 15:27:41.77681 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +204 \N H58008526090 5.00 \N 269 406 pending 2024-02-12 15:54:13.491639 2024-02-12 15:54:13.771329 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +185 \N H01339792423 5.00 \N 250 368 pending 2024-02-12 15:36:12.849587 2024-02-12 15:36:13.184034 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +181 \N H36121545210 5.00 \N 246 360 pending 2024-02-12 15:32:25.731131 2024-02-12 15:32:25.962025 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +197 \N H77652074217 5.00 \N 262 392 pending 2024-02-12 15:47:35.313238 2024-02-12 15:47:35.558824 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +195 \N H23337195323 5.00 \N 260 388 pending 2024-02-12 15:45:41.531413 2024-02-12 15:45:41.766187 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +192 \N H92721929560 5.00 \N 257 382 pending 2024-02-12 15:42:50.980782 2024-02-12 15:42:51.231865 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +189 \N H42818599061 5.00 \N 254 376 pending 2024-02-12 15:40:00.526702 2024-02-12 15:40:00.770777 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +201 \N H70524323204 5.00 \N 266 400 pending 2024-02-12 15:51:22.661669 2024-02-12 15:51:22.907983 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +193 \N H46033308131 5.00 \N 258 384 pending 2024-02-12 15:43:47.883473 2024-02-12 15:43:48.123905 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +190 \N H76059132909 5.00 \N 255 378 pending 2024-02-12 15:40:57.362779 2024-02-12 15:40:57.610768 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +209 \N H29427942581 5.00 \N 274 416 pending 2024-02-12 15:58:58.609507 2024-02-12 15:58:58.873718 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +200 \N H60365432729 5.00 \N 265 398 pending 2024-02-12 15:50:25.889323 2024-02-12 15:50:26.122509 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +198 \N H16630433912 5.00 \N 263 394 pending 2024-02-12 15:48:32.201542 2024-02-12 15:48:32.448628 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +196 \N H63790202833 5.00 \N 261 390 pending 2024-02-12 15:46:38.487867 2024-02-12 15:46:38.757179 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +203 \N H28096868678 5.00 \N 268 404 pending 2024-02-12 15:53:16.448386 2024-02-12 15:53:16.709487 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +206 \N H41896510667 5.00 \N 271 410 pending 2024-02-12 15:56:07.655354 2024-02-12 15:56:07.912759 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +205 \N H71932491785 5.00 \N 270 408 pending 2024-02-12 15:55:10.805045 2024-02-12 15:55:11.071979 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +202 \N H89226684210 5.00 \N 267 402 pending 2024-02-12 15:52:19.598665 2024-02-12 15:52:19.845066 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +210 \N H32392716946 5.00 \N 275 418 pending 2024-02-12 15:59:56.059559 2024-02-12 15:59:56.326129 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +207 \N H02142202120 5.00 \N 272 412 pending 2024-02-12 15:57:04.54751 2024-02-12 15:57:04.802904 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +208 \N H15647143063 5.00 \N 273 414 pending 2024-02-12 15:58:01.519891 2024-02-12 15:58:01.774834 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +211 \N H73223494294 5.00 \N 276 420 pending 2024-02-12 16:00:53.06588 2024-02-12 16:00:53.316846 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +212 \N H50847024721 5.00 \N 277 422 pending 2024-02-12 16:01:50.146856 2024-02-12 16:01:50.388597 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +213 \N H34908945362 5.00 \N 278 424 pending 2024-02-12 16:02:47.21842 2024-02-12 16:02:47.468997 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +214 \N H97820085880 5.00 \N 279 426 pending 2024-02-12 16:03:44.285176 2024-02-12 16:03:44.525544 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +284 \N H66963231135 5.00 \N 349 566 pending 2024-02-12 17:10:14.803966 2024-02-12 17:10:15.177754 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +324 \N H67745140022 5.00 \N 389 646 pending 2024-02-12 17:48:19.824826 2024-02-12 17:48:20.082556 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +215 \N H05847580102 5.00 \N 280 428 pending 2024-02-12 16:04:41.333611 2024-02-12 16:04:41.581217 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +339 \N H34758798129 5.00 \N 404 676 pending 2024-02-12 18:02:34.032907 2024-02-12 18:02:34.275555 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +285 \N H83663312205 5.00 \N 350 568 pending 2024-02-12 17:11:12.177823 2024-02-12 17:11:12.461796 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +216 \N H25796287901 5.00 \N 281 430 pending 2024-02-12 16:05:38.127842 2024-02-12 16:05:38.375063 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +372 \N H35756986126 5.00 \N 437 742 pending 2024-02-12 18:33:53.932886 2024-02-12 18:33:54.287073 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +325 \N H39549665008 5.00 \N 390 648 pending 2024-02-12 17:49:16.824457 2024-02-12 17:49:17.184124 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +286 \N H50578810523 5.00 \N 351 570 pending 2024-02-12 17:12:09.178009 2024-02-12 17:12:09.446096 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +218 \N H55780981666 5.00 \N 283 434 pending 2024-02-12 16:07:31.975527 2024-02-12 16:07:32.239015 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +357 \N H89648215738 5.00 \N 422 712 pending 2024-02-12 18:19:40.554072 2024-02-12 18:19:40.812669 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +342 \N H79057673223 5.00 \N 407 682 pending 2024-02-12 18:05:25.03692 2024-02-12 18:05:25.287759 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +219 \N H21600973373 5.00 \N 284 436 pending 2024-02-12 16:08:28.977379 2024-02-12 16:08:29.218698 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +288 \N H14105577057 5.00 \N 353 574 pending 2024-02-12 17:14:03.871449 2024-02-12 17:14:04.131786 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +301 \N H16932177408 5.00 \N 366 600 pending 2024-02-12 17:26:28.381765 2024-02-12 17:26:28.677689 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +327 \N H31812320369 5.00 \N 392 652 pending 2024-02-12 17:51:10.771254 2024-02-12 17:51:11.014617 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +349 \N H19075727585 5.00 \N 414 696 pending 2024-02-12 18:12:04.291466 2024-02-12 18:12:04.548672 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +436 \N H70122520107 5.00 \N 501 870 pending 2024-02-12 19:34:36.677386 2024-02-12 19:34:36.929309 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +304 \N H82948747971 5.00 \N 369 606 pending 2024-02-12 17:29:20.410755 2024-02-12 17:29:20.868943 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +422 \N H27192333470 5.00 \N 487 842 pending 2024-02-12 19:21:17.335733 2024-02-12 19:21:17.586698 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +343 \N H52345342884 5.00 \N 408 684 pending 2024-02-12 18:06:22.04855 2024-02-12 18:06:22.342801 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +328 \N H38244025435 5.00 \N 393 654 pending 2024-02-12 17:52:07.743603 2024-02-12 17:52:07.986492 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +305 \N H88928152335 5.00 \N 370 608 pending 2024-02-12 17:30:17.863252 2024-02-12 17:30:18.217563 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +386 \N H07966950582 5.00 \N 451 770 pending 2024-02-12 18:47:09.99032 2024-02-12 18:47:10.28377 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +352 \N H31536691784 5.00 \N 417 702 pending 2024-02-12 18:14:56.093117 2024-02-12 18:14:56.362758 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +329 \N H93048161740 5.00 \N 394 656 pending 2024-02-12 17:53:04.705192 2024-02-12 17:53:04.948356 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +344 \N H37547348680 5.00 \N 409 686 pending 2024-02-12 18:07:18.731225 2024-02-12 18:07:19.001363 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +368 \N H75185524402 5.00 \N 433 734 pending 2024-02-12 18:30:06.427351 2024-02-12 18:30:06.669967 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +332 \N H02180340306 5.00 \N 397 662 pending 2024-02-12 17:55:55.795001 2024-02-12 17:55:56.043471 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +468 \N H40077038589 5.00 \N 533 934 pending 2024-02-12 20:05:00.195788 2024-02-12 20:05:00.435336 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +420 \N H17915737678 5.00 \N 485 838 pending 2024-02-12 19:19:23.863024 2024-02-12 19:19:24.1164 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +345 \N H76772644960 5.00 \N 410 688 pending 2024-02-12 18:08:15.701502 2024-02-12 18:08:15.943803 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +337 \N H17961524606 5.00 \N 402 672 pending 2024-02-12 18:00:40.325125 2024-02-12 18:00:40.567887 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +355 \N H42611592504 5.00 \N 420 708 pending 2024-02-12 18:17:46.637923 2024-02-12 18:17:46.879122 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +426 \N H70894887715 5.00 \N 491 850 pending 2024-02-12 19:25:05.734179 2024-02-12 19:25:05.996018 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +371 \N H97973446619 5.00 \N 436 740 pending 2024-02-12 18:32:57.094543 2024-02-12 18:32:57.330471 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +347 \N H04379952847 5.00 \N 412 692 pending 2024-02-12 18:10:09.700637 2024-02-12 18:10:09.948327 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +356 \N H96807781834 5.00 \N 421 710 pending 2024-02-12 18:18:43.596439 2024-02-12 18:18:43.861787 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +396 \N H59508010139 5.00 \N 461 790 pending 2024-02-12 18:56:38.62406 2024-02-12 18:56:38.875089 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +467 \N H88613798904 5.00 \N 532 932 pending 2024-02-12 20:04:03.307058 2024-02-12 20:04:03.570078 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +425 \N H83528396884 5.00 \N 490 848 pending 2024-02-12 19:24:08.613816 2024-02-12 19:24:08.867795 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +421 \N H23565657982 5.00 \N 486 840 pending 2024-02-12 19:20:20.551972 2024-02-12 19:20:20.826592 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +415 \N H13462931123 5.00 \N 480 828 pending 2024-02-12 19:14:39.373429 2024-02-12 19:14:39.641628 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +434 \N H57339207148 5.00 \N 499 866 pending 2024-02-12 19:32:42.459762 2024-02-12 19:32:42.730517 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +456 \N H61010782665 5.00 \N 521 910 pending 2024-02-12 19:53:36.985109 2024-02-12 19:53:37.243293 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +438 \N H48032759922 5.00 \N 503 874 pending 2024-02-12 19:36:30.718358 2024-02-12 19:36:30.967832 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +427 \N H20010307979 5.00 \N 492 852 pending 2024-02-12 19:26:02.929467 2024-02-12 19:26:03.186641 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +458 \N H91238431075 5.00 \N 523 914 pending 2024-02-12 19:55:30.765656 2024-02-12 19:55:31.010137 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +459 \N H87247336535 5.00 \N 524 916 pending 2024-02-12 19:56:27.539265 2024-02-12 19:56:27.767599 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +473 \N H22114318237 5.00 \N 538 944 pending 2024-02-12 20:09:45.616107 2024-02-12 20:09:45.870002 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +471 \N H90789338474 5.00 \N 536 940 pending 2024-02-12 20:07:50.916808 2024-02-12 20:07:51.154281 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +474 \N H34273086357 5.00 \N 539 946 pending 2024-02-12 20:10:42.597618 2024-02-12 20:10:42.852076 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +557 \N H75116384381 5.00 \N 582 2448 pending 2024-02-12 21:37:14.570468 2024-02-12 21:37:14.833737 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +476 \N H19756554185 5.00 \N 540 950 pending 2024-02-12 20:11:39.789442 2024-02-12 20:11:40.067362 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +619 \N H51625091446 5.00 \N 637 2578 pending 2024-02-12 21:54:47.737703 2024-02-12 21:55:50.085082 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +776 \N H91338678435 5.00 \N 768 2916 pending 2024-02-12 22:38:57.325816 2024-02-12 22:39:40.014343 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +242 \N H18016263391 5.00 \N 307 482 pending 2024-02-12 16:30:19.157747 2024-02-12 16:30:19.422997 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +217 \N H28235521652 5.00 \N 282 432 pending 2024-02-12 16:06:34.942624 2024-02-12 16:06:35.189841 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +233 \N H83476851333 5.00 \N 298 464 pending 2024-02-12 16:21:46.23723 2024-02-12 16:21:46.496192 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +227 \N H75892228357 5.00 \N 292 452 pending 2024-02-12 16:16:04.423682 2024-02-12 16:16:04.67574 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +220 \N H25878003035 5.00 \N 285 438 pending 2024-02-12 16:09:25.886382 2024-02-12 16:09:26.143806 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +238 \N H95497069340 5.00 \N 303 474 pending 2024-02-12 16:26:31.469368 2024-02-12 16:26:31.829382 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +221 \N H31576284394 5.00 \N 286 440 pending 2024-02-12 16:10:22.875414 2024-02-12 16:10:23.136787 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +228 \N H55825583970 5.00 \N 293 454 pending 2024-02-12 16:17:01.599557 2024-02-12 16:17:01.874243 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +234 \N H35982478687 5.00 \N 299 466 pending 2024-02-12 16:22:43.19135 2024-02-12 16:22:43.44135 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +250 \N H32312028591 5.00 \N 315 498 pending 2024-02-12 16:37:54.812999 2024-02-12 16:37:55.063496 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +222 \N H83041894529 5.00 \N 287 442 pending 2024-02-12 16:11:19.822927 2024-02-12 16:11:20.080707 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +239 \N H61878833818 5.00 \N 304 476 pending 2024-02-12 16:27:28.398421 2024-02-12 16:27:28.656727 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +229 \N H82587253031 5.00 \N 294 456 pending 2024-02-12 16:17:58.454892 2024-02-12 16:17:58.711861 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +223 \N H68159920599 5.00 \N 288 444 pending 2024-02-12 16:12:16.69201 2024-02-12 16:12:17.0299 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +243 \N H84172861110 5.00 \N 308 484 pending 2024-02-12 16:31:15.953407 2024-02-12 16:31:16.201742 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +235 \N H85558456314 5.00 \N 300 468 pending 2024-02-12 16:23:40.33127 2024-02-12 16:23:40.702549 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +230 \N H45654800226 5.00 \N 295 458 pending 2024-02-12 16:18:55.419306 2024-02-12 16:18:55.675846 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +224 \N H96583700852 5.00 \N 289 446 pending 2024-02-12 16:13:13.72387 2024-02-12 16:13:14.011816 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +247 \N H88582433767 5.00 \N 312 492 pending 2024-02-12 16:35:04.117192 2024-02-12 16:35:04.374456 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +240 \N H17575269910 5.00 \N 305 478 pending 2024-02-12 16:28:25.23816 2024-02-12 16:28:25.492682 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +225 \N H29009377490 5.00 \N 290 448 pending 2024-02-12 16:14:10.58745 2024-02-12 16:14:10.840616 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +236 \N H28248357907 5.00 \N 301 470 pending 2024-02-12 16:24:37.503268 2024-02-12 16:24:37.75568 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +231 \N H15657926319 5.00 \N 296 460 pending 2024-02-12 16:19:52.298023 2024-02-12 16:19:52.553902 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +226 \N H37683117324 5.00 \N 291 450 pending 2024-02-12 16:15:07.598202 2024-02-12 16:15:07.847089 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +255 \N H34902338735 5.00 \N 320 508 pending 2024-02-12 16:42:39.015331 2024-02-12 16:42:39.249214 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +244 \N H64115225885 5.00 \N 309 486 pending 2024-02-12 16:32:13.027191 2024-02-12 16:32:13.284887 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +232 \N H43897528055 5.00 \N 297 462 pending 2024-02-12 16:20:49.256707 2024-02-12 16:20:49.50412 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +260 \N H57521998721 5.00 \N 325 518 pending 2024-02-12 16:47:24.47078 2024-02-12 16:47:24.754401 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +241 \N H60160039549 5.00 \N 306 480 pending 2024-02-12 16:29:22.097891 2024-02-12 16:29:22.334042 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +237 \N H84147744747 5.00 \N 302 472 pending 2024-02-12 16:25:34.388199 2024-02-12 16:25:34.664645 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +253 \N H11551054124 5.00 \N 318 504 pending 2024-02-12 16:40:45.285499 2024-02-12 16:40:45.628316 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +251 \N H66602729398 5.00 \N 316 500 pending 2024-02-12 16:38:51.635011 2024-02-12 16:38:51.867704 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +248 \N H35545900992 5.00 \N 313 494 pending 2024-02-12 16:36:01.114034 2024-02-12 16:36:01.347976 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +245 \N H21710319211 5.00 \N 310 488 pending 2024-02-12 16:33:10.0735 2024-02-12 16:33:10.311218 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +257 \N H63189833342 5.00 \N 322 512 pending 2024-02-12 16:44:33.280946 2024-02-12 16:44:33.536488 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +249 \N H53494360898 5.00 \N 314 496 pending 2024-02-12 16:36:57.870884 2024-02-12 16:36:58.125925 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +246 \N H64050732770 5.00 \N 311 490 pending 2024-02-12 16:34:06.971647 2024-02-12 16:34:07.228819 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +265 \N H38625858203 5.00 \N 330 528 pending 2024-02-12 16:52:09.337481 2024-02-12 16:52:09.603023 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +256 \N H73465614827 5.00 \N 321 510 pending 2024-02-12 16:43:35.79075 2024-02-12 16:43:36.0315 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +254 \N H29976466935 5.00 \N 319 506 pending 2024-02-12 16:41:42.019945 2024-02-12 16:41:42.258592 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +252 \N H74849875609 5.00 \N 317 502 pending 2024-02-12 16:39:48.477355 2024-02-12 16:39:48.712467 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +259 \N H40430452574 5.00 \N 324 516 pending 2024-02-12 16:46:27.330708 2024-02-12 16:46:27.588933 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +262 \N H85669411675 5.00 \N 327 522 pending 2024-02-12 16:49:18.137569 2024-02-12 16:49:18.387818 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +261 \N H91359943857 5.00 \N 326 520 pending 2024-02-12 16:48:21.182742 2024-02-12 16:48:21.420451 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +258 \N H07966120766 5.00 \N 323 514 pending 2024-02-12 16:45:30.303867 2024-02-12 16:45:30.542576 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +266 \N H44430041930 5.00 \N 331 530 pending 2024-02-12 16:53:06.08101 2024-02-12 16:53:06.367973 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +263 \N H74971251125 5.00 \N 328 524 pending 2024-02-12 16:50:14.925295 2024-02-12 16:50:15.181667 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +264 \N H46434688221 5.00 \N 329 526 pending 2024-02-12 16:51:12.381971 2024-02-12 16:51:12.632431 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +267 \N H30319848084 5.00 \N 332 532 pending 2024-02-12 16:54:02.992834 2024-02-12 16:54:03.25182 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +268 \N H56265829575 5.00 \N 333 534 pending 2024-02-12 16:55:00.106608 2024-02-12 16:55:00.355812 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +269 \N H79865145675 5.00 \N 334 536 pending 2024-02-12 16:55:57.031291 2024-02-12 16:55:57.266204 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +270 \N H54082677853 5.00 \N 335 538 pending 2024-02-12 16:56:54.255486 2024-02-12 16:56:54.575384 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +287 \N H28421019053 5.00 \N 352 572 pending 2024-02-12 17:13:06.647015 2024-02-12 17:13:06.925921 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +524 \N H41516472353 5.00 \N 556 2378 pending 2024-02-12 21:28:30.282328 2024-02-12 21:28:30.590733 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +558 \N H42329252407 5.00 \N 590 2450 pending 2024-02-12 21:37:21.333688 2024-02-12 21:38:00.46268 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +271 \N H68616200939 5.00 \N 336 540 pending 2024-02-12 16:57:51.122379 2024-02-12 16:57:51.378347 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +303 \N H79626173356 5.00 \N 368 604 pending 2024-02-12 17:28:23.345082 2024-02-12 17:28:23.661072 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +409 \N H69510287047 5.00 \N 474 816 pending 2024-02-12 19:08:57.881237 2024-02-12 19:08:58.115225 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +273 \N H75734647483 5.00 \N 338 544 pending 2024-02-12 16:59:44.996901 2024-02-12 16:59:45.24451 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +289 \N H26760664894 5.00 \N 354 576 pending 2024-02-12 17:15:00.992437 2024-02-12 17:15:01.256499 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +326 \N H76641596579 5.00 \N 391 650 pending 2024-02-12 17:50:13.831053 2024-02-12 17:50:14.076946 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +377 \N H72892191255 5.00 \N 442 752 pending 2024-02-12 18:38:38.149764 2024-02-12 18:38:38.494293 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +274 \N H36716298405 5.00 \N 339 546 pending 2024-02-12 17:00:42.465334 2024-02-12 17:00:42.738122 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +308 \N H49882266153 5.00 \N 373 614 pending 2024-02-12 17:33:09.155181 2024-02-12 17:33:09.396321 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +290 \N H50751532925 5.00 \N 355 578 pending 2024-02-12 17:15:58.144993 2024-02-12 17:15:58.50653 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +275 \N H60229993048 5.00 \N 340 548 pending 2024-02-12 17:01:39.770996 2024-02-12 17:01:40.02961 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +362 \N H73782962327 5.00 \N 427 722 pending 2024-02-12 18:24:25.327875 2024-02-12 18:24:25.581877 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +330 \N H99713791149 5.00 \N 395 658 pending 2024-02-12 17:54:01.488624 2024-02-12 17:54:01.722136 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +291 \N H17038559477 5.00 \N 356 580 pending 2024-02-12 17:16:55.32472 2024-02-12 17:16:55.609425 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +311 \N H22843154225 5.00 \N 376 620 pending 2024-02-12 17:35:59.332459 2024-02-12 17:35:59.56983 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +435 \N H23915989243 5.00 \N 500 868 pending 2024-02-12 19:33:39.577081 2024-02-12 19:33:39.83411 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +407 \N H96306262968 5.00 \N 472 812 pending 2024-02-12 19:07:04.054697 2024-02-12 19:07:04.302523 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +295 \N H15246836555 5.00 \N 360 588 pending 2024-02-12 17:20:44.767391 2024-02-12 17:20:45.031708 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +403 \N H10507753638 5.00 \N 468 804 pending 2024-02-12 19:03:16.597584 2024-02-12 19:03:16.835512 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +363 \N H52179906703 5.00 \N 428 724 pending 2024-02-12 18:25:22.316848 2024-02-12 18:25:22.546504 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +312 \N H43188636681 5.00 \N 377 622 pending 2024-02-12 17:36:56.121102 2024-02-12 17:36:56.383724 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +331 \N H85434982569 5.00 \N 396 660 pending 2024-02-12 17:54:58.376008 2024-02-12 17:54:58.628997 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +298 \N H52521063956 5.00 \N 363 594 pending 2024-02-12 17:23:36.620963 2024-02-12 17:23:36.881708 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +387 \N H60061838671 5.00 \N 452 772 pending 2024-02-12 18:48:06.624219 2024-02-12 18:48:06.970513 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +340 \N H73772375486 5.00 \N 405 678 pending 2024-02-12 18:03:31.109915 2024-02-12 18:03:31.350958 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +300 \N H05021753911 5.00 \N 365 598 pending 2024-02-12 17:25:30.912597 2024-02-12 17:25:31.187442 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +302 \N H04213845791 5.00 \N 367 602 pending 2024-02-12 17:27:25.805786 2024-02-12 17:27:26.107466 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +365 \N H27959893303 5.00 \N 430 728 pending 2024-02-12 18:27:16.144269 2024-02-12 18:27:16.393201 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +341 \N H86776939075 5.00 \N 406 680 pending 2024-02-12 18:04:28.058713 2024-02-12 18:04:28.342006 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +462 \N H10050451851 5.00 \N 527 922 pending 2024-02-12 19:59:18.544843 2024-02-12 19:59:18.809027 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +419 \N H63393807939 5.00 \N 484 836 pending 2024-02-12 19:18:26.948694 2024-02-12 19:18:27.227586 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +401 \N H94363533859 5.00 \N 466 800 pending 2024-02-12 19:01:22.887492 2024-02-12 19:01:23.244398 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +346 \N H16714245337 5.00 \N 411 690 pending 2024-02-12 18:09:12.864675 2024-02-12 18:09:13.115784 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +410 \N H63554434042 5.00 \N 475 818 pending 2024-02-12 19:09:54.866843 2024-02-12 19:09:55.100158 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +405 \N H00483597768 5.00 \N 470 808 pending 2024-02-12 19:05:10.370517 2024-02-12 19:05:10.637361 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +375 \N H07828164589 5.00 \N 440 748 pending 2024-02-12 18:36:44.558045 2024-02-12 18:36:44.804445 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +408 \N H48236862197 5.00 \N 473 814 pending 2024-02-12 19:08:01.040285 2024-02-12 19:08:01.291921 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +402 \N H22556488935 5.00 \N 467 802 pending 2024-02-12 19:02:19.690499 2024-02-12 19:02:19.918857 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +406 \N H35973551382 5.00 \N 471 810 pending 2024-02-12 19:06:07.135268 2024-02-12 19:06:07.374788 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +424 \N H08693607959 5.00 \N 489 846 pending 2024-02-12 19:23:11.401449 2024-02-12 19:23:11.655466 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +439 \N H53604931410 5.00 \N 504 876 pending 2024-02-12 19:37:27.804669 2024-02-12 19:37:28.060884 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +418 \N H74765397724 5.00 \N 483 834 pending 2024-02-12 19:17:30.087235 2024-02-12 19:17:30.345816 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +437 \N H17038051222 5.00 \N 502 872 pending 2024-02-12 19:35:33.717631 2024-02-12 19:35:33.968253 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +423 \N H55270692882 5.00 \N 488 844 pending 2024-02-12 19:22:14.554839 2024-02-12 19:22:14.846391 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +463 \N H35176770686 5.00 \N 528 924 pending 2024-02-12 20:00:15.456082 2024-02-12 20:00:15.697699 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +441 \N H62996430420 5.00 \N 506 880 pending 2024-02-12 19:39:21.614771 2024-02-12 19:39:21.864325 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +457 \N H85565055610 5.00 \N 522 912 pending 2024-02-12 19:54:33.85859 2024-02-12 19:54:34.102202 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +460 \N H85324297233 5.00 \N 525 918 pending 2024-02-12 19:57:24.236668 2024-02-12 19:57:24.47415 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +466 \N H45127928108 5.00 \N 531 930 pending 2024-02-12 20:03:06.480718 2024-02-12 20:03:06.729551 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +469 \N H18122313787 5.00 \N 534 936 pending 2024-02-12 20:05:57.037697 2024-02-12 20:05:57.281915 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +470 \N H72135710461 5.00 \N 535 938 pending 2024-02-12 20:06:54.007418 2024-02-12 20:06:54.270338 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +472 \N H02280676175 5.00 \N 537 942 pending 2024-02-12 20:08:48.816546 2024-02-12 20:08:49.100543 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +525 \N H48909063466 5.00 \N 558 2380 pending 2024-02-12 21:28:35.539956 2024-02-12 21:29:18.15519 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +590 \N H49385087938 5.00 \N 617 2516 pending 2024-02-12 21:49:28.056078 2024-02-12 21:50:07.937543 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +272 \N H70354690446 5.00 \N 337 542 pending 2024-02-12 16:58:48.078226 2024-02-12 16:58:48.323709 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +309 \N H23747712418 5.00 \N 374 616 pending 2024-02-12 17:34:05.795264 2024-02-12 17:34:06.044941 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +376 \N H95084922864 5.00 \N 441 750 pending 2024-02-12 18:37:41.371813 2024-02-12 18:37:41.611322 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +276 \N H38534336009 5.00 \N 341 550 pending 2024-02-12 17:02:37.012365 2024-02-12 17:02:37.396481 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +292 \N H56945713788 5.00 \N 357 582 pending 2024-02-12 17:17:52.718484 2024-02-12 17:17:53.029093 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +364 \N H63567200796 5.00 \N 429 726 pending 2024-02-12 18:26:19.185345 2024-02-12 18:26:19.421509 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +277 \N H31538826008 5.00 \N 342 552 pending 2024-02-12 17:03:34.618695 2024-02-12 17:03:34.954503 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +310 \N H64818351352 5.00 \N 375 618 pending 2024-02-12 17:35:02.521444 2024-02-12 17:35:02.768542 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +333 \N H40065437034 5.00 \N 398 664 pending 2024-02-12 17:56:52.98111 2024-02-12 17:56:53.258165 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +293 \N H78090104191 5.00 \N 358 584 pending 2024-02-12 17:18:49.793139 2024-02-12 17:18:50.073485 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +278 \N H69632337497 5.00 \N 343 554 pending 2024-02-12 17:04:31.625344 2024-02-12 17:04:31.882371 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +393 \N H51203600309 5.00 \N 458 784 pending 2024-02-12 18:53:48.000104 2024-02-12 18:53:48.237958 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +294 \N H68636927200 5.00 \N 359 586 pending 2024-02-12 17:19:47.078254 2024-02-12 17:19:47.352507 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +279 \N H70642079330 5.00 \N 344 556 pending 2024-02-12 17:05:28.833448 2024-02-12 17:05:29.114868 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +389 \N H81038534709 5.00 \N 454 776 pending 2024-02-12 18:50:00.104519 2024-02-12 18:50:00.349157 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +334 \N H00279008479 5.00 \N 399 666 pending 2024-02-12 17:57:50.170669 2024-02-12 17:57:50.445467 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +367 \N H31134983717 5.00 \N 432 732 pending 2024-02-12 18:29:09.607176 2024-02-12 18:29:09.843377 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +280 \N H07585356511 5.00 \N 345 558 pending 2024-02-12 17:06:26.019981 2024-02-12 17:06:26.391645 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +299 \N H76125046243 5.00 \N 364 596 pending 2024-02-12 17:24:33.763639 2024-02-12 17:24:34.024539 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +379 \N H53135566689 5.00 \N 444 756 pending 2024-02-12 18:40:31.996192 2024-02-12 18:40:32.243424 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +281 \N H72523776371 5.00 \N 346 560 pending 2024-02-12 17:07:23.269725 2024-02-12 17:07:23.553305 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +335 \N H99891709789 5.00 \N 400 668 pending 2024-02-12 17:58:46.647959 2024-02-12 17:58:46.899574 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +306 \N H78964796782 5.00 \N 371 610 pending 2024-02-12 17:31:15.071166 2024-02-12 17:31:15.470488 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +412 \N H49102411388 5.00 \N 477 822 pending 2024-02-12 19:11:48.64993 2024-02-12 19:11:48.886318 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +369 \N H73036439443 5.00 \N 434 736 pending 2024-02-12 18:31:03.282334 2024-02-12 18:31:03.538568 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +442 \N H40645648070 5.00 \N 507 882 pending 2024-02-12 19:40:18.832561 2024-02-12 19:40:19.124306 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +307 \N H60088747221 5.00 \N 372 612 pending 2024-02-12 17:32:12.323592 2024-02-12 17:32:12.622085 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +336 \N H00632150294 5.00 \N 401 670 pending 2024-02-12 17:59:43.71884 2024-02-12 17:59:43.981944 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +404 \N H39195883431 5.00 \N 469 806 pending 2024-02-12 19:04:13.475597 2024-02-12 19:04:13.712257 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +382 \N H67781576999 5.00 \N 447 762 pending 2024-02-12 18:43:22.581194 2024-02-12 18:43:23.022544 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +397 \N H07194437882 5.00 \N 462 792 pending 2024-02-12 18:57:35.544833 2024-02-12 18:57:35.775133 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +370 \N H15934457251 5.00 \N 435 738 pending 2024-02-12 18:32:00.012463 2024-02-12 18:32:00.267993 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +348 \N H02087451385 5.00 \N 413 694 pending 2024-02-12 18:11:07.035903 2024-02-12 18:11:07.328326 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +390 \N H27004741079 5.00 \N 455 778 pending 2024-02-12 18:50:57.250146 2024-02-12 18:50:57.491633 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +428 \N H69087219563 5.00 \N 493 854 pending 2024-02-12 19:27:00.178217 2024-02-12 19:27:00.532129 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +391 \N H22134838144 5.00 \N 456 780 pending 2024-02-12 18:51:54.34508 2024-02-12 18:51:54.687423 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +388 \N H18371773479 5.00 \N 453 774 pending 2024-02-12 18:49:03.30723 2024-02-12 18:49:03.572873 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +448 \N H33267331308 5.00 \N 513 894 pending 2024-02-12 19:46:01.211081 2024-02-12 19:46:01.457601 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +413 \N H87430666872 5.00 \N 478 824 pending 2024-02-12 19:12:45.489104 2024-02-12 19:12:45.72293 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +411 \N H47104221994 5.00 \N 476 820 pending 2024-02-12 19:10:51.686244 2024-02-12 19:10:51.925225 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +398 \N H15053822202 5.00 \N 463 794 pending 2024-02-12 18:58:32.388546 2024-02-12 18:58:32.635839 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +431 \N H57836939655 5.00 \N 496 860 pending 2024-02-12 19:29:51.064472 2024-02-12 19:29:51.346405 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +444 \N H87581004479 5.00 \N 509 886 pending 2024-02-12 19:42:12.95496 2024-02-12 19:42:13.213764 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +443 \N H37838872917 5.00 \N 508 884 pending 2024-02-12 19:41:15.848741 2024-02-12 19:41:16.099424 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +430 \N H94844831382 5.00 \N 495 858 pending 2024-02-12 19:28:54.04041 2024-02-12 19:28:54.283684 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +451 \N H58092552013 5.00 \N 516 900 pending 2024-02-12 19:48:51.891874 2024-02-12 19:48:52.140675 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +445 \N H85399914563 5.00 \N 510 888 pending 2024-02-12 19:43:09.921984 2024-02-12 19:43:10.197261 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +446 \N H25008544805 5.00 \N 511 890 pending 2024-02-12 19:44:06.850496 2024-02-12 19:44:07.10295 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +453 \N H59584533021 5.00 \N 518 904 pending 2024-02-12 19:50:45.87854 2024-02-12 19:50:46.238327 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +454 \N H78381271107 5.00 \N 519 906 pending 2024-02-12 19:51:43.230285 2024-02-12 19:51:43.522069 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +461 \N H76809798806 5.00 \N 526 920 pending 2024-02-12 19:58:21.498064 2024-02-12 19:58:21.759954 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +464 \N H98078853006 5.00 \N 529 926 pending 2024-02-12 20:01:12.377152 2024-02-12 20:01:12.613476 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +559 \N H55349153660 5.00 \N 591 2452 pending 2024-02-12 21:37:28.344153 2024-02-12 21:38:22.384909 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +620 \N H31254214269 5.00 \N 645 2582 pending 2024-02-12 21:57:46.10156 2024-02-12 21:58:25.884099 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +534 \N H20576761831 5.00 \N 567 2398 pending 2024-02-12 21:32:34.489867 2024-02-12 21:33:28.474511 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +477 \N H30759067493 5.00 \N 64 952 pending 2024-02-12 20:11:57.088033 2024-02-12 20:24:42.491205 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +647 \N H61447883386 5.00 \N 665 2636 pending 2024-02-12 22:03:34.262439 2024-02-12 22:03:34.530403 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +646 \N H70957442245 5.00 \N 670 2634 pending 2024-02-12 22:03:31.205785 2024-02-12 22:04:40.522377 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +824 \N H27353413909 5.00 \N 810 3018 pending 2024-02-12 22:53:06.34184 2024-02-12 22:53:06.672384 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +612 \N H44974959474 5.00 \N 631 2564 pending 2024-02-12 21:53:17.40931 2024-02-12 21:54:24.037193 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +715 \N H58836402621 5.00 \N 729 2784 pending 2024-02-12 22:22:31.435221 2024-02-12 22:23:10.906914 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +789 \N H97556096733 5.00 \N 782 2942 pending 2024-02-12 22:42:08.717045 2024-02-12 22:43:10.531112 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +714 \N H70097200428 5.00 \N 721 2782 pending 2024-02-12 22:22:26.682172 2024-02-12 22:22:26.982118 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +613 \N H03672240119 5.00 \N 628 2566 pending 2024-02-12 21:53:18.250759 2024-02-12 21:53:57.063375 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +505 \N H24583287540 5.00 \N 552 2338 pending 2024-02-12 20:40:22.153788 2024-02-12 21:24:22.975525 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +692 \N H81146827582 5.00 \N 707 2736 pending 2024-02-12 22:17:12.077151 2024-02-12 22:17:53.224747 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +481 \N H32967988904 5.00 \N 541 960 pending 2024-02-12 20:13:31.431678 2024-02-12 20:14:34.149806 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +716 \N H23183767836 5.00 \N 726 2786 pending 2024-02-12 22:22:36.629855 2024-02-12 22:23:35.484586 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +587 \N H45885190084 5.00 \N 602 2510 pending 2024-02-12 21:45:22.832377 2024-02-12 21:45:23.12373 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +597 \N H02502862510 5.00 \N 618 2530 pending 2024-02-12 21:50:00.290405 2024-02-12 21:50:00.575459 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +585 \N H78587047288 5.00 \N 600 2506 pending 2024-02-12 21:45:21.187508 2024-02-12 21:46:03.442091 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +694 \N H60234908838 5.00 \N 709 2740 pending 2024-02-12 22:17:15.589482 2024-02-12 22:18:18.736038 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +596 \N H27114746639 5.00 \N 619 2528 pending 2024-02-12 21:49:53.293026 2024-02-12 21:50:32.909718 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +593 \N H94983395315 5.00 \N 620 2522 pending 2024-02-12 21:49:31.167876 2024-02-12 21:50:37.743353 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +536 \N H47770412182 5.00 \N 574 2402 pending 2024-02-12 21:32:43.517187 2024-02-12 21:33:22.962297 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +737 \N H28502834858 5.00 \N 734 2832 pending 2024-02-12 22:28:20.787096 2024-02-12 22:28:21.534508 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +713 \N H28115049712 5.00 \N 722 2780 pending 2024-02-12 22:22:24.360009 2024-02-12 22:23:03.91357 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +741 \N H67544580266 5.00 \N 748 2840 pending 2024-02-12 22:31:15.801177 2024-02-12 22:32:17.911179 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +808 \N H01430167549 5.00 \N 803 2982 pending 2024-02-12 22:48:06.428915 2024-02-12 22:49:00.757521 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +738 \N H51861606010 5.00 \N 742 2834 pending 2024-02-12 22:28:25.268689 2024-02-12 22:28:25.591397 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +615 \N H74397582757 5.00 \N 629 2570 pending 2024-02-12 21:53:35.760292 2024-02-12 21:54:15.1604 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +717 \N H65115296536 5.00 \N 727 2788 pending 2024-02-12 22:22:38.678665 2024-02-12 22:22:38.955472 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +561 \N H68212828336 5.00 \N 587 2456 pending 2024-02-12 21:37:29.998583 2024-02-12 21:38:08.948471 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +657 \N H46637251288 5.00 \N 677 2660 pending 2024-02-12 22:07:14.52277 2024-02-12 22:07:53.95847 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +631 \N H91286087800 5.00 \N 649 2604 pending 2024-02-12 21:58:26.450154 2024-02-12 21:58:26.712627 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +698 \N H71997229728 5.00 \N 708 2748 pending 2024-02-12 22:17:24.735503 2024-02-12 22:18:04.129301 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +483 \N H16205821494 5.00 \N 543 964 pending 2024-02-12 20:15:32.499324 2024-02-12 20:16:13.720537 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +594 \N H02591145669 5.00 \N 615 2524 pending 2024-02-12 21:49:36.093042 2024-02-12 21:50:34.000402 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +625 \N H74629998239 5.00 \N 650 2592 pending 2024-02-12 21:57:57.116314 2024-02-12 21:58:36.47927 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +565 \N H28509881253 5.00 \N 586 2466 pending 2024-02-12 21:38:36.570309 2024-02-12 21:39:19.10921 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +531 \N H83937301834 5.00 \N 570 2392 pending 2024-02-12 21:32:18.103834 2024-02-12 21:32:57.594024 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +699 \N H57570315891 5.00 \N 712 2750 pending 2024-02-12 22:17:40.229528 2024-02-12 22:18:45.06361 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +719 \N H61283071756 5.00 \N 725 2792 pending 2024-02-12 22:22:47.806236 2024-02-12 22:23:41.739725 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +675 \N H47722433567 5.00 \N 695 2702 pending 2024-02-12 22:12:10.956055 2024-02-12 22:13:18.233077 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +630 \N H99567421870 5.00 \N 646 2602 pending 2024-02-12 21:58:21.531586 2024-02-12 21:59:01.058838 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +584 \N H01112638795 5.00 \N 601 2504 pending 2024-02-12 21:45:19.663165 2024-02-12 21:46:02.144206 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +586 \N H75081641576 5.00 \N 603 2508 pending 2024-02-12 21:45:22.020906 2024-02-12 21:46:04.444059 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +628 \N H43317575383 5.00 \N 647 2598 pending 2024-02-12 21:58:14.209308 2024-02-12 21:59:16.96549 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +746 \N H25112310999 5.00 \N 750 2850 pending 2024-02-12 22:31:48.940444 2024-02-12 22:32:28.538664 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +651 \N H78226203631 5.00 \N 684 2648 pending 2024-02-12 22:06:36.232159 2024-02-12 22:07:16.642709 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +787 \N H85496888111 5.00 \N 781 2938 pending 2024-02-12 22:42:04.894246 2024-02-12 22:42:05.145677 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +791 \N H44689779827 5.00 \N 780 2946 pending 2024-02-12 22:42:13.835744 2024-02-12 22:42:14.135307 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +783 \N H37756728465 5.00 \N 788 2930 pending 2024-02-12 22:41:50.51671 2024-02-12 22:42:30.441972 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +598 \N H59473333167 5.00 \N 616 2532 pending 2024-02-12 21:50:11.920278 2024-02-12 21:51:05.459706 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +632 \N H48963756294 5.00 \N 651 2606 pending 2024-02-12 21:58:40.887985 2024-02-12 21:58:41.268375 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +489 \N H23386353579 5.00 \N 547 976 pending 2024-02-12 20:20:25.475314 2024-02-12 20:21:23.967129 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +678 \N H36411060868 5.00 \N 691 2708 pending 2024-02-12 22:12:16.102724 2024-02-12 22:12:16.36602 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +721 \N H80221809201 5.00 \N 724 2798 pending 2024-02-12 22:23:59.660339 2024-02-12 22:23:59.929142 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +514 \N H01519044101 5.00 \N 554 2358 pending 2024-02-12 21:27:00.799883 2024-02-12 21:27:01.096586 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +535 \N H99292603589 5.00 \N 568 2400 pending 2024-02-12 21:32:39.441988 2024-02-12 21:33:19.038526 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +515 \N H94110028811 5.00 \N 562 2360 pending 2024-02-12 21:27:03.114103 2024-02-12 21:27:03.378336 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +807 \N H28820927226 5.00 \N 799 2980 pending 2024-02-12 22:48:02.185293 2024-02-12 22:48:02.539863 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +539 \N H90569595809 5.00 \N 576 2408 pending 2024-02-12 21:32:45.941414 2024-02-12 21:33:25.440948 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +680 \N H63683482797 5.00 \N 694 2712 pending 2024-02-12 22:12:30.629906 2024-02-12 22:12:30.98689 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +654 \N H25160454838 5.00 \N 679 2654 pending 2024-02-12 22:07:02.065787 2024-02-12 22:07:02.378053 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +517 \N H47612955634 5.00 \N 563 2364 pending 2024-02-12 21:27:06.319088 2024-02-12 21:27:46.189285 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +704 \N H95282676157 5.00 \N 710 2760 pending 2024-02-12 22:19:08.670407 2024-02-12 22:20:18.317981 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +681 \N H38796138772 5.00 \N 698 2714 pending 2024-02-12 22:12:33.409014 2024-02-12 22:12:33.814504 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +803 \N H72945512478 5.00 \N 797 2972 pending 2024-02-12 22:47:26.312685 2024-02-12 22:48:28.819266 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +726 \N H39028004599 5.00 \N 741 2808 pending 2024-02-12 22:26:39.661673 2024-02-12 22:27:19.332278 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +769 \N H43808833905 5.00 \N 770 2896 pending 2024-02-12 22:37:35.594247 2024-02-12 22:38:14.594456 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +771 \N H54774676211 5.00 \N 766 2900 pending 2024-02-12 22:37:42.933248 2024-02-12 22:38:36.717499 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +599 \N H10067713399 5.00 \N 623 2534 pending 2024-02-12 21:50:17.166149 2024-02-12 21:51:11.71572 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +732 \N H08224238912 5.00 \N 738 2820 pending 2024-02-12 22:27:08.025729 2024-02-12 22:27:48.512387 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +722 \N H43636471805 5.00 \N 735 2800 pending 2024-02-12 22:26:33.384105 2024-02-12 22:26:33.929417 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +486 \N H02980012070 5.00 \N 545 970 pending 2024-02-12 20:17:49.520567 2024-02-12 20:18:52.830255 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +567 \N H81491573613 5.00 \N 588 2470 pending 2024-02-12 21:40:40.364479 2024-02-12 21:40:40.653238 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +773 \N H03590996760 5.00 \N 769 2904 pending 2024-02-12 22:37:49.70237 2024-02-12 22:38:43.642855 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +684 \N H85210871028 5.00 \N 696 2720 pending 2024-02-12 22:12:47.007632 2024-02-12 22:12:47.289729 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +629 \N H87392133831 5.00 \N 648 2600 pending 2024-02-12 21:58:17.485006 2024-02-12 21:59:21.166844 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +730 \N H84742727541 5.00 \N 743 2816 pending 2024-02-12 22:27:04.585554 2024-02-12 22:28:05.503417 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +682 \N H20794431005 5.00 \N 692 2716 pending 2024-02-12 22:12:41.506904 2024-02-12 22:13:21.460952 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +542 \N H29707701132 5.00 \N 573 2416 pending 2024-02-12 21:33:55.376897 2024-02-12 21:34:37.924848 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +543 \N H25182997794 5.00 \N 575 2418 pending 2024-02-12 21:33:56.981795 2024-02-12 21:34:50.376353 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +659 \N H92867931941 5.00 \N 680 2664 pending 2024-02-12 22:07:18.342103 2024-02-12 22:08:11.221922 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +792 \N H42260170180 5.00 \N 783 2948 pending 2024-02-12 22:42:18.098626 2024-02-12 22:42:57.723665 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +731 \N H32581470547 5.00 \N 736 2818 pending 2024-02-12 22:27:05.59697 2024-02-12 22:27:05.853161 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +793 \N H21752000398 5.00 \N 785 2950 pending 2024-02-12 22:42:20.653442 2024-02-12 22:43:00.487095 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +823 \N H64777323894 5.00 \N 813 3014 pending 2024-02-12 22:52:11.656238 2024-02-12 22:52:11.96354 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +821 \N H21973652986 5.00 \N 814 3010 pending 2024-02-12 22:52:06.010331 2024-02-12 22:53:00.577431 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +648 \N H96035970190 5.00 \N 671 2638 pending 2024-02-12 22:03:51.846612 2024-02-12 22:04:45.281166 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +551 \N H67529491423 5.00 \N 589 2436 pending 2024-02-12 21:36:58.318693 2024-02-12 21:38:02.513574 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +600 \N H94933928801 5.00 \N 622 2536 pending 2024-02-12 21:50:19.493352 2024-02-12 21:50:19.760425 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +553 \N H67773163812 5.00 \N 583 2440 pending 2024-02-12 21:37:01.420941 2024-02-12 21:38:04.96878 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +664 \N H88730045460 5.00 \N 676 2676 pending 2024-02-12 22:08:14.287902 2024-02-12 22:09:20.759809 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +772 \N H19216754794 5.00 \N 765 2902 pending 2024-02-12 22:37:44.279382 2024-02-12 22:38:45.596798 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +554 \N H69042273185 5.00 \N 584 2442 pending 2024-02-12 21:37:05.861016 2024-02-12 21:38:08.37426 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +757 \N H85250742959 5.00 \N 752 2872 pending 2024-02-12 22:33:00.699136 2024-02-12 22:33:00.955377 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +805 \N H47457174311 5.00 \N 795 2976 pending 2024-02-12 22:47:44.526392 2024-02-12 22:48:45.698488 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +667 \N H27185330722 5.00 \N 681 2682 pending 2024-02-12 22:08:25.352283 2024-02-12 22:09:27.831418 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +762 \N H45048657358 5.00 \N 767 2882 pending 2024-02-12 22:37:01.640171 2024-02-12 22:37:41.549019 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +636 \N H62006633436 5.00 \N 652 2614 pending 2024-02-12 21:59:46.385815 2024-02-12 22:00:29.05074 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +635 \N H11217279633 5.00 \N 654 2612 pending 2024-02-12 21:59:44.591629 2024-02-12 22:00:47.143226 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +518 \N H97214098527 5.00 \N 557 2366 pending 2024-02-12 21:27:07.932321 2024-02-12 21:27:08.230218 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +516 \N H47596309258 5.00 \N 555 2362 pending 2024-02-12 21:27:05.984307 2024-02-12 21:28:08.392841 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +576 \N H21603362060 5.00 \N 604 2488 pending 2024-02-12 21:44:12.557904 2024-02-12 21:44:52.010489 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +610 \N H76372186363 5.00 \N 635 2560 pending 2024-02-12 21:53:09.248406 2024-02-12 21:54:07.854106 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +687 \N H14718238388 5.00 \N 693 2726 pending 2024-02-12 22:13:53.582315 2024-02-12 22:14:36.166302 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +753 \N H07841522724 5.00 \N 751 2864 pending 2024-02-12 22:32:52.476728 2024-02-12 22:33:56.139865 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +794 \N H57692584166 5.00 \N 784 2952 pending 2024-02-12 22:42:29.893809 2024-02-12 22:43:32.306972 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +668 \N H45830304421 5.00 \N 678 2684 pending 2024-02-12 22:08:29.754084 2024-02-12 22:09:12.364153 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +759 \N H17397965076 5.00 \N 757 2876 pending 2024-02-12 22:33:54.93585 2024-02-12 22:35:00.171106 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +806 \N H79053217986 5.00 \N 802 2978 pending 2024-02-12 22:47:55.140589 2024-02-12 22:47:55.518222 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +799 \N H63284120685 5.00 \N 800 2964 pending 2024-02-12 22:47:19.459654 2024-02-12 22:47:59.43392 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +800 \N H47985229940 5.00 \N 801 2966 pending 2024-02-12 22:47:22.385444 2024-02-12 22:48:01.140529 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +666 \N H45686096581 5.00 \N 682 2680 pending 2024-02-12 22:08:20.214156 2024-02-12 22:09:25.021851 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +768 \N H71475044354 5.00 \N 763 2894 pending 2024-02-12 22:37:34.837354 2024-02-12 22:38:25.243835 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +709 \N H85769785269 5.00 \N 728 2772 pending 2024-02-12 22:22:09.265949 2024-02-12 22:22:48.752891 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +688 \N H65173478020 5.00 \N 699 2728 pending 2024-02-12 22:13:54.153058 2024-02-12 22:13:54.50793 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +758 \N H40147289179 5.00 \N 749 2874 pending 2024-02-12 22:33:52.039958 2024-02-12 22:33:52.425389 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +689 \N H68052896282 5.00 \N 697 2730 pending 2024-02-12 22:13:56.8824 2024-02-12 22:15:00.977772 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +570 \N H13849617170 5.00 \N 598 2476 pending 2024-02-12 21:43:40.573342 2024-02-12 21:44:20.195234 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +796 \N H58484727640 5.00 \N 779 2956 pending 2024-02-12 22:43:22.697406 2024-02-12 22:44:15.944675 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +725 \N H39580253132 5.00 \N 740 2806 pending 2024-02-12 22:26:38.054036 2024-02-12 22:27:17.077819 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +603 \N H43183441800 5.00 \N 630 2546 pending 2024-02-12 21:52:52.223367 2024-02-12 21:53:31.889359 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +607 \N H57036392750 5.00 \N 634 2554 pending 2024-02-12 21:52:57.992402 2024-02-12 21:53:37.294337 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +755 \N H84233346600 5.00 \N 756 2868 pending 2024-02-12 22:32:58.692152 2024-02-12 22:33:41.178449 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +818 \N H74442565359 5.00 \N 816 3004 pending 2024-02-12 22:51:44.764404 2024-02-12 22:52:24.38986 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +494 \N H63748802611 5.00 \N 549 996 pending 2024-02-12 20:23:28.301321 2024-02-12 20:24:07.781055 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +521 \N H13829570268 5.00 \N 560 2372 pending 2024-02-12 21:27:29.078711 2024-02-12 21:27:29.392051 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +701 \N H54657273551 5.00 \N 706 2754 pending 2024-02-12 22:17:43.697909 2024-02-12 22:18:42.403572 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +770 \N H97672288505 5.00 \N 771 2898 pending 2024-02-12 22:37:37.065311 2024-02-12 22:38:36.240096 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +614 \N H65802492413 5.00 \N 632 2568 pending 2024-02-12 21:53:26.941068 2024-02-12 21:53:27.206259 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +820 \N H65940513119 5.00 \N 808 3008 pending 2024-02-12 22:51:59.355174 2024-02-12 22:52:58.290677 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +734 \N H96653433042 5.00 \N 739 2824 pending 2024-02-12 22:27:21.823498 2024-02-12 22:28:16.77548 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +819 \N H54688702369 5.00 \N 812 3006 pending 2024-02-12 22:51:50.912014 2024-02-12 22:51:51.3604 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +643 \N H99934676285 5.00 \N 668 2628 pending 2024-02-12 22:03:16.738398 2024-02-12 22:03:56.22715 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +644 \N H13099618667 5.00 \N 662 2630 pending 2024-02-12 22:03:18.875338 2024-02-12 22:04:16.644886 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +760 \N H91564618812 5.00 \N 764 2878 pending 2024-02-12 22:36:58.884684 2024-02-12 22:37:38.731051 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +645 \N H61548410093 5.00 \N 667 2632 pending 2024-02-12 22:03:27.618538 2024-02-12 22:04:27.063126 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +700 \N H22054553232 5.00 \N 705 2752 pending 2024-02-12 22:17:42.600736 2024-02-12 22:18:21.951145 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +816 \N H94133584230 5.00 \N 809 3000 pending 2024-02-12 22:51:39.919389 2024-02-12 22:52:19.277314 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +817 \N H52056054176 5.00 \N 811 3002 pending 2024-02-12 22:51:42.924396 2024-02-12 22:52:22.494923 1 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +\. + + +-- +-- Data for Name: spree_shipping_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipping_categories (id, name, created_at, updated_at) FROM stdin; +1 Default 2022-07-12 18:10:15.09237 2022-07-12 18:10:15.09237 +2 Digital 2022-07-12 18:10:15.103953 2022-07-12 18:10:15.103953 +\. + + +-- +-- Data for Name: spree_shipping_method_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipping_method_categories (id, shipping_method_id, shipping_category_id, created_at, updated_at) FROM stdin; +1 1 1 2022-07-12 18:13:10.15444 2022-07-12 18:13:10.15444 +2 2 1 2022-07-12 18:13:10.191973 2022-07-12 18:13:10.191973 +3 3 1 2022-07-12 18:13:10.226458 2022-07-12 18:13:10.226458 +4 4 1 2022-07-12 18:13:10.262018 2022-07-12 18:13:10.262018 +5 5 1 2022-07-12 18:13:10.297927 2022-07-12 18:13:10.297927 +\. + + +-- +-- Data for Name: spree_shipping_method_zones; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipping_method_zones (id, shipping_method_id, zone_id, created_at, updated_at) FROM stdin; +1 1 3 2022-07-12 18:13:10.157988 2022-07-12 18:13:10.157988 +2 2 3 2022-07-12 18:13:10.194789 2022-07-12 18:13:10.194789 +3 3 3 2022-07-12 18:13:10.22893 2022-07-12 18:13:10.22893 +4 4 1 2022-07-12 18:13:10.26488 2022-07-12 18:13:10.26488 +5 5 1 2022-07-12 18:13:10.300373 2022-07-12 18:13:10.300373 +\. + + +-- +-- Data for Name: spree_shipping_methods; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipping_methods (id, name, display_on, deleted_at, created_at, updated_at, tracking_url, admin_name, tax_category_id, code, public_metadata, private_metadata) FROM stdin; +1 UPS Ground (USD) both \N 2022-07-12 18:13:10.148512 2022-07-12 18:13:10.148512 \N \N \N \N \N \N +2 UPS Two Day (USD) both \N 2022-07-12 18:13:10.186897 2022-07-12 18:13:10.186897 \N \N \N \N \N \N +3 UPS One Day (USD) both \N 2022-07-12 18:13:10.221522 2022-07-12 18:13:10.221522 \N \N \N \N \N \N +4 UPS Ground (EU) both \N 2022-07-12 18:13:10.256766 2022-07-12 18:13:10.256766 \N \N \N \N \N \N +5 UPS Ground (EUR) both \N 2022-07-12 18:13:10.29214 2022-07-12 18:13:10.29214 \N \N \N \N \N \N +\. + + +-- +-- Data for Name: spree_shipping_rates; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_shipping_rates (id, shipment_id, shipping_method_id, selected, cost, created_at, updated_at, tax_rate_id) FROM stdin; +11 3 2 f 10.00 2024-02-09 22:51:15.802181 2024-02-09 22:51:15.802181 \N +12 3 3 f 15.00 2024-02-09 22:51:15.804432 2024-02-09 22:51:15.804432 \N +10 3 1 t 5.00 2024-02-09 22:51:15.799561 2024-02-09 22:51:16.114662 \N +14 4 2 f 10.00 2024-02-09 22:52:14.010659 2024-02-09 22:52:14.010659 \N +15 4 3 f 15.00 2024-02-09 22:52:14.013027 2024-02-09 22:52:14.013027 \N +13 4 1 t 5.00 2024-02-09 22:52:14.008098 2024-02-09 22:52:14.409834 \N +50 16 2 f 10.00 2024-02-10 16:56:28.052323 2024-02-10 16:56:28.052323 \N +51 16 3 f 15.00 2024-02-10 16:56:28.05468 2024-02-10 16:56:28.05468 \N +17 5 2 f 10.00 2024-02-09 22:53:12.298723 2024-02-09 22:53:12.298723 \N +18 5 3 f 15.00 2024-02-09 22:53:12.301165 2024-02-09 22:53:12.301165 \N +16 5 1 t 5.00 2024-02-09 22:53:12.296321 2024-02-09 22:53:12.539605 \N +49 16 1 t 5.00 2024-02-10 16:56:28.04994 2024-02-10 16:56:28.318421 \N +20 6 2 f 10.00 2024-02-09 22:54:10.753538 2024-02-09 22:54:10.753538 \N +21 6 3 f 15.00 2024-02-09 22:54:10.755685 2024-02-09 22:54:10.755685 \N +19 6 1 t 5.00 2024-02-09 22:54:10.751098 2024-02-09 22:54:10.999802 \N +23 7 2 f 10.00 2024-02-09 22:55:09.252461 2024-02-09 22:55:09.252461 \N +24 7 3 f 15.00 2024-02-09 22:55:09.254796 2024-02-09 22:55:09.254796 \N +22 7 1 t 5.00 2024-02-09 22:55:09.249859 2024-02-09 22:55:09.489953 \N +1331 443 2 f 10.00 2024-02-12 19:41:15.855423 2024-02-12 19:41:15.855423 \N +53 17 2 f 10.00 2024-02-10 21:00:28.59893 2024-02-10 21:00:28.59893 \N +26 8 2 f 10.00 2024-02-09 22:56:07.717351 2024-02-09 22:56:07.717351 \N +27 8 3 f 15.00 2024-02-09 22:56:07.720253 2024-02-09 22:56:07.720253 \N +25 8 1 t 5.00 2024-02-09 22:56:07.713293 2024-02-09 22:56:07.964822 \N +54 17 3 f 15.00 2024-02-10 21:00:28.601294 2024-02-10 21:00:28.601294 \N +52 17 1 t 5.00 2024-02-10 21:00:28.596729 2024-02-10 21:00:28.855458 \N +29 9 2 f 10.00 2024-02-09 23:12:38.952172 2024-02-09 23:12:38.952172 \N +30 9 3 f 15.00 2024-02-09 23:12:38.955268 2024-02-09 23:12:38.955268 \N +28 9 1 t 5.00 2024-02-09 23:12:38.949731 2024-02-09 23:12:39.22981 \N +32 10 2 f 10.00 2024-02-10 02:50:51.259678 2024-02-10 02:50:51.259678 \N +33 10 3 f 15.00 2024-02-10 02:50:51.261977 2024-02-10 02:50:51.261977 \N +31 10 1 t 5.00 2024-02-10 02:50:51.257126 2024-02-10 02:50:51.616702 \N +35 11 2 f 10.00 2024-02-10 06:06:54.300821 2024-02-10 06:06:54.300821 \N +36 11 3 f 15.00 2024-02-10 06:06:54.303609 2024-02-10 06:06:54.303609 \N +34 11 1 t 5.00 2024-02-10 06:06:54.298097 2024-02-10 06:06:54.554495 \N +56 18 2 f 10.00 2024-02-10 23:02:31.560866 2024-02-10 23:02:31.560866 \N +57 18 3 f 15.00 2024-02-10 23:02:31.56339 2024-02-10 23:02:31.56339 \N +38 12 2 f 10.00 2024-02-10 12:00:19.748711 2024-02-10 12:00:19.748711 \N +39 12 3 f 15.00 2024-02-10 12:00:19.751109 2024-02-10 12:00:19.751109 \N +37 12 1 t 5.00 2024-02-10 12:00:19.746117 2024-02-10 12:00:20.004027 \N +55 18 1 t 5.00 2024-02-10 23:02:31.558298 2024-02-10 23:02:31.808836 \N +41 13 2 f 10.00 2024-02-10 12:55:47.244642 2024-02-10 12:55:47.244642 \N +42 13 3 f 15.00 2024-02-10 12:55:47.246992 2024-02-10 12:55:47.246992 \N +40 13 1 t 5.00 2024-02-10 12:55:47.242197 2024-02-10 12:55:47.495664 \N +44 14 2 f 10.00 2024-02-10 14:20:39.825173 2024-02-10 14:20:39.825173 \N +45 14 3 f 15.00 2024-02-10 14:20:39.827308 2024-02-10 14:20:39.827308 \N +43 14 1 t 5.00 2024-02-10 14:20:39.822045 2024-02-10 14:20:40.073967 \N +59 19 2 f 10.00 2024-02-11 02:45:38.257591 2024-02-11 02:45:38.257591 \N +47 15 2 f 10.00 2024-02-10 15:55:28.451363 2024-02-10 15:55:28.451363 \N +48 15 3 f 15.00 2024-02-10 15:55:28.453915 2024-02-10 15:55:28.453915 \N +46 15 1 t 5.00 2024-02-10 15:55:28.449078 2024-02-10 15:55:28.728194 \N +60 19 3 f 15.00 2024-02-11 02:45:38.260238 2024-02-11 02:45:38.260238 \N +58 19 1 t 5.00 2024-02-11 02:45:38.240639 2024-02-11 02:45:38.553041 \N +62 20 2 f 10.00 2024-02-11 06:00:08.798188 2024-02-11 06:00:08.798188 \N +63 20 3 f 15.00 2024-02-11 06:00:08.802277 2024-02-11 06:00:08.802277 \N +61 20 1 t 5.00 2024-02-11 06:00:08.795793 2024-02-11 06:00:09.096045 \N +65 21 2 f 10.00 2024-02-11 09:54:50.518352 2024-02-11 09:54:50.518352 \N +66 21 3 f 15.00 2024-02-11 09:54:50.520803 2024-02-11 09:54:50.520803 \N +64 21 1 t 5.00 2024-02-11 09:54:50.515208 2024-02-11 09:54:50.799346 \N +68 22 2 f 10.00 2024-02-11 13:55:28.060363 2024-02-11 13:55:28.060363 \N +69 22 3 f 15.00 2024-02-11 13:55:28.062804 2024-02-11 13:55:28.062804 \N +67 22 1 t 5.00 2024-02-11 13:55:28.058071 2024-02-11 13:55:28.350996 \N +71 23 2 f 10.00 2024-02-11 15:06:13.548308 2024-02-11 15:06:13.548308 \N +72 23 3 f 15.00 2024-02-11 15:06:13.550501 2024-02-11 15:06:13.550501 \N +70 23 1 t 5.00 2024-02-11 15:06:13.545779 2024-02-11 15:06:13.862568 \N +74 24 2 f 10.00 2024-02-11 20:00:57.744099 2024-02-11 20:00:57.744099 \N +75 24 3 f 15.00 2024-02-11 20:00:57.746252 2024-02-11 20:00:57.746252 \N +73 24 1 t 5.00 2024-02-11 20:00:57.74157 2024-02-11 20:00:58.049413 \N +77 25 2 f 10.00 2024-02-11 21:02:00.189097 2024-02-11 21:02:00.189097 \N +78 25 3 f 15.00 2024-02-11 21:02:00.191509 2024-02-11 21:02:00.191509 \N +76 25 1 t 5.00 2024-02-11 21:02:00.186657 2024-02-11 21:02:00.485909 \N +80 26 2 f 10.00 2024-02-12 00:21:55.014321 2024-02-12 00:21:55.014321 \N +81 26 3 f 15.00 2024-02-12 00:21:55.016787 2024-02-12 00:21:55.016787 \N +79 26 1 t 5.00 2024-02-12 00:21:55.011615 2024-02-12 00:21:55.494386 \N +83 27 2 f 10.00 2024-02-12 02:43:54.688009 2024-02-12 02:43:54.688009 \N +84 27 3 f 15.00 2024-02-12 02:43:54.690337 2024-02-12 02:43:54.690337 \N +82 27 1 t 5.00 2024-02-12 02:43:54.68529 2024-02-12 02:43:55.009555 \N +86 28 2 f 10.00 2024-02-12 06:13:15.71083 2024-02-12 06:13:15.71083 \N +87 28 3 f 15.00 2024-02-12 06:13:15.71308 2024-02-12 06:13:15.71308 \N +85 28 1 t 5.00 2024-02-12 06:13:15.708143 2024-02-12 06:13:16.056463 \N +89 29 2 f 10.00 2024-02-12 09:00:28.817789 2024-02-12 09:00:28.817789 \N +90 29 3 f 15.00 2024-02-12 09:00:28.820416 2024-02-12 09:00:28.820416 \N +88 29 1 t 5.00 2024-02-12 09:00:28.814873 2024-02-12 09:00:29.103101 \N +92 30 2 f 10.00 2024-02-12 10:48:52.181267 2024-02-12 10:48:52.181267 \N +93 30 3 f 15.00 2024-02-12 10:48:52.183677 2024-02-12 10:48:52.183677 \N +91 30 1 t 5.00 2024-02-12 10:48:52.178891 2024-02-12 10:48:52.974677 \N +95 31 2 f 10.00 2024-02-12 12:23:49.519534 2024-02-12 12:23:49.519534 \N +96 31 3 f 15.00 2024-02-12 12:23:49.521825 2024-02-12 12:23:49.521825 \N +94 31 1 t 5.00 2024-02-12 12:23:49.517288 2024-02-12 12:23:49.773004 \N +98 32 2 f 10.00 2024-02-12 13:11:07.973954 2024-02-12 13:11:07.973954 \N +99 32 3 f 15.00 2024-02-12 13:11:07.975861 2024-02-12 13:11:07.975861 \N +97 32 1 t 5.00 2024-02-12 13:11:07.971853 2024-02-12 13:11:08.240312 \N +101 33 2 f 10.00 2024-02-12 13:12:04.791237 2024-02-12 13:12:04.791237 \N +102 33 3 f 15.00 2024-02-12 13:12:04.793486 2024-02-12 13:12:04.793486 \N +100 33 1 t 5.00 2024-02-12 13:12:04.789092 2024-02-12 13:12:05.044632 \N +104 34 2 f 10.00 2024-02-12 13:13:01.760726 2024-02-12 13:13:01.760726 \N +105 34 3 f 15.00 2024-02-12 13:13:01.762817 2024-02-12 13:13:01.762817 \N +103 34 1 t 5.00 2024-02-12 13:13:01.758675 2024-02-12 13:13:01.988512 \N +107 35 2 f 10.00 2024-02-12 13:13:59.027506 2024-02-12 13:13:59.027506 \N +108 35 3 f 15.00 2024-02-12 13:13:59.029437 2024-02-12 13:13:59.029437 \N +106 35 1 t 5.00 2024-02-12 13:13:59.025698 2024-02-12 13:13:59.23183 \N +134 44 2 f 10.00 2024-02-12 13:22:31.49751 2024-02-12 13:22:31.49751 \N +135 44 3 f 15.00 2024-02-12 13:22:31.499662 2024-02-12 13:22:31.499662 \N +110 36 2 f 10.00 2024-02-12 13:14:56.048955 2024-02-12 13:14:56.048955 \N +111 36 3 f 15.00 2024-02-12 13:14:56.050885 2024-02-12 13:14:56.050885 \N +109 36 1 t 5.00 2024-02-12 13:14:56.045974 2024-02-12 13:14:56.304805 \N +133 44 1 t 5.00 2024-02-12 13:22:31.495359 2024-02-12 13:22:31.725028 \N +239 79 2 f 10.00 2024-02-12 13:55:42.244189 2024-02-12 13:55:42.244189 \N +113 37 2 f 10.00 2024-02-12 13:15:52.954555 2024-02-12 13:15:52.954555 \N +114 37 3 f 15.00 2024-02-12 13:15:52.956762 2024-02-12 13:15:52.956762 \N +112 37 1 t 5.00 2024-02-12 13:15:52.952241 2024-02-12 13:15:53.279813 \N +116 38 2 f 10.00 2024-02-12 13:16:50.083721 2024-02-12 13:16:50.083721 \N +117 38 3 f 15.00 2024-02-12 13:16:50.085731 2024-02-12 13:16:50.085731 \N +115 38 1 t 5.00 2024-02-12 13:16:50.081554 2024-02-12 13:16:50.301245 \N +240 79 3 f 15.00 2024-02-12 13:55:42.245937 2024-02-12 13:55:42.245937 \N +137 45 2 f 10.00 2024-02-12 13:23:28.282407 2024-02-12 13:23:28.282407 \N +119 39 2 f 10.00 2024-02-12 13:17:46.869223 2024-02-12 13:17:46.869223 \N +120 39 3 f 15.00 2024-02-12 13:17:46.871023 2024-02-12 13:17:46.871023 \N +118 39 1 t 5.00 2024-02-12 13:17:46.867222 2024-02-12 13:17:47.076059 \N +138 45 3 f 15.00 2024-02-12 13:23:28.291966 2024-02-12 13:23:28.291966 \N +136 45 1 t 5.00 2024-02-12 13:23:28.280248 2024-02-12 13:23:28.500362 \N +122 40 2 f 10.00 2024-02-12 13:18:43.816461 2024-02-12 13:18:43.816461 \N +123 40 3 f 15.00 2024-02-12 13:18:43.818383 2024-02-12 13:18:43.818383 \N +121 40 1 t 5.00 2024-02-12 13:18:43.814543 2024-02-12 13:18:44.020227 \N +238 79 1 t 5.00 2024-02-12 13:55:42.24227 2024-02-12 13:55:42.463039 \N +125 41 2 f 10.00 2024-02-12 13:19:40.810232 2024-02-12 13:19:40.810232 \N +126 41 3 f 15.00 2024-02-12 13:19:40.812051 2024-02-12 13:19:40.812051 \N +124 41 1 t 5.00 2024-02-12 13:19:40.808203 2024-02-12 13:19:41.017182 \N +419 139 2 f 10.00 2024-02-12 14:52:36.305302 2024-02-12 14:52:36.305302 \N +128 42 2 f 10.00 2024-02-12 13:20:37.642441 2024-02-12 13:20:37.642441 \N +129 42 3 f 15.00 2024-02-12 13:20:37.644176 2024-02-12 13:20:37.644176 \N +127 42 1 t 5.00 2024-02-12 13:20:37.64052 2024-02-12 13:20:37.934662 \N +140 46 2 f 10.00 2024-02-12 13:24:25.229596 2024-02-12 13:24:25.229596 \N +141 46 3 f 15.00 2024-02-12 13:24:25.231464 2024-02-12 13:24:25.231464 \N +131 43 2 f 10.00 2024-02-12 13:21:34.565669 2024-02-12 13:21:34.565669 \N +132 43 3 f 15.00 2024-02-12 13:21:34.567466 2024-02-12 13:21:34.567466 \N +130 43 1 t 5.00 2024-02-12 13:21:34.563742 2024-02-12 13:21:34.788529 \N +139 46 1 t 5.00 2024-02-12 13:24:25.227483 2024-02-12 13:24:25.441348 \N +143 47 2 f 10.00 2024-02-12 13:25:21.998587 2024-02-12 13:25:21.998587 \N +144 47 3 f 15.00 2024-02-12 13:25:22.001082 2024-02-12 13:25:22.001082 \N +142 47 1 t 5.00 2024-02-12 13:25:21.996138 2024-02-12 13:25:22.224315 \N +146 48 2 f 10.00 2024-02-12 13:26:18.920529 2024-02-12 13:26:18.920529 \N +147 48 3 f 15.00 2024-02-12 13:26:18.922385 2024-02-12 13:26:18.922385 \N +145 48 1 t 5.00 2024-02-12 13:26:18.91876 2024-02-12 13:26:19.127975 \N +149 49 2 f 10.00 2024-02-12 13:27:15.635029 2024-02-12 13:27:15.635029 \N +150 49 3 f 15.00 2024-02-12 13:27:15.637053 2024-02-12 13:27:15.637053 \N +148 49 1 t 5.00 2024-02-12 13:27:15.632982 2024-02-12 13:27:15.846784 \N +152 50 2 f 10.00 2024-02-12 13:28:12.467844 2024-02-12 13:28:12.467844 \N +153 50 3 f 15.00 2024-02-12 13:28:12.469693 2024-02-12 13:28:12.469693 \N +151 50 1 t 5.00 2024-02-12 13:28:12.465808 2024-02-12 13:28:12.677784 \N +155 51 2 f 10.00 2024-02-12 13:29:09.229583 2024-02-12 13:29:09.229583 \N +156 51 3 f 15.00 2024-02-12 13:29:09.231513 2024-02-12 13:29:09.231513 \N +154 51 1 t 5.00 2024-02-12 13:29:09.227606 2024-02-12 13:29:09.445828 \N +158 52 2 f 10.00 2024-02-12 13:30:06.106838 2024-02-12 13:30:06.106838 \N +159 52 3 f 15.00 2024-02-12 13:30:06.110115 2024-02-12 13:30:06.110115 \N +157 52 1 t 5.00 2024-02-12 13:30:06.104721 2024-02-12 13:30:06.330619 \N +161 53 2 f 10.00 2024-02-12 13:31:02.875468 2024-02-12 13:31:02.875468 \N +162 53 3 f 15.00 2024-02-12 13:31:02.87874 2024-02-12 13:31:02.87874 \N +160 53 1 t 5.00 2024-02-12 13:31:02.873407 2024-02-12 13:31:03.085073 \N +164 54 2 f 10.00 2024-02-12 13:31:59.838017 2024-02-12 13:31:59.838017 \N +165 54 3 f 15.00 2024-02-12 13:31:59.839932 2024-02-12 13:31:59.839932 \N +163 54 1 t 5.00 2024-02-12 13:31:59.835995 2024-02-12 13:32:00.049955 \N +167 55 2 f 10.00 2024-02-12 13:32:56.948876 2024-02-12 13:32:56.948876 \N +168 55 3 f 15.00 2024-02-12 13:32:56.950651 2024-02-12 13:32:56.950651 \N +166 55 1 t 5.00 2024-02-12 13:32:56.94701 2024-02-12 13:32:57.17302 \N +170 56 2 f 10.00 2024-02-12 13:33:53.799726 2024-02-12 13:33:53.799726 \N +171 56 3 f 15.00 2024-02-12 13:33:53.80166 2024-02-12 13:33:53.80166 \N +169 56 1 t 5.00 2024-02-12 13:33:53.797797 2024-02-12 13:33:54.015632 \N +173 57 2 f 10.00 2024-02-12 13:34:50.706442 2024-02-12 13:34:50.706442 \N +174 57 3 f 15.00 2024-02-12 13:34:50.70824 2024-02-12 13:34:50.70824 \N +172 57 1 t 5.00 2024-02-12 13:34:50.704515 2024-02-12 13:34:50.92433 \N +176 58 2 f 10.00 2024-02-12 13:35:47.452644 2024-02-12 13:35:47.452644 \N +177 58 3 f 15.00 2024-02-12 13:35:47.454642 2024-02-12 13:35:47.454642 \N +175 58 1 t 5.00 2024-02-12 13:35:47.450729 2024-02-12 13:35:47.657691 \N +179 59 2 f 10.00 2024-02-12 13:36:44.278344 2024-02-12 13:36:44.278344 \N +180 59 3 f 15.00 2024-02-12 13:36:44.280267 2024-02-12 13:36:44.280267 \N +178 59 1 t 5.00 2024-02-12 13:36:44.276328 2024-02-12 13:36:44.499591 \N +182 60 2 f 10.00 2024-02-12 13:37:41.311497 2024-02-12 13:37:41.311497 \N +183 60 3 f 15.00 2024-02-12 13:37:41.313532 2024-02-12 13:37:41.313532 \N +181 60 1 t 5.00 2024-02-12 13:37:41.309295 2024-02-12 13:37:41.623436 \N +185 61 2 f 10.00 2024-02-12 13:38:38.408505 2024-02-12 13:38:38.408505 \N +186 61 3 f 15.00 2024-02-12 13:38:38.410362 2024-02-12 13:38:38.410362 \N +184 61 1 t 5.00 2024-02-12 13:38:38.406197 2024-02-12 13:38:38.638198 \N +188 62 2 f 10.00 2024-02-12 13:39:35.177548 2024-02-12 13:39:35.177548 \N +189 62 3 f 15.00 2024-02-12 13:39:35.17935 2024-02-12 13:39:35.17935 \N +187 62 1 t 5.00 2024-02-12 13:39:35.175691 2024-02-12 13:39:35.493116 \N +191 63 2 f 10.00 2024-02-12 13:40:31.930625 2024-02-12 13:40:31.930625 \N +192 63 3 f 15.00 2024-02-12 13:40:31.932597 2024-02-12 13:40:31.932597 \N +190 63 1 t 5.00 2024-02-12 13:40:31.928839 2024-02-12 13:40:32.13548 \N +194 64 2 f 10.00 2024-02-12 13:41:28.642829 2024-02-12 13:41:28.642829 \N +195 64 3 f 15.00 2024-02-12 13:41:28.645025 2024-02-12 13:41:28.645025 \N +193 64 1 t 5.00 2024-02-12 13:41:28.640962 2024-02-12 13:41:28.851437 \N +197 65 2 f 10.00 2024-02-12 13:42:25.601077 2024-02-12 13:42:25.601077 \N +198 65 3 f 15.00 2024-02-12 13:42:25.603181 2024-02-12 13:42:25.603181 \N +196 65 1 t 5.00 2024-02-12 13:42:25.598977 2024-02-12 13:42:25.818611 \N +200 66 2 f 10.00 2024-02-12 13:43:22.510348 2024-02-12 13:43:22.510348 \N +201 66 3 f 15.00 2024-02-12 13:43:22.512617 2024-02-12 13:43:22.512617 \N +199 66 1 t 5.00 2024-02-12 13:43:22.50823 2024-02-12 13:43:22.715518 \N +203 67 2 f 10.00 2024-02-12 13:44:19.09626 2024-02-12 13:44:19.09626 \N +204 67 3 f 15.00 2024-02-12 13:44:19.097984 2024-02-12 13:44:19.097984 \N +202 67 1 t 5.00 2024-02-12 13:44:19.093444 2024-02-12 13:44:19.329231 \N +206 68 2 f 10.00 2024-02-12 13:45:15.915146 2024-02-12 13:45:15.915146 \N +207 68 3 f 15.00 2024-02-12 13:45:15.917562 2024-02-12 13:45:15.917562 \N +205 68 1 t 5.00 2024-02-12 13:45:15.912265 2024-02-12 13:45:16.121093 \N +420 139 3 f 15.00 2024-02-12 14:52:36.30802 2024-02-12 14:52:36.30802 \N +209 69 2 f 10.00 2024-02-12 13:46:12.759409 2024-02-12 13:46:12.759409 \N +210 69 3 f 15.00 2024-02-12 13:46:12.761472 2024-02-12 13:46:12.761472 \N +208 69 1 t 5.00 2024-02-12 13:46:12.75758 2024-02-12 13:46:12.968775 \N +215 71 2 f 10.00 2024-02-12 13:48:07.023546 2024-02-12 13:48:07.023546 \N +418 139 1 t 5.00 2024-02-12 14:52:36.302829 2024-02-12 14:52:36.519669 \N +216 71 3 f 15.00 2024-02-12 13:48:07.025956 2024-02-12 13:48:07.025956 \N +214 71 1 t 5.00 2024-02-12 13:48:07.021229 2024-02-12 13:48:07.232267 \N +242 80 2 f 10.00 2024-02-12 13:56:39.351264 2024-02-12 13:56:39.351264 \N +222 73 3 f 15.00 2024-02-12 13:50:00.751453 2024-02-12 13:50:00.751453 \N +221 73 2 f 10.00 2024-02-12 13:50:00.749627 2024-02-12 13:50:00.749627 \N +243 80 3 f 15.00 2024-02-12 13:56:39.352987 2024-02-12 13:56:39.352987 \N +220 73 1 t 5.00 2024-02-12 13:50:00.74669 2024-02-12 13:50:00.98004 \N +241 80 1 t 5.00 2024-02-12 13:56:39.3491 2024-02-12 13:56:39.571397 \N +635 211 2 f 10.00 2024-02-12 16:00:53.073074 2024-02-12 16:00:53.073074 \N +636 211 3 f 15.00 2024-02-12 16:00:53.075316 2024-02-12 16:00:53.075316 \N +254 84 2 f 10.00 2024-02-12 14:00:26.620887 2024-02-12 14:00:26.620887 \N +255 84 3 f 15.00 2024-02-12 14:00:26.622933 2024-02-12 14:00:26.622933 \N +253 84 1 t 5.00 2024-02-12 14:00:26.618045 2024-02-12 14:00:26.840215 \N +257 85 2 f 10.00 2024-02-12 14:01:23.652138 2024-02-12 14:01:23.652138 \N +258 85 3 f 15.00 2024-02-12 14:01:23.656109 2024-02-12 14:01:23.656109 \N +256 85 1 t 5.00 2024-02-12 14:01:23.643818 2024-02-12 14:01:23.870387 \N +263 87 2 f 10.00 2024-02-12 14:03:17.212817 2024-02-12 14:03:17.212817 \N +264 87 3 f 15.00 2024-02-12 14:03:17.215172 2024-02-12 14:03:17.215172 \N +262 87 1 t 5.00 2024-02-12 14:03:17.211028 2024-02-12 14:03:17.436005 \N +269 89 2 f 10.00 2024-02-12 14:05:10.98919 2024-02-12 14:05:10.98919 \N +270 89 3 f 15.00 2024-02-12 14:05:10.990995 2024-02-12 14:05:10.990995 \N +268 89 1 t 5.00 2024-02-12 14:05:10.987253 2024-02-12 14:05:11.192766 \N +275 91 2 f 10.00 2024-02-12 14:07:04.822632 2024-02-12 14:07:04.822632 \N +276 91 3 f 15.00 2024-02-12 14:07:04.82466 2024-02-12 14:07:04.82466 \N +274 91 1 t 5.00 2024-02-12 14:07:04.820495 2024-02-12 14:07:05.025944 \N +278 92 2 f 10.00 2024-02-12 14:08:01.69368 2024-02-12 14:08:01.69368 \N +279 92 3 f 15.00 2024-02-12 14:08:01.695475 2024-02-12 14:08:01.695475 \N +277 92 1 t 5.00 2024-02-12 14:08:01.691646 2024-02-12 14:08:01.93299 \N +281 93 2 f 10.00 2024-02-12 14:08:58.489736 2024-02-12 14:08:58.489736 \N +282 93 3 f 15.00 2024-02-12 14:08:58.491407 2024-02-12 14:08:58.491407 \N +280 93 1 t 5.00 2024-02-12 14:08:58.487533 2024-02-12 14:08:58.707431 \N +287 95 2 f 10.00 2024-02-12 14:10:52.356286 2024-02-12 14:10:52.356286 \N +288 95 3 f 15.00 2024-02-12 14:10:52.358269 2024-02-12 14:10:52.358269 \N +286 95 1 t 5.00 2024-02-12 14:10:52.354193 2024-02-12 14:10:52.563627 \N +290 96 2 f 10.00 2024-02-12 14:11:49.206309 2024-02-12 14:11:49.206309 \N +291 96 3 f 15.00 2024-02-12 14:11:49.20824 2024-02-12 14:11:49.20824 \N +289 96 1 t 5.00 2024-02-12 14:11:49.204177 2024-02-12 14:11:49.407575 \N +293 97 2 f 10.00 2024-02-12 14:12:46.118561 2024-02-12 14:12:46.118561 \N +294 97 3 f 15.00 2024-02-12 14:12:46.120431 2024-02-12 14:12:46.120431 \N +292 97 1 t 5.00 2024-02-12 14:12:46.116558 2024-02-12 14:12:46.326833 \N +299 99 2 f 10.00 2024-02-12 14:14:39.973083 2024-02-12 14:14:39.973083 \N +300 99 3 f 15.00 2024-02-12 14:14:39.975003 2024-02-12 14:14:39.975003 \N +298 99 1 t 5.00 2024-02-12 14:14:39.971337 2024-02-12 14:14:40.184062 \N +302 100 2 f 10.00 2024-02-12 14:15:36.857627 2024-02-12 14:15:36.857627 \N +303 100 3 f 15.00 2024-02-12 14:15:36.859428 2024-02-12 14:15:36.859428 \N +301 100 1 t 5.00 2024-02-12 14:15:36.855345 2024-02-12 14:15:37.077376 \N +305 101 2 f 10.00 2024-02-12 14:16:33.813466 2024-02-12 14:16:33.813466 \N +306 101 3 f 15.00 2024-02-12 14:16:33.815451 2024-02-12 14:16:33.815451 \N +304 101 1 t 5.00 2024-02-12 14:16:33.811659 2024-02-12 14:16:34.024424 \N +308 102 2 f 10.00 2024-02-12 14:17:30.822922 2024-02-12 14:17:30.822922 \N +309 102 3 f 15.00 2024-02-12 14:17:30.824717 2024-02-12 14:17:30.824717 \N +307 102 1 t 5.00 2024-02-12 14:17:30.821034 2024-02-12 14:17:31.031259 \N +311 103 2 f 10.00 2024-02-12 14:18:27.675044 2024-02-12 14:18:27.675044 \N +312 103 3 f 15.00 2024-02-12 14:18:27.676851 2024-02-12 14:18:27.676851 \N +310 103 1 t 5.00 2024-02-12 14:18:27.673127 2024-02-12 14:18:27.876338 \N +314 104 2 f 10.00 2024-02-12 14:19:24.476842 2024-02-12 14:19:24.476842 \N +315 104 3 f 15.00 2024-02-12 14:19:24.479164 2024-02-12 14:19:24.479164 \N +313 104 1 t 5.00 2024-02-12 14:19:24.474936 2024-02-12 14:19:24.694267 \N +317 105 2 f 10.00 2024-02-12 14:20:21.353471 2024-02-12 14:20:21.353471 \N +318 105 3 f 15.00 2024-02-12 14:20:21.355511 2024-02-12 14:20:21.355511 \N +316 105 1 t 5.00 2024-02-12 14:20:21.35148 2024-02-12 14:20:21.565434 \N +320 106 2 f 10.00 2024-02-12 14:21:18.748731 2024-02-12 14:21:18.748731 \N +321 106 3 f 15.00 2024-02-12 14:21:18.751033 2024-02-12 14:21:18.751033 \N +319 106 1 t 5.00 2024-02-12 14:21:18.746337 2024-02-12 14:21:18.976392 \N +329 109 2 f 10.00 2024-02-12 14:24:09.140632 2024-02-12 14:24:09.140632 \N +330 109 3 f 15.00 2024-02-12 14:24:09.142727 2024-02-12 14:24:09.142727 \N +328 109 1 t 5.00 2024-02-12 14:24:09.138466 2024-02-12 14:24:09.361893 \N +332 110 2 f 10.00 2024-02-12 14:25:05.907983 2024-02-12 14:25:05.907983 \N +333 110 3 f 15.00 2024-02-12 14:25:05.909978 2024-02-12 14:25:05.909978 \N +331 110 1 t 5.00 2024-02-12 14:25:05.90594 2024-02-12 14:25:06.123752 \N +341 113 2 f 10.00 2024-02-12 14:27:56.494442 2024-02-12 14:27:56.494442 \N +342 113 3 f 15.00 2024-02-12 14:27:56.49625 2024-02-12 14:27:56.49625 \N +340 113 1 t 5.00 2024-02-12 14:27:56.492655 2024-02-12 14:27:56.695973 \N +359 119 2 f 10.00 2024-02-12 14:33:37.910288 2024-02-12 14:33:37.910288 \N +360 119 3 f 15.00 2024-02-12 14:33:37.912015 2024-02-12 14:33:37.912015 \N +358 119 1 t 5.00 2024-02-12 14:33:37.908445 2024-02-12 14:33:38.121519 \N +362 120 2 f 10.00 2024-02-12 14:34:34.703301 2024-02-12 14:34:34.703301 \N +363 120 3 f 15.00 2024-02-12 14:34:34.706116 2024-02-12 14:34:34.706116 \N +361 120 1 t 5.00 2024-02-12 14:34:34.700989 2024-02-12 14:34:34.920043 \N +368 122 2 f 10.00 2024-02-12 14:36:28.710105 2024-02-12 14:36:28.710105 \N +369 122 3 f 15.00 2024-02-12 14:36:28.712473 2024-02-12 14:36:28.712473 \N +367 122 1 t 5.00 2024-02-12 14:36:28.707578 2024-02-12 14:36:28.947595 \N +371 123 2 f 10.00 2024-02-12 14:37:25.598967 2024-02-12 14:37:25.598967 \N +372 123 3 f 15.00 2024-02-12 14:37:25.601025 2024-02-12 14:37:25.601025 \N +370 123 1 t 5.00 2024-02-12 14:37:25.596895 2024-02-12 14:37:25.802646 \N +380 126 2 f 10.00 2024-02-12 14:40:16.519426 2024-02-12 14:40:16.519426 \N +381 126 3 f 15.00 2024-02-12 14:40:16.521436 2024-02-12 14:40:16.521436 \N +379 126 1 t 5.00 2024-02-12 14:40:16.517218 2024-02-12 14:40:16.843208 \N +383 127 2 f 10.00 2024-02-12 14:41:13.365036 2024-02-12 14:41:13.365036 \N +384 127 3 f 15.00 2024-02-12 14:41:13.367049 2024-02-12 14:41:13.367049 \N +382 127 1 t 5.00 2024-02-12 14:41:13.362769 2024-02-12 14:41:13.58656 \N +392 130 2 f 10.00 2024-02-12 14:44:04.367612 2024-02-12 14:44:04.367612 \N +212 70 2 f 10.00 2024-02-12 13:47:09.991399 2024-02-12 13:47:09.991399 \N +213 70 3 f 15.00 2024-02-12 13:47:09.993663 2024-02-12 13:47:09.993663 \N +211 70 1 t 5.00 2024-02-12 13:47:09.989129 2024-02-12 13:47:10.209908 \N +634 211 1 t 5.00 2024-02-12 16:00:53.071019 2024-02-12 16:00:53.289629 \N +219 72 3 f 15.00 2024-02-12 13:49:03.892165 2024-02-12 13:49:03.892165 \N +218 72 2 f 10.00 2024-02-12 13:49:03.890062 2024-02-12 13:49:03.890062 \N +217 72 1 t 5.00 2024-02-12 13:49:03.887838 2024-02-12 13:49:04.099905 \N +926 308 2 f 10.00 2024-02-12 17:33:09.161577 2024-02-12 17:33:09.161577 \N +224 74 2 f 10.00 2024-02-12 13:50:57.650049 2024-02-12 13:50:57.650049 \N +225 74 3 f 15.00 2024-02-12 13:50:57.651967 2024-02-12 13:50:57.651967 \N +223 74 1 t 5.00 2024-02-12 13:50:57.648017 2024-02-12 13:50:57.851695 \N +245 81 2 f 10.00 2024-02-12 13:57:36.138362 2024-02-12 13:57:36.138362 \N +246 81 3 f 15.00 2024-02-12 13:57:36.14017 2024-02-12 13:57:36.14017 \N +227 75 2 f 10.00 2024-02-12 13:51:54.695098 2024-02-12 13:51:54.695098 \N +228 75 3 f 15.00 2024-02-12 13:51:54.699118 2024-02-12 13:51:54.699118 \N +226 75 1 t 5.00 2024-02-12 13:51:54.692753 2024-02-12 13:51:54.938414 \N +244 81 1 t 5.00 2024-02-12 13:57:36.136446 2024-02-12 13:57:36.461415 \N +927 308 3 f 15.00 2024-02-12 17:33:09.16325 2024-02-12 17:33:09.16325 \N +230 76 2 f 10.00 2024-02-12 13:52:51.699047 2024-02-12 13:52:51.699047 \N +231 76 3 f 15.00 2024-02-12 13:52:51.700821 2024-02-12 13:52:51.700821 \N +229 76 1 t 5.00 2024-02-12 13:52:51.697117 2024-02-12 13:52:51.902531 \N +233 77 2 f 10.00 2024-02-12 13:53:48.541098 2024-02-12 13:53:48.541098 \N +234 77 3 f 15.00 2024-02-12 13:53:48.543578 2024-02-12 13:53:48.543578 \N +232 77 1 t 5.00 2024-02-12 13:53:48.537206 2024-02-12 13:53:48.782704 \N +925 308 1 t 5.00 2024-02-12 17:33:09.159751 2024-02-12 17:33:09.36575 \N +248 82 2 f 10.00 2024-02-12 13:58:32.953101 2024-02-12 13:58:32.953101 \N +236 78 2 f 10.00 2024-02-12 13:54:45.418493 2024-02-12 13:54:45.418493 \N +237 78 3 f 15.00 2024-02-12 13:54:45.420561 2024-02-12 13:54:45.420561 \N +235 78 1 t 5.00 2024-02-12 13:54:45.416414 2024-02-12 13:54:45.647853 \N +249 82 3 f 15.00 2024-02-12 13:58:32.955187 2024-02-12 13:58:32.955187 \N +247 82 1 t 5.00 2024-02-12 13:58:32.950721 2024-02-12 13:58:33.164656 \N +251 83 2 f 10.00 2024-02-12 13:59:29.817697 2024-02-12 13:59:29.817697 \N +252 83 3 f 15.00 2024-02-12 13:59:29.819489 2024-02-12 13:59:29.819489 \N +250 83 1 t 5.00 2024-02-12 13:59:29.81569 2024-02-12 13:59:30.031658 \N +260 86 2 f 10.00 2024-02-12 14:02:20.523373 2024-02-12 14:02:20.523373 \N +261 86 3 f 15.00 2024-02-12 14:02:20.525659 2024-02-12 14:02:20.525659 \N +259 86 1 t 5.00 2024-02-12 14:02:20.520929 2024-02-12 14:02:20.783608 \N +266 88 2 f 10.00 2024-02-12 14:04:14.187239 2024-02-12 14:04:14.187239 \N +267 88 3 f 15.00 2024-02-12 14:04:14.18997 2024-02-12 14:04:14.18997 \N +265 88 1 t 5.00 2024-02-12 14:04:14.185257 2024-02-12 14:04:14.402009 \N +272 90 2 f 10.00 2024-02-12 14:06:08.007281 2024-02-12 14:06:08.007281 \N +273 90 3 f 15.00 2024-02-12 14:06:08.009616 2024-02-12 14:06:08.009616 \N +271 90 1 t 5.00 2024-02-12 14:06:08.005429 2024-02-12 14:06:08.223887 \N +284 94 2 f 10.00 2024-02-12 14:09:55.457062 2024-02-12 14:09:55.457062 \N +285 94 3 f 15.00 2024-02-12 14:09:55.459032 2024-02-12 14:09:55.459032 \N +283 94 1 t 5.00 2024-02-12 14:09:55.454636 2024-02-12 14:09:55.668741 \N +296 98 2 f 10.00 2024-02-12 14:13:43.140597 2024-02-12 14:13:43.140597 \N +297 98 3 f 15.00 2024-02-12 14:13:43.14285 2024-02-12 14:13:43.14285 \N +295 98 1 t 5.00 2024-02-12 14:13:43.138027 2024-02-12 14:13:43.359612 \N +323 107 2 f 10.00 2024-02-12 14:22:15.406506 2024-02-12 14:22:15.406506 \N +324 107 3 f 15.00 2024-02-12 14:22:15.408586 2024-02-12 14:22:15.408586 \N +322 107 1 t 5.00 2024-02-12 14:22:15.40464 2024-02-12 14:22:15.623784 \N +326 108 2 f 10.00 2024-02-12 14:23:12.395266 2024-02-12 14:23:12.395266 \N +327 108 3 f 15.00 2024-02-12 14:23:12.397063 2024-02-12 14:23:12.397063 \N +325 108 1 t 5.00 2024-02-12 14:23:12.393331 2024-02-12 14:23:12.632301 \N +335 111 2 f 10.00 2024-02-12 14:26:02.766752 2024-02-12 14:26:02.766752 \N +336 111 3 f 15.00 2024-02-12 14:26:02.76869 2024-02-12 14:26:02.76869 \N +334 111 1 t 5.00 2024-02-12 14:26:02.764781 2024-02-12 14:26:03.070688 \N +338 112 2 f 10.00 2024-02-12 14:26:59.583516 2024-02-12 14:26:59.583516 \N +339 112 3 f 15.00 2024-02-12 14:26:59.585262 2024-02-12 14:26:59.585262 \N +337 112 1 t 5.00 2024-02-12 14:26:59.581697 2024-02-12 14:26:59.791796 \N +344 114 2 f 10.00 2024-02-12 14:28:53.435209 2024-02-12 14:28:53.435209 \N +345 114 3 f 15.00 2024-02-12 14:28:53.436917 2024-02-12 14:28:53.436917 \N +343 114 1 t 5.00 2024-02-12 14:28:53.433386 2024-02-12 14:28:53.641422 \N +347 115 2 f 10.00 2024-02-12 14:29:50.535083 2024-02-12 14:29:50.535083 \N +348 115 3 f 15.00 2024-02-12 14:29:50.536814 2024-02-12 14:29:50.536814 \N +346 115 1 t 5.00 2024-02-12 14:29:50.533219 2024-02-12 14:29:50.752759 \N +350 116 2 f 10.00 2024-02-12 14:30:47.195058 2024-02-12 14:30:47.195058 \N +351 116 3 f 15.00 2024-02-12 14:30:47.196879 2024-02-12 14:30:47.196879 \N +349 116 1 t 5.00 2024-02-12 14:30:47.193155 2024-02-12 14:30:47.393009 \N +353 117 2 f 10.00 2024-02-12 14:31:44.04596 2024-02-12 14:31:44.04596 \N +354 117 3 f 15.00 2024-02-12 14:31:44.047736 2024-02-12 14:31:44.047736 \N +352 117 1 t 5.00 2024-02-12 14:31:44.044123 2024-02-12 14:31:44.27393 \N +356 118 2 f 10.00 2024-02-12 14:32:40.916726 2024-02-12 14:32:40.916726 \N +357 118 3 f 15.00 2024-02-12 14:32:40.918335 2024-02-12 14:32:40.918335 \N +355 118 1 t 5.00 2024-02-12 14:32:40.914972 2024-02-12 14:32:41.115855 \N +365 121 2 f 10.00 2024-02-12 14:35:31.642542 2024-02-12 14:35:31.642542 \N +366 121 3 f 15.00 2024-02-12 14:35:31.644226 2024-02-12 14:35:31.644226 \N +364 121 1 t 5.00 2024-02-12 14:35:31.640717 2024-02-12 14:35:31.846884 \N +374 124 2 f 10.00 2024-02-12 14:38:22.650416 2024-02-12 14:38:22.650416 \N +375 124 3 f 15.00 2024-02-12 14:38:22.652502 2024-02-12 14:38:22.652502 \N +373 124 1 t 5.00 2024-02-12 14:38:22.648461 2024-02-12 14:38:22.869882 \N +377 125 2 f 10.00 2024-02-12 14:39:19.553536 2024-02-12 14:39:19.553536 \N +378 125 3 f 15.00 2024-02-12 14:39:19.555734 2024-02-12 14:39:19.555734 \N +376 125 1 t 5.00 2024-02-12 14:39:19.54995 2024-02-12 14:39:19.771415 \N +386 128 2 f 10.00 2024-02-12 14:42:10.245927 2024-02-12 14:42:10.245927 \N +387 128 3 f 15.00 2024-02-12 14:42:10.247983 2024-02-12 14:42:10.247983 \N +385 128 1 t 5.00 2024-02-12 14:42:10.243776 2024-02-12 14:42:10.46554 \N +389 129 2 f 10.00 2024-02-12 14:43:07.577523 2024-02-12 14:43:07.577523 \N +390 129 3 f 15.00 2024-02-12 14:43:07.579596 2024-02-12 14:43:07.579596 \N +388 129 1 t 5.00 2024-02-12 14:43:07.575161 2024-02-12 14:43:07.798604 \N +393 130 3 f 15.00 2024-02-12 14:44:04.369644 2024-02-12 14:44:04.369644 \N +391 130 1 t 5.00 2024-02-12 14:44:04.36569 2024-02-12 14:44:04.585789 \N +395 131 2 f 10.00 2024-02-12 14:45:01.288884 2024-02-12 14:45:01.288884 \N +396 131 3 f 15.00 2024-02-12 14:45:01.291138 2024-02-12 14:45:01.291138 \N +394 131 1 t 5.00 2024-02-12 14:45:01.279919 2024-02-12 14:45:01.499452 \N +398 132 2 f 10.00 2024-02-12 14:45:58.106348 2024-02-12 14:45:58.106348 \N +399 132 3 f 15.00 2024-02-12 14:45:58.108318 2024-02-12 14:45:58.108318 \N +397 132 1 t 5.00 2024-02-12 14:45:58.104194 2024-02-12 14:45:58.314682 \N +401 133 2 f 10.00 2024-02-12 14:46:55.028753 2024-02-12 14:46:55.028753 \N +402 133 3 f 15.00 2024-02-12 14:46:55.030565 2024-02-12 14:46:55.030565 \N +400 133 1 t 5.00 2024-02-12 14:46:55.026577 2024-02-12 14:46:55.240869 \N +422 140 2 f 10.00 2024-02-12 14:53:33.116174 2024-02-12 14:53:33.116174 \N +423 140 3 f 15.00 2024-02-12 14:53:33.118832 2024-02-12 14:53:33.118832 \N +404 134 2 f 10.00 2024-02-12 14:47:51.711088 2024-02-12 14:47:51.711088 \N +405 134 3 f 15.00 2024-02-12 14:47:51.712913 2024-02-12 14:47:51.712913 \N +403 134 1 t 5.00 2024-02-12 14:47:51.709198 2024-02-12 14:47:51.927023 \N +421 140 1 t 5.00 2024-02-12 14:53:33.114344 2024-02-12 14:53:33.344564 \N +1857 618 3 f 15.00 2024-02-12 21:54:42.307001 2024-02-12 21:54:42.307001 \N +407 135 2 f 10.00 2024-02-12 14:48:48.510494 2024-02-12 14:48:48.510494 \N +408 135 3 f 15.00 2024-02-12 14:48:48.512123 2024-02-12 14:48:48.512123 \N +406 135 1 t 5.00 2024-02-12 14:48:48.508791 2024-02-12 14:48:48.727511 \N +410 136 2 f 10.00 2024-02-12 14:49:45.463437 2024-02-12 14:49:45.463437 \N +411 136 3 f 15.00 2024-02-12 14:49:45.465679 2024-02-12 14:49:45.465679 \N +409 136 1 t 5.00 2024-02-12 14:49:45.461265 2024-02-12 14:49:45.686455 \N +1332 443 3 f 15.00 2024-02-12 19:41:15.857198 2024-02-12 19:41:15.857198 \N +425 141 2 f 10.00 2024-02-12 14:54:30.118035 2024-02-12 14:54:30.118035 \N +413 137 2 f 10.00 2024-02-12 14:50:42.517811 2024-02-12 14:50:42.517811 \N +414 137 3 f 15.00 2024-02-12 14:50:42.521109 2024-02-12 14:50:42.521109 \N +412 137 1 t 5.00 2024-02-12 14:50:42.515502 2024-02-12 14:50:42.750941 \N +426 141 3 f 15.00 2024-02-12 14:54:30.120058 2024-02-12 14:54:30.120058 \N +424 141 1 t 5.00 2024-02-12 14:54:30.116023 2024-02-12 14:54:30.332475 \N +416 138 2 f 10.00 2024-02-12 14:51:39.419555 2024-02-12 14:51:39.419555 \N +417 138 3 f 15.00 2024-02-12 14:51:39.421464 2024-02-12 14:51:39.421464 \N +415 138 1 t 5.00 2024-02-12 14:51:39.417604 2024-02-12 14:51:39.633551 \N +1330 443 1 t 5.00 2024-02-12 19:41:15.853488 2024-02-12 19:41:16.073887 \N +1856 618 2 f 10.00 2024-02-12 21:54:42.305022 2024-02-12 21:54:42.305022 \N +428 142 2 f 10.00 2024-02-12 14:55:26.993593 2024-02-12 14:55:26.993593 \N +429 142 3 f 15.00 2024-02-12 14:55:26.995436 2024-02-12 14:55:26.995436 \N +427 142 1 t 5.00 2024-02-12 14:55:26.99171 2024-02-12 14:55:27.218794 \N +431 143 2 f 10.00 2024-02-12 14:56:23.850898 2024-02-12 14:56:23.850898 \N +432 143 3 f 15.00 2024-02-12 14:56:23.852631 2024-02-12 14:56:23.852631 \N +430 143 1 t 5.00 2024-02-12 14:56:23.84893 2024-02-12 14:56:24.062685 \N +434 144 2 f 10.00 2024-02-12 14:57:20.80234 2024-02-12 14:57:20.80234 \N +435 144 3 f 15.00 2024-02-12 14:57:20.804444 2024-02-12 14:57:20.804444 \N +433 144 1 t 5.00 2024-02-12 14:57:20.800221 2024-02-12 14:57:21.037807 \N +437 145 2 f 10.00 2024-02-12 14:58:17.583737 2024-02-12 14:58:17.583737 \N +438 145 3 f 15.00 2024-02-12 14:58:17.585687 2024-02-12 14:58:17.585687 \N +436 145 1 t 5.00 2024-02-12 14:58:17.581655 2024-02-12 14:58:17.823877 \N +440 146 2 f 10.00 2024-02-12 14:59:14.47645 2024-02-12 14:59:14.47645 \N +441 146 3 f 15.00 2024-02-12 14:59:14.478544 2024-02-12 14:59:14.478544 \N +439 146 1 t 5.00 2024-02-12 14:59:14.474331 2024-02-12 14:59:14.731051 \N +443 147 2 f 10.00 2024-02-12 15:00:11.19025 2024-02-12 15:00:11.19025 \N +444 147 3 f 15.00 2024-02-12 15:00:11.192066 2024-02-12 15:00:11.192066 \N +442 147 1 t 5.00 2024-02-12 15:00:11.18827 2024-02-12 15:00:11.420391 \N +446 148 2 f 10.00 2024-02-12 15:01:08.20904 2024-02-12 15:01:08.20904 \N +447 148 3 f 15.00 2024-02-12 15:01:08.210956 2024-02-12 15:01:08.210956 \N +445 148 1 t 5.00 2024-02-12 15:01:08.205706 2024-02-12 15:01:08.518715 \N +449 149 2 f 10.00 2024-02-12 15:02:05.272229 2024-02-12 15:02:05.272229 \N +450 149 3 f 15.00 2024-02-12 15:02:05.274004 2024-02-12 15:02:05.274004 \N +448 149 1 t 5.00 2024-02-12 15:02:05.27022 2024-02-12 15:02:05.580912 \N +452 150 2 f 10.00 2024-02-12 15:03:02.166881 2024-02-12 15:03:02.166881 \N +453 150 3 f 15.00 2024-02-12 15:03:02.168933 2024-02-12 15:03:02.168933 \N +451 150 1 t 5.00 2024-02-12 15:03:02.164959 2024-02-12 15:03:02.380831 \N +455 151 2 f 10.00 2024-02-12 15:03:58.92798 2024-02-12 15:03:58.92798 \N +456 151 3 f 15.00 2024-02-12 15:03:58.930194 2024-02-12 15:03:58.930194 \N +454 151 1 t 5.00 2024-02-12 15:03:58.925854 2024-02-12 15:03:59.137232 \N +458 152 2 f 10.00 2024-02-12 15:04:56.027006 2024-02-12 15:04:56.027006 \N +459 152 3 f 15.00 2024-02-12 15:04:56.029373 2024-02-12 15:04:56.029373 \N +457 152 1 t 5.00 2024-02-12 15:04:56.024718 2024-02-12 15:04:56.246517 \N +461 153 2 f 10.00 2024-02-12 15:05:52.809043 2024-02-12 15:05:52.809043 \N +462 153 3 f 15.00 2024-02-12 15:05:52.811051 2024-02-12 15:05:52.811051 \N +460 153 1 t 5.00 2024-02-12 15:05:52.804917 2024-02-12 15:05:53.018529 \N +464 154 2 f 10.00 2024-02-12 15:06:49.662251 2024-02-12 15:06:49.662251 \N +465 154 3 f 15.00 2024-02-12 15:06:49.664167 2024-02-12 15:06:49.664167 \N +463 154 1 t 5.00 2024-02-12 15:06:49.659261 2024-02-12 15:06:49.93126 \N +467 155 2 f 10.00 2024-02-12 15:07:46.825329 2024-02-12 15:07:46.825329 \N +468 155 3 f 15.00 2024-02-12 15:07:46.82727 2024-02-12 15:07:46.82727 \N +466 155 1 t 5.00 2024-02-12 15:07:46.823478 2024-02-12 15:07:47.03209 \N +470 156 2 f 10.00 2024-02-12 15:08:43.716696 2024-02-12 15:08:43.716696 \N +471 156 3 f 15.00 2024-02-12 15:08:43.718621 2024-02-12 15:08:43.718621 \N +469 156 1 t 5.00 2024-02-12 15:08:43.714771 2024-02-12 15:08:43.925851 \N +473 157 2 f 10.00 2024-02-12 15:09:40.645879 2024-02-12 15:09:40.645879 \N +474 157 3 f 15.00 2024-02-12 15:09:40.647945 2024-02-12 15:09:40.647945 \N +472 157 1 t 5.00 2024-02-12 15:09:40.643745 2024-02-12 15:09:40.853433 \N +476 158 2 f 10.00 2024-02-12 15:10:37.477708 2024-02-12 15:10:37.477708 \N +477 158 3 f 15.00 2024-02-12 15:10:37.479824 2024-02-12 15:10:37.479824 \N +475 158 1 t 5.00 2024-02-12 15:10:37.475277 2024-02-12 15:10:37.717044 \N +479 159 2 f 10.00 2024-02-12 15:11:34.381287 2024-02-12 15:11:34.381287 \N +480 159 3 f 15.00 2024-02-12 15:11:34.38324 2024-02-12 15:11:34.38324 \N +478 159 1 t 5.00 2024-02-12 15:11:34.379412 2024-02-12 15:11:34.593639 \N +482 160 2 f 10.00 2024-02-12 15:12:31.399256 2024-02-12 15:12:31.399256 \N +483 160 3 f 15.00 2024-02-12 15:12:31.401242 2024-02-12 15:12:31.401242 \N +481 160 1 t 5.00 2024-02-12 15:12:31.397111 2024-02-12 15:12:31.609439 \N +485 161 2 f 10.00 2024-02-12 15:13:28.047261 2024-02-12 15:13:28.047261 \N +486 161 3 f 15.00 2024-02-12 15:13:28.049451 2024-02-12 15:13:28.049451 \N +484 161 1 t 5.00 2024-02-12 15:13:28.04523 2024-02-12 15:13:28.262313 \N +488 162 2 f 10.00 2024-02-12 15:14:25.101887 2024-02-12 15:14:25.101887 \N +489 162 3 f 15.00 2024-02-12 15:14:25.103928 2024-02-12 15:14:25.103928 \N +487 162 1 t 5.00 2024-02-12 15:14:25.100037 2024-02-12 15:14:25.324968 \N +491 163 2 f 10.00 2024-02-12 15:15:21.930438 2024-02-12 15:15:21.930438 \N +492 163 3 f 15.00 2024-02-12 15:15:21.932471 2024-02-12 15:15:21.932471 \N +490 163 1 t 5.00 2024-02-12 15:15:21.928071 2024-02-12 15:15:22.140839 \N +494 164 2 f 10.00 2024-02-12 15:16:18.984664 2024-02-12 15:16:18.984664 \N +495 164 3 f 15.00 2024-02-12 15:16:18.986554 2024-02-12 15:16:18.986554 \N +493 164 1 t 5.00 2024-02-12 15:16:18.982706 2024-02-12 15:16:19.199513 \N +497 165 2 f 10.00 2024-02-12 15:17:15.853296 2024-02-12 15:17:15.853296 \N +498 165 3 f 15.00 2024-02-12 15:17:15.855072 2024-02-12 15:17:15.855072 \N +496 165 1 t 5.00 2024-02-12 15:17:15.851367 2024-02-12 15:17:16.074198 \N +500 166 2 f 10.00 2024-02-12 15:18:12.684328 2024-02-12 15:18:12.684328 \N +501 166 3 f 15.00 2024-02-12 15:18:12.686371 2024-02-12 15:18:12.686371 \N +499 166 1 t 5.00 2024-02-12 15:18:12.682206 2024-02-12 15:18:12.891445 \N +503 167 2 f 10.00 2024-02-12 15:19:09.567451 2024-02-12 15:19:09.567451 \N +504 167 3 f 15.00 2024-02-12 15:19:09.569406 2024-02-12 15:19:09.569406 \N +502 167 1 t 5.00 2024-02-12 15:19:09.565539 2024-02-12 15:19:09.780793 \N +638 212 2 f 10.00 2024-02-12 16:01:50.153025 2024-02-12 16:01:50.153025 \N +639 212 3 f 15.00 2024-02-12 16:01:50.154847 2024-02-12 16:01:50.154847 \N +506 168 2 f 10.00 2024-02-12 15:20:06.537799 2024-02-12 15:20:06.537799 \N +507 168 3 f 15.00 2024-02-12 15:20:06.53973 2024-02-12 15:20:06.53973 \N +505 168 1 t 5.00 2024-02-12 15:20:06.535829 2024-02-12 15:20:06.758136 \N +637 212 1 t 5.00 2024-02-12 16:01:50.151282 2024-02-12 16:01:50.3635 \N +929 309 2 f 10.00 2024-02-12 17:34:05.802385 2024-02-12 17:34:05.802385 \N +509 169 2 f 10.00 2024-02-12 15:21:03.442318 2024-02-12 15:21:03.442318 \N +510 169 3 f 15.00 2024-02-12 15:21:03.462251 2024-02-12 15:21:03.462251 \N +508 169 1 t 5.00 2024-02-12 15:21:03.431304 2024-02-12 15:21:03.743396 \N +512 170 2 f 10.00 2024-02-12 15:22:00.179765 2024-02-12 15:22:00.179765 \N +513 170 3 f 15.00 2024-02-12 15:22:00.181741 2024-02-12 15:22:00.181741 \N +511 170 1 t 5.00 2024-02-12 15:22:00.177927 2024-02-12 15:22:00.39177 \N +515 171 2 f 10.00 2024-02-12 15:22:57.173467 2024-02-12 15:22:57.173467 \N +516 171 3 f 15.00 2024-02-12 15:22:57.175387 2024-02-12 15:22:57.175387 \N +514 171 1 t 5.00 2024-02-12 15:22:57.17145 2024-02-12 15:22:57.409811 \N +518 172 2 f 10.00 2024-02-12 15:23:53.998601 2024-02-12 15:23:53.998601 \N +519 172 3 f 15.00 2024-02-12 15:23:54.000551 2024-02-12 15:23:54.000551 \N +517 172 1 t 5.00 2024-02-12 15:23:53.996733 2024-02-12 15:23:54.204466 \N +521 173 2 f 10.00 2024-02-12 15:24:51.038536 2024-02-12 15:24:51.038536 \N +522 173 3 f 15.00 2024-02-12 15:24:51.040377 2024-02-12 15:24:51.040377 \N +520 173 1 t 5.00 2024-02-12 15:24:51.036599 2024-02-12 15:24:51.260409 \N +524 174 2 f 10.00 2024-02-12 15:25:47.879709 2024-02-12 15:25:47.879709 \N +525 174 3 f 15.00 2024-02-12 15:25:47.881873 2024-02-12 15:25:47.881873 \N +523 174 1 t 5.00 2024-02-12 15:25:47.877365 2024-02-12 15:25:48.091496 \N +527 175 2 f 10.00 2024-02-12 15:26:44.750099 2024-02-12 15:26:44.750099 \N +528 175 3 f 15.00 2024-02-12 15:26:44.751858 2024-02-12 15:26:44.751858 \N +526 175 1 t 5.00 2024-02-12 15:26:44.748134 2024-02-12 15:26:44.967475 \N +530 176 2 f 10.00 2024-02-12 15:27:41.546507 2024-02-12 15:27:41.546507 \N +531 176 3 f 15.00 2024-02-12 15:27:41.548923 2024-02-12 15:27:41.548923 \N +529 176 1 t 5.00 2024-02-12 15:27:41.54443 2024-02-12 15:27:41.752662 \N +533 177 2 f 10.00 2024-02-12 15:28:38.479374 2024-02-12 15:28:38.479374 \N +534 177 3 f 15.00 2024-02-12 15:28:38.481199 2024-02-12 15:28:38.481199 \N +532 177 1 t 5.00 2024-02-12 15:28:38.477397 2024-02-12 15:28:38.693333 \N +536 178 2 f 10.00 2024-02-12 15:29:35.471284 2024-02-12 15:29:35.471284 \N +537 178 3 f 15.00 2024-02-12 15:29:35.473286 2024-02-12 15:29:35.473286 \N +535 178 1 t 5.00 2024-02-12 15:29:35.469372 2024-02-12 15:29:35.689124 \N +539 179 2 f 10.00 2024-02-12 15:30:32.153458 2024-02-12 15:30:32.153458 \N +540 179 3 f 15.00 2024-02-12 15:30:32.155638 2024-02-12 15:30:32.155638 \N +538 179 1 t 5.00 2024-02-12 15:30:32.151434 2024-02-12 15:30:32.367528 \N +542 180 2 f 10.00 2024-02-12 15:31:28.953673 2024-02-12 15:31:28.953673 \N +543 180 3 f 15.00 2024-02-12 15:31:28.955682 2024-02-12 15:31:28.955682 \N +541 180 1 t 5.00 2024-02-12 15:31:28.950145 2024-02-12 15:31:29.199094 \N +545 181 2 f 10.00 2024-02-12 15:32:25.737559 2024-02-12 15:32:25.737559 \N +546 181 3 f 15.00 2024-02-12 15:32:25.739304 2024-02-12 15:32:25.739304 \N +544 181 1 t 5.00 2024-02-12 15:32:25.735621 2024-02-12 15:32:25.938545 \N +548 182 2 f 10.00 2024-02-12 15:33:22.416725 2024-02-12 15:33:22.416725 \N +549 182 3 f 15.00 2024-02-12 15:33:22.41844 2024-02-12 15:33:22.41844 \N +547 182 1 t 5.00 2024-02-12 15:33:22.41483 2024-02-12 15:33:22.629604 \N +551 183 2 f 10.00 2024-02-12 15:34:19.232212 2024-02-12 15:34:19.232212 \N +552 183 3 f 15.00 2024-02-12 15:34:19.234076 2024-02-12 15:34:19.234076 \N +550 183 1 t 5.00 2024-02-12 15:34:19.23016 2024-02-12 15:34:19.441562 \N +554 184 2 f 10.00 2024-02-12 15:35:16.093628 2024-02-12 15:35:16.093628 \N +555 184 3 f 15.00 2024-02-12 15:35:16.095529 2024-02-12 15:35:16.095529 \N +553 184 1 t 5.00 2024-02-12 15:35:16.091601 2024-02-12 15:35:16.308136 \N +557 185 2 f 10.00 2024-02-12 15:36:12.856303 2024-02-12 15:36:12.856303 \N +558 185 3 f 15.00 2024-02-12 15:36:12.860011 2024-02-12 15:36:12.860011 \N +556 185 1 t 5.00 2024-02-12 15:36:12.854246 2024-02-12 15:36:13.158 \N +560 186 2 f 10.00 2024-02-12 15:37:09.813913 2024-02-12 15:37:09.813913 \N +561 186 3 f 15.00 2024-02-12 15:37:09.815845 2024-02-12 15:37:09.815845 \N +559 186 1 t 5.00 2024-02-12 15:37:09.812025 2024-02-12 15:37:10.019106 \N +563 187 2 f 10.00 2024-02-12 15:38:06.654869 2024-02-12 15:38:06.654869 \N +564 187 3 f 15.00 2024-02-12 15:38:06.656896 2024-02-12 15:38:06.656896 \N +562 187 1 t 5.00 2024-02-12 15:38:06.652792 2024-02-12 15:38:06.867038 \N +566 188 2 f 10.00 2024-02-12 15:39:03.676035 2024-02-12 15:39:03.676035 \N +567 188 3 f 15.00 2024-02-12 15:39:03.67803 2024-02-12 15:39:03.67803 \N +565 188 1 t 5.00 2024-02-12 15:39:03.673894 2024-02-12 15:39:03.901557 \N +569 189 2 f 10.00 2024-02-12 15:40:00.534123 2024-02-12 15:40:00.534123 \N +570 189 3 f 15.00 2024-02-12 15:40:00.53632 2024-02-12 15:40:00.53632 \N +568 189 1 t 5.00 2024-02-12 15:40:00.531916 2024-02-12 15:40:00.746579 \N +572 190 2 f 10.00 2024-02-12 15:40:57.36955 2024-02-12 15:40:57.36955 \N +573 190 3 f 15.00 2024-02-12 15:40:57.37137 2024-02-12 15:40:57.37137 \N +571 190 1 t 5.00 2024-02-12 15:40:57.367624 2024-02-12 15:40:57.585324 \N +575 191 2 f 10.00 2024-02-12 15:41:54.197738 2024-02-12 15:41:54.197738 \N +576 191 3 f 15.00 2024-02-12 15:41:54.199599 2024-02-12 15:41:54.199599 \N +574 191 1 t 5.00 2024-02-12 15:41:54.195649 2024-02-12 15:41:54.505063 \N +578 192 2 f 10.00 2024-02-12 15:42:50.987985 2024-02-12 15:42:50.987985 \N +579 192 3 f 15.00 2024-02-12 15:42:50.989736 2024-02-12 15:42:50.989736 \N +577 192 1 t 5.00 2024-02-12 15:42:50.985927 2024-02-12 15:42:51.207665 \N +581 193 2 f 10.00 2024-02-12 15:43:47.890461 2024-02-12 15:43:47.890461 \N +582 193 3 f 15.00 2024-02-12 15:43:47.89251 2024-02-12 15:43:47.89251 \N +580 193 1 t 5.00 2024-02-12 15:43:47.888272 2024-02-12 15:43:48.099249 \N +584 194 2 f 10.00 2024-02-12 15:44:44.73737 2024-02-12 15:44:44.73737 \N +585 194 3 f 15.00 2024-02-12 15:44:44.739492 2024-02-12 15:44:44.739492 \N +583 194 1 t 5.00 2024-02-12 15:44:44.735145 2024-02-12 15:44:44.940032 \N +587 195 2 f 10.00 2024-02-12 15:45:41.537894 2024-02-12 15:45:41.537894 \N +588 195 3 f 15.00 2024-02-12 15:45:41.539774 2024-02-12 15:45:41.539774 \N +586 195 1 t 5.00 2024-02-12 15:45:41.536144 2024-02-12 15:45:41.742494 \N +590 196 2 f 10.00 2024-02-12 15:46:38.495543 2024-02-12 15:46:38.495543 \N +591 196 3 f 15.00 2024-02-12 15:46:38.497478 2024-02-12 15:46:38.497478 \N +589 196 1 t 5.00 2024-02-12 15:46:38.493568 2024-02-12 15:46:38.728383 \N +593 197 2 f 10.00 2024-02-12 15:47:35.319973 2024-02-12 15:47:35.319973 \N +594 197 3 f 15.00 2024-02-12 15:47:35.321898 2024-02-12 15:47:35.321898 \N +592 197 1 t 5.00 2024-02-12 15:47:35.318004 2024-02-12 15:47:35.534237 \N +596 198 2 f 10.00 2024-02-12 15:48:32.208543 2024-02-12 15:48:32.208543 \N +597 198 3 f 15.00 2024-02-12 15:48:32.210475 2024-02-12 15:48:32.210475 \N +595 198 1 t 5.00 2024-02-12 15:48:32.206543 2024-02-12 15:48:32.420286 \N +599 199 2 f 10.00 2024-02-12 15:49:29.160859 2024-02-12 15:49:29.160859 \N +600 199 3 f 15.00 2024-02-12 15:49:29.162754 2024-02-12 15:49:29.162754 \N +598 199 1 t 5.00 2024-02-12 15:49:29.158959 2024-02-12 15:49:29.370203 \N +605 201 2 f 10.00 2024-02-12 15:51:22.669957 2024-02-12 15:51:22.669957 \N +606 201 3 f 15.00 2024-02-12 15:51:22.67189 2024-02-12 15:51:22.67189 \N +604 201 1 t 5.00 2024-02-12 15:51:22.667903 2024-02-12 15:51:22.876279 \N +930 309 3 f 15.00 2024-02-12 17:34:05.80418 2024-02-12 17:34:05.80418 \N +641 213 2 f 10.00 2024-02-12 16:02:47.229188 2024-02-12 16:02:47.229188 \N +611 203 2 f 10.00 2024-02-12 15:53:16.455625 2024-02-12 15:53:16.455625 \N +612 203 3 f 15.00 2024-02-12 15:53:16.458774 2024-02-12 15:53:16.458774 \N +610 203 1 t 5.00 2024-02-12 15:53:16.453504 2024-02-12 15:53:16.682742 \N +642 213 3 f 15.00 2024-02-12 16:02:47.231292 2024-02-12 16:02:47.231292 \N +640 213 1 t 5.00 2024-02-12 16:02:47.226926 2024-02-12 16:02:47.444599 \N +928 309 1 t 5.00 2024-02-12 17:34:05.79994 2024-02-12 17:34:06.013768 \N +2204 734 2 f 10.00 2024-02-12 22:27:21.833178 2024-02-12 22:27:21.833178 \N +647 215 2 f 10.00 2024-02-12 16:04:41.340501 2024-02-12 16:04:41.340501 \N +648 215 3 f 15.00 2024-02-12 16:04:41.34251 2024-02-12 16:04:41.34251 \N +646 215 1 t 5.00 2024-02-12 16:04:41.338504 2024-02-12 16:04:41.556151 \N +1334 444 2 f 10.00 2024-02-12 19:42:12.96391 2024-02-12 19:42:12.96391 \N +650 216 2 f 10.00 2024-02-12 16:05:38.134696 2024-02-12 16:05:38.134696 \N +651 216 3 f 15.00 2024-02-12 16:05:38.136583 2024-02-12 16:05:38.136583 \N +649 216 1 t 5.00 2024-02-12 16:05:38.132722 2024-02-12 16:05:38.350734 \N +656 218 2 f 10.00 2024-02-12 16:07:31.996199 2024-02-12 16:07:31.996199 \N +657 218 3 f 15.00 2024-02-12 16:07:31.998241 2024-02-12 16:07:31.998241 \N +655 218 1 t 5.00 2024-02-12 16:07:31.994026 2024-02-12 16:07:32.214403 \N +659 219 2 f 10.00 2024-02-12 16:08:28.984189 2024-02-12 16:08:28.984189 \N +660 219 3 f 15.00 2024-02-12 16:08:28.986103 2024-02-12 16:08:28.986103 \N +658 219 1 t 5.00 2024-02-12 16:08:28.98211 2024-02-12 16:08:29.194386 \N +665 221 2 f 10.00 2024-02-12 16:10:22.882484 2024-02-12 16:10:22.882484 \N +666 221 3 f 15.00 2024-02-12 16:10:22.88435 2024-02-12 16:10:22.88435 \N +664 221 1 t 5.00 2024-02-12 16:10:22.880373 2024-02-12 16:10:23.110301 \N +668 222 2 f 10.00 2024-02-12 16:11:19.830011 2024-02-12 16:11:19.830011 \N +669 222 3 f 15.00 2024-02-12 16:11:19.83203 2024-02-12 16:11:19.83203 \N +667 222 1 t 5.00 2024-02-12 16:11:19.827938 2024-02-12 16:11:20.056077 \N +677 225 2 f 10.00 2024-02-12 16:14:10.594798 2024-02-12 16:14:10.594798 \N +678 225 3 f 15.00 2024-02-12 16:14:10.597027 2024-02-12 16:14:10.597027 \N +676 225 1 t 5.00 2024-02-12 16:14:10.592523 2024-02-12 16:14:10.814827 \N +680 226 2 f 10.00 2024-02-12 16:15:07.604861 2024-02-12 16:15:07.604861 \N +681 226 3 f 15.00 2024-02-12 16:15:07.606768 2024-02-12 16:15:07.606768 \N +679 226 1 t 5.00 2024-02-12 16:15:07.60288 2024-02-12 16:15:07.823086 \N +686 228 2 f 10.00 2024-02-12 16:17:01.606783 2024-02-12 16:17:01.606783 \N +687 228 3 f 15.00 2024-02-12 16:17:01.608983 2024-02-12 16:17:01.608983 \N +685 228 1 t 5.00 2024-02-12 16:17:01.604592 2024-02-12 16:17:01.847429 \N +692 230 2 f 10.00 2024-02-12 16:18:55.426124 2024-02-12 16:18:55.426124 \N +693 230 3 f 15.00 2024-02-12 16:18:55.427869 2024-02-12 16:18:55.427869 \N +691 230 1 t 5.00 2024-02-12 16:18:55.42424 2024-02-12 16:18:55.649337 \N +695 231 2 f 10.00 2024-02-12 16:19:52.305459 2024-02-12 16:19:52.305459 \N +696 231 3 f 15.00 2024-02-12 16:19:52.307194 2024-02-12 16:19:52.307194 \N +694 231 1 t 5.00 2024-02-12 16:19:52.303374 2024-02-12 16:19:52.522902 \N +701 233 2 f 10.00 2024-02-12 16:21:46.245364 2024-02-12 16:21:46.245364 \N +702 233 3 f 15.00 2024-02-12 16:21:46.247743 2024-02-12 16:21:46.247743 \N +700 233 1 t 5.00 2024-02-12 16:21:46.243283 2024-02-12 16:21:46.461342 \N +710 236 2 f 10.00 2024-02-12 16:24:37.510277 2024-02-12 16:24:37.510277 \N +711 236 3 f 15.00 2024-02-12 16:24:37.512128 2024-02-12 16:24:37.512128 \N +709 236 1 t 5.00 2024-02-12 16:24:37.508264 2024-02-12 16:24:37.722664 \N +719 239 2 f 10.00 2024-02-12 16:27:28.405612 2024-02-12 16:27:28.405612 \N +720 239 3 f 15.00 2024-02-12 16:27:28.409195 2024-02-12 16:27:28.409195 \N +718 239 1 t 5.00 2024-02-12 16:27:28.403379 2024-02-12 16:27:28.632299 \N +725 241 2 f 10.00 2024-02-12 16:29:22.104546 2024-02-12 16:29:22.104546 \N +726 241 3 f 15.00 2024-02-12 16:29:22.106519 2024-02-12 16:29:22.106519 \N +724 241 1 t 5.00 2024-02-12 16:29:22.102589 2024-02-12 16:29:22.31027 \N +731 243 2 f 10.00 2024-02-12 16:31:15.960461 2024-02-12 16:31:15.960461 \N +732 243 3 f 15.00 2024-02-12 16:31:15.962472 2024-02-12 16:31:15.962472 \N +730 243 1 t 5.00 2024-02-12 16:31:15.958364 2024-02-12 16:31:16.176977 \N +737 245 2 f 10.00 2024-02-12 16:33:10.080757 2024-02-12 16:33:10.080757 \N +738 245 3 f 15.00 2024-02-12 16:33:10.082541 2024-02-12 16:33:10.082541 \N +736 245 1 t 5.00 2024-02-12 16:33:10.078764 2024-02-12 16:33:10.286448 \N +746 248 2 f 10.00 2024-02-12 16:36:01.12137 2024-02-12 16:36:01.12137 \N +747 248 3 f 15.00 2024-02-12 16:36:01.123637 2024-02-12 16:36:01.123637 \N +745 248 1 t 5.00 2024-02-12 16:36:01.119142 2024-02-12 16:36:01.324433 \N +749 249 2 f 10.00 2024-02-12 16:36:57.878514 2024-02-12 16:36:57.878514 \N +750 249 3 f 15.00 2024-02-12 16:36:57.880528 2024-02-12 16:36:57.880528 \N +748 249 1 t 5.00 2024-02-12 16:36:57.876255 2024-02-12 16:36:58.102964 \N +752 250 2 f 10.00 2024-02-12 16:37:54.819526 2024-02-12 16:37:54.819526 \N +753 250 3 f 15.00 2024-02-12 16:37:54.821325 2024-02-12 16:37:54.821325 \N +751 250 1 t 5.00 2024-02-12 16:37:54.817597 2024-02-12 16:37:55.037524 \N +755 251 2 f 10.00 2024-02-12 16:38:51.64189 2024-02-12 16:38:51.64189 \N +756 251 3 f 15.00 2024-02-12 16:38:51.643691 2024-02-12 16:38:51.643691 \N +754 251 1 t 5.00 2024-02-12 16:38:51.639903 2024-02-12 16:38:51.843245 \N +761 253 2 f 10.00 2024-02-12 16:40:45.292213 2024-02-12 16:40:45.292213 \N +762 253 3 f 15.00 2024-02-12 16:40:45.29418 2024-02-12 16:40:45.29418 \N +760 253 1 t 5.00 2024-02-12 16:40:45.290174 2024-02-12 16:40:45.604748 \N +770 256 2 f 10.00 2024-02-12 16:43:35.798239 2024-02-12 16:43:35.798239 \N +771 256 3 f 15.00 2024-02-12 16:43:35.800199 2024-02-12 16:43:35.800199 \N +769 256 1 t 5.00 2024-02-12 16:43:35.796216 2024-02-12 16:43:36.008173 \N +776 258 2 f 10.00 2024-02-12 16:45:30.310719 2024-02-12 16:45:30.310719 \N +777 258 3 f 15.00 2024-02-12 16:45:30.312611 2024-02-12 16:45:30.312611 \N +775 258 1 t 5.00 2024-02-12 16:45:30.308791 2024-02-12 16:45:30.518296 \N +779 259 2 f 10.00 2024-02-12 16:46:27.33752 2024-02-12 16:46:27.33752 \N +780 259 3 f 15.00 2024-02-12 16:46:27.339744 2024-02-12 16:46:27.339744 \N +778 259 1 t 5.00 2024-02-12 16:46:27.335632 2024-02-12 16:46:27.558837 \N +782 260 2 f 10.00 2024-02-12 16:47:24.479278 2024-02-12 16:47:24.479278 \N +783 260 3 f 15.00 2024-02-12 16:47:24.481933 2024-02-12 16:47:24.481933 \N +781 260 1 t 5.00 2024-02-12 16:47:24.477095 2024-02-12 16:47:24.70598 \N +792 263 3 f 15.00 2024-02-12 16:50:14.934629 2024-02-12 16:50:14.934629 \N +790 263 1 t 5.00 2024-02-12 16:50:14.930634 2024-02-12 16:50:15.156626 \N +794 264 2 f 10.00 2024-02-12 16:51:12.388968 2024-02-12 16:51:12.388968 \N +795 264 3 f 15.00 2024-02-12 16:51:12.390942 2024-02-12 16:51:12.390942 \N +793 264 1 t 5.00 2024-02-12 16:51:12.38692 2024-02-12 16:51:12.605792 \N +797 265 2 f 10.00 2024-02-12 16:52:09.344836 2024-02-12 16:52:09.344836 \N +798 265 3 f 15.00 2024-02-12 16:52:09.346623 2024-02-12 16:52:09.346623 \N +602 200 2 f 10.00 2024-02-12 15:50:25.895879 2024-02-12 15:50:25.895879 \N +603 200 3 f 15.00 2024-02-12 15:50:25.89773 2024-02-12 15:50:25.89773 \N +601 200 1 t 5.00 2024-02-12 15:50:25.894068 2024-02-12 15:50:26.097438 \N +608 202 2 f 10.00 2024-02-12 15:52:19.6079 2024-02-12 15:52:19.6079 \N +609 202 3 f 15.00 2024-02-12 15:52:19.609706 2024-02-12 15:52:19.609706 \N +607 202 1 t 5.00 2024-02-12 15:52:19.605887 2024-02-12 15:52:19.819659 \N +1855 618 1 t 5.00 2024-02-12 21:54:42.302877 2024-02-12 21:54:42.518009 \N +614 204 2 f 10.00 2024-02-12 15:54:13.498813 2024-02-12 15:54:13.498813 \N +615 204 3 f 15.00 2024-02-12 15:54:13.501113 2024-02-12 15:54:13.501113 \N +613 204 1 t 5.00 2024-02-12 15:54:13.4967 2024-02-12 15:54:13.743571 \N +644 214 2 f 10.00 2024-02-12 16:03:44.292421 2024-02-12 16:03:44.292421 \N +645 214 3 f 15.00 2024-02-12 16:03:44.294435 2024-02-12 16:03:44.294435 \N +617 205 2 f 10.00 2024-02-12 15:55:10.812412 2024-02-12 15:55:10.812412 \N +618 205 3 f 15.00 2024-02-12 15:55:10.814807 2024-02-12 15:55:10.814807 \N +616 205 1 t 5.00 2024-02-12 15:55:10.810254 2024-02-12 15:55:11.045648 \N +643 214 1 t 5.00 2024-02-12 16:03:44.290252 2024-02-12 16:03:44.50233 \N +932 310 2 f 10.00 2024-02-12 17:35:02.528736 2024-02-12 17:35:02.528736 \N +620 206 2 f 10.00 2024-02-12 15:56:07.664535 2024-02-12 15:56:07.664535 \N +621 206 3 f 15.00 2024-02-12 15:56:07.666592 2024-02-12 15:56:07.666592 \N +619 206 1 t 5.00 2024-02-12 15:56:07.662411 2024-02-12 15:56:07.887541 \N +623 207 2 f 10.00 2024-02-12 15:57:04.554321 2024-02-12 15:57:04.554321 \N +624 207 3 f 15.00 2024-02-12 15:57:04.556704 2024-02-12 15:57:04.556704 \N +622 207 1 t 5.00 2024-02-12 15:57:04.552524 2024-02-12 15:57:04.77689 \N +933 310 3 f 15.00 2024-02-12 17:35:02.530893 2024-02-12 17:35:02.530893 \N +653 217 2 f 10.00 2024-02-12 16:06:34.950012 2024-02-12 16:06:34.950012 \N +626 208 2 f 10.00 2024-02-12 15:58:01.526946 2024-02-12 15:58:01.526946 \N +627 208 3 f 15.00 2024-02-12 15:58:01.528766 2024-02-12 15:58:01.528766 \N +625 208 1 t 5.00 2024-02-12 15:58:01.524968 2024-02-12 15:58:01.749292 \N +654 217 3 f 15.00 2024-02-12 16:06:34.951766 2024-02-12 16:06:34.951766 \N +652 217 1 t 5.00 2024-02-12 16:06:34.947651 2024-02-12 16:06:35.165888 \N +629 209 2 f 10.00 2024-02-12 15:58:58.616704 2024-02-12 15:58:58.616704 \N +630 209 3 f 15.00 2024-02-12 15:58:58.618672 2024-02-12 15:58:58.618672 \N +628 209 1 t 5.00 2024-02-12 15:58:58.614662 2024-02-12 15:58:58.846928 \N +1335 444 3 f 15.00 2024-02-12 19:42:12.966173 2024-02-12 19:42:12.966173 \N +632 210 2 f 10.00 2024-02-12 15:59:56.068364 2024-02-12 15:59:56.068364 \N +633 210 3 f 15.00 2024-02-12 15:59:56.070527 2024-02-12 15:59:56.070527 \N +631 210 1 t 5.00 2024-02-12 15:59:56.066046 2024-02-12 15:59:56.300203 \N +662 220 2 f 10.00 2024-02-12 16:09:25.896203 2024-02-12 16:09:25.896203 \N +663 220 3 f 15.00 2024-02-12 16:09:25.898414 2024-02-12 16:09:25.898414 \N +661 220 1 t 5.00 2024-02-12 16:09:25.89312 2024-02-12 16:09:26.118427 \N +671 223 2 f 10.00 2024-02-12 16:12:16.698491 2024-02-12 16:12:16.698491 \N +672 223 3 f 15.00 2024-02-12 16:12:16.700234 2024-02-12 16:12:16.700234 \N +670 223 1 t 5.00 2024-02-12 16:12:16.696611 2024-02-12 16:12:17.003927 \N +674 224 2 f 10.00 2024-02-12 16:13:13.730977 2024-02-12 16:13:13.730977 \N +675 224 3 f 15.00 2024-02-12 16:13:13.732854 2024-02-12 16:13:13.732854 \N +673 224 1 t 5.00 2024-02-12 16:13:13.729084 2024-02-12 16:13:13.978711 \N +683 227 2 f 10.00 2024-02-12 16:16:04.430502 2024-02-12 16:16:04.430502 \N +684 227 3 f 15.00 2024-02-12 16:16:04.432348 2024-02-12 16:16:04.432348 \N +682 227 1 t 5.00 2024-02-12 16:16:04.42856 2024-02-12 16:16:04.649899 \N +689 229 2 f 10.00 2024-02-12 16:17:58.462236 2024-02-12 16:17:58.462236 \N +690 229 3 f 15.00 2024-02-12 16:17:58.464502 2024-02-12 16:17:58.464502 \N +688 229 1 t 5.00 2024-02-12 16:17:58.459581 2024-02-12 16:17:58.684732 \N +698 232 2 f 10.00 2024-02-12 16:20:49.264136 2024-02-12 16:20:49.264136 \N +699 232 3 f 15.00 2024-02-12 16:20:49.266196 2024-02-12 16:20:49.266196 \N +697 232 1 t 5.00 2024-02-12 16:20:49.261791 2024-02-12 16:20:49.47037 \N +704 234 2 f 10.00 2024-02-12 16:22:43.198587 2024-02-12 16:22:43.198587 \N +705 234 3 f 15.00 2024-02-12 16:22:43.200925 2024-02-12 16:22:43.200925 \N +703 234 1 t 5.00 2024-02-12 16:22:43.196426 2024-02-12 16:22:43.41661 \N +707 235 2 f 10.00 2024-02-12 16:23:40.338647 2024-02-12 16:23:40.338647 \N +708 235 3 f 15.00 2024-02-12 16:23:40.340572 2024-02-12 16:23:40.340572 \N +706 235 1 t 5.00 2024-02-12 16:23:40.336422 2024-02-12 16:23:40.676565 \N +713 237 2 f 10.00 2024-02-12 16:25:34.402273 2024-02-12 16:25:34.402273 \N +714 237 3 f 15.00 2024-02-12 16:25:34.404625 2024-02-12 16:25:34.404625 \N +712 237 1 t 5.00 2024-02-12 16:25:34.39332 2024-02-12 16:25:34.64038 \N +716 238 2 f 10.00 2024-02-12 16:26:31.476798 2024-02-12 16:26:31.476798 \N +717 238 3 f 15.00 2024-02-12 16:26:31.47875 2024-02-12 16:26:31.47875 \N +715 238 1 t 5.00 2024-02-12 16:26:31.474697 2024-02-12 16:26:31.802807 \N +722 240 2 f 10.00 2024-02-12 16:28:25.245296 2024-02-12 16:28:25.245296 \N +723 240 3 f 15.00 2024-02-12 16:28:25.24708 2024-02-12 16:28:25.24708 \N +721 240 1 t 5.00 2024-02-12 16:28:25.242977 2024-02-12 16:28:25.458611 \N +728 242 2 f 10.00 2024-02-12 16:30:19.165879 2024-02-12 16:30:19.165879 \N +729 242 3 f 15.00 2024-02-12 16:30:19.168235 2024-02-12 16:30:19.168235 \N +727 242 1 t 5.00 2024-02-12 16:30:19.16359 2024-02-12 16:30:19.396806 \N +734 244 2 f 10.00 2024-02-12 16:32:13.036254 2024-02-12 16:32:13.036254 \N +735 244 3 f 15.00 2024-02-12 16:32:13.038588 2024-02-12 16:32:13.038588 \N +733 244 1 t 5.00 2024-02-12 16:32:13.034018 2024-02-12 16:32:13.259267 \N +740 246 2 f 10.00 2024-02-12 16:34:06.978696 2024-02-12 16:34:06.978696 \N +741 246 3 f 15.00 2024-02-12 16:34:06.980543 2024-02-12 16:34:06.980543 \N +739 246 1 t 5.00 2024-02-12 16:34:06.976826 2024-02-12 16:34:07.203546 \N +743 247 2 f 10.00 2024-02-12 16:35:04.125415 2024-02-12 16:35:04.125415 \N +744 247 3 f 15.00 2024-02-12 16:35:04.127565 2024-02-12 16:35:04.127565 \N +742 247 1 t 5.00 2024-02-12 16:35:04.123343 2024-02-12 16:35:04.345879 \N +758 252 2 f 10.00 2024-02-12 16:39:48.484065 2024-02-12 16:39:48.484065 \N +759 252 3 f 15.00 2024-02-12 16:39:48.485898 2024-02-12 16:39:48.485898 \N +757 252 1 t 5.00 2024-02-12 16:39:48.482279 2024-02-12 16:39:48.688655 \N +764 254 2 f 10.00 2024-02-12 16:41:42.026801 2024-02-12 16:41:42.026801 \N +765 254 3 f 15.00 2024-02-12 16:41:42.028735 2024-02-12 16:41:42.028735 \N +763 254 1 t 5.00 2024-02-12 16:41:42.024855 2024-02-12 16:41:42.233518 \N +767 255 2 f 10.00 2024-02-12 16:42:39.022579 2024-02-12 16:42:39.022579 \N +768 255 3 f 15.00 2024-02-12 16:42:39.024434 2024-02-12 16:42:39.024434 \N +766 255 1 t 5.00 2024-02-12 16:42:39.020539 2024-02-12 16:42:39.225191 \N +773 257 2 f 10.00 2024-02-12 16:44:33.288109 2024-02-12 16:44:33.288109 \N +774 257 3 f 15.00 2024-02-12 16:44:33.290158 2024-02-12 16:44:33.290158 \N +772 257 1 t 5.00 2024-02-12 16:44:33.286088 2024-02-12 16:44:33.510985 \N +785 261 2 f 10.00 2024-02-12 16:48:21.189761 2024-02-12 16:48:21.189761 \N +786 261 3 f 15.00 2024-02-12 16:48:21.19186 2024-02-12 16:48:21.19186 \N +784 261 1 t 5.00 2024-02-12 16:48:21.187828 2024-02-12 16:48:21.396428 \N +788 262 2 f 10.00 2024-02-12 16:49:18.14532 2024-02-12 16:49:18.14532 \N +789 262 3 f 15.00 2024-02-12 16:49:18.14745 2024-02-12 16:49:18.14745 \N +787 262 1 t 5.00 2024-02-12 16:49:18.143213 2024-02-12 16:49:18.361425 \N +791 263 2 f 10.00 2024-02-12 16:50:14.932788 2024-02-12 16:50:14.932788 \N +796 265 1 t 5.00 2024-02-12 16:52:09.342985 2024-02-12 16:52:09.561576 \N +931 310 1 t 5.00 2024-02-12 17:35:02.526842 2024-02-12 17:35:02.738786 \N +1333 444 1 t 5.00 2024-02-12 19:42:12.961278 2024-02-12 19:42:13.186966 \N +800 266 2 f 10.00 2024-02-12 16:53:06.0883 2024-02-12 16:53:06.0883 \N +801 266 3 f 15.00 2024-02-12 16:53:06.090267 2024-02-12 16:53:06.090267 \N +799 266 1 t 5.00 2024-02-12 16:53:06.086226 2024-02-12 16:53:06.337537 \N +803 267 2 f 10.00 2024-02-12 16:54:03.000765 2024-02-12 16:54:03.000765 \N +804 267 3 f 15.00 2024-02-12 16:54:03.002658 2024-02-12 16:54:03.002658 \N +802 267 1 t 5.00 2024-02-12 16:54:02.998304 2024-02-12 16:54:03.225801 \N +2205 734 3 f 15.00 2024-02-12 22:27:21.835438 2024-02-12 22:27:21.835438 \N +953 317 2 f 10.00 2024-02-12 17:41:41.024999 2024-02-12 17:41:41.024999 \N +809 269 2 f 10.00 2024-02-12 16:55:57.038531 2024-02-12 16:55:57.038531 \N +810 269 3 f 15.00 2024-02-12 16:55:57.040511 2024-02-12 16:55:57.040511 \N +808 269 1 t 5.00 2024-02-12 16:55:57.036293 2024-02-12 16:55:57.242702 \N +954 317 3 f 15.00 2024-02-12 17:41:41.026927 2024-02-12 17:41:41.026927 \N +952 317 1 t 5.00 2024-02-12 17:41:41.022302 2024-02-12 17:41:41.225056 \N +812 270 2 f 10.00 2024-02-12 16:56:54.262639 2024-02-12 16:56:54.262639 \N +813 270 3 f 15.00 2024-02-12 16:56:54.264705 2024-02-12 16:56:54.264705 \N +811 270 1 t 5.00 2024-02-12 16:56:54.260626 2024-02-12 16:56:54.545665 \N +815 271 2 f 10.00 2024-02-12 16:57:51.129175 2024-02-12 16:57:51.129175 \N +816 271 3 f 15.00 2024-02-12 16:57:51.131521 2024-02-12 16:57:51.131521 \N +814 271 1 t 5.00 2024-02-12 16:57:51.126969 2024-02-12 16:57:51.348728 \N +2203 734 1 t 5.00 2024-02-12 22:27:21.829653 2024-02-12 22:27:22.072378 \N +821 273 2 f 10.00 2024-02-12 16:59:45.004304 2024-02-12 16:59:45.004304 \N +822 273 3 f 15.00 2024-02-12 16:59:45.006216 2024-02-12 16:59:45.006216 \N +820 273 1 t 5.00 2024-02-12 16:59:45.002227 2024-02-12 16:59:45.219719 \N +956 318 2 f 10.00 2024-02-12 17:42:37.896526 2024-02-12 17:42:37.896526 \N +957 318 3 f 15.00 2024-02-12 17:42:37.898545 2024-02-12 17:42:37.898545 \N +824 274 2 f 10.00 2024-02-12 17:00:42.476753 2024-02-12 17:00:42.476753 \N +825 274 3 f 15.00 2024-02-12 17:00:42.479193 2024-02-12 17:00:42.479193 \N +823 274 1 t 5.00 2024-02-12 17:00:42.47388 2024-02-12 17:00:42.712801 \N +955 318 1 t 5.00 2024-02-12 17:42:37.894319 2024-02-12 17:42:38.123338 \N +827 275 2 f 10.00 2024-02-12 17:01:39.778429 2024-02-12 17:01:39.778429 \N +828 275 3 f 15.00 2024-02-12 17:01:39.780348 2024-02-12 17:01:39.780348 \N +826 275 1 t 5.00 2024-02-12 17:01:39.776423 2024-02-12 17:01:40.002038 \N +965 321 2 f 10.00 2024-02-12 17:45:28.745601 2024-02-12 17:45:28.745601 \N +966 321 3 f 15.00 2024-02-12 17:45:28.747701 2024-02-12 17:45:28.747701 \N +964 321 1 t 5.00 2024-02-12 17:45:28.743921 2024-02-12 17:45:28.963652 \N +974 324 2 f 10.00 2024-02-12 17:48:19.832737 2024-02-12 17:48:19.832737 \N +975 324 3 f 15.00 2024-02-12 17:48:19.835067 2024-02-12 17:48:19.835067 \N +973 324 1 t 5.00 2024-02-12 17:48:19.830318 2024-02-12 17:48:20.058807 \N +977 325 2 f 10.00 2024-02-12 17:49:16.831295 2024-02-12 17:49:16.831295 \N +978 325 3 f 15.00 2024-02-12 17:49:16.833332 2024-02-12 17:49:16.833332 \N +976 325 1 t 5.00 2024-02-12 17:49:16.829327 2024-02-12 17:49:17.156205 \N +983 327 2 f 10.00 2024-02-12 17:51:10.778353 2024-02-12 17:51:10.778353 \N +984 327 3 f 15.00 2024-02-12 17:51:10.780231 2024-02-12 17:51:10.780231 \N +982 327 1 t 5.00 2024-02-12 17:51:10.776458 2024-02-12 17:51:10.990124 \N +986 328 2 f 10.00 2024-02-12 17:52:07.751133 2024-02-12 17:52:07.751133 \N +987 328 3 f 15.00 2024-02-12 17:52:07.753066 2024-02-12 17:52:07.753066 \N +985 328 1 t 5.00 2024-02-12 17:52:07.74901 2024-02-12 17:52:07.961741 \N +989 329 2 f 10.00 2024-02-12 17:53:04.712454 2024-02-12 17:53:04.712454 \N +990 329 3 f 15.00 2024-02-12 17:53:04.714482 2024-02-12 17:53:04.714482 \N +988 329 1 t 5.00 2024-02-12 17:53:04.71031 2024-02-12 17:53:04.923973 \N +998 332 2 f 10.00 2024-02-12 17:55:55.801978 2024-02-12 17:55:55.801978 \N +999 332 3 f 15.00 2024-02-12 17:55:55.803987 2024-02-12 17:55:55.803987 \N +997 332 1 t 5.00 2024-02-12 17:55:55.79991 2024-02-12 17:55:56.017767 \N +1001 333 2 f 10.00 2024-02-12 17:56:52.989359 2024-02-12 17:56:52.989359 \N +1002 333 3 f 15.00 2024-02-12 17:56:52.992508 2024-02-12 17:56:52.992508 \N +1000 333 1 t 5.00 2024-02-12 17:56:52.986842 2024-02-12 17:56:53.231651 \N +1004 334 2 f 10.00 2024-02-12 17:57:50.17821 2024-02-12 17:57:50.17821 \N +1005 334 3 f 15.00 2024-02-12 17:57:50.181457 2024-02-12 17:57:50.181457 \N +1003 334 1 t 5.00 2024-02-12 17:57:50.175964 2024-02-12 17:57:50.419293 \N +1007 335 2 f 10.00 2024-02-12 17:58:46.654715 2024-02-12 17:58:46.654715 \N +1008 335 3 f 15.00 2024-02-12 17:58:46.656771 2024-02-12 17:58:46.656771 \N +1006 335 1 t 5.00 2024-02-12 17:58:46.652719 2024-02-12 17:58:46.874641 \N +1010 336 2 f 10.00 2024-02-12 17:59:43.726624 2024-02-12 17:59:43.726624 \N +1011 336 3 f 15.00 2024-02-12 17:59:43.72856 2024-02-12 17:59:43.72856 \N +1009 336 1 t 5.00 2024-02-12 17:59:43.723448 2024-02-12 17:59:43.946366 \N +1013 337 2 f 10.00 2024-02-12 18:00:40.332199 2024-02-12 18:00:40.332199 \N +1014 337 3 f 15.00 2024-02-12 18:00:40.334133 2024-02-12 18:00:40.334133 \N +1012 337 1 t 5.00 2024-02-12 18:00:40.330043 2024-02-12 18:00:40.539237 \N +1019 339 2 f 10.00 2024-02-12 18:02:34.042693 2024-02-12 18:02:34.042693 \N +1020 339 3 f 15.00 2024-02-12 18:02:34.045139 2024-02-12 18:02:34.045139 \N +1018 339 1 t 5.00 2024-02-12 18:02:34.040472 2024-02-12 18:02:34.251563 \N +1028 342 2 f 10.00 2024-02-12 18:05:25.044854 2024-02-12 18:05:25.044854 \N +1029 342 3 f 15.00 2024-02-12 18:05:25.046788 2024-02-12 18:05:25.046788 \N +1027 342 1 t 5.00 2024-02-12 18:05:25.041738 2024-02-12 18:05:25.261257 \N +1031 343 2 f 10.00 2024-02-12 18:06:22.056569 2024-02-12 18:06:22.056569 \N +1032 343 3 f 15.00 2024-02-12 18:06:22.058841 2024-02-12 18:06:22.058841 \N +1030 343 1 t 5.00 2024-02-12 18:06:22.05459 2024-02-12 18:06:22.304534 \N +1034 344 2 f 10.00 2024-02-12 18:07:18.738285 2024-02-12 18:07:18.738285 \N +1035 344 3 f 15.00 2024-02-12 18:07:18.743107 2024-02-12 18:07:18.743107 \N +1033 344 1 t 5.00 2024-02-12 18:07:18.736252 2024-02-12 18:07:18.976638 \N +1037 345 2 f 10.00 2024-02-12 18:08:15.709432 2024-02-12 18:08:15.709432 \N +1038 345 3 f 15.00 2024-02-12 18:08:15.711625 2024-02-12 18:08:15.711625 \N +1036 345 1 t 5.00 2024-02-12 18:08:15.707267 2024-02-12 18:08:15.919708 \N +1043 347 2 f 10.00 2024-02-12 18:10:09.70758 2024-02-12 18:10:09.70758 \N +1044 347 3 f 15.00 2024-02-12 18:10:09.709479 2024-02-12 18:10:09.709479 \N +1042 347 1 t 5.00 2024-02-12 18:10:09.705426 2024-02-12 18:10:09.923572 \N +1046 348 2 f 10.00 2024-02-12 18:11:07.043277 2024-02-12 18:11:07.043277 \N +1047 348 3 f 15.00 2024-02-12 18:11:07.045189 2024-02-12 18:11:07.045189 \N +1045 348 1 t 5.00 2024-02-12 18:11:07.041301 2024-02-12 18:11:07.301889 \N +1049 349 2 f 10.00 2024-02-12 18:12:04.298556 2024-02-12 18:12:04.298556 \N +1050 349 3 f 15.00 2024-02-12 18:12:04.300628 2024-02-12 18:12:04.300628 \N +1048 349 1 t 5.00 2024-02-12 18:12:04.296645 2024-02-12 18:12:04.518212 \N +1052 350 2 f 10.00 2024-02-12 18:13:01.445438 2024-02-12 18:13:01.445438 \N +1053 350 3 f 15.00 2024-02-12 18:13:01.447431 2024-02-12 18:13:01.447431 \N +1051 350 1 t 5.00 2024-02-12 18:13:01.443437 2024-02-12 18:13:01.66351 \N +1055 351 2 f 10.00 2024-02-12 18:13:58.68788 2024-02-12 18:13:58.68788 \N +1056 351 3 f 15.00 2024-02-12 18:13:58.690139 2024-02-12 18:13:58.690139 \N +806 268 2 f 10.00 2024-02-12 16:55:00.113688 2024-02-12 16:55:00.113688 \N +807 268 3 f 15.00 2024-02-12 16:55:00.115584 2024-02-12 16:55:00.115584 \N +805 268 1 t 5.00 2024-02-12 16:55:00.111665 2024-02-12 16:55:00.324232 \N +1337 445 2 f 10.00 2024-02-12 19:43:09.93034 2024-02-12 19:43:09.93034 \N +1859 619 2 f 10.00 2024-02-12 21:54:47.749143 2024-02-12 21:54:47.749143 \N +818 272 2 f 10.00 2024-02-12 16:58:48.085503 2024-02-12 16:58:48.085503 \N +819 272 3 f 15.00 2024-02-12 16:58:48.087272 2024-02-12 16:58:48.087272 \N +817 272 1 t 5.00 2024-02-12 16:58:48.083518 2024-02-12 16:58:48.296914 \N +1338 445 3 f 15.00 2024-02-12 19:43:09.932401 2024-02-12 19:43:09.932401 \N +1336 445 1 t 5.00 2024-02-12 19:43:09.92802 2024-02-12 19:43:10.170713 \N +830 276 2 f 10.00 2024-02-12 17:02:37.019849 2024-02-12 17:02:37.019849 \N +831 276 3 f 15.00 2024-02-12 17:02:37.022897 2024-02-12 17:02:37.022897 \N +829 276 1 t 5.00 2024-02-12 17:02:37.017547 2024-02-12 17:02:37.309247 \N +833 277 2 f 10.00 2024-02-12 17:03:34.627385 2024-02-12 17:03:34.627385 \N +834 277 3 f 15.00 2024-02-12 17:03:34.630377 2024-02-12 17:03:34.630377 \N +832 277 1 t 5.00 2024-02-12 17:03:34.624982 2024-02-12 17:03:34.920985 \N +836 278 2 f 10.00 2024-02-12 17:04:31.633462 2024-02-12 17:04:31.633462 \N +837 278 3 f 15.00 2024-02-12 17:04:31.635643 2024-02-12 17:04:31.635643 \N +835 278 1 t 5.00 2024-02-12 17:04:31.631079 2024-02-12 17:04:31.854832 \N +839 279 2 f 10.00 2024-02-12 17:05:28.8418 2024-02-12 17:05:28.8418 \N +840 279 3 f 15.00 2024-02-12 17:05:28.843987 2024-02-12 17:05:28.843987 \N +838 279 1 t 5.00 2024-02-12 17:05:28.839398 2024-02-12 17:05:29.08683 \N +842 280 2 f 10.00 2024-02-12 17:06:26.028369 2024-02-12 17:06:26.028369 \N +843 280 3 f 15.00 2024-02-12 17:06:26.030663 2024-02-12 17:06:26.030663 \N +841 280 1 t 5.00 2024-02-12 17:06:26.026079 2024-02-12 17:06:26.361829 \N +845 281 2 f 10.00 2024-02-12 17:07:23.277351 2024-02-12 17:07:23.277351 \N +846 281 3 f 15.00 2024-02-12 17:07:23.279474 2024-02-12 17:07:23.279474 \N +844 281 1 t 5.00 2024-02-12 17:07:23.274948 2024-02-12 17:07:23.525004 \N +848 282 2 f 10.00 2024-02-12 17:08:20.446361 2024-02-12 17:08:20.446361 \N +849 282 3 f 15.00 2024-02-12 17:08:20.449717 2024-02-12 17:08:20.449717 \N +847 282 1 t 5.00 2024-02-12 17:08:20.443623 2024-02-12 17:08:20.70704 \N +851 283 2 f 10.00 2024-02-12 17:09:17.689582 2024-02-12 17:09:17.689582 \N +852 283 3 f 15.00 2024-02-12 17:09:17.691617 2024-02-12 17:09:17.691617 \N +850 283 1 t 5.00 2024-02-12 17:09:17.687631 2024-02-12 17:09:17.938793 \N +854 284 2 f 10.00 2024-02-12 17:10:14.811518 2024-02-12 17:10:14.811518 \N +855 284 3 f 15.00 2024-02-12 17:10:14.813878 2024-02-12 17:10:14.813878 \N +853 284 1 t 5.00 2024-02-12 17:10:14.809241 2024-02-12 17:10:15.150065 \N +857 285 2 f 10.00 2024-02-12 17:11:12.185695 2024-02-12 17:11:12.185695 \N +858 285 3 f 15.00 2024-02-12 17:11:12.187937 2024-02-12 17:11:12.187937 \N +856 285 1 t 5.00 2024-02-12 17:11:12.183368 2024-02-12 17:11:12.434787 \N +860 286 2 f 10.00 2024-02-12 17:12:09.185865 2024-02-12 17:12:09.185865 \N +861 286 3 f 15.00 2024-02-12 17:12:09.187699 2024-02-12 17:12:09.187699 \N +859 286 1 t 5.00 2024-02-12 17:12:09.183749 2024-02-12 17:12:09.417198 \N +863 287 2 f 10.00 2024-02-12 17:13:06.655165 2024-02-12 17:13:06.655165 \N +864 287 3 f 15.00 2024-02-12 17:13:06.657484 2024-02-12 17:13:06.657484 \N +862 287 1 t 5.00 2024-02-12 17:13:06.652666 2024-02-12 17:13:06.895465 \N +866 288 2 f 10.00 2024-02-12 17:14:03.878401 2024-02-12 17:14:03.878401 \N +867 288 3 f 15.00 2024-02-12 17:14:03.88043 2024-02-12 17:14:03.88043 \N +865 288 1 t 5.00 2024-02-12 17:14:03.876334 2024-02-12 17:14:04.102767 \N +869 289 2 f 10.00 2024-02-12 17:15:01.002618 2024-02-12 17:15:01.002618 \N +870 289 3 f 15.00 2024-02-12 17:15:01.005846 2024-02-12 17:15:01.005846 \N +868 289 1 t 5.00 2024-02-12 17:15:00.998157 2024-02-12 17:15:01.231673 \N +872 290 2 f 10.00 2024-02-12 17:15:58.152711 2024-02-12 17:15:58.152711 \N +873 290 3 f 15.00 2024-02-12 17:15:58.154911 2024-02-12 17:15:58.154911 \N +871 290 1 t 5.00 2024-02-12 17:15:58.150156 2024-02-12 17:15:58.478899 \N +875 291 2 f 10.00 2024-02-12 17:16:55.332012 2024-02-12 17:16:55.332012 \N +876 291 3 f 15.00 2024-02-12 17:16:55.333948 2024-02-12 17:16:55.333948 \N +874 291 1 t 5.00 2024-02-12 17:16:55.330084 2024-02-12 17:16:55.581608 \N +878 292 2 f 10.00 2024-02-12 17:17:52.725977 2024-02-12 17:17:52.725977 \N +879 292 3 f 15.00 2024-02-12 17:17:52.728479 2024-02-12 17:17:52.728479 \N +877 292 1 t 5.00 2024-02-12 17:17:52.723895 2024-02-12 17:17:52.965708 \N +881 293 2 f 10.00 2024-02-12 17:18:49.80083 2024-02-12 17:18:49.80083 \N +882 293 3 f 15.00 2024-02-12 17:18:49.802809 2024-02-12 17:18:49.802809 \N +880 293 1 t 5.00 2024-02-12 17:18:49.798684 2024-02-12 17:18:50.046588 \N +884 294 2 f 10.00 2024-02-12 17:19:47.087411 2024-02-12 17:19:47.087411 \N +885 294 3 f 15.00 2024-02-12 17:19:47.089518 2024-02-12 17:19:47.089518 \N +883 294 1 t 5.00 2024-02-12 17:19:47.085347 2024-02-12 17:19:47.323961 \N +887 295 2 f 10.00 2024-02-12 17:20:44.774659 2024-02-12 17:20:44.774659 \N +888 295 3 f 15.00 2024-02-12 17:20:44.776602 2024-02-12 17:20:44.776602 \N +886 295 1 t 5.00 2024-02-12 17:20:44.772554 2024-02-12 17:20:45.003987 \N +890 296 2 f 10.00 2024-02-12 17:21:41.968795 2024-02-12 17:21:41.968795 \N +891 296 3 f 15.00 2024-02-12 17:21:41.971064 2024-02-12 17:21:41.971064 \N +889 296 1 t 5.00 2024-02-12 17:21:41.96651 2024-02-12 17:21:42.208708 \N +893 297 2 f 10.00 2024-02-12 17:22:39.474725 2024-02-12 17:22:39.474725 \N +894 297 3 f 15.00 2024-02-12 17:22:39.477323 2024-02-12 17:22:39.477323 \N +892 297 1 t 5.00 2024-02-12 17:22:39.472181 2024-02-12 17:22:39.728675 \N +896 298 2 f 10.00 2024-02-12 17:23:36.630417 2024-02-12 17:23:36.630417 \N +897 298 3 f 15.00 2024-02-12 17:23:36.632664 2024-02-12 17:23:36.632664 \N +895 298 1 t 5.00 2024-02-12 17:23:36.628016 2024-02-12 17:23:36.849894 \N +899 299 2 f 10.00 2024-02-12 17:24:33.771261 2024-02-12 17:24:33.771261 \N +900 299 3 f 15.00 2024-02-12 17:24:33.772966 2024-02-12 17:24:33.772966 \N +898 299 1 t 5.00 2024-02-12 17:24:33.769441 2024-02-12 17:24:33.998108 \N +902 300 2 f 10.00 2024-02-12 17:25:30.91981 2024-02-12 17:25:30.91981 \N +903 300 3 f 15.00 2024-02-12 17:25:30.922236 2024-02-12 17:25:30.922236 \N +901 300 1 t 5.00 2024-02-12 17:25:30.917785 2024-02-12 17:25:31.160647 \N +905 301 2 f 10.00 2024-02-12 17:26:28.393268 2024-02-12 17:26:28.393268 \N +906 301 3 f 15.00 2024-02-12 17:26:28.396141 2024-02-12 17:26:28.396141 \N +904 301 1 t 5.00 2024-02-12 17:26:28.388258 2024-02-12 17:26:28.649621 \N +908 302 2 f 10.00 2024-02-12 17:27:25.815035 2024-02-12 17:27:25.815035 \N +909 302 3 f 15.00 2024-02-12 17:27:25.817622 2024-02-12 17:27:25.817622 \N +907 302 1 t 5.00 2024-02-12 17:27:25.811628 2024-02-12 17:27:26.074396 \N +911 303 2 f 10.00 2024-02-12 17:28:23.352982 2024-02-12 17:28:23.352982 \N +912 303 3 f 15.00 2024-02-12 17:28:23.355535 2024-02-12 17:28:23.355535 \N +910 303 1 t 5.00 2024-02-12 17:28:23.350745 2024-02-12 17:28:23.618011 \N +914 304 2 f 10.00 2024-02-12 17:29:20.418621 2024-02-12 17:29:20.418621 \N +915 304 3 f 15.00 2024-02-12 17:29:20.421161 2024-02-12 17:29:20.421161 \N +913 304 1 t 5.00 2024-02-12 17:29:20.416486 2024-02-12 17:29:20.837536 \N +917 305 2 f 10.00 2024-02-12 17:30:17.871188 2024-02-12 17:30:17.871188 \N +918 305 3 f 15.00 2024-02-12 17:30:17.873489 2024-02-12 17:30:17.873489 \N +916 305 1 t 5.00 2024-02-12 17:30:17.869085 2024-02-12 17:30:18.189653 \N +920 306 2 f 10.00 2024-02-12 17:31:15.080251 2024-02-12 17:31:15.080251 \N +921 306 3 f 15.00 2024-02-12 17:31:15.082592 2024-02-12 17:31:15.082592 \N +919 306 1 t 5.00 2024-02-12 17:31:15.077879 2024-02-12 17:31:15.437793 \N +935 311 2 f 10.00 2024-02-12 17:35:59.340603 2024-02-12 17:35:59.340603 \N +936 311 3 f 15.00 2024-02-12 17:35:59.342939 2024-02-12 17:35:59.342939 \N +923 307 2 f 10.00 2024-02-12 17:32:12.330855 2024-02-12 17:32:12.330855 \N +924 307 3 f 15.00 2024-02-12 17:32:12.332692 2024-02-12 17:32:12.332692 \N +922 307 1 t 5.00 2024-02-12 17:32:12.328636 2024-02-12 17:32:12.596397 \N +934 311 1 t 5.00 2024-02-12 17:35:59.338205 2024-02-12 17:35:59.539442 \N +1860 619 3 f 15.00 2024-02-12 21:54:47.751336 2024-02-12 21:54:47.751336 \N +938 312 2 f 10.00 2024-02-12 17:36:56.128238 2024-02-12 17:36:56.128238 \N +939 312 3 f 15.00 2024-02-12 17:36:56.130293 2024-02-12 17:36:56.130293 \N +937 312 1 t 5.00 2024-02-12 17:36:56.126082 2024-02-12 17:36:56.357372 \N +1340 446 2 f 10.00 2024-02-12 19:44:06.857208 2024-02-12 19:44:06.857208 \N +941 313 2 f 10.00 2024-02-12 17:37:53.129206 2024-02-12 17:37:53.129206 \N +942 313 3 f 15.00 2024-02-12 17:37:53.131021 2024-02-12 17:37:53.131021 \N +940 313 1 t 5.00 2024-02-12 17:37:53.127271 2024-02-12 17:37:53.372648 \N +944 314 2 f 10.00 2024-02-12 17:38:49.95126 2024-02-12 17:38:49.95126 \N +945 314 3 f 15.00 2024-02-12 17:38:49.95321 2024-02-12 17:38:49.95321 \N +943 314 1 t 5.00 2024-02-12 17:38:49.948688 2024-02-12 17:38:50.157584 \N +947 315 2 f 10.00 2024-02-12 17:39:46.835266 2024-02-12 17:39:46.835266 \N +948 315 3 f 15.00 2024-02-12 17:39:46.837804 2024-02-12 17:39:46.837804 \N +946 315 1 t 5.00 2024-02-12 17:39:46.833373 2024-02-12 17:39:47.070285 \N +950 316 2 f 10.00 2024-02-12 17:40:44.022296 2024-02-12 17:40:44.022296 \N +951 316 3 f 15.00 2024-02-12 17:40:44.025277 2024-02-12 17:40:44.025277 \N +949 316 1 t 5.00 2024-02-12 17:40:44.020045 2024-02-12 17:40:44.253805 \N +959 319 2 f 10.00 2024-02-12 17:43:34.621883 2024-02-12 17:43:34.621883 \N +960 319 3 f 15.00 2024-02-12 17:43:34.62386 2024-02-12 17:43:34.62386 \N +958 319 1 t 5.00 2024-02-12 17:43:34.617839 2024-02-12 17:43:34.832377 \N +962 320 2 f 10.00 2024-02-12 17:44:31.444068 2024-02-12 17:44:31.444068 \N +963 320 3 f 15.00 2024-02-12 17:44:31.445804 2024-02-12 17:44:31.445804 \N +961 320 1 t 5.00 2024-02-12 17:44:31.441939 2024-02-12 17:44:31.663257 \N +968 322 2 f 10.00 2024-02-12 17:46:25.791247 2024-02-12 17:46:25.791247 \N +969 322 3 f 15.00 2024-02-12 17:46:25.793229 2024-02-12 17:46:25.793229 \N +967 322 1 t 5.00 2024-02-12 17:46:25.789264 2024-02-12 17:46:26.000338 \N +971 323 2 f 10.00 2024-02-12 17:47:22.778421 2024-02-12 17:47:22.778421 \N +972 323 3 f 15.00 2024-02-12 17:47:22.780892 2024-02-12 17:47:22.780892 \N +970 323 1 t 5.00 2024-02-12 17:47:22.776019 2024-02-12 17:47:23.004392 \N +980 326 2 f 10.00 2024-02-12 17:50:13.838704 2024-02-12 17:50:13.838704 \N +981 326 3 f 15.00 2024-02-12 17:50:13.84128 2024-02-12 17:50:13.84128 \N +979 326 1 t 5.00 2024-02-12 17:50:13.836319 2024-02-12 17:50:14.052834 \N +992 330 2 f 10.00 2024-02-12 17:54:01.495271 2024-02-12 17:54:01.495271 \N +993 330 3 f 15.00 2024-02-12 17:54:01.496929 2024-02-12 17:54:01.496929 \N +991 330 1 t 5.00 2024-02-12 17:54:01.493472 2024-02-12 17:54:01.699776 \N +995 331 2 f 10.00 2024-02-12 17:54:58.382671 2024-02-12 17:54:58.382671 \N +996 331 3 f 15.00 2024-02-12 17:54:58.386826 2024-02-12 17:54:58.386826 \N +994 331 1 t 5.00 2024-02-12 17:54:58.380783 2024-02-12 17:54:58.598026 \N +1016 338 2 f 10.00 2024-02-12 18:01:37.196128 2024-02-12 18:01:37.196128 \N +1017 338 3 f 15.00 2024-02-12 18:01:37.198041 2024-02-12 18:01:37.198041 \N +1015 338 1 t 5.00 2024-02-12 18:01:37.193804 2024-02-12 18:01:37.40675 \N +1022 340 2 f 10.00 2024-02-12 18:03:31.116916 2024-02-12 18:03:31.116916 \N +1023 340 3 f 15.00 2024-02-12 18:03:31.118817 2024-02-12 18:03:31.118817 \N +1021 340 1 t 5.00 2024-02-12 18:03:31.114705 2024-02-12 18:03:31.32274 \N +1025 341 2 f 10.00 2024-02-12 18:04:28.065116 2024-02-12 18:04:28.065116 \N +1026 341 3 f 15.00 2024-02-12 18:04:28.066826 2024-02-12 18:04:28.066826 \N +1024 341 1 t 5.00 2024-02-12 18:04:28.063145 2024-02-12 18:04:28.317849 \N +1040 346 2 f 10.00 2024-02-12 18:09:12.872057 2024-02-12 18:09:12.872057 \N +1041 346 3 f 15.00 2024-02-12 18:09:12.873935 2024-02-12 18:09:12.873935 \N +1039 346 1 t 5.00 2024-02-12 18:09:12.870254 2024-02-12 18:09:13.089791 \N +1054 351 1 t 5.00 2024-02-12 18:13:58.685588 2024-02-12 18:13:58.940046 \N +1058 352 2 f 10.00 2024-02-12 18:14:56.101211 2024-02-12 18:14:56.101211 \N +1059 352 3 f 15.00 2024-02-12 18:14:56.103227 2024-02-12 18:14:56.103227 \N +1057 352 1 t 5.00 2024-02-12 18:14:56.09905 2024-02-12 18:14:56.331055 \N +1061 353 2 f 10.00 2024-02-12 18:15:52.946402 2024-02-12 18:15:52.946402 \N +1062 353 3 f 15.00 2024-02-12 18:15:52.94852 2024-02-12 18:15:52.94852 \N +1060 353 1 t 5.00 2024-02-12 18:15:52.944209 2024-02-12 18:15:53.151467 \N +1064 354 2 f 10.00 2024-02-12 18:16:49.765528 2024-02-12 18:16:49.765528 \N +1065 354 3 f 15.00 2024-02-12 18:16:49.767676 2024-02-12 18:16:49.767676 \N +1063 354 1 t 5.00 2024-02-12 18:16:49.762515 2024-02-12 18:16:50.070169 \N +1067 355 2 f 10.00 2024-02-12 18:17:46.645504 2024-02-12 18:17:46.645504 \N +1068 355 3 f 15.00 2024-02-12 18:17:46.647775 2024-02-12 18:17:46.647775 \N +1066 355 1 t 5.00 2024-02-12 18:17:46.64351 2024-02-12 18:17:46.854713 \N +1070 356 2 f 10.00 2024-02-12 18:18:43.605003 2024-02-12 18:18:43.605003 \N +1071 356 3 f 15.00 2024-02-12 18:18:43.606901 2024-02-12 18:18:43.606901 \N +1069 356 1 t 5.00 2024-02-12 18:18:43.602972 2024-02-12 18:18:43.82949 \N +1073 357 2 f 10.00 2024-02-12 18:19:40.560943 2024-02-12 18:19:40.560943 \N +1074 357 3 f 15.00 2024-02-12 18:19:40.563476 2024-02-12 18:19:40.563476 \N +1072 357 1 t 5.00 2024-02-12 18:19:40.558949 2024-02-12 18:19:40.779767 \N +1076 358 2 f 10.00 2024-02-12 18:20:37.688311 2024-02-12 18:20:37.688311 \N +1077 358 3 f 15.00 2024-02-12 18:20:37.69395 2024-02-12 18:20:37.69395 \N +1075 358 1 t 5.00 2024-02-12 18:20:37.684304 2024-02-12 18:20:37.948556 \N +1079 359 2 f 10.00 2024-02-12 18:21:34.619462 2024-02-12 18:21:34.619462 \N +1080 359 3 f 15.00 2024-02-12 18:21:34.621578 2024-02-12 18:21:34.621578 \N +1078 359 1 t 5.00 2024-02-12 18:21:34.617291 2024-02-12 18:21:34.842972 \N +1082 360 2 f 10.00 2024-02-12 18:22:31.573443 2024-02-12 18:22:31.573443 \N +1083 360 3 f 15.00 2024-02-12 18:22:31.575441 2024-02-12 18:22:31.575441 \N +1081 360 1 t 5.00 2024-02-12 18:22:31.57128 2024-02-12 18:22:31.773178 \N +1085 361 2 f 10.00 2024-02-12 18:23:28.22095 2024-02-12 18:23:28.22095 \N +1086 361 3 f 15.00 2024-02-12 18:23:28.222965 2024-02-12 18:23:28.222965 \N +1084 361 1 t 5.00 2024-02-12 18:23:28.219059 2024-02-12 18:23:28.529366 \N +1088 362 2 f 10.00 2024-02-12 18:24:25.336053 2024-02-12 18:24:25.336053 \N +1089 362 3 f 15.00 2024-02-12 18:24:25.337871 2024-02-12 18:24:25.337871 \N +1087 362 1 t 5.00 2024-02-12 18:24:25.334059 2024-02-12 18:24:25.556255 \N +1091 363 2 f 10.00 2024-02-12 18:25:22.32394 2024-02-12 18:25:22.32394 \N +1092 363 3 f 15.00 2024-02-12 18:25:22.325863 2024-02-12 18:25:22.325863 \N +1090 363 1 t 5.00 2024-02-12 18:25:22.321909 2024-02-12 18:25:22.522085 \N +1094 364 2 f 10.00 2024-02-12 18:26:19.19258 2024-02-12 18:26:19.19258 \N +1095 364 3 f 15.00 2024-02-12 18:26:19.194591 2024-02-12 18:26:19.194591 \N +1093 364 1 t 5.00 2024-02-12 18:26:19.190456 2024-02-12 18:26:19.397465 \N +1104 367 3 f 15.00 2024-02-12 18:29:09.615845 2024-02-12 18:29:09.615845 \N +1097 365 2 f 10.00 2024-02-12 18:27:16.152217 2024-02-12 18:27:16.152217 \N +1098 365 3 f 15.00 2024-02-12 18:27:16.154271 2024-02-12 18:27:16.154271 \N +1096 365 1 t 5.00 2024-02-12 18:27:16.150008 2024-02-12 18:27:16.368317 \N +1341 446 3 f 15.00 2024-02-12 19:44:06.859288 2024-02-12 19:44:06.859288 \N +1101 366 3 f 15.00 2024-02-12 18:28:12.82372 2024-02-12 18:28:12.82372 \N +1858 619 1 t 5.00 2024-02-12 21:54:47.746854 2024-02-12 21:54:47.961881 \N +1100 366 2 f 10.00 2024-02-12 18:28:12.821638 2024-02-12 18:28:12.821638 \N +1099 366 1 t 5.00 2024-02-12 18:28:12.819521 2024-02-12 18:28:13.022691 \N +1339 446 1 t 5.00 2024-02-12 19:44:06.855304 2024-02-12 19:44:07.075818 \N +1122 373 3 f 15.00 2024-02-12 18:34:50.779791 2024-02-12 18:34:50.779791 \N +1121 373 2 f 10.00 2024-02-12 18:34:50.777949 2024-02-12 18:34:50.777949 \N +1120 373 1 t 5.00 2024-02-12 18:34:50.775857 2024-02-12 18:34:51.005339 \N +1124 374 2 f 10.00 2024-02-12 18:35:47.614916 2024-02-12 18:35:47.614916 \N +1125 374 3 f 15.00 2024-02-12 18:35:47.616958 2024-02-12 18:35:47.616958 \N +1123 374 1 t 5.00 2024-02-12 18:35:47.612871 2024-02-12 18:35:47.832369 \N +1130 376 2 f 10.00 2024-02-12 18:37:41.380265 2024-02-12 18:37:41.380265 \N +1131 376 3 f 15.00 2024-02-12 18:37:41.382184 2024-02-12 18:37:41.382184 \N +1347 448 3 f 15.00 2024-02-12 19:46:01.222576 2024-02-12 19:46:01.222576 \N +1129 376 1 t 5.00 2024-02-12 18:37:41.378196 2024-02-12 18:37:41.586179 \N +1346 448 2 f 10.00 2024-02-12 19:46:01.220295 2024-02-12 19:46:01.220295 \N +1140 379 3 f 15.00 2024-02-12 18:40:32.005673 2024-02-12 18:40:32.005673 \N +1139 379 2 f 10.00 2024-02-12 18:40:32.003466 2024-02-12 18:40:32.003466 \N +1345 448 1 t 5.00 2024-02-12 19:46:01.217528 2024-02-12 19:46:01.430956 \N +1138 379 1 t 5.00 2024-02-12 18:40:32.00128 2024-02-12 18:40:32.218946 \N +1356 451 3 f 15.00 2024-02-12 19:48:51.908393 2024-02-12 19:48:51.908393 \N +1355 451 2 f 10.00 2024-02-12 19:48:51.906323 2024-02-12 19:48:51.906323 \N +1577 525 2 f 10.00 2024-02-12 21:28:35.555256 2024-02-12 21:28:35.555256 \N +1354 451 1 t 5.00 2024-02-12 19:48:51.904246 2024-02-12 19:48:52.115552 \N +1361 453 2 f 10.00 2024-02-12 19:50:45.885409 2024-02-12 19:50:45.885409 \N +1578 525 3 f 15.00 2024-02-12 21:28:35.557356 2024-02-12 21:28:35.557356 \N +1362 453 3 f 15.00 2024-02-12 19:50:45.887144 2024-02-12 19:50:45.887144 \N +1360 453 1 t 5.00 2024-02-12 19:50:45.883438 2024-02-12 19:50:46.090578 \N +1576 525 1 t 5.00 2024-02-12 21:28:35.551458 2024-02-12 21:28:35.789474 \N +1364 454 2 f 10.00 2024-02-12 19:51:43.238447 2024-02-12 19:51:43.238447 \N +1365 454 3 f 15.00 2024-02-12 19:51:43.240784 2024-02-12 19:51:43.240784 \N +1363 454 1 t 5.00 2024-02-12 19:51:43.235988 2024-02-12 19:51:43.496059 \N +1385 461 2 f 10.00 2024-02-12 19:58:21.505668 2024-02-12 19:58:21.505668 \N +1386 461 3 f 15.00 2024-02-12 19:58:21.507761 2024-02-12 19:58:21.507761 \N +1384 461 1 t 5.00 2024-02-12 19:58:21.503325 2024-02-12 19:58:21.733713 \N +1394 464 2 f 10.00 2024-02-12 20:01:12.383626 2024-02-12 20:01:12.383626 \N +1395 464 3 f 15.00 2024-02-12 20:01:12.385387 2024-02-12 20:01:12.385387 \N +1393 464 1 t 5.00 2024-02-12 20:01:12.381694 2024-02-12 20:01:12.589681 \N +1398 465 3 f 15.00 2024-02-12 20:02:09.378902 2024-02-12 20:02:09.378902 \N +1397 465 2 f 10.00 2024-02-12 20:02:09.376839 2024-02-12 20:02:09.376839 \N +1396 465 1 t 5.00 2024-02-12 20:02:09.374775 2024-02-12 20:02:09.586912 \N +1404 467 3 f 15.00 2024-02-12 20:04:03.316417 2024-02-12 20:04:03.316417 \N +1403 467 2 f 10.00 2024-02-12 20:04:03.314392 2024-02-12 20:04:03.314392 \N +1877 625 2 f 10.00 2024-02-12 21:57:57.148497 2024-02-12 21:57:57.148497 \N +1402 467 1 t 5.00 2024-02-12 20:04:03.312274 2024-02-12 20:04:03.54503 \N +1406 468 2 f 10.00 2024-02-12 20:05:00.203087 2024-02-12 20:05:00.203087 \N +1407 468 3 f 15.00 2024-02-12 20:05:00.205164 2024-02-12 20:05:00.205164 \N +1405 468 1 t 5.00 2024-02-12 20:05:00.200707 2024-02-12 20:05:00.409418 \N +1785 594 3 f 15.00 2024-02-12 21:49:36.104159 2024-02-12 21:49:36.104159 \N +1415 471 2 f 10.00 2024-02-12 20:07:50.923673 2024-02-12 20:07:50.923673 \N +1416 471 3 f 15.00 2024-02-12 20:07:50.925683 2024-02-12 20:07:50.925683 \N +1414 471 1 t 5.00 2024-02-12 20:07:50.921981 2024-02-12 20:07:51.130349 \N +1421 473 2 f 10.00 2024-02-12 20:09:45.623972 2024-02-12 20:09:45.623972 \N +1422 473 3 f 15.00 2024-02-12 20:09:45.626034 2024-02-12 20:09:45.626034 \N +1420 473 1 t 5.00 2024-02-12 20:09:45.621601 2024-02-12 20:09:45.845913 \N +1629 542 3 f 15.00 2024-02-12 21:33:55.389894 2024-02-12 21:33:55.389894 \N +1485 494 3 f 15.00 2024-02-12 20:23:28.319197 2024-02-12 20:23:28.319197 \N +1628 542 2 f 10.00 2024-02-12 21:33:55.388018 2024-02-12 21:33:55.388018 \N +1627 542 1 t 5.00 2024-02-12 21:33:55.385885 2024-02-12 21:33:55.620355 \N +1632 543 3 f 15.00 2024-02-12 21:33:56.993547 2024-02-12 21:33:56.993547 \N +1484 494 2 f 10.00 2024-02-12 20:23:28.317212 2024-02-12 20:23:28.317212 \N +1483 494 1 t 5.00 2024-02-12 20:23:28.315136 2024-02-12 20:23:28.562086 \N +1631 543 2 f 10.00 2024-02-12 21:33:56.991557 2024-02-12 21:33:56.991557 \N +1630 543 1 t 5.00 2024-02-12 21:33:56.989565 2024-02-12 21:33:57.211188 \N +1548 515 3 f 15.00 2024-02-12 21:27:03.126452 2024-02-12 21:27:03.126452 \N +1546 515 1 t 5.00 2024-02-12 21:27:03.121743 2024-02-12 21:27:03.351186 \N +1757 585 2 f 10.00 2024-02-12 21:45:21.220745 2024-02-12 21:45:21.220745 \N +1758 585 3 f 15.00 2024-02-12 21:45:21.228333 2024-02-12 21:45:21.228333 \N +1756 585 1 t 5.00 2024-02-12 21:45:21.212744 2024-02-12 21:45:21.571819 \N +1764 587 3 f 15.00 2024-02-12 21:45:22.850944 2024-02-12 21:45:22.850944 \N +1763 587 2 f 10.00 2024-02-12 21:45:22.848491 2024-02-12 21:45:22.848491 \N +1762 587 1 t 5.00 2024-02-12 21:45:22.845828 2024-02-12 21:45:23.095877 \N +1553 517 2 f 10.00 2024-02-12 21:27:06.329165 2024-02-12 21:27:06.329165 \N +1784 594 2 f 10.00 2024-02-12 21:49:36.102323 2024-02-12 21:49:36.102323 \N +1544 514 2 f 10.00 2024-02-12 21:27:00.814043 2024-02-12 21:27:00.814043 \N +1545 514 3 f 15.00 2024-02-12 21:27:00.816283 2024-02-12 21:27:00.816283 \N +1543 514 1 t 5.00 2024-02-12 21:27:00.811415 2024-02-12 21:27:01.071194 \N +1547 515 2 f 10.00 2024-02-12 21:27:03.123687 2024-02-12 21:27:03.123687 \N +1554 517 3 f 15.00 2024-02-12 21:27:06.331124 2024-02-12 21:27:06.331124 \N +1552 517 1 t 5.00 2024-02-12 21:27:06.327086 2024-02-12 21:27:06.590593 \N +1773 590 3 f 15.00 2024-02-12 21:49:28.066588 2024-02-12 21:49:28.066588 \N +1772 590 2 f 10.00 2024-02-12 21:49:28.064448 2024-02-12 21:49:28.064448 \N +1771 590 1 t 5.00 2024-02-12 21:49:28.062248 2024-02-12 21:49:28.27003 \N +1799 599 2 f 10.00 2024-02-12 21:50:17.17403 2024-02-12 21:50:17.17403 \N +1800 599 3 f 15.00 2024-02-12 21:50:17.176123 2024-02-12 21:50:17.176123 \N +1783 594 1 t 5.00 2024-02-12 21:49:36.100492 2024-02-12 21:49:36.337226 \N +1798 599 1 t 5.00 2024-02-12 21:50:17.17109 2024-02-12 21:50:17.401694 \N +1844 614 2 f 10.00 2024-02-12 21:53:26.953373 2024-02-12 21:53:26.953373 \N +1845 614 3 f 15.00 2024-02-12 21:53:26.955243 2024-02-12 21:53:26.955243 \N +1843 614 1 t 5.00 2024-02-12 21:53:26.951429 2024-02-12 21:53:27.179116 \N +1103 367 2 f 10.00 2024-02-12 18:29:09.614082 2024-02-12 18:29:09.614082 \N +1102 367 1 t 5.00 2024-02-12 18:29:09.612251 2024-02-12 18:29:09.818775 \N +1107 368 3 f 15.00 2024-02-12 18:30:06.43648 2024-02-12 18:30:06.43648 \N +1106 368 2 f 10.00 2024-02-12 18:30:06.434378 2024-02-12 18:30:06.434378 \N +1105 368 1 t 5.00 2024-02-12 18:30:06.432187 2024-02-12 18:30:06.644974 \N +1110 369 3 f 15.00 2024-02-12 18:31:03.291709 2024-02-12 18:31:03.291709 \N +1109 369 2 f 10.00 2024-02-12 18:31:03.289537 2024-02-12 18:31:03.289537 \N +1108 369 1 t 5.00 2024-02-12 18:31:03.287317 2024-02-12 18:31:03.513001 \N +1113 370 3 f 15.00 2024-02-12 18:32:00.02292 2024-02-12 18:32:00.02292 \N +1112 370 2 f 10.00 2024-02-12 18:32:00.02056 2024-02-12 18:32:00.02056 \N +1111 370 1 t 5.00 2024-02-12 18:32:00.017664 2024-02-12 18:32:00.243299 \N +1115 371 2 f 10.00 2024-02-12 18:32:57.102669 2024-02-12 18:32:57.102669 \N +1116 371 3 f 15.00 2024-02-12 18:32:57.104687 2024-02-12 18:32:57.104687 \N +1114 371 1 t 5.00 2024-02-12 18:32:57.100532 2024-02-12 18:32:57.305994 \N +1118 372 2 f 10.00 2024-02-12 18:33:53.940602 2024-02-12 18:33:53.940602 \N +1119 372 3 f 15.00 2024-02-12 18:33:53.942886 2024-02-12 18:33:53.942886 \N +1117 372 1 t 5.00 2024-02-12 18:33:53.938181 2024-02-12 18:33:54.262744 \N +1128 375 3 f 15.00 2024-02-12 18:36:44.566984 2024-02-12 18:36:44.566984 \N +1127 375 2 f 10.00 2024-02-12 18:36:44.565119 2024-02-12 18:36:44.565119 \N +1126 375 1 t 5.00 2024-02-12 18:36:44.563027 2024-02-12 18:36:44.78003 \N +1134 377 3 f 15.00 2024-02-12 18:38:38.158222 2024-02-12 18:38:38.158222 \N +1133 377 2 f 10.00 2024-02-12 18:38:38.156441 2024-02-12 18:38:38.156441 \N +1132 377 1 t 5.00 2024-02-12 18:38:38.154602 2024-02-12 18:38:38.467082 \N +1137 378 3 f 15.00 2024-02-12 18:39:35.154986 2024-02-12 18:39:35.154986 \N +1136 378 2 f 10.00 2024-02-12 18:39:35.153159 2024-02-12 18:39:35.153159 \N +1135 378 1 t 5.00 2024-02-12 18:39:35.151198 2024-02-12 18:39:35.359617 \N +1143 380 3 f 15.00 2024-02-12 18:41:28.931313 2024-02-12 18:41:28.931313 \N +1142 380 2 f 10.00 2024-02-12 18:41:28.929416 2024-02-12 18:41:28.929416 \N +1141 380 1 t 5.00 2024-02-12 18:41:28.927549 2024-02-12 18:41:29.167543 \N +1145 381 2 f 10.00 2024-02-12 18:42:25.695402 2024-02-12 18:42:25.695402 \N +1146 381 3 f 15.00 2024-02-12 18:42:25.697388 2024-02-12 18:42:25.697388 \N +1144 381 1 t 5.00 2024-02-12 18:42:25.690699 2024-02-12 18:42:25.899962 \N +1149 382 3 f 15.00 2024-02-12 18:43:22.593073 2024-02-12 18:43:22.593073 \N +1148 382 2 f 10.00 2024-02-12 18:43:22.590842 2024-02-12 18:43:22.590842 \N +1147 382 1 t 5.00 2024-02-12 18:43:22.588121 2024-02-12 18:43:22.992743 \N +1151 383 2 f 10.00 2024-02-12 18:44:19.290293 2024-02-12 18:44:19.290293 \N +1152 383 3 f 15.00 2024-02-12 18:44:19.292326 2024-02-12 18:44:19.292326 \N +1150 383 1 t 5.00 2024-02-12 18:44:19.288238 2024-02-12 18:44:19.509112 \N +1155 384 3 f 15.00 2024-02-12 18:45:15.998633 2024-02-12 18:45:15.998633 \N +1154 384 2 f 10.00 2024-02-12 18:45:15.990985 2024-02-12 18:45:15.990985 \N +1153 384 1 t 5.00 2024-02-12 18:45:15.989118 2024-02-12 18:45:16.20972 \N +1157 385 2 f 10.00 2024-02-12 18:46:12.730917 2024-02-12 18:46:12.730917 \N +1158 385 3 f 15.00 2024-02-12 18:46:12.732831 2024-02-12 18:46:12.732831 \N +1156 385 1 t 5.00 2024-02-12 18:46:12.728795 2024-02-12 18:46:12.944108 \N +1161 386 3 f 15.00 2024-02-12 18:47:09.999815 2024-02-12 18:47:09.999815 \N +1160 386 2 f 10.00 2024-02-12 18:47:09.997707 2024-02-12 18:47:09.997707 \N +1159 386 1 t 5.00 2024-02-12 18:47:09.995499 2024-02-12 18:47:10.253547 \N +1163 387 2 f 10.00 2024-02-12 18:48:06.630684 2024-02-12 18:48:06.630684 \N +1164 387 3 f 15.00 2024-02-12 18:48:06.632596 2024-02-12 18:48:06.632596 \N +1162 387 1 t 5.00 2024-02-12 18:48:06.628689 2024-02-12 18:48:06.843854 \N +1167 388 3 f 15.00 2024-02-12 18:49:03.31603 2024-02-12 18:49:03.31603 \N +1166 388 2 f 10.00 2024-02-12 18:49:03.31406 2024-02-12 18:49:03.31406 \N +1165 388 1 t 5.00 2024-02-12 18:49:03.311853 2024-02-12 18:49:03.546204 \N +1170 389 3 f 15.00 2024-02-12 18:50:00.114277 2024-02-12 18:50:00.114277 \N +1169 389 2 f 10.00 2024-02-12 18:50:00.111747 2024-02-12 18:50:00.111747 \N +1168 389 1 t 5.00 2024-02-12 18:50:00.109506 2024-02-12 18:50:00.3242 \N +1173 390 3 f 15.00 2024-02-12 18:50:57.258714 2024-02-12 18:50:57.258714 \N +1172 390 2 f 10.00 2024-02-12 18:50:57.256879 2024-02-12 18:50:57.256879 \N +1171 390 1 t 5.00 2024-02-12 18:50:57.254669 2024-02-12 18:50:57.467089 \N +1175 391 2 f 10.00 2024-02-12 18:51:54.353174 2024-02-12 18:51:54.353174 \N +1176 391 3 f 15.00 2024-02-12 18:51:54.357076 2024-02-12 18:51:54.357076 \N +1174 391 1 t 5.00 2024-02-12 18:51:54.350981 2024-02-12 18:51:54.6077 \N +1179 392 3 f 15.00 2024-02-12 18:52:51.262643 2024-02-12 18:52:51.262643 \N +1178 392 2 f 10.00 2024-02-12 18:52:51.260855 2024-02-12 18:52:51.260855 \N +1177 392 1 t 5.00 2024-02-12 18:52:51.25886 2024-02-12 18:52:51.4753 \N +1181 393 2 f 10.00 2024-02-12 18:53:48.00925 2024-02-12 18:53:48.00925 \N +1182 393 3 f 15.00 2024-02-12 18:53:48.011303 2024-02-12 18:53:48.011303 \N +1180 393 1 t 5.00 2024-02-12 18:53:48.004436 2024-02-12 18:53:48.214491 \N +1184 394 2 f 10.00 2024-02-12 18:54:44.925284 2024-02-12 18:54:44.925284 \N +1185 394 3 f 15.00 2024-02-12 18:54:44.927074 2024-02-12 18:54:44.927074 \N +1183 394 1 t 5.00 2024-02-12 18:54:44.923308 2024-02-12 18:54:45.126993 \N +1188 395 3 f 15.00 2024-02-12 18:55:41.673985 2024-02-12 18:55:41.673985 \N +1187 395 2 f 10.00 2024-02-12 18:55:41.671739 2024-02-12 18:55:41.671739 \N +1186 395 1 t 5.00 2024-02-12 18:55:41.66957 2024-02-12 18:55:41.874722 \N +1191 396 3 f 15.00 2024-02-12 18:56:38.632892 2024-02-12 18:56:38.632892 \N +1190 396 2 f 10.00 2024-02-12 18:56:38.631047 2024-02-12 18:56:38.631047 \N +1189 396 1 t 5.00 2024-02-12 18:56:38.628981 2024-02-12 18:56:38.846637 \N +1193 397 2 f 10.00 2024-02-12 18:57:35.551478 2024-02-12 18:57:35.551478 \N +1194 397 3 f 15.00 2024-02-12 18:57:35.553659 2024-02-12 18:57:35.553659 \N +1192 397 1 t 5.00 2024-02-12 18:57:35.549526 2024-02-12 18:57:35.751702 \N +1196 398 2 f 10.00 2024-02-12 18:58:32.397771 2024-02-12 18:58:32.397771 \N +1197 398 3 f 15.00 2024-02-12 18:58:32.399733 2024-02-12 18:58:32.399733 \N +1195 398 1 t 5.00 2024-02-12 18:58:32.395756 2024-02-12 18:58:32.606717 \N +1200 399 3 f 15.00 2024-02-12 18:59:29.270158 2024-02-12 18:59:29.270158 \N +1199 399 2 f 10.00 2024-02-12 18:59:29.267837 2024-02-12 18:59:29.267837 \N +1198 399 1 t 5.00 2024-02-12 18:59:29.265663 2024-02-12 18:59:29.492269 \N +1203 400 3 f 15.00 2024-02-12 19:00:26.118705 2024-02-12 19:00:26.118705 \N +1202 400 2 f 10.00 2024-02-12 19:00:26.116587 2024-02-12 19:00:26.116587 \N +1201 400 1 t 5.00 2024-02-12 19:00:26.114669 2024-02-12 19:00:26.325393 \N +1206 401 3 f 15.00 2024-02-12 19:01:22.896738 2024-02-12 19:01:22.896738 \N +1205 401 2 f 10.00 2024-02-12 19:01:22.894579 2024-02-12 19:01:22.894579 \N +1204 401 1 t 5.00 2024-02-12 19:01:22.892461 2024-02-12 19:01:23.218128 \N +1209 402 3 f 15.00 2024-02-12 19:02:19.698446 2024-02-12 19:02:19.698446 \N +1208 402 2 f 10.00 2024-02-12 19:02:19.696871 2024-02-12 19:02:19.696871 \N +1207 402 1 t 5.00 2024-02-12 19:02:19.695093 2024-02-12 19:02:19.894529 \N +1211 403 2 f 10.00 2024-02-12 19:03:16.604844 2024-02-12 19:03:16.604844 \N +1215 404 3 f 15.00 2024-02-12 19:04:13.485289 2024-02-12 19:04:13.485289 \N +1212 403 3 f 15.00 2024-02-12 19:03:16.606767 2024-02-12 19:03:16.606767 \N +1210 403 1 t 5.00 2024-02-12 19:03:16.602678 2024-02-12 19:03:16.811934 \N +1343 447 2 f 10.00 2024-02-12 19:45:03.836264 2024-02-12 19:45:03.836264 \N +1217 405 2 f 10.00 2024-02-12 19:05:10.378078 2024-02-12 19:05:10.378078 \N +1344 447 3 f 15.00 2024-02-12 19:45:03.838594 2024-02-12 19:45:03.838594 \N +1218 405 3 f 15.00 2024-02-12 19:05:10.380194 2024-02-12 19:05:10.380194 \N +1216 405 1 t 5.00 2024-02-12 19:05:10.375875 2024-02-12 19:05:10.603575 \N +1221 406 3 f 15.00 2024-02-12 19:06:07.144705 2024-02-12 19:06:07.144705 \N +1342 447 1 t 5.00 2024-02-12 19:45:03.834013 2024-02-12 19:45:04.060335 \N +1220 406 2 f 10.00 2024-02-12 19:06:07.143016 2024-02-12 19:06:07.143016 \N +1219 406 1 t 5.00 2024-02-12 19:06:07.140667 2024-02-12 19:06:07.345118 \N +1574 524 2 f 10.00 2024-02-12 21:28:30.299046 2024-02-12 21:28:30.299046 \N +1575 524 3 f 15.00 2024-02-12 21:28:30.301521 2024-02-12 21:28:30.301521 \N +1350 449 3 f 15.00 2024-02-12 19:46:57.983645 2024-02-12 19:46:57.983645 \N +1349 449 2 f 10.00 2024-02-12 19:46:57.98158 2024-02-12 19:46:57.98158 \N +1348 449 1 t 5.00 2024-02-12 19:46:57.979568 2024-02-12 19:46:58.186854 \N +1573 524 1 t 5.00 2024-02-12 21:28:30.29635 2024-02-12 21:28:30.561356 \N +1353 450 3 f 15.00 2024-02-12 19:47:54.930332 2024-02-12 19:47:54.930332 \N +1352 450 2 f 10.00 2024-02-12 19:47:54.928218 2024-02-12 19:47:54.928218 \N +1863 620 3 f 15.00 2024-02-12 21:57:46.111339 2024-02-12 21:57:46.111339 \N +1351 450 1 t 5.00 2024-02-12 19:47:54.926269 2024-02-12 19:47:55.143163 \N +1359 452 3 f 15.00 2024-02-12 19:49:48.924638 2024-02-12 19:49:48.924638 \N +1358 452 2 f 10.00 2024-02-12 19:49:48.922205 2024-02-12 19:49:48.922205 \N +1357 452 1 t 5.00 2024-02-12 19:49:48.913823 2024-02-12 19:49:49.138818 \N +1671 556 3 f 15.00 2024-02-12 21:37:13.738706 2024-02-12 21:37:13.738706 \N +1862 620 2 f 10.00 2024-02-12 21:57:46.109501 2024-02-12 21:57:46.109501 \N +1367 455 2 f 10.00 2024-02-12 19:52:40.106004 2024-02-12 19:52:40.106004 \N +1368 455 3 f 15.00 2024-02-12 19:52:40.107936 2024-02-12 19:52:40.107936 \N +1366 455 1 t 5.00 2024-02-12 19:52:40.104081 2024-02-12 19:52:40.310557 \N +1670 556 2 f 10.00 2024-02-12 21:37:13.736728 2024-02-12 21:37:13.736728 \N +1374 457 3 f 15.00 2024-02-12 19:54:33.867216 2024-02-12 19:54:33.867216 \N +1373 457 2 f 10.00 2024-02-12 19:54:33.865405 2024-02-12 19:54:33.865405 \N +1669 556 1 t 5.00 2024-02-12 21:37:13.734671 2024-02-12 21:37:13.968961 \N +1372 457 1 t 5.00 2024-02-12 19:54:33.863477 2024-02-12 19:54:34.076189 \N +1861 620 1 t 5.00 2024-02-12 21:57:46.107252 2024-02-12 21:57:46.435547 \N +1425 474 3 f 15.00 2024-02-12 20:10:42.60661 2024-02-12 20:10:42.60661 \N +1424 474 2 f 10.00 2024-02-12 20:10:42.604759 2024-02-12 20:10:42.604759 \N +1423 474 1 t 5.00 2024-02-12 20:10:42.602579 2024-02-12 20:10:42.82914 \N +1755 584 3 f 15.00 2024-02-12 21:45:19.676707 2024-02-12 21:45:19.676707 \N +1754 584 2 f 10.00 2024-02-12 21:45:19.674907 2024-02-12 21:45:19.674907 \N +1890 629 3 f 15.00 2024-02-12 21:58:17.494724 2024-02-12 21:58:17.494724 \N +1889 629 2 f 10.00 2024-02-12 21:58:17.492546 2024-02-12 21:58:17.492546 \N +1888 629 1 t 5.00 2024-02-12 21:58:17.490382 2024-02-12 21:58:17.765087 \N +1753 584 1 t 5.00 2024-02-12 21:45:19.672937 2024-02-12 21:45:19.905439 \N +1452 483 3 f 15.00 2024-02-12 20:15:32.511765 2024-02-12 20:15:32.511765 \N +1451 483 2 f 10.00 2024-02-12 20:15:32.509797 2024-02-12 20:15:32.509797 \N +1450 483 1 t 5.00 2024-02-12 20:15:32.507688 2024-02-12 20:15:32.73059 \N +1731 576 3 f 15.00 2024-02-12 21:44:12.57501 2024-02-12 21:44:12.57501 \N +1908 635 3 f 15.00 2024-02-12 21:59:44.603603 2024-02-12 21:59:44.603603 \N +1730 576 2 f 10.00 2024-02-12 21:44:12.572192 2024-02-12 21:44:12.572192 \N +1488 495 3 f 15.00 2024-02-12 20:24:59.651805 2024-02-12 20:24:59.651805 \N +1487 495 2 f 10.00 2024-02-12 20:24:59.649954 2024-02-12 20:24:59.649954 \N +1486 495 1 t 5.00 2024-02-12 20:24:59.647612 2024-02-12 20:24:59.894879 \N +1729 576 1 t 5.00 2024-02-12 21:44:12.568718 2024-02-12 21:44:12.862142 \N +1907 635 2 f 10.00 2024-02-12 21:59:44.601635 2024-02-12 21:59:44.601635 \N +1906 635 1 t 5.00 2024-02-12 21:59:44.599383 2024-02-12 21:59:44.826969 \N +1761 586 3 f 15.00 2024-02-12 21:45:22.03754 2024-02-12 21:45:22.03754 \N +1911 636 3 f 15.00 2024-02-12 21:59:46.396917 2024-02-12 21:59:46.396917 \N +1910 636 2 f 10.00 2024-02-12 21:59:46.394893 2024-02-12 21:59:46.394893 \N +1909 636 1 t 5.00 2024-02-12 21:59:46.392859 2024-02-12 21:59:46.600006 \N +1760 586 2 f 10.00 2024-02-12 21:45:22.035216 2024-02-12 21:45:22.035216 \N +1759 586 1 t 5.00 2024-02-12 21:45:22.032368 2024-02-12 21:45:22.295952 \N +1838 612 2 f 10.00 2024-02-12 21:53:17.425944 2024-02-12 21:53:17.425944 \N +1839 612 3 f 15.00 2024-02-12 21:53:17.429129 2024-02-12 21:53:17.429129 \N +1837 612 1 t 5.00 2024-02-12 21:53:17.420252 2024-02-12 21:53:17.870896 \N +1842 613 3 f 15.00 2024-02-12 21:53:18.26606 2024-02-12 21:53:18.26606 \N +1841 613 2 f 10.00 2024-02-12 21:53:18.263856 2024-02-12 21:53:18.263856 \N +1840 613 1 t 5.00 2024-02-12 21:53:18.261717 2024-02-12 21:53:18.571467 \N +1946 648 2 f 10.00 2024-02-12 22:03:51.853183 2024-02-12 22:03:51.853183 \N +1947 648 3 f 15.00 2024-02-12 22:03:51.855303 2024-02-12 22:03:51.855303 \N +1945 648 1 t 5.00 2024-02-12 22:03:51.851201 2024-02-12 22:03:52.069818 \N +1980 659 3 f 15.00 2024-02-12 22:07:18.35908 2024-02-12 22:07:18.35908 \N +1979 659 2 f 10.00 2024-02-12 22:07:18.35523 2024-02-12 22:07:18.35523 \N +1978 659 1 t 5.00 2024-02-12 22:07:18.350361 2024-02-12 22:07:18.728071 \N +2063 687 2 f 10.00 2024-02-12 22:13:53.603351 2024-02-12 22:13:53.603351 \N +2064 687 3 f 15.00 2024-02-12 22:13:53.60686 2024-02-12 22:13:53.60686 \N +2062 687 1 t 5.00 2024-02-12 22:13:53.59929 2024-02-12 22:13:54.073558 \N +2144 714 2 f 10.00 2024-02-12 22:22:26.692714 2024-02-12 22:22:26.692714 \N +2145 714 3 f 15.00 2024-02-12 22:22:26.694717 2024-02-12 22:22:26.694717 \N +2148 715 3 f 15.00 2024-02-12 22:22:31.446761 2024-02-12 22:22:31.446761 \N +2151 716 3 f 15.00 2024-02-12 22:22:36.643981 2024-02-12 22:22:36.643981 \N +2141 713 2 f 10.00 2024-02-12 22:22:24.370277 2024-02-12 22:22:24.370277 \N +2142 713 3 f 15.00 2024-02-12 22:22:24.372212 2024-02-12 22:22:24.372212 \N +2140 713 1 t 5.00 2024-02-12 22:22:24.368044 2024-02-12 22:22:24.609597 \N +2143 714 1 t 5.00 2024-02-12 22:22:26.690303 2024-02-12 22:22:26.953232 \N +2147 715 2 f 10.00 2024-02-12 22:22:31.444489 2024-02-12 22:22:31.444489 \N +2146 715 1 t 5.00 2024-02-12 22:22:31.442334 2024-02-12 22:22:31.672664 \N +2150 716 2 f 10.00 2024-02-12 22:22:36.642147 2024-02-12 22:22:36.642147 \N +2149 716 1 t 5.00 2024-02-12 22:22:36.640053 2024-02-12 22:22:36.880244 \N +2166 721 3 f 15.00 2024-02-12 22:23:59.673615 2024-02-12 22:23:59.673615 \N +2165 721 2 f 10.00 2024-02-12 22:23:59.671685 2024-02-12 22:23:59.671685 \N +2164 721 1 t 5.00 2024-02-12 22:23:59.669696 2024-02-12 22:23:59.897789 \N +2178 725 3 f 15.00 2024-02-12 22:26:38.063577 2024-02-12 22:26:38.063577 \N +2177 725 2 f 10.00 2024-02-12 22:26:38.06153 2024-02-12 22:26:38.06153 \N +2176 725 1 t 5.00 2024-02-12 22:26:38.059147 2024-02-12 22:26:38.293717 \N +2181 726 3 f 15.00 2024-02-12 22:26:39.670913 2024-02-12 22:26:39.670913 \N +2180 726 2 f 10.00 2024-02-12 22:26:39.668798 2024-02-12 22:26:39.668798 \N +1214 404 2 f 10.00 2024-02-12 19:04:13.483377 2024-02-12 19:04:13.483377 \N +1213 404 1 t 5.00 2024-02-12 19:04:13.480576 2024-02-12 19:04:13.688011 \N +1223 407 2 f 10.00 2024-02-12 19:07:04.061051 2024-02-12 19:07:04.061051 \N +1224 407 3 f 15.00 2024-02-12 19:07:04.062841 2024-02-12 19:07:04.062841 \N +1222 407 1 t 5.00 2024-02-12 19:07:04.059247 2024-02-12 19:07:04.276641 \N +2213 737 2 f 10.00 2024-02-12 22:28:20.802637 2024-02-12 22:28:20.802637 \N +1227 408 3 f 15.00 2024-02-12 19:08:01.053948 2024-02-12 19:08:01.053948 \N +1226 408 2 f 10.00 2024-02-12 19:08:01.051674 2024-02-12 19:08:01.051674 \N +1225 408 1 t 5.00 2024-02-12 19:08:01.04563 2024-02-12 19:08:01.267005 \N +1230 409 3 f 15.00 2024-02-12 19:08:57.88913 2024-02-12 19:08:57.88913 \N +1229 409 2 f 10.00 2024-02-12 19:08:57.887403 2024-02-12 19:08:57.887403 \N +1228 409 1 t 5.00 2024-02-12 19:08:57.885676 2024-02-12 19:08:58.091235 \N +1233 410 3 f 15.00 2024-02-12 19:09:54.878356 2024-02-12 19:09:54.878356 \N +1232 410 2 f 10.00 2024-02-12 19:09:54.874903 2024-02-12 19:09:54.874903 \N +1231 410 1 t 5.00 2024-02-12 19:09:54.872782 2024-02-12 19:09:55.075486 \N +1236 411 3 f 15.00 2024-02-12 19:10:51.695767 2024-02-12 19:10:51.695767 \N +1235 411 2 f 10.00 2024-02-12 19:10:51.693674 2024-02-12 19:10:51.693674 \N +1234 411 1 t 5.00 2024-02-12 19:10:51.691596 2024-02-12 19:10:51.901295 \N +1238 412 2 f 10.00 2024-02-12 19:11:48.657563 2024-02-12 19:11:48.657563 \N +1239 412 3 f 15.00 2024-02-12 19:11:48.659508 2024-02-12 19:11:48.659508 \N +1237 412 1 t 5.00 2024-02-12 19:11:48.655065 2024-02-12 19:11:48.861686 \N +1241 413 2 f 10.00 2024-02-12 19:12:45.495639 2024-02-12 19:12:45.495639 \N +1242 413 3 f 15.00 2024-02-12 19:12:45.497543 2024-02-12 19:12:45.497543 \N +1240 413 1 t 5.00 2024-02-12 19:12:45.493717 2024-02-12 19:12:45.698194 \N +1245 414 3 f 15.00 2024-02-12 19:13:42.434022 2024-02-12 19:13:42.434022 \N +1244 414 2 f 10.00 2024-02-12 19:13:42.430947 2024-02-12 19:13:42.430947 \N +1243 414 1 t 5.00 2024-02-12 19:13:42.427952 2024-02-12 19:13:42.665177 \N +1247 415 2 f 10.00 2024-02-12 19:14:39.381017 2024-02-12 19:14:39.381017 \N +1248 415 3 f 15.00 2024-02-12 19:14:39.383412 2024-02-12 19:14:39.383412 \N +1246 415 1 t 5.00 2024-02-12 19:14:39.378658 2024-02-12 19:14:39.614558 \N +1250 416 2 f 10.00 2024-02-12 19:15:36.43038 2024-02-12 19:15:36.43038 \N +1251 416 3 f 15.00 2024-02-12 19:15:36.432433 2024-02-12 19:15:36.432433 \N +1249 416 1 t 5.00 2024-02-12 19:15:36.428213 2024-02-12 19:15:36.652815 \N +1254 417 3 f 15.00 2024-02-12 19:16:33.257228 2024-02-12 19:16:33.257228 \N +1253 417 2 f 10.00 2024-02-12 19:16:33.255539 2024-02-12 19:16:33.255539 \N +1252 417 1 t 5.00 2024-02-12 19:16:33.253793 2024-02-12 19:16:33.483853 \N +1257 418 3 f 15.00 2024-02-12 19:17:30.099017 2024-02-12 19:17:30.099017 \N +1256 418 2 f 10.00 2024-02-12 19:17:30.093956 2024-02-12 19:17:30.093956 \N +1255 418 1 t 5.00 2024-02-12 19:17:30.091951 2024-02-12 19:17:30.320217 \N +1260 419 3 f 15.00 2024-02-12 19:18:26.96036 2024-02-12 19:18:26.96036 \N +1259 419 2 f 10.00 2024-02-12 19:18:26.957727 2024-02-12 19:18:26.957727 \N +1258 419 1 t 5.00 2024-02-12 19:18:26.9543 2024-02-12 19:18:27.199968 \N +1263 420 3 f 15.00 2024-02-12 19:19:23.872248 2024-02-12 19:19:23.872248 \N +1262 420 2 f 10.00 2024-02-12 19:19:23.870385 2024-02-12 19:19:23.870385 \N +1261 420 1 t 5.00 2024-02-12 19:19:23.868166 2024-02-12 19:19:24.090239 \N +1265 421 2 f 10.00 2024-02-12 19:20:20.560547 2024-02-12 19:20:20.560547 \N +1266 421 3 f 15.00 2024-02-12 19:20:20.56284 2024-02-12 19:20:20.56284 \N +1264 421 1 t 5.00 2024-02-12 19:20:20.558183 2024-02-12 19:20:20.800528 \N +1269 422 3 f 15.00 2024-02-12 19:21:17.345388 2024-02-12 19:21:17.345388 \N +1268 422 2 f 10.00 2024-02-12 19:21:17.343197 2024-02-12 19:21:17.343197 \N +1267 422 1 t 5.00 2024-02-12 19:21:17.340568 2024-02-12 19:21:17.559932 \N +1272 423 3 f 15.00 2024-02-12 19:22:14.565453 2024-02-12 19:22:14.565453 \N +1271 423 2 f 10.00 2024-02-12 19:22:14.563275 2024-02-12 19:22:14.563275 \N +1270 423 1 t 5.00 2024-02-12 19:22:14.561006 2024-02-12 19:22:14.818345 \N +1275 424 3 f 15.00 2024-02-12 19:23:11.409971 2024-02-12 19:23:11.409971 \N +1274 424 2 f 10.00 2024-02-12 19:23:11.408159 2024-02-12 19:23:11.408159 \N +1273 424 1 t 5.00 2024-02-12 19:23:11.406271 2024-02-12 19:23:11.624292 \N +1277 425 2 f 10.00 2024-02-12 19:24:08.621103 2024-02-12 19:24:08.621103 \N +1278 425 3 f 15.00 2024-02-12 19:24:08.62463 2024-02-12 19:24:08.62463 \N +1276 425 1 t 5.00 2024-02-12 19:24:08.618946 2024-02-12 19:24:08.843621 \N +1280 426 2 f 10.00 2024-02-12 19:25:05.741676 2024-02-12 19:25:05.741676 \N +1281 426 3 f 15.00 2024-02-12 19:25:05.743542 2024-02-12 19:25:05.743542 \N +1279 426 1 t 5.00 2024-02-12 19:25:05.739796 2024-02-12 19:25:05.970724 \N +1284 427 3 f 15.00 2024-02-12 19:26:02.94004 2024-02-12 19:26:02.94004 \N +1283 427 2 f 10.00 2024-02-12 19:26:02.93653 2024-02-12 19:26:02.93653 \N +1282 427 1 t 5.00 2024-02-12 19:26:02.934479 2024-02-12 19:26:03.154284 \N +1286 428 2 f 10.00 2024-02-12 19:27:00.185805 2024-02-12 19:27:00.185805 \N +1287 428 3 f 15.00 2024-02-12 19:27:00.18798 2024-02-12 19:27:00.18798 \N +1285 428 1 t 5.00 2024-02-12 19:27:00.183449 2024-02-12 19:27:00.506027 \N +1290 429 3 f 15.00 2024-02-12 19:27:57.202599 2024-02-12 19:27:57.202599 \N +1289 429 2 f 10.00 2024-02-12 19:27:57.200566 2024-02-12 19:27:57.200566 \N +1288 429 1 t 5.00 2024-02-12 19:27:57.198422 2024-02-12 19:27:57.438482 \N +1292 430 2 f 10.00 2024-02-12 19:28:54.047868 2024-02-12 19:28:54.047868 \N +1293 430 3 f 15.00 2024-02-12 19:28:54.049727 2024-02-12 19:28:54.049727 \N +1291 430 1 t 5.00 2024-02-12 19:28:54.045906 2024-02-12 19:28:54.252674 \N +1295 431 2 f 10.00 2024-02-12 19:29:51.072004 2024-02-12 19:29:51.072004 \N +1296 431 3 f 15.00 2024-02-12 19:29:51.074604 2024-02-12 19:29:51.074604 \N +1294 431 1 t 5.00 2024-02-12 19:29:51.069834 2024-02-12 19:29:51.32042 \N +1299 432 3 f 15.00 2024-02-12 19:30:48.388483 2024-02-12 19:30:48.388483 \N +1298 432 2 f 10.00 2024-02-12 19:30:48.385993 2024-02-12 19:30:48.385993 \N +1297 432 1 t 5.00 2024-02-12 19:30:48.383643 2024-02-12 19:30:48.614172 \N +1302 433 3 f 15.00 2024-02-12 19:31:45.456163 2024-02-12 19:31:45.456163 \N +1301 433 2 f 10.00 2024-02-12 19:31:45.454364 2024-02-12 19:31:45.454364 \N +1300 433 1 t 5.00 2024-02-12 19:31:45.452402 2024-02-12 19:31:45.677282 \N +1305 434 3 f 15.00 2024-02-12 19:32:42.468678 2024-02-12 19:32:42.468678 \N +1304 434 2 f 10.00 2024-02-12 19:32:42.466604 2024-02-12 19:32:42.466604 \N +1303 434 1 t 5.00 2024-02-12 19:32:42.464612 2024-02-12 19:32:42.704111 \N +1307 435 2 f 10.00 2024-02-12 19:33:39.58452 2024-02-12 19:33:39.58452 \N +1308 435 3 f 15.00 2024-02-12 19:33:39.586685 2024-02-12 19:33:39.586685 \N +1306 435 1 t 5.00 2024-02-12 19:33:39.582419 2024-02-12 19:33:39.807495 \N +1310 436 2 f 10.00 2024-02-12 19:34:36.685459 2024-02-12 19:34:36.685459 \N +1311 436 3 f 15.00 2024-02-12 19:34:36.688005 2024-02-12 19:34:36.688005 \N +1309 436 1 t 5.00 2024-02-12 19:34:36.682632 2024-02-12 19:34:36.904585 \N +1314 437 3 f 15.00 2024-02-12 19:35:33.726953 2024-02-12 19:35:33.726953 \N +1313 437 2 f 10.00 2024-02-12 19:35:33.724984 2024-02-12 19:35:33.724984 \N +1312 437 1 t 5.00 2024-02-12 19:35:33.723 2024-02-12 19:35:33.940234 \N +1317 438 3 f 15.00 2024-02-12 19:36:30.727218 2024-02-12 19:36:30.727218 \N +1320 439 3 f 15.00 2024-02-12 19:37:27.81421 2024-02-12 19:37:27.81421 \N +1316 438 2 f 10.00 2024-02-12 19:36:30.725365 2024-02-12 19:36:30.725365 \N +1315 438 1 t 5.00 2024-02-12 19:36:30.723432 2024-02-12 19:36:30.94341 \N +1370 456 2 f 10.00 2024-02-12 19:53:36.992101 2024-02-12 19:53:36.992101 \N +1371 456 3 f 15.00 2024-02-12 19:53:36.993991 2024-02-12 19:53:36.993991 \N +1369 456 1 t 5.00 2024-02-12 19:53:36.989876 2024-02-12 19:53:37.218715 \N +2214 737 3 f 15.00 2024-02-12 22:28:20.80541 2024-02-12 22:28:20.80541 \N +2212 737 1 t 5.00 2024-02-12 22:28:20.798544 2024-02-12 22:28:21.486365 \N +2216 738 2 f 10.00 2024-02-12 22:28:25.281721 2024-02-12 22:28:25.281721 \N +2217 738 3 f 15.00 2024-02-12 22:28:25.283995 2024-02-12 22:28:25.283995 \N +1431 476 3 f 15.00 2024-02-12 20:11:39.798801 2024-02-12 20:11:39.798801 \N +1430 476 2 f 10.00 2024-02-12 20:11:39.796765 2024-02-12 20:11:39.796765 \N +1429 476 1 t 5.00 2024-02-12 20:11:39.794671 2024-02-12 20:11:40.032742 \N +1557 518 3 f 15.00 2024-02-12 21:27:07.948025 2024-02-12 21:27:07.948025 \N +1556 518 2 f 10.00 2024-02-12 21:27:07.945723 2024-02-12 21:27:07.945723 \N +1995 664 3 f 15.00 2024-02-12 22:08:14.301054 2024-02-12 22:08:14.301054 \N +1994 664 2 f 10.00 2024-02-12 22:08:14.298853 2024-02-12 22:08:14.298853 \N +1555 518 1 t 5.00 2024-02-12 21:27:07.943859 2024-02-12 21:27:08.204763 \N +1993 664 1 t 5.00 2024-02-12 22:08:14.296143 2024-02-12 22:08:14.554882 \N +1445 481 2 f 10.00 2024-02-12 20:13:31.444481 2024-02-12 20:13:31.444481 \N +1446 481 3 f 15.00 2024-02-12 20:13:31.447263 2024-02-12 20:13:31.447263 \N +1444 481 1 t 5.00 2024-02-12 20:13:31.442632 2024-02-12 20:13:31.685828 \N +1605 534 3 f 15.00 2024-02-12 21:32:34.500085 2024-02-12 21:32:34.500085 \N +1604 534 2 f 10.00 2024-02-12 21:32:34.497745 2024-02-12 21:32:34.497745 \N +1603 534 1 t 5.00 2024-02-12 21:32:34.49538 2024-02-12 21:32:34.748764 \N +1611 536 3 f 15.00 2024-02-12 21:32:43.531513 2024-02-12 21:32:43.531513 \N +1610 536 2 f 10.00 2024-02-12 21:32:43.529687 2024-02-12 21:32:43.529687 \N +1609 536 1 t 5.00 2024-02-12 21:32:43.527712 2024-02-12 21:32:43.745566 \N +1434 477 3 f 15.00 2024-02-12 20:11:57.097117 2024-02-12 20:11:57.097117 \N +1433 477 2 f 10.00 2024-02-12 20:11:57.095039 2024-02-12 20:11:57.095039 \N +1432 477 1 t 5.00 2024-02-12 20:11:57.09307 2024-02-12 20:24:42.464147 \N +2004 667 3 f 15.00 2024-02-12 22:08:25.365064 2024-02-12 22:08:25.365064 \N +2003 667 2 f 10.00 2024-02-12 22:08:25.362957 2024-02-12 22:08:25.362957 \N +2002 667 1 t 5.00 2024-02-12 22:08:25.360939 2024-02-12 22:08:25.600771 \N +1565 521 2 f 10.00 2024-02-12 21:27:29.086387 2024-02-12 21:27:29.086387 \N +1674 557 3 f 15.00 2024-02-12 21:37:14.580199 2024-02-12 21:37:14.580199 \N +1673 557 2 f 10.00 2024-02-12 21:37:14.578076 2024-02-12 21:37:14.578076 \N +1672 557 1 t 5.00 2024-02-12 21:37:14.575703 2024-02-12 21:37:14.800873 \N +2007 668 3 f 15.00 2024-02-12 22:08:29.773193 2024-02-12 22:08:29.773193 \N +1566 521 3 f 15.00 2024-02-12 21:27:29.088763 2024-02-12 21:27:29.088763 \N +1677 558 3 f 15.00 2024-02-12 21:37:21.347748 2024-02-12 21:37:21.347748 \N +1676 558 2 f 10.00 2024-02-12 21:37:21.345759 2024-02-12 21:37:21.345759 \N +2006 668 2 f 10.00 2024-02-12 22:08:29.77115 2024-02-12 22:08:29.77115 \N +1675 558 1 t 5.00 2024-02-12 21:37:21.3436 2024-02-12 21:37:21.575368 \N +1680 559 3 f 15.00 2024-02-12 21:37:28.353196 2024-02-12 21:37:28.353196 \N +1679 559 2 f 10.00 2024-02-12 21:37:28.351178 2024-02-12 21:37:28.351178 \N +2005 668 1 t 5.00 2024-02-12 22:08:29.768891 2024-02-12 22:08:29.981648 \N +1564 521 1 t 5.00 2024-02-12 21:27:29.084215 2024-02-12 21:27:29.355541 \N +1678 559 1 t 5.00 2024-02-12 21:37:28.349042 2024-02-12 21:37:28.575843 \N +1833 610 3 f 15.00 2024-02-12 21:53:09.293688 2024-02-12 21:53:09.293688 \N +2037 678 3 f 15.00 2024-02-12 22:12:16.113672 2024-02-12 22:12:16.113672 \N +2102 700 2 f 10.00 2024-02-12 22:17:42.624435 2024-02-12 22:17:42.624435 \N +1703 567 2 f 10.00 2024-02-12 21:40:40.391266 2024-02-12 21:40:40.391266 \N +1704 567 3 f 15.00 2024-02-12 21:40:40.393421 2024-02-12 21:40:40.393421 \N +1702 567 1 t 5.00 2024-02-12 21:40:40.388802 2024-02-12 21:40:40.622383 \N +2042 680 2 f 10.00 2024-02-12 22:12:30.641671 2024-02-12 22:12:30.641671 \N +2046 681 3 f 15.00 2024-02-12 22:12:33.425067 2024-02-12 22:12:33.425067 \N +2045 681 2 f 10.00 2024-02-12 22:12:33.422947 2024-02-12 22:12:33.422947 \N +1790 596 2 f 10.00 2024-02-12 21:49:53.302984 2024-02-12 21:49:53.302984 \N +1791 596 3 f 15.00 2024-02-12 21:49:53.304782 2024-02-12 21:49:53.304782 \N +1789 596 1 t 5.00 2024-02-12 21:49:53.301017 2024-02-12 21:49:53.522374 \N +1551 516 3 f 15.00 2024-02-12 21:27:06.003493 2024-02-12 21:27:06.003493 \N +1550 516 2 f 10.00 2024-02-12 21:27:06.001026 2024-02-12 21:27:06.001026 \N +1549 516 1 t 5.00 2024-02-12 21:27:05.997348 2024-02-12 21:27:06.270417 \N +2036 678 2 f 10.00 2024-02-12 22:12:16.111413 2024-02-12 22:12:16.111413 \N +2035 678 1 t 5.00 2024-02-12 22:12:16.109405 2024-02-12 22:12:16.339065 \N +1767 588 3 f 15.00 2024-02-12 21:46:15.114204 2024-02-12 21:46:15.114204 \N +1766 588 2 f 10.00 2024-02-12 21:46:15.11222 2024-02-12 21:46:15.11222 \N +1765 588 1 t 5.00 2024-02-12 21:46:15.110132 2024-02-12 21:46:15.332139 \N +1793 597 2 f 10.00 2024-02-12 21:50:00.302969 2024-02-12 21:50:00.302969 \N +2043 680 3 f 15.00 2024-02-12 22:12:30.644481 2024-02-12 22:12:30.644481 \N +2041 680 1 t 5.00 2024-02-12 22:12:30.639491 2024-02-12 22:12:30.959543 \N +1781 593 2 f 10.00 2024-02-12 21:49:31.177694 2024-02-12 21:49:31.177694 \N +1782 593 3 f 15.00 2024-02-12 21:49:31.180267 2024-02-12 21:49:31.180267 \N +1780 593 1 t 5.00 2024-02-12 21:49:31.175045 2024-02-12 21:49:31.569937 \N +2044 681 1 t 5.00 2024-02-12 22:12:33.420075 2024-02-12 22:12:33.719178 \N +1794 597 3 f 15.00 2024-02-12 21:50:00.305113 2024-02-12 21:50:00.305113 \N +1792 597 1 t 5.00 2024-02-12 21:50:00.300844 2024-02-12 21:50:00.547352 \N +1803 600 3 f 15.00 2024-02-12 21:50:19.503776 2024-02-12 21:50:19.503776 \N +1802 600 2 f 10.00 2024-02-12 21:50:19.50172 2024-02-12 21:50:19.50172 \N +1801 600 1 t 5.00 2024-02-12 21:50:19.498788 2024-02-12 21:50:19.721339 \N +1832 610 2 f 10.00 2024-02-12 21:53:09.286262 2024-02-12 21:53:09.286262 \N +1831 610 1 t 5.00 2024-02-12 21:53:09.274131 2024-02-12 21:53:09.620449 \N +1848 615 3 f 15.00 2024-02-12 21:53:35.775997 2024-02-12 21:53:35.775997 \N +1847 615 2 f 10.00 2024-02-12 21:53:35.773838 2024-02-12 21:53:35.773838 \N +1846 615 1 t 5.00 2024-02-12 21:53:35.771349 2024-02-12 21:53:36.049028 \N +2103 700 3 f 15.00 2024-02-12 22:17:42.628036 2024-02-12 22:17:42.628036 \N +2101 700 1 t 5.00 2024-02-12 22:17:42.620543 2024-02-12 22:17:43.032689 \N +2106 701 3 f 15.00 2024-02-12 22:17:43.712584 2024-02-12 22:17:43.712584 \N +2105 701 2 f 10.00 2024-02-12 22:17:43.71052 2024-02-12 22:17:43.71052 \N +2104 701 1 t 5.00 2024-02-12 22:17:43.708507 2024-02-12 22:17:43.964218 \N +2168 722 2 f 10.00 2024-02-12 22:26:33.395515 2024-02-12 22:26:33.395515 \N +2169 722 3 f 15.00 2024-02-12 22:26:33.399706 2024-02-12 22:26:33.399706 \N +2167 722 1 t 5.00 2024-02-12 22:26:33.392089 2024-02-12 22:26:33.883148 \N +2179 726 1 t 5.00 2024-02-12 22:26:39.666735 2024-02-12 22:26:39.910946 \N +1319 439 2 f 10.00 2024-02-12 19:37:27.812058 2024-02-12 19:37:27.812058 \N +1318 439 1 t 5.00 2024-02-12 19:37:27.809872 2024-02-12 19:37:28.035363 \N +1326 441 3 f 15.00 2024-02-12 19:39:21.624785 2024-02-12 19:39:21.624785 \N +1325 441 2 f 10.00 2024-02-12 19:39:21.622622 2024-02-12 19:39:21.622622 \N +1324 441 1 t 5.00 2024-02-12 19:39:21.620491 2024-02-12 19:39:21.836552 \N +1377 458 3 f 15.00 2024-02-12 19:55:30.775784 2024-02-12 19:55:30.775784 \N +1376 458 2 f 10.00 2024-02-12 19:55:30.773626 2024-02-12 19:55:30.773626 \N +1329 442 3 f 15.00 2024-02-12 19:40:18.8429 2024-02-12 19:40:18.8429 \N +1328 442 2 f 10.00 2024-02-12 19:40:18.840802 2024-02-12 19:40:18.840802 \N +1327 442 1 t 5.00 2024-02-12 19:40:18.838754 2024-02-12 19:40:19.084266 \N +2215 738 1 t 5.00 2024-02-12 22:28:25.279222 2024-02-12 22:28:25.560476 \N +1375 458 1 t 5.00 2024-02-12 19:55:30.771236 2024-02-12 19:55:30.980827 \N +1380 459 3 f 15.00 2024-02-12 19:56:27.547948 2024-02-12 19:56:27.547948 \N +1963 654 1 t 5.00 2024-02-12 22:07:02.079741 2024-02-12 22:07:02.350229 \N +1379 459 2 f 10.00 2024-02-12 19:56:27.546135 2024-02-12 19:56:27.546135 \N +1378 459 1 t 5.00 2024-02-12 19:56:27.544145 2024-02-12 19:56:27.744027 \N +1796 598 2 f 10.00 2024-02-12 21:50:11.928009 2024-02-12 21:50:11.928009 \N +1797 598 3 f 15.00 2024-02-12 21:50:11.930243 2024-02-12 21:50:11.930243 \N +2225 741 2 f 10.00 2024-02-12 22:31:15.808433 2024-02-12 22:31:15.808433 \N +1795 598 1 t 5.00 2024-02-12 21:50:11.925689 2024-02-12 21:50:12.163609 \N +1898 632 2 f 10.00 2024-02-12 21:58:40.896193 2024-02-12 21:58:40.896193 \N +1899 632 3 f 15.00 2024-02-12 21:58:40.89851 2024-02-12 21:58:40.89851 \N +2226 741 3 f 15.00 2024-02-12 22:31:15.810473 2024-02-12 22:31:15.810473 \N +1596 531 3 f 15.00 2024-02-12 21:32:18.12232 2024-02-12 21:32:18.12232 \N +1595 531 2 f 10.00 2024-02-12 21:32:18.113036 2024-02-12 21:32:18.113036 \N +1469 489 2 f 10.00 2024-02-12 20:20:25.486742 2024-02-12 20:20:25.486742 \N +1470 489 3 f 15.00 2024-02-12 20:20:25.488578 2024-02-12 20:20:25.488578 \N +1594 531 1 t 5.00 2024-02-12 21:32:18.111029 2024-02-12 21:32:18.340024 \N +1468 489 1 t 5.00 2024-02-12 20:20:25.484831 2024-02-12 20:20:59.99101 \N +1897 632 1 t 5.00 2024-02-12 21:58:40.893922 2024-02-12 21:58:41.225206 \N +1932 643 3 f 15.00 2024-02-12 22:03:16.781498 2024-02-12 22:03:16.781498 \N +1931 643 2 f 10.00 2024-02-12 22:03:16.777417 2024-02-12 22:03:16.777417 \N +1930 643 1 t 5.00 2024-02-12 22:03:16.769335 2024-02-12 22:03:17.179152 \N +2224 741 1 t 5.00 2024-02-12 22:31:15.806135 2024-02-12 22:31:16.019261 \N +1935 644 3 f 15.00 2024-02-12 22:03:18.886506 2024-02-12 22:03:18.886506 \N +1686 561 3 f 15.00 2024-02-12 21:37:30.014164 2024-02-12 21:37:30.014164 \N +1685 561 2 f 10.00 2024-02-12 21:37:30.012218 2024-02-12 21:37:30.012218 \N +1934 644 2 f 10.00 2024-02-12 22:03:18.884543 2024-02-12 22:03:18.884543 \N +1684 561 1 t 5.00 2024-02-12 21:37:30.009894 2024-02-12 21:37:30.257611 \N +1933 644 1 t 5.00 2024-02-12 22:03:18.882544 2024-02-12 22:03:19.124346 \N +1697 565 2 f 10.00 2024-02-12 21:38:36.583035 2024-02-12 21:38:36.583035 \N +1698 565 3 f 15.00 2024-02-12 21:38:36.585059 2024-02-12 21:38:36.585059 \N +1696 565 1 t 5.00 2024-02-12 21:38:36.580198 2024-02-12 21:38:36.808976 \N +1937 645 2 f 10.00 2024-02-12 22:03:27.62821 2024-02-12 22:03:27.62821 \N +1938 645 3 f 15.00 2024-02-12 22:03:27.630205 2024-02-12 22:03:27.630205 \N +1936 645 1 t 5.00 2024-02-12 22:03:27.626112 2024-02-12 22:03:27.854015 \N +1712 570 2 f 10.00 2024-02-12 21:43:40.583527 2024-02-12 21:43:40.583527 \N +1713 570 3 f 15.00 2024-02-12 21:43:40.585657 2024-02-12 21:43:40.585657 \N +1711 570 1 t 5.00 2024-02-12 21:43:40.581257 2024-02-12 21:43:40.809564 \N +2048 682 2 f 10.00 2024-02-12 22:12:41.521529 2024-02-12 22:12:41.521529 \N +2049 682 3 f 15.00 2024-02-12 22:12:41.523756 2024-02-12 22:12:41.523756 \N +2240 746 2 f 10.00 2024-02-12 22:31:48.955996 2024-02-12 22:31:48.955996 \N +1965 654 3 f 15.00 2024-02-12 22:07:02.08459 2024-02-12 22:07:02.08459 \N +2241 746 3 f 15.00 2024-02-12 22:31:48.958577 2024-02-12 22:31:48.958577 \N +1964 654 2 f 10.00 2024-02-12 22:07:02.082428 2024-02-12 22:07:02.082428 \N +2239 746 1 t 5.00 2024-02-12 22:31:48.953663 2024-02-12 22:31:49.235207 \N +2047 682 1 t 5.00 2024-02-12 22:12:41.519335 2024-02-12 22:12:41.770211 \N +2001 666 3 f 15.00 2024-02-12 22:08:20.226374 2024-02-12 22:08:20.226374 \N +2000 666 2 f 10.00 2024-02-12 22:08:20.224065 2024-02-12 22:08:20.224065 \N +1999 666 1 t 5.00 2024-02-12 22:08:20.221939 2024-02-12 22:08:20.566103 \N +2010 669 3 f 15.00 2024-02-12 22:09:13.754076 2024-02-12 22:09:13.754076 \N +2009 669 2 f 10.00 2024-02-12 22:09:13.752117 2024-02-12 22:09:13.752117 \N +2008 669 1 t 5.00 2024-02-12 22:09:13.750092 2024-02-12 22:09:13.977626 \N +2054 684 2 f 10.00 2024-02-12 22:12:47.015369 2024-02-12 22:12:47.015369 \N +2055 684 3 f 15.00 2024-02-12 22:12:47.017634 2024-02-12 22:12:47.017634 \N +2053 684 1 t 5.00 2024-02-12 22:12:47.013265 2024-02-12 22:12:47.263053 \N +2078 692 2 f 10.00 2024-02-12 22:17:12.097739 2024-02-12 22:17:12.097739 \N +2079 692 3 f 15.00 2024-02-12 22:17:12.101274 2024-02-12 22:17:12.101274 \N +2077 692 1 t 5.00 2024-02-12 22:17:12.08671 2024-02-12 22:17:13.661038 \N +2085 694 3 f 15.00 2024-02-12 22:17:15.61423 2024-02-12 22:17:15.61423 \N +2084 694 2 f 10.00 2024-02-12 22:17:15.610042 2024-02-12 22:17:15.610042 \N +2083 694 1 t 5.00 2024-02-12 22:17:15.601191 2024-02-12 22:17:16.196066 \N +2192 730 2 f 10.00 2024-02-12 22:27:04.595915 2024-02-12 22:27:04.595915 \N +2191 730 1 t 5.00 2024-02-12 22:27:04.593979 2024-02-12 22:27:04.813384 \N +2114 704 2 f 10.00 2024-02-12 22:19:08.687119 2024-02-12 22:19:08.687119 \N +2115 704 3 f 15.00 2024-02-12 22:19:08.689929 2024-02-12 22:19:08.689929 \N +2113 704 1 t 5.00 2024-02-12 22:19:08.683975 2024-02-12 22:19:08.976226 \N +2160 719 3 f 15.00 2024-02-12 22:22:47.816357 2024-02-12 22:22:47.816357 \N +2159 719 2 f 10.00 2024-02-12 22:22:47.81423 2024-02-12 22:22:47.81423 \N +2158 719 1 t 5.00 2024-02-12 22:22:47.811396 2024-02-12 22:22:48.047799 \N +2199 732 3 f 15.00 2024-02-12 22:27:08.03692 2024-02-12 22:27:08.03692 \N +2193 730 3 f 15.00 2024-02-12 22:27:04.597693 2024-02-12 22:27:04.597693 \N +2196 731 3 f 15.00 2024-02-12 22:27:05.608175 2024-02-12 22:27:05.608175 \N +2195 731 2 f 10.00 2024-02-12 22:27:05.606005 2024-02-12 22:27:05.606005 \N +2194 731 1 t 5.00 2024-02-12 22:27:05.603966 2024-02-12 22:27:05.827798 \N +2198 732 2 f 10.00 2024-02-12 22:27:08.034782 2024-02-12 22:27:08.034782 \N +2197 732 1 t 5.00 2024-02-12 22:27:08.03282 2024-02-12 22:27:08.265852 \N +1323 440 3 f 15.00 2024-02-12 19:38:24.822838 2024-02-12 19:38:24.822838 \N +1322 440 2 f 10.00 2024-02-12 19:38:24.820845 2024-02-12 19:38:24.820845 \N +1321 440 1 t 5.00 2024-02-12 19:38:24.818818 2024-02-12 19:38:25.054599 \N +1383 460 3 f 15.00 2024-02-12 19:57:24.24544 2024-02-12 19:57:24.24544 \N +1382 460 2 f 10.00 2024-02-12 19:57:24.243184 2024-02-12 19:57:24.243184 \N +1878 625 3 f 15.00 2024-02-12 21:57:57.152614 2024-02-12 21:57:57.152614 \N +1381 460 1 t 5.00 2024-02-12 19:57:24.241176 2024-02-12 19:57:24.450297 \N +1876 625 1 t 5.00 2024-02-12 21:57:57.13211 2024-02-12 21:57:57.47149 \N +1389 462 3 f 15.00 2024-02-12 19:59:18.556331 2024-02-12 19:59:18.556331 \N +1388 462 2 f 10.00 2024-02-12 19:59:18.553599 2024-02-12 19:59:18.553599 \N +1662 553 3 f 15.00 2024-02-12 21:37:01.433575 2024-02-12 21:37:01.433575 \N +1387 462 1 t 5.00 2024-02-12 19:59:18.551552 2024-02-12 19:59:18.782666 \N +1661 553 2 f 10.00 2024-02-12 21:37:01.431242 2024-02-12 21:37:01.431242 \N +1392 463 3 f 15.00 2024-02-12 20:00:15.465105 2024-02-12 20:00:15.465105 \N +1391 463 2 f 10.00 2024-02-12 20:00:15.463264 2024-02-12 20:00:15.463264 \N +1390 463 1 t 5.00 2024-02-12 20:00:15.461144 2024-02-12 20:00:15.673622 \N +1400 466 2 f 10.00 2024-02-12 20:03:06.487469 2024-02-12 20:03:06.487469 \N +1401 466 3 f 15.00 2024-02-12 20:03:06.489337 2024-02-12 20:03:06.489337 \N +1399 466 1 t 5.00 2024-02-12 20:03:06.485645 2024-02-12 20:03:06.702904 \N +1409 469 2 f 10.00 2024-02-12 20:05:57.045258 2024-02-12 20:05:57.045258 \N +1410 469 3 f 15.00 2024-02-12 20:05:57.048002 2024-02-12 20:05:57.048002 \N +1408 469 1 t 5.00 2024-02-12 20:05:57.043236 2024-02-12 20:05:57.257183 \N +1607 535 2 f 10.00 2024-02-12 21:32:39.451914 2024-02-12 21:32:39.451914 \N +1412 470 2 f 10.00 2024-02-12 20:06:54.014673 2024-02-12 20:06:54.014673 \N +1413 470 3 f 15.00 2024-02-12 20:06:54.016723 2024-02-12 20:06:54.016723 \N +1608 535 3 f 15.00 2024-02-12 21:32:39.453948 2024-02-12 21:32:39.453948 \N +1411 470 1 t 5.00 2024-02-12 20:06:54.012536 2024-02-12 20:06:54.243283 \N +1419 472 3 f 15.00 2024-02-12 20:08:48.827887 2024-02-12 20:08:48.827887 \N +1418 472 2 f 10.00 2024-02-12 20:08:48.825638 2024-02-12 20:08:48.825638 \N +1606 535 1 t 5.00 2024-02-12 21:32:39.449522 2024-02-12 21:32:39.678958 \N +1417 472 1 t 5.00 2024-02-12 20:08:48.822618 2024-02-12 20:08:49.074802 \N +1660 553 1 t 5.00 2024-02-12 21:37:01.428916 2024-02-12 21:37:01.662042 \N +1461 486 3 f 15.00 2024-02-12 20:17:49.534731 2024-02-12 20:17:49.534731 \N +1460 486 2 f 10.00 2024-02-12 20:17:49.532947 2024-02-12 20:17:49.532947 \N +1459 486 1 t 5.00 2024-02-12 20:17:49.530878 2024-02-12 20:17:49.752759 \N +1619 539 2 f 10.00 2024-02-12 21:32:45.970541 2024-02-12 21:32:45.970541 \N +1620 539 3 f 15.00 2024-02-12 21:32:45.974985 2024-02-12 21:32:45.974985 \N +1618 539 1 t 5.00 2024-02-12 21:32:45.959979 2024-02-12 21:32:46.300157 \N +1886 628 2 f 10.00 2024-02-12 21:58:14.218834 2024-02-12 21:58:14.218834 \N +1887 628 3 f 15.00 2024-02-12 21:58:14.220955 2024-02-12 21:58:14.220955 \N +1885 628 1 t 5.00 2024-02-12 21:58:14.216579 2024-02-12 21:58:14.464337 \N +1517 505 2 f 10.00 2024-02-12 20:40:22.160944 2024-02-12 20:40:22.160944 \N +1518 505 3 f 15.00 2024-02-12 20:40:22.162862 2024-02-12 20:40:22.162862 \N +1665 554 3 f 15.00 2024-02-12 21:37:05.872299 2024-02-12 21:37:05.872299 \N +1516 505 1 t 5.00 2024-02-12 20:40:22.158967 2024-02-12 21:24:22.94446 \N +1892 630 2 f 10.00 2024-02-12 21:58:21.543114 2024-02-12 21:58:21.543114 \N +1893 630 3 f 15.00 2024-02-12 21:58:21.544993 2024-02-12 21:58:21.544993 \N +1891 630 1 t 5.00 2024-02-12 21:58:21.54101 2024-02-12 21:58:21.883795 \N +1664 554 2 f 10.00 2024-02-12 21:37:05.870084 2024-02-12 21:37:05.870084 \N +1896 631 3 f 15.00 2024-02-12 21:58:26.464306 2024-02-12 21:58:26.464306 \N +1895 631 2 f 10.00 2024-02-12 21:58:26.4623 2024-02-12 21:58:26.4623 \N +1894 631 1 t 5.00 2024-02-12 21:58:26.460365 2024-02-12 21:58:26.687674 \N +1656 551 3 f 15.00 2024-02-12 21:36:58.331935 2024-02-12 21:36:58.331935 \N +1655 551 2 f 10.00 2024-02-12 21:36:58.32941 2024-02-12 21:36:58.32941 \N +1654 551 1 t 5.00 2024-02-12 21:36:58.32711 2024-02-12 21:36:58.567078 \N +1663 554 1 t 5.00 2024-02-12 21:37:05.868172 2024-02-12 21:37:06.143517 \N +1944 647 3 f 15.00 2024-02-12 22:03:34.276084 2024-02-12 22:03:34.276084 \N +1942 647 1 t 5.00 2024-02-12 22:03:34.271994 2024-02-12 22:03:34.504289 \N +1941 646 3 f 15.00 2024-02-12 22:03:31.217301 2024-02-12 22:03:31.217301 \N +1940 646 2 f 10.00 2024-02-12 22:03:31.215407 2024-02-12 22:03:31.215407 \N +1939 646 1 t 5.00 2024-02-12 22:03:31.213369 2024-02-12 22:03:31.451231 \N +1812 603 3 f 15.00 2024-02-12 21:52:52.233114 2024-02-12 21:52:52.233114 \N +1811 603 2 f 10.00 2024-02-12 21:52:52.230929 2024-02-12 21:52:52.230929 \N +1810 603 1 t 5.00 2024-02-12 21:52:52.228752 2024-02-12 21:52:52.475275 \N +1943 647 2 f 10.00 2024-02-12 22:03:34.274012 2024-02-12 22:03:34.274012 \N +1823 607 2 f 10.00 2024-02-12 21:52:58 2024-02-12 21:52:58 \N +1824 607 3 f 15.00 2024-02-12 21:52:58.001953 2024-02-12 21:52:58.001953 \N +1822 607 1 t 5.00 2024-02-12 21:52:57.997792 2024-02-12 21:52:58.238914 \N +1956 651 3 f 15.00 2024-02-12 22:06:36.24116 2024-02-12 22:06:36.24116 \N +1955 651 2 f 10.00 2024-02-12 22:06:36.239427 2024-02-12 22:06:36.239427 \N +1954 651 1 t 5.00 2024-02-12 22:06:36.23745 2024-02-12 22:06:36.577052 \N +2028 675 3 f 15.00 2024-02-12 22:12:10.977786 2024-02-12 22:12:10.977786 \N +2027 675 2 f 10.00 2024-02-12 22:12:10.97397 2024-02-12 22:12:10.97397 \N +1974 657 3 f 15.00 2024-02-12 22:07:14.537874 2024-02-12 22:07:14.537874 \N +1973 657 2 f 10.00 2024-02-12 22:07:14.535671 2024-02-12 22:07:14.535671 \N +1972 657 1 t 5.00 2024-02-12 22:07:14.533434 2024-02-12 22:07:14.795765 \N +2026 675 1 t 5.00 2024-02-12 22:12:10.9702 2024-02-12 22:12:11.431923 \N +2066 688 2 f 10.00 2024-02-12 22:13:54.171011 2024-02-12 22:13:54.171011 \N +2067 688 3 f 15.00 2024-02-12 22:13:54.173921 2024-02-12 22:13:54.173921 \N +2065 688 1 t 5.00 2024-02-12 22:13:54.167627 2024-02-12 22:13:54.482538 \N +2069 689 2 f 10.00 2024-02-12 22:13:56.891812 2024-02-12 22:13:56.891812 \N +2070 689 3 f 15.00 2024-02-12 22:13:56.893758 2024-02-12 22:13:56.893758 \N +2068 689 1 t 5.00 2024-02-12 22:13:56.889754 2024-02-12 22:13:57.109193 \N +2096 698 2 f 10.00 2024-02-12 22:17:24.74533 2024-02-12 22:17:24.74533 \N +2097 698 3 f 15.00 2024-02-12 22:17:24.747143 2024-02-12 22:17:24.747143 \N +2095 698 1 t 5.00 2024-02-12 22:17:24.743271 2024-02-12 22:17:24.973508 \N +2099 699 2 f 10.00 2024-02-12 22:17:40.237609 2024-02-12 22:17:40.237609 \N +2100 699 3 f 15.00 2024-02-12 22:17:40.239993 2024-02-12 22:17:40.239993 \N +2098 699 1 t 5.00 2024-02-12 22:17:40.235146 2024-02-12 22:17:40.445914 \N +2153 717 2 f 10.00 2024-02-12 22:22:38.691607 2024-02-12 22:22:38.691607 \N +2131 709 3 f 15.00 2024-02-12 22:22:09.282266 2024-02-12 22:22:09.282266 \N +2129 709 2 f 10.00 2024-02-12 22:22:09.276908 2024-02-12 22:22:09.276908 \N +2128 709 1 t 5.00 2024-02-12 22:22:09.273733 2024-02-12 22:22:09.60613 \N +2154 717 3 f 15.00 2024-02-12 22:22:38.693599 2024-02-12 22:22:38.693599 \N +2152 717 1 t 5.00 2024-02-12 22:22:38.689266 2024-02-12 22:22:38.927358 \N +2314 771 1 t 5.00 2024-02-12 22:37:42.938188 2024-02-12 22:37:43.154134 \N +2289 762 3 f 15.00 2024-02-12 22:37:01.649372 2024-02-12 22:37:01.649372 \N +2288 762 2 f 10.00 2024-02-12 22:37:01.64754 2024-02-12 22:37:01.64754 \N +2262 753 3 f 15.00 2024-02-12 22:32:52.489872 2024-02-12 22:32:52.489872 \N +2261 753 2 f 10.00 2024-02-12 22:32:52.487563 2024-02-12 22:32:52.487563 \N +2260 753 1 t 5.00 2024-02-12 22:32:52.485314 2024-02-12 22:32:52.876194 \N +2287 762 1 t 5.00 2024-02-12 22:37:01.645418 2024-02-12 22:37:01.880107 \N +2268 755 3 f 15.00 2024-02-12 22:32:58.706249 2024-02-12 22:32:58.706249 \N +2267 755 2 f 10.00 2024-02-12 22:32:58.704046 2024-02-12 22:32:58.704046 \N +2266 755 1 t 5.00 2024-02-12 22:32:58.701795 2024-02-12 22:32:58.945634 \N +2273 757 2 f 10.00 2024-02-12 22:33:00.711503 2024-02-12 22:33:00.711503 \N +2274 757 3 f 15.00 2024-02-12 22:33:00.713401 2024-02-12 22:33:00.713401 \N +2272 757 1 t 5.00 2024-02-12 22:33:00.709463 2024-02-12 22:33:00.92841 \N +2277 758 3 f 15.00 2024-02-12 22:33:52.061056 2024-02-12 22:33:52.061056 \N +2276 758 2 f 10.00 2024-02-12 22:33:52.059163 2024-02-12 22:33:52.059163 \N +2275 758 1 t 5.00 2024-02-12 22:33:52.052674 2024-02-12 22:33:52.396621 \N +2280 759 3 f 15.00 2024-02-12 22:33:54.953402 2024-02-12 22:33:54.953402 \N +2279 759 2 f 10.00 2024-02-12 22:33:54.951184 2024-02-12 22:33:54.951184 \N +2278 759 1 t 5.00 2024-02-12 22:33:54.949034 2024-02-12 22:33:55.189537 \N +2283 760 3 f 15.00 2024-02-12 22:36:58.893325 2024-02-12 22:36:58.893325 \N +2282 760 2 f 10.00 2024-02-12 22:36:58.891568 2024-02-12 22:36:58.891568 \N +2281 760 1 t 5.00 2024-02-12 22:36:58.889558 2024-02-12 22:36:59.106645 \N +2319 772 3 f 15.00 2024-02-12 22:37:44.294034 2024-02-12 22:37:44.294034 \N +2318 772 2 f 10.00 2024-02-12 22:37:44.291724 2024-02-12 22:37:44.291724 \N +2317 772 1 t 5.00 2024-02-12 22:37:44.289487 2024-02-12 22:37:44.529664 \N +2307 768 3 f 15.00 2024-02-12 22:37:34.852028 2024-02-12 22:37:34.852028 \N +2306 768 2 f 10.00 2024-02-12 22:37:34.849081 2024-02-12 22:37:34.849081 \N +2305 768 1 t 5.00 2024-02-12 22:37:34.845562 2024-02-12 22:37:35.26707 \N +2310 769 3 f 15.00 2024-02-12 22:37:35.60944 2024-02-12 22:37:35.60944 \N +2309 769 2 f 10.00 2024-02-12 22:37:35.606988 2024-02-12 22:37:35.606988 \N +2308 769 1 t 5.00 2024-02-12 22:37:35.604201 2024-02-12 22:37:35.859057 \N +2312 770 2 f 10.00 2024-02-12 22:37:37.078101 2024-02-12 22:37:37.078101 \N +2313 770 3 f 15.00 2024-02-12 22:37:37.080103 2024-02-12 22:37:37.080103 \N +2311 770 1 t 5.00 2024-02-12 22:37:37.076033 2024-02-12 22:37:37.348884 \N +2316 771 3 f 15.00 2024-02-12 22:37:42.942298 2024-02-12 22:37:42.942298 \N +2315 771 2 f 10.00 2024-02-12 22:37:42.940263 2024-02-12 22:37:42.940263 \N +2322 773 3 f 15.00 2024-02-12 22:37:49.711678 2024-02-12 22:37:49.711678 \N +2321 773 2 f 10.00 2024-02-12 22:37:49.709724 2024-02-12 22:37:49.709724 \N +2320 773 1 t 5.00 2024-02-12 22:37:49.707813 2024-02-12 22:37:49.930302 \N +2330 776 2 f 10.00 2024-02-12 22:38:57.33375 2024-02-12 22:38:57.33375 \N +2331 776 3 f 15.00 2024-02-12 22:38:57.335918 2024-02-12 22:38:57.335918 \N +2329 776 1 t 5.00 2024-02-12 22:38:57.331543 2024-02-12 22:38:57.56786 \N +2369 789 2 f 10.00 2024-02-12 22:42:08.732982 2024-02-12 22:42:08.732982 \N +2351 783 2 f 10.00 2024-02-12 22:41:50.525629 2024-02-12 22:41:50.525629 \N +2352 783 3 f 15.00 2024-02-12 22:41:50.528178 2024-02-12 22:41:50.528178 \N +2350 783 1 t 5.00 2024-02-12 22:41:50.522742 2024-02-12 22:41:50.792104 \N +2379 792 3 f 15.00 2024-02-12 22:42:18.11209 2024-02-12 22:42:18.11209 \N +2390 796 2 f 10.00 2024-02-12 22:43:22.710132 2024-02-12 22:43:22.710132 \N +2364 787 3 f 15.00 2024-02-12 22:42:04.904927 2024-02-12 22:42:04.904927 \N +2363 787 2 f 10.00 2024-02-12 22:42:04.903151 2024-02-12 22:42:04.903151 \N +2362 787 1 t 5.00 2024-02-12 22:42:04.901395 2024-02-12 22:42:05.12048 \N +2370 789 3 f 15.00 2024-02-12 22:42:08.736919 2024-02-12 22:42:08.736919 \N +2368 789 1 t 5.00 2024-02-12 22:42:08.72989 2024-02-12 22:42:09.172904 \N +2389 796 1 t 5.00 2024-02-12 22:43:22.708067 2024-02-12 22:43:22.996499 \N +2375 791 2 f 10.00 2024-02-12 22:42:13.848584 2024-02-12 22:42:13.848584 \N +2376 791 3 f 15.00 2024-02-12 22:42:13.850754 2024-02-12 22:42:13.850754 \N +2374 791 1 t 5.00 2024-02-12 22:42:13.846598 2024-02-12 22:42:14.077592 \N +2378 792 2 f 10.00 2024-02-12 22:42:18.109886 2024-02-12 22:42:18.109886 \N +2377 792 1 t 5.00 2024-02-12 22:42:18.107584 2024-02-12 22:42:18.348453 \N +2382 793 3 f 15.00 2024-02-12 22:42:20.669575 2024-02-12 22:42:20.669575 \N +2381 793 2 f 10.00 2024-02-12 22:42:20.666476 2024-02-12 22:42:20.666476 \N +2380 793 1 t 5.00 2024-02-12 22:42:20.664321 2024-02-12 22:42:20.888933 \N +2385 794 3 f 15.00 2024-02-12 22:42:29.906564 2024-02-12 22:42:29.906564 \N +2384 794 2 f 10.00 2024-02-12 22:42:29.904744 2024-02-12 22:42:29.904744 \N +2383 794 1 t 5.00 2024-02-12 22:42:29.902949 2024-02-12 22:42:30.155521 \N +2391 796 3 f 15.00 2024-02-12 22:43:22.712401 2024-02-12 22:43:22.712401 \N +2400 799 3 f 15.00 2024-02-12 22:47:19.475391 2024-02-12 22:47:19.475391 \N +2399 799 2 f 10.00 2024-02-12 22:47:19.472406 2024-02-12 22:47:19.472406 \N +2398 799 1 t 5.00 2024-02-12 22:47:19.468924 2024-02-12 22:47:19.927014 \N +2402 800 2 f 10.00 2024-02-12 22:47:22.416302 2024-02-12 22:47:22.416302 \N +2403 800 3 f 15.00 2024-02-12 22:47:22.422988 2024-02-12 22:47:22.422988 \N +2401 800 1 t 5.00 2024-02-12 22:47:22.40127 2024-02-12 22:47:23.256648 \N +2418 805 3 f 15.00 2024-02-12 22:47:44.544486 2024-02-12 22:47:44.544486 \N +2417 805 2 f 10.00 2024-02-12 22:47:44.541695 2024-02-12 22:47:44.541695 \N +2416 805 1 t 5.00 2024-02-12 22:47:44.539062 2024-02-12 22:47:44.851408 \N +2421 806 3 f 15.00 2024-02-12 22:47:55.158236 2024-02-12 22:47:55.158236 \N +2420 806 2 f 10.00 2024-02-12 22:47:55.155906 2024-02-12 22:47:55.155906 \N +2419 806 1 t 5.00 2024-02-12 22:47:55.153258 2024-02-12 22:47:55.478261 \N +2449 816 1 t 5.00 2024-02-12 22:51:39.927837 2024-02-12 22:51:40.213516 \N +2412 803 3 f 15.00 2024-02-12 22:47:26.327699 2024-02-12 22:47:26.327699 \N +2411 803 2 f 10.00 2024-02-12 22:47:26.324989 2024-02-12 22:47:26.324989 \N +2410 803 1 t 5.00 2024-02-12 22:47:26.322445 2024-02-12 22:47:26.614946 \N +2454 817 3 f 15.00 2024-02-12 22:51:42.938256 2024-02-12 22:51:42.938256 \N +2453 817 2 f 10.00 2024-02-12 22:51:42.935915 2024-02-12 22:51:42.935915 \N +2424 807 3 f 15.00 2024-02-12 22:48:02.206318 2024-02-12 22:48:02.206318 \N +2423 807 2 f 10.00 2024-02-12 22:48:02.203106 2024-02-12 22:48:02.203106 \N +2422 807 1 t 5.00 2024-02-12 22:48:02.191955 2024-02-12 22:48:02.505827 \N +2427 808 3 f 15.00 2024-02-12 22:48:06.441356 2024-02-12 22:48:06.441356 \N +2426 808 2 f 10.00 2024-02-12 22:48:06.438403 2024-02-12 22:48:06.438403 \N +2425 808 1 t 5.00 2024-02-12 22:48:06.435477 2024-02-12 22:48:06.752379 \N +2452 817 1 t 5.00 2024-02-12 22:51:42.932828 2024-02-12 22:51:43.211395 \N +2457 818 3 f 15.00 2024-02-12 22:51:44.778187 2024-02-12 22:51:44.778187 \N +2450 816 2 f 10.00 2024-02-12 22:51:39.930364 2024-02-12 22:51:39.930364 \N +2451 816 3 f 15.00 2024-02-12 22:51:39.933286 2024-02-12 22:51:39.933286 \N +2456 818 2 f 10.00 2024-02-12 22:51:44.775748 2024-02-12 22:51:44.775748 \N +2455 818 1 t 5.00 2024-02-12 22:51:44.773269 2024-02-12 22:51:45.046187 \N +2460 819 3 f 15.00 2024-02-12 22:51:50.928065 2024-02-12 22:51:50.928065 \N +2459 819 2 f 10.00 2024-02-12 22:51:50.925633 2024-02-12 22:51:50.925633 \N +2458 819 1 t 5.00 2024-02-12 22:51:50.92301 2024-02-12 22:51:51.326478 \N +2463 820 3 f 15.00 2024-02-12 22:51:59.374869 2024-02-12 22:51:59.374869 \N +2462 820 2 f 10.00 2024-02-12 22:51:59.371941 2024-02-12 22:51:59.371941 \N +2461 820 1 t 5.00 2024-02-12 22:51:59.368424 2024-02-12 22:51:59.747827 \N +2466 821 3 f 15.00 2024-02-12 22:52:06.021922 2024-02-12 22:52:06.021922 \N +2465 821 2 f 10.00 2024-02-12 22:52:06.0193 2024-02-12 22:52:06.0193 \N +2464 821 1 t 5.00 2024-02-12 22:52:06.016794 2024-02-12 22:52:06.342736 \N +2472 823 3 f 15.00 2024-02-12 22:52:11.667898 2024-02-12 22:52:11.667898 \N +2471 823 2 f 10.00 2024-02-12 22:52:11.665572 2024-02-12 22:52:11.665572 \N +2470 823 1 t 5.00 2024-02-12 22:52:11.662791 2024-02-12 22:52:11.930167 \N +2475 824 3 f 15.00 2024-02-12 22:53:06.355937 2024-02-12 22:53:06.355937 \N +2474 824 2 f 10.00 2024-02-12 22:53:06.353581 2024-02-12 22:53:06.353581 \N +2473 824 1 t 5.00 2024-02-12 22:53:06.350962 2024-02-12 22:53:06.642143 \N +\. + + +-- +-- Data for Name: spree_state_changes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_state_changes (id, name, previous_state, stateful_id, user_id, stateful_type, next_state, created_at, updated_at) FROM stdin; +1 payment \N 1 \N Spree::Order balance_due 2022-07-12 18:15:53.658515 2022-07-12 18:15:53.658515 +2 shipment \N 1 \N Spree::Order pending 2022-07-12 18:15:53.685851 2022-07-12 18:15:53.685851 +3 payment \N 2 \N Spree::Order balance_due 2022-07-12 18:15:53.868839 2022-07-12 18:15:53.868839 +4 shipment \N 2 \N Spree::Order pending 2022-07-12 18:15:54.099286 2022-07-12 18:15:54.099286 +5 payment balance_due 2 \N Spree::Order paid 2022-09-02 16:12:47.175572 2022-09-02 16:12:47.175572 +6 shipment pending 2 \N Spree::Order \N 2022-09-02 16:12:47.18535 2022-09-02 16:12:47.18535 +7 order complete 2 \N Spree::Order canceled 2022-09-02 16:14:11.102811 2022-09-02 16:14:11.102811 +8 payment paid 2 \N Spree::Order void 2022-09-02 16:14:11.339501 2022-09-02 16:14:11.339501 +9 payment balance_due 1 \N Spree::Order paid 2022-09-02 16:14:58.400409 2022-09-02 16:14:58.400409 +10 order complete 1 \N Spree::Order canceled 2022-09-02 16:15:04.62049 2022-09-02 16:15:04.62049 +11 payment paid 1 \N Spree::Order void 2022-09-02 16:15:04.791969 2022-09-02 16:15:04.791969 +12 shipment pending 1 \N Spree::Order \N 2022-09-02 16:15:04.797297 2022-09-02 16:15:04.797297 +13 payment checkout 4 \N Spree::Payment invalid 2024-02-12 20:08:25.451209 2024-02-12 20:08:25.451209 +14 payment checkout 473 \N Spree::Payment invalid 2024-02-12 20:08:27.162483 2024-02-12 20:08:27.162483 +15 order cart 64 \N Spree::Order address 2024-02-12 20:11:56.65564 2024-02-12 20:11:56.65564 +16 order cart 541 \N Spree::Order address 2024-02-12 20:12:46.998851 2024-02-12 20:12:46.998851 +17 order cart 541 \N Spree::Order address 2024-02-12 20:13:08.717219 2024-02-12 20:13:08.717219 +18 order cart 541 \N Spree::Order address 2024-02-12 20:13:30.835207 2024-02-12 20:13:30.835207 +19 order delivery 541 \N Spree::Order payment 2024-02-12 20:14:33.837964 2024-02-12 20:14:33.837964 +20 order payment 541 \N Spree::Order confirm 2024-02-12 20:14:33.912283 2024-02-12 20:14:33.912283 +21 payment checkout 479 \N Spree::Payment processing 2024-02-12 20:14:33.991795 2024-02-12 20:14:33.991795 +22 payment processing 479 \N Spree::Payment pending 2024-02-12 20:14:34.048547 2024-02-12 20:14:34.048547 +23 order confirm 541 \N Spree::Order complete 2024-02-12 20:14:34.106943 2024-02-12 20:14:34.106943 +24 payment \N 541 \N Spree::Order balance_due 2024-02-12 20:14:34.132912 2024-02-12 20:14:34.132912 +25 shipment \N 541 \N Spree::Order pending 2024-02-12 20:14:34.684875 2024-02-12 20:14:34.684875 +26 payment checkout 480 \N Spree::Payment invalid 2024-02-12 20:14:55.502187 2024-02-12 20:14:55.502187 +27 order cart 543 \N Spree::Order address 2024-02-12 20:15:32.016985 2024-02-12 20:15:32.016985 +28 order delivery 543 \N Spree::Order payment 2024-02-12 20:16:13.514284 2024-02-12 20:16:13.514284 +29 order payment 543 \N Spree::Order confirm 2024-02-12 20:16:13.571798 2024-02-12 20:16:13.571798 +30 payment checkout 482 \N Spree::Payment processing 2024-02-12 20:16:13.623928 2024-02-12 20:16:13.623928 +31 payment processing 482 \N Spree::Payment pending 2024-02-12 20:16:13.661442 2024-02-12 20:16:13.661442 +32 order confirm 543 \N Spree::Order complete 2024-02-12 20:16:13.689703 2024-02-12 20:16:13.689703 +33 payment \N 543 \N Spree::Order balance_due 2024-02-12 20:16:13.707261 2024-02-12 20:16:13.707261 +34 shipment \N 543 \N Spree::Order pending 2024-02-12 20:16:13.910746 2024-02-12 20:16:13.910746 +35 payment checkout 483 \N Spree::Payment invalid 2024-02-12 20:16:38.529132 2024-02-12 20:16:38.529132 +36 order cart 545 \N Spree::Order address 2024-02-12 20:17:26.603696 2024-02-12 20:17:26.603696 +37 order cart 545 \N Spree::Order address 2024-02-12 20:17:48.878124 2024-02-12 20:17:48.878124 +38 order delivery 545 \N Spree::Order payment 2024-02-12 20:18:52.590234 2024-02-12 20:18:52.590234 +39 order payment 545 \N Spree::Order confirm 2024-02-12 20:18:52.646151 2024-02-12 20:18:52.646151 +40 payment checkout 485 \N Spree::Payment processing 2024-02-12 20:18:52.704751 2024-02-12 20:18:52.704751 +41 payment processing 485 \N Spree::Payment pending 2024-02-12 20:18:52.751249 2024-02-12 20:18:52.751249 +42 order confirm 545 \N Spree::Order complete 2024-02-12 20:18:52.795962 2024-02-12 20:18:52.795962 +43 payment \N 545 \N Spree::Order balance_due 2024-02-12 20:18:52.816649 2024-02-12 20:18:52.816649 +44 shipment \N 545 \N Spree::Order pending 2024-02-12 20:18:53.119683 2024-02-12 20:18:53.119683 +45 payment checkout 486 \N Spree::Payment invalid 2024-02-12 20:19:14.38588 2024-02-12 20:19:14.38588 +46 order cart 547 \N Spree::Order address 2024-02-12 20:20:02.762639 2024-02-12 20:20:02.762639 +47 order cart 547 \N Spree::Order address 2024-02-12 20:20:24.905036 2024-02-12 20:20:24.905036 +48 payment checkout 488 \N Spree::Payment invalid 2024-02-12 20:20:59.093271 2024-02-12 20:20:59.093271 +49 payment checkout 474 \N Spree::Payment invalid 2024-02-12 20:21:21.843085 2024-02-12 20:21:21.843085 +50 order delivery 547 \N Spree::Order payment 2024-02-12 20:21:23.715089 2024-02-12 20:21:23.715089 +51 order payment 547 \N Spree::Order confirm 2024-02-12 20:21:23.790829 2024-02-12 20:21:23.790829 +52 payment checkout 489 \N Spree::Payment processing 2024-02-12 20:21:23.855892 2024-02-12 20:21:23.855892 +53 payment processing 489 \N Spree::Payment pending 2024-02-12 20:21:23.895068 2024-02-12 20:21:23.895068 +54 order confirm 547 \N Spree::Order complete 2024-02-12 20:21:23.931372 2024-02-12 20:21:23.931372 +55 payment \N 547 \N Spree::Order balance_due 2024-02-12 20:21:23.949552 2024-02-12 20:21:23.949552 +56 shipment \N 547 \N Spree::Order pending 2024-02-12 20:21:24.315391 2024-02-12 20:21:24.315391 +57 payment checkout 490 \N Spree::Payment invalid 2024-02-12 20:21:37.708867 2024-02-12 20:21:37.708867 +58 payment checkout 491 \N Spree::Payment invalid 2024-02-12 20:21:45.675317 2024-02-12 20:21:45.675317 +59 order cart 549 \N Spree::Order address 2024-02-12 20:22:22.644209 2024-02-12 20:22:22.644209 +60 order cart 549 \N Spree::Order address 2024-02-12 20:22:43.862659 2024-02-12 20:22:43.862659 +61 order cart 549 \N Spree::Order address 2024-02-12 20:23:06.160269 2024-02-12 20:23:06.160269 +62 order cart 549 \N Spree::Order address 2024-02-12 20:23:27.72327 2024-02-12 20:23:27.72327 +63 order delivery 549 \N Spree::Order payment 2024-02-12 20:24:07.544521 2024-02-12 20:24:07.544521 +64 order payment 549 \N Spree::Order confirm 2024-02-12 20:24:07.613988 2024-02-12 20:24:07.613988 +65 payment checkout 494 \N Spree::Payment processing 2024-02-12 20:24:07.674678 2024-02-12 20:24:07.674678 +66 payment processing 494 \N Spree::Payment pending 2024-02-12 20:24:07.714614 2024-02-12 20:24:07.714614 +67 order confirm 549 \N Spree::Order complete 2024-02-12 20:24:07.747004 2024-02-12 20:24:07.747004 +68 payment \N 549 \N Spree::Order balance_due 2024-02-12 20:24:07.765545 2024-02-12 20:24:07.765545 +69 shipment \N 549 \N Spree::Order pending 2024-02-12 20:24:08.069437 2024-02-12 20:24:08.069437 +70 payment checkout 495 \N Spree::Payment invalid 2024-02-12 20:24:32.315235 2024-02-12 20:24:32.315235 +71 payment checkout 497 \N Spree::Payment invalid 2024-02-12 20:24:41.907764 2024-02-12 20:24:41.907764 +72 payment checkout 492 \N Spree::Payment invalid 2024-02-12 20:24:42.12343 2024-02-12 20:24:42.12343 +73 order delivery 551 \N Spree::Order payment 2024-02-12 20:25:59.722712 2024-02-12 20:25:59.722712 +74 order payment 551 \N Spree::Order confirm 2024-02-12 20:25:59.783805 2024-02-12 20:25:59.783805 +75 payment checkout 498 \N Spree::Payment processing 2024-02-12 20:25:59.830249 2024-02-12 20:25:59.830249 +76 payment processing 498 \N Spree::Payment pending 2024-02-12 20:25:59.877646 2024-02-12 20:25:59.877646 +77 order confirm 551 \N Spree::Order complete 2024-02-12 20:25:59.902734 2024-02-12 20:25:59.902734 +78 payment \N 551 \N Spree::Order balance_due 2024-02-12 20:25:59.921407 2024-02-12 20:25:59.921407 +79 shipment \N 551 \N Spree::Order pending 2024-02-12 20:26:00.023189 2024-02-12 20:26:00.023189 +80 payment checkout 501 \N Spree::Payment invalid 2024-02-12 20:31:23.980799 2024-02-12 20:31:23.980799 +81 payment checkout 502 \N Spree::Payment invalid 2024-02-12 20:32:23.747722 2024-02-12 20:32:23.747722 +82 payment checkout 503 \N Spree::Payment invalid 2024-02-12 20:32:37.56295 2024-02-12 20:32:37.56295 +83 payment checkout 504 \N Spree::Payment invalid 2024-02-12 20:34:02.107363 2024-02-12 20:34:02.107363 +84 order cart 552 \N Spree::Order address 2024-02-12 20:34:02.389299 2024-02-12 20:34:02.389299 +85 payment checkout 505 \N Spree::Payment invalid 2024-02-12 20:34:36.989982 2024-02-12 20:34:36.989982 +86 order cart 552 \N Spree::Order address 2024-02-12 20:34:39.187815 2024-02-12 20:34:39.187815 +87 payment checkout 506 \N Spree::Payment invalid 2024-02-12 20:35:35.172579 2024-02-12 20:35:35.172579 +88 order cart 552 \N Spree::Order address 2024-02-12 20:35:36.638831 2024-02-12 20:35:36.638831 +90 payment checkout 508 \N Spree::Payment invalid 2024-02-12 20:36:19.551728 2024-02-12 20:36:19.551728 +91 order cart 552 \N Spree::Order address 2024-02-12 20:36:20.902174 2024-02-12 20:36:20.902174 +92 payment checkout 509 \N Spree::Payment invalid 2024-02-12 20:36:57.896351 2024-02-12 20:36:57.896351 +94 order cart 552 \N Spree::Order address 2024-02-12 20:37:03.039128 2024-02-12 20:37:03.039128 +95 order cart 552 \N Spree::Order address 2024-02-12 20:37:07.566294 2024-02-12 20:37:07.566294 +97 order cart 552 \N Spree::Order address 2024-02-12 20:37:08.96258 2024-02-12 20:37:08.96258 +98 order cart 552 \N Spree::Order address 2024-02-12 20:37:16.006978 2024-02-12 20:37:16.006978 +99 payment checkout 511 \N Spree::Payment invalid 2024-02-12 20:40:07.791103 2024-02-12 20:40:07.791103 +100 payment checkout 512 \N Spree::Payment invalid 2024-02-12 20:40:18.753377 2024-02-12 20:40:18.753377 +89 payment checkout 507 \N Spree::Payment invalid 2024-02-12 20:36:14.988752 2024-02-12 20:36:14.988752 +93 payment checkout 510 \N Spree::Payment invalid 2024-02-12 20:37:01.825785 2024-02-12 20:37:01.825785 +96 order cart 552 \N Spree::Order address 2024-02-12 20:37:08.354027 2024-02-12 20:37:08.354027 +101 payment checkout 513 \N Spree::Payment invalid 2024-02-12 21:24:22.572852 2024-02-12 21:24:22.572852 +102 order cart 554 \N Spree::Order address 2024-02-12 21:26:39.849108 2024-02-12 21:26:39.849108 +103 order cart 555 \N Spree::Order address 2024-02-12 21:26:45.138159 2024-02-12 21:26:45.138159 +104 order cart 557 \N Spree::Order address 2024-02-12 21:26:47.013995 2024-02-12 21:26:47.013995 +105 order cart 554 \N Spree::Order address 2024-02-12 21:27:00.160694 2024-02-12 21:27:00.160694 +106 order cart 562 \N Spree::Order address 2024-02-12 21:27:02.532213 2024-02-12 21:27:02.532213 +107 order cart 555 \N Spree::Order address 2024-02-12 21:27:05.232878 2024-02-12 21:27:05.232878 +108 order cart 563 \N Spree::Order address 2024-02-12 21:27:05.721055 2024-02-12 21:27:05.721055 +109 order cart 557 \N Spree::Order address 2024-02-12 21:27:07.182986 2024-02-12 21:27:07.182986 +110 order delivery 563 \N Spree::Order payment 2024-02-12 21:27:45.92035 2024-02-12 21:27:45.92035 +111 order payment 563 \N Spree::Order confirm 2024-02-12 21:27:46.008581 2024-02-12 21:27:46.008581 +112 payment checkout 524 \N Spree::Payment processing 2024-02-12 21:27:46.07271 2024-02-12 21:27:46.07271 +113 payment processing 524 \N Spree::Payment pending 2024-02-12 21:27:46.116921 2024-02-12 21:27:46.116921 +114 order confirm 563 \N Spree::Order complete 2024-02-12 21:27:46.151452 2024-02-12 21:27:46.151452 +115 payment \N 563 \N Spree::Order balance_due 2024-02-12 21:27:46.171236 2024-02-12 21:27:46.171236 +116 shipment \N 563 \N Spree::Order pending 2024-02-12 21:27:46.399413 2024-02-12 21:27:46.399413 +117 order delivery 555 \N Spree::Order payment 2024-02-12 21:28:08.150123 2024-02-12 21:28:08.150123 +118 order payment 555 \N Spree::Order confirm 2024-02-12 21:28:08.209105 2024-02-12 21:28:08.209105 +119 payment checkout 516 \N Spree::Payment processing 2024-02-12 21:28:08.284574 2024-02-12 21:28:08.284574 +120 payment processing 516 \N Spree::Payment pending 2024-02-12 21:28:08.321681 2024-02-12 21:28:08.321681 +121 order confirm 555 \N Spree::Order complete 2024-02-12 21:28:08.359437 2024-02-12 21:28:08.359437 +122 payment \N 555 \N Spree::Order balance_due 2024-02-12 21:28:08.37886 2024-02-12 21:28:08.37886 +123 shipment \N 555 \N Spree::Order pending 2024-02-12 21:28:08.702369 2024-02-12 21:28:08.702369 +124 order cart 556 \N Spree::Order address 2024-02-12 21:28:19.479061 2024-02-12 21:28:19.479061 +125 order cart 558 \N Spree::Order address 2024-02-12 21:28:24.980631 2024-02-12 21:28:24.980631 +126 order cart 556 \N Spree::Order address 2024-02-12 21:28:29.553034 2024-02-12 21:28:29.553034 +127 order cart 558 \N Spree::Order address 2024-02-12 21:28:34.875648 2024-02-12 21:28:34.875648 +128 order delivery 558 \N Spree::Order payment 2024-02-12 21:29:17.904629 2024-02-12 21:29:17.904629 +129 order payment 558 \N Spree::Order confirm 2024-02-12 21:29:17.963721 2024-02-12 21:29:17.963721 +130 payment checkout 519 \N Spree::Payment processing 2024-02-12 21:29:18.027289 2024-02-12 21:29:18.027289 +131 payment processing 519 \N Spree::Payment pending 2024-02-12 21:29:18.069469 2024-02-12 21:29:18.069469 +132 order confirm 558 \N Spree::Order complete 2024-02-12 21:29:18.118597 2024-02-12 21:29:18.118597 +133 payment \N 558 \N Spree::Order balance_due 2024-02-12 21:29:18.138991 2024-02-12 21:29:18.138991 +134 shipment \N 558 \N Spree::Order pending 2024-02-12 21:29:18.505475 2024-02-12 21:29:18.505475 +135 order cart 568 \N Spree::Order address 2024-02-12 21:32:16.553758 2024-02-12 21:32:16.553758 +136 order cart 570 \N Spree::Order address 2024-02-12 21:32:17.553374 2024-02-12 21:32:17.553374 +137 order cart 574 \N Spree::Order address 2024-02-12 21:32:21.007566 2024-02-12 21:32:21.007566 +138 order cart 576 \N Spree::Order address 2024-02-12 21:32:23.133864 2024-02-12 21:32:23.133864 +139 payment checkout 530 \N Spree::Payment invalid 2024-02-12 21:32:35.857983 2024-02-12 21:32:35.857983 +140 order cart 568 \N Spree::Order address 2024-02-12 21:32:38.904944 2024-02-12 21:32:38.904944 +141 order cart 574 \N Spree::Order address 2024-02-12 21:32:42.910121 2024-02-12 21:32:42.910121 +142 order cart 576 \N Spree::Order address 2024-02-12 21:32:45.326353 2024-02-12 21:32:45.326353 +143 order delivery 570 \N Spree::Order payment 2024-02-12 21:32:57.376032 2024-02-12 21:32:57.376032 +144 order payment 570 \N Spree::Order confirm 2024-02-12 21:32:57.434875 2024-02-12 21:32:57.434875 +145 payment checkout 531 \N Spree::Payment processing 2024-02-12 21:32:57.495973 2024-02-12 21:32:57.495973 +146 payment processing 531 \N Spree::Payment pending 2024-02-12 21:32:57.532691 2024-02-12 21:32:57.532691 +147 order confirm 570 \N Spree::Order complete 2024-02-12 21:32:57.56349 2024-02-12 21:32:57.56349 +148 payment \N 570 \N Spree::Order balance_due 2024-02-12 21:32:57.581233 2024-02-12 21:32:57.581233 +149 shipment \N 570 \N Spree::Order pending 2024-02-12 21:32:57.774443 2024-02-12 21:32:57.774443 +150 order delivery 568 \N Spree::Order payment 2024-02-12 21:33:18.806587 2024-02-12 21:33:18.806587 +151 order payment 568 \N Spree::Order confirm 2024-02-12 21:33:18.874028 2024-02-12 21:33:18.874028 +152 payment checkout 529 \N Spree::Payment processing 2024-02-12 21:33:18.933791 2024-02-12 21:33:18.933791 +153 payment processing 529 \N Spree::Payment pending 2024-02-12 21:33:18.972076 2024-02-12 21:33:18.972076 +154 order confirm 568 \N Spree::Order complete 2024-02-12 21:33:19.003313 2024-02-12 21:33:19.003313 +155 payment \N 568 \N Spree::Order balance_due 2024-02-12 21:33:19.025744 2024-02-12 21:33:19.025744 +156 shipment \N 568 \N Spree::Order pending 2024-02-12 21:33:19.216554 2024-02-12 21:33:19.216554 +157 payment checkout 539 \N Spree::Payment invalid 2024-02-12 21:33:22.384948 2024-02-12 21:33:22.384948 +158 order delivery 574 \N Spree::Order payment 2024-02-12 21:33:22.736366 2024-02-12 21:33:22.736366 +159 order payment 574 \N Spree::Order confirm 2024-02-12 21:33:22.795061 2024-02-12 21:33:22.795061 +160 payment checkout 534 \N Spree::Payment processing 2024-02-12 21:33:22.851074 2024-02-12 21:33:22.851074 +161 payment processing 534 \N Spree::Payment pending 2024-02-12 21:33:22.889605 2024-02-12 21:33:22.889605 +162 order confirm 574 \N Spree::Order complete 2024-02-12 21:33:22.92867 2024-02-12 21:33:22.92867 +163 payment \N 574 \N Spree::Order balance_due 2024-02-12 21:33:22.947393 2024-02-12 21:33:22.947393 +164 shipment \N 574 \N Spree::Order pending 2024-02-12 21:33:23.263345 2024-02-12 21:33:23.263345 +165 order delivery 576 \N Spree::Order payment 2024-02-12 21:33:25.197398 2024-02-12 21:33:25.197398 +166 order payment 576 \N Spree::Order confirm 2024-02-12 21:33:25.259917 2024-02-12 21:33:25.259917 +167 payment checkout 537 \N Spree::Payment processing 2024-02-12 21:33:25.318843 2024-02-12 21:33:25.318843 +168 payment processing 537 \N Spree::Payment pending 2024-02-12 21:33:25.361593 2024-02-12 21:33:25.361593 +169 order confirm 576 \N Spree::Order complete 2024-02-12 21:33:25.405419 2024-02-12 21:33:25.405419 +170 payment \N 576 \N Spree::Order balance_due 2024-02-12 21:33:25.425904 2024-02-12 21:33:25.425904 +171 shipment \N 576 \N Spree::Order pending 2024-02-12 21:33:25.725912 2024-02-12 21:33:25.725912 +188 payment checkout 548 \N Spree::Payment invalid 2024-02-12 21:35:02.954442 2024-02-12 21:35:02.954442 +172 payment checkout 528 \N Spree::Payment invalid 2024-02-12 21:33:28.392732 2024-02-12 21:33:28.392732 +173 payment checkout 540 \N Spree::Payment invalid 2024-02-12 21:33:43.677823 2024-02-12 21:33:43.677823 +176 payment checkout 542 \N Spree::Payment invalid 2024-02-12 21:33:47.776251 2024-02-12 21:33:47.776251 +177 payment checkout 543 \N Spree::Payment invalid 2024-02-12 21:33:50.066307 2024-02-12 21:33:50.066307 +187 payment checkout 536 \N Spree::Payment invalid 2024-02-12 21:34:50.313765 2024-02-12 21:34:50.313765 +174 order cart 573 \N Spree::Order address 2024-02-12 21:33:44.774654 2024-02-12 21:33:44.774654 +175 order cart 575 \N Spree::Order address 2024-02-12 21:33:46.502577 2024-02-12 21:33:46.502577 +178 order cart 573 \N Spree::Order address 2024-02-12 21:33:54.764847 2024-02-12 21:33:54.764847 +179 order cart 575 \N Spree::Order address 2024-02-12 21:33:56.479737 2024-02-12 21:33:56.479737 +180 order delivery 573 \N Spree::Order payment 2024-02-12 21:34:37.710116 2024-02-12 21:34:37.710116 +181 order payment 573 \N Spree::Order confirm 2024-02-12 21:34:37.771574 2024-02-12 21:34:37.771574 +182 payment checkout 535 \N Spree::Payment processing 2024-02-12 21:34:37.82757 2024-02-12 21:34:37.82757 +183 payment processing 535 \N Spree::Payment pending 2024-02-12 21:34:37.865111 2024-02-12 21:34:37.865111 +184 order confirm 573 \N Spree::Order complete 2024-02-12 21:34:37.892871 2024-02-12 21:34:37.892871 +185 payment \N 573 \N Spree::Order balance_due 2024-02-12 21:34:37.91177 2024-02-12 21:34:37.91177 +186 shipment \N 573 \N Spree::Order pending 2024-02-12 21:34:38.118211 2024-02-12 21:34:38.118211 +189 order cart 585 \N Spree::Order address 2024-02-12 21:36:52.792455 2024-02-12 21:36:52.792455 +190 order cart 589 \N Spree::Order address 2024-02-12 21:36:57.741852 2024-02-12 21:36:57.741852 +191 order cart 590 \N Spree::Order address 2024-02-12 21:36:58.358292 2024-02-12 21:36:58.358292 +192 order cart 583 \N Spree::Order address 2024-02-12 21:37:00.908988 2024-02-12 21:37:00.908988 +193 order cart 584 \N Spree::Order address 2024-02-12 21:37:05.160111 2024-02-12 21:37:05.160111 +194 order cart 587 \N Spree::Order address 2024-02-12 21:37:06.712112 2024-02-12 21:37:06.712112 +195 order cart 585 \N Spree::Order address 2024-02-12 21:37:13.108132 2024-02-12 21:37:13.108132 +196 order cart 590 \N Spree::Order address 2024-02-12 21:37:20.459994 2024-02-12 21:37:20.459994 +197 order cart 587 \N Spree::Order address 2024-02-12 21:37:28.931134 2024-02-12 21:37:28.931134 +198 order delivery 590 \N Spree::Order payment 2024-02-12 21:38:00.235214 2024-02-12 21:38:00.235214 +199 order payment 590 \N Spree::Order confirm 2024-02-12 21:38:00.297047 2024-02-12 21:38:00.297047 +200 payment checkout 559 \N Spree::Payment processing 2024-02-12 21:38:00.365184 2024-02-12 21:38:00.365184 +201 payment processing 559 \N Spree::Payment pending 2024-02-12 21:38:00.400395 2024-02-12 21:38:00.400395 +202 order confirm 590 \N Spree::Order complete 2024-02-12 21:38:00.433375 2024-02-12 21:38:00.433375 +203 payment \N 590 \N Spree::Order balance_due 2024-02-12 21:38:00.450194 2024-02-12 21:38:00.450194 +204 shipment \N 590 \N Spree::Order pending 2024-02-12 21:38:00.742651 2024-02-12 21:38:00.742651 +205 order delivery 589 \N Spree::Order payment 2024-02-12 21:38:02.299912 2024-02-12 21:38:02.299912 +206 order payment 589 \N Spree::Order confirm 2024-02-12 21:38:02.357471 2024-02-12 21:38:02.357471 +207 payment checkout 558 \N Spree::Payment processing 2024-02-12 21:38:02.411346 2024-02-12 21:38:02.411346 +208 payment processing 558 \N Spree::Payment pending 2024-02-12 21:38:02.453434 2024-02-12 21:38:02.453434 +209 order confirm 589 \N Spree::Order complete 2024-02-12 21:38:02.482668 2024-02-12 21:38:02.482668 +210 payment \N 589 \N Spree::Order balance_due 2024-02-12 21:38:02.500644 2024-02-12 21:38:02.500644 +211 shipment \N 589 \N Spree::Order pending 2024-02-12 21:38:02.703319 2024-02-12 21:38:02.703319 +212 order delivery 583 \N Spree::Order payment 2024-02-12 21:38:04.734982 2024-02-12 21:38:04.734982 +213 order payment 583 \N Spree::Order confirm 2024-02-12 21:38:04.802945 2024-02-12 21:38:04.802945 +214 payment checkout 552 \N Spree::Payment processing 2024-02-12 21:38:04.865313 2024-02-12 21:38:04.865313 +215 payment processing 552 \N Spree::Payment pending 2024-02-12 21:38:04.904924 2024-02-12 21:38:04.904924 +216 order confirm 583 \N Spree::Order complete 2024-02-12 21:38:04.934876 2024-02-12 21:38:04.934876 +217 payment \N 583 \N Spree::Order balance_due 2024-02-12 21:38:04.954708 2024-02-12 21:38:04.954708 +218 shipment \N 583 \N Spree::Order pending 2024-02-12 21:38:05.148302 2024-02-12 21:38:05.148302 +219 order delivery 584 \N Spree::Order payment 2024-02-12 21:38:08.162009 2024-02-12 21:38:08.162009 +220 order payment 584 \N Spree::Order confirm 2024-02-12 21:38:08.220842 2024-02-12 21:38:08.220842 +221 payment checkout 553 \N Spree::Payment processing 2024-02-12 21:38:08.27206 2024-02-12 21:38:08.27206 +222 payment processing 553 \N Spree::Payment pending 2024-02-12 21:38:08.311028 2024-02-12 21:38:08.311028 +223 order confirm 584 \N Spree::Order complete 2024-02-12 21:38:08.340708 2024-02-12 21:38:08.340708 +224 payment \N 584 \N Spree::Order balance_due 2024-02-12 21:38:08.360258 2024-02-12 21:38:08.360258 +225 shipment \N 584 \N Spree::Order pending 2024-02-12 21:38:08.578599 2024-02-12 21:38:08.578599 +226 order delivery 587 \N Spree::Order payment 2024-02-12 21:38:08.619103 2024-02-12 21:38:08.619103 +227 order payment 587 \N Spree::Order confirm 2024-02-12 21:38:08.696953 2024-02-12 21:38:08.696953 +228 payment checkout 556 \N Spree::Payment processing 2024-02-12 21:38:08.782325 2024-02-12 21:38:08.782325 +229 payment processing 556 \N Spree::Payment pending 2024-02-12 21:38:08.840529 2024-02-12 21:38:08.840529 +230 order confirm 587 \N Spree::Order complete 2024-02-12 21:38:08.88867 2024-02-12 21:38:08.88867 +231 payment \N 587 \N Spree::Order balance_due 2024-02-12 21:38:08.924144 2024-02-12 21:38:08.924144 +232 shipment \N 587 \N Spree::Order pending 2024-02-12 21:38:09.332755 2024-02-12 21:38:09.332755 +233 payment checkout 560 \N Spree::Payment invalid 2024-02-12 21:38:22.289796 2024-02-12 21:38:22.289796 +234 order cart 586 \N Spree::Order address 2024-02-12 21:38:25.495648 2024-02-12 21:38:25.495648 +235 payment checkout 564 \N Spree::Payment invalid 2024-02-12 21:38:30.720873 2024-02-12 21:38:30.720873 +236 payment checkout 565 \N Spree::Payment invalid 2024-02-12 21:38:33.834761 2024-02-12 21:38:33.834761 +237 order cart 586 \N Spree::Order address 2024-02-12 21:38:35.881367 2024-02-12 21:38:35.881367 +238 order cart 588 \N Spree::Order address 2024-02-12 21:38:35.886034 2024-02-12 21:38:35.886034 +239 order delivery 586 \N Spree::Order payment 2024-02-12 21:39:18.894551 2024-02-12 21:39:18.894551 +240 order payment 586 \N Spree::Order confirm 2024-02-12 21:39:18.95135 2024-02-12 21:39:18.95135 +241 payment checkout 555 \N Spree::Payment processing 2024-02-12 21:39:19.008251 2024-02-12 21:39:19.008251 +242 payment processing 555 \N Spree::Payment pending 2024-02-12 21:39:19.045229 2024-02-12 21:39:19.045229 +243 order confirm 586 \N Spree::Order complete 2024-02-12 21:39:19.078951 2024-02-12 21:39:19.078951 +244 payment \N 586 \N Spree::Order balance_due 2024-02-12 21:39:19.096578 2024-02-12 21:39:19.096578 +245 shipment \N 586 \N Spree::Order pending 2024-02-12 21:39:19.494717 2024-02-12 21:39:19.494717 +246 order cart 588 \N Spree::Order address 2024-02-12 21:39:40.459761 2024-02-12 21:39:40.459761 +247 payment checkout 569 \N Spree::Payment invalid 2024-02-12 21:39:44.264894 2024-02-12 21:39:44.264894 +248 order cart 588 \N Spree::Order address 2024-02-12 21:40:39.754303 2024-02-12 21:40:39.754303 +249 order cart 598 \N Spree::Order address 2024-02-12 21:43:40.046551 2024-02-12 21:43:40.046551 +250 order cart 604 \N Spree::Order address 2024-02-12 21:43:49.803049 2024-02-12 21:43:49.803049 +251 order cart 604 \N Spree::Order address 2024-02-12 21:44:11.90965 2024-02-12 21:44:11.90965 +267 order cart 599 \N Spree::Order address 2024-02-12 21:45:08.649097 2024-02-12 21:45:08.649097 +269 order cart 600 \N Spree::Order address 2024-02-12 21:45:10.3954 2024-02-12 21:45:10.3954 +271 order cart 602 \N Spree::Order address 2024-02-12 21:45:12.290055 2024-02-12 21:45:12.290055 +252 order delivery 598 \N Spree::Order payment 2024-02-12 21:44:19.950095 2024-02-12 21:44:19.950095 +253 order payment 598 \N Spree::Order confirm 2024-02-12 21:44:20.02141 2024-02-12 21:44:20.02141 +254 payment checkout 571 \N Spree::Payment processing 2024-02-12 21:44:20.082424 2024-02-12 21:44:20.082424 +255 payment processing 571 \N Spree::Payment pending 2024-02-12 21:44:20.130765 2024-02-12 21:44:20.130765 +256 order confirm 598 \N Spree::Order complete 2024-02-12 21:44:20.161774 2024-02-12 21:44:20.161774 +257 payment \N 598 \N Spree::Order balance_due 2024-02-12 21:44:20.181534 2024-02-12 21:44:20.181534 +258 shipment \N 598 \N Spree::Order pending 2024-02-12 21:44:20.421077 2024-02-12 21:44:20.421077 +259 payment checkout 581 \N Spree::Payment invalid 2024-02-12 21:44:44.76033 2024-02-12 21:44:44.76033 +260 order delivery 604 \N Spree::Order payment 2024-02-12 21:44:51.78114 2024-02-12 21:44:51.78114 +261 order payment 604 \N Spree::Order confirm 2024-02-12 21:44:51.840082 2024-02-12 21:44:51.840082 +262 payment checkout 577 \N Spree::Payment processing 2024-02-12 21:44:51.901115 2024-02-12 21:44:51.901115 +263 payment processing 577 \N Spree::Payment pending 2024-02-12 21:44:51.94486 2024-02-12 21:44:51.94486 +264 order confirm 604 \N Spree::Order complete 2024-02-12 21:44:51.977689 2024-02-12 21:44:51.977689 +265 payment \N 604 \N Spree::Order balance_due 2024-02-12 21:44:51.996168 2024-02-12 21:44:51.996168 +266 shipment \N 604 \N Spree::Order pending 2024-02-12 21:44:52.286155 2024-02-12 21:44:52.286155 +268 order cart 601 \N Spree::Order address 2024-02-12 21:45:09.26876 2024-02-12 21:45:09.26876 +270 order cart 603 \N Spree::Order address 2024-02-12 21:45:11.24488 2024-02-12 21:45:11.24488 +272 order cart 599 \N Spree::Order address 2024-02-12 21:45:18.512198 2024-02-12 21:45:18.512198 +273 order cart 601 \N Spree::Order address 2024-02-12 21:45:19.029411 2024-02-12 21:45:19.029411 +274 order cart 600 \N Spree::Order address 2024-02-12 21:45:20.313751 2024-02-12 21:45:20.313751 +275 order cart 603 \N Spree::Order address 2024-02-12 21:45:21.307534 2024-02-12 21:45:21.307534 +276 order cart 602 \N Spree::Order address 2024-02-12 21:45:22.161181 2024-02-12 21:45:22.161181 +277 order delivery 601 \N Spree::Order payment 2024-02-12 21:46:01.923519 2024-02-12 21:46:01.923519 +278 order payment 601 \N Spree::Order confirm 2024-02-12 21:46:01.98222 2024-02-12 21:46:01.98222 +279 payment checkout 574 \N Spree::Payment processing 2024-02-12 21:46:02.039163 2024-02-12 21:46:02.039163 +280 payment processing 574 \N Spree::Payment pending 2024-02-12 21:46:02.072418 2024-02-12 21:46:02.072418 +281 order confirm 601 \N Spree::Order complete 2024-02-12 21:46:02.113013 2024-02-12 21:46:02.113013 +282 payment \N 601 \N Spree::Order balance_due 2024-02-12 21:46:02.131694 2024-02-12 21:46:02.131694 +283 shipment \N 601 \N Spree::Order pending 2024-02-12 21:46:02.408341 2024-02-12 21:46:02.408341 +284 order delivery 600 \N Spree::Order payment 2024-02-12 21:46:03.20478 2024-02-12 21:46:03.20478 +285 order payment 600 \N Spree::Order confirm 2024-02-12 21:46:03.265951 2024-02-12 21:46:03.265951 +286 payment checkout 573 \N Spree::Payment processing 2024-02-12 21:46:03.332191 2024-02-12 21:46:03.332191 +287 payment processing 573 \N Spree::Payment pending 2024-02-12 21:46:03.372581 2024-02-12 21:46:03.372581 +288 order confirm 600 \N Spree::Order complete 2024-02-12 21:46:03.40636 2024-02-12 21:46:03.40636 +289 payment \N 600 \N Spree::Order balance_due 2024-02-12 21:46:03.427216 2024-02-12 21:46:03.427216 +290 shipment \N 600 \N Spree::Order pending 2024-02-12 21:46:03.744114 2024-02-12 21:46:03.744114 +291 order delivery 603 \N Spree::Order payment 2024-02-12 21:46:04.204244 2024-02-12 21:46:04.204244 +292 order payment 603 \N Spree::Order confirm 2024-02-12 21:46:04.266806 2024-02-12 21:46:04.266806 +293 payment checkout 576 \N Spree::Payment processing 2024-02-12 21:46:04.3276 2024-02-12 21:46:04.3276 +294 payment processing 576 \N Spree::Payment pending 2024-02-12 21:46:04.372815 2024-02-12 21:46:04.372815 +295 order confirm 603 \N Spree::Order complete 2024-02-12 21:46:04.408055 2024-02-12 21:46:04.408055 +296 payment \N 603 \N Spree::Order balance_due 2024-02-12 21:46:04.427626 2024-02-12 21:46:04.427626 +297 shipment \N 603 \N Spree::Order pending 2024-02-12 21:46:04.7491 2024-02-12 21:46:04.7491 +298 order cart 599 \N Spree::Order address 2024-02-12 21:46:14.537675 2024-02-12 21:46:14.537675 +299 order delivery 599 \N Spree::Order payment 2024-02-12 21:47:16.949161 2024-02-12 21:47:16.949161 +300 order payment 599 \N Spree::Order confirm 2024-02-12 21:47:17.007043 2024-02-12 21:47:17.007043 +301 payment checkout 572 \N Spree::Payment processing 2024-02-12 21:47:17.062913 2024-02-12 21:47:17.062913 +302 payment processing 572 \N Spree::Payment pending 2024-02-12 21:47:17.09792 2024-02-12 21:47:17.09792 +303 order confirm 599 \N Spree::Order complete 2024-02-12 21:47:17.130746 2024-02-12 21:47:17.130746 +304 payment \N 599 \N Spree::Order balance_due 2024-02-12 21:47:17.14825 2024-02-12 21:47:17.14825 +305 shipment \N 599 \N Spree::Order pending 2024-02-12 21:47:17.540899 2024-02-12 21:47:17.540899 +306 payment checkout 587 \N Spree::Payment invalid 2024-02-12 21:47:39.496567 2024-02-12 21:47:39.496567 +307 order cart 615 \N Spree::Order address 2024-02-12 21:49:35.530085 2024-02-12 21:49:35.530085 +308 order cart 618 \N Spree::Order address 2024-02-12 21:49:39.44088 2024-02-12 21:49:39.44088 +309 order cart 619 \N Spree::Order address 2024-02-12 21:49:52.784098 2024-02-12 21:49:52.784098 +310 payment checkout 589 \N Spree::Payment invalid 2024-02-12 21:49:55.457371 2024-02-12 21:49:55.457371 +311 order cart 618 \N Spree::Order address 2024-02-12 21:49:59.692213 2024-02-12 21:49:59.692213 +312 payment checkout 596 \N Spree::Payment invalid 2024-02-12 21:50:05.675701 2024-02-12 21:50:05.675701 +313 order delivery 617 \N Spree::Order payment 2024-02-12 21:50:07.593906 2024-02-12 21:50:07.593906 +314 order payment 617 \N Spree::Order confirm 2024-02-12 21:50:07.672838 2024-02-12 21:50:07.672838 +315 payment checkout 592 \N Spree::Payment processing 2024-02-12 21:50:07.8238 2024-02-12 21:50:07.8238 +316 payment processing 592 \N Spree::Payment pending 2024-02-12 21:50:07.868145 2024-02-12 21:50:07.868145 +317 order confirm 617 \N Spree::Order complete 2024-02-12 21:50:07.900549 2024-02-12 21:50:07.900549 +318 payment \N 617 \N Spree::Order balance_due 2024-02-12 21:50:07.923047 2024-02-12 21:50:07.923047 +319 shipment \N 617 \N Spree::Order pending 2024-02-12 21:50:08.037001 2024-02-12 21:50:08.037001 +320 order delivery 619 \N Spree::Order payment 2024-02-12 21:50:32.614018 2024-02-12 21:50:32.614018 +321 order payment 619 \N Spree::Order confirm 2024-02-12 21:50:32.734438 2024-02-12 21:50:32.734438 +322 payment checkout 594 \N Spree::Payment processing 2024-02-12 21:50:32.793894 2024-02-12 21:50:32.793894 +323 payment processing 594 \N Spree::Payment pending 2024-02-12 21:50:32.835225 2024-02-12 21:50:32.835225 +324 order confirm 619 \N Spree::Order complete 2024-02-12 21:50:32.871935 2024-02-12 21:50:32.871935 +325 payment \N 619 \N Spree::Order balance_due 2024-02-12 21:50:32.894925 2024-02-12 21:50:32.894925 +326 shipment \N 619 \N Spree::Order pending 2024-02-12 21:50:33.107554 2024-02-12 21:50:33.107554 +327 order delivery 615 \N Spree::Order payment 2024-02-12 21:50:33.774711 2024-02-12 21:50:33.774711 +328 order payment 615 \N Spree::Order confirm 2024-02-12 21:50:33.840066 2024-02-12 21:50:33.840066 +329 payment checkout 590 \N Spree::Payment processing 2024-02-12 21:50:33.896555 2024-02-12 21:50:33.896555 +330 payment processing 590 \N Spree::Payment pending 2024-02-12 21:50:33.933027 2024-02-12 21:50:33.933027 +331 order confirm 615 \N Spree::Order complete 2024-02-12 21:50:33.964217 2024-02-12 21:50:33.964217 +332 payment \N 615 \N Spree::Order balance_due 2024-02-12 21:50:33.987034 2024-02-12 21:50:33.987034 +333 shipment \N 615 \N Spree::Order pending 2024-02-12 21:50:34.24479 2024-02-12 21:50:34.24479 +334 order delivery 620 \N Spree::Order payment 2024-02-12 21:50:37.51627 2024-02-12 21:50:37.51627 +335 order payment 620 \N Spree::Order confirm 2024-02-12 21:50:37.573965 2024-02-12 21:50:37.573965 +336 payment checkout 595 \N Spree::Payment processing 2024-02-12 21:50:37.630592 2024-02-12 21:50:37.630592 +337 payment processing 595 \N Spree::Payment pending 2024-02-12 21:50:37.681563 2024-02-12 21:50:37.681563 +338 order confirm 620 \N Spree::Order complete 2024-02-12 21:50:37.711626 2024-02-12 21:50:37.711626 +339 payment \N 620 \N Spree::Order balance_due 2024-02-12 21:50:37.730552 2024-02-12 21:50:37.730552 +340 shipment \N 620 \N Spree::Order pending 2024-02-12 21:50:37.836178 2024-02-12 21:50:37.836178 +343 payment checkout 604 \N Spree::Payment invalid 2024-02-12 21:50:59.320423 2024-02-12 21:50:59.320423 +346 order cart 628 \N Spree::Order address 2024-02-12 21:52:56.546341 2024-02-12 21:52:56.546341 +341 payment checkout 603 \N Spree::Payment invalid 2024-02-12 21:50:55.522423 2024-02-12 21:50:55.522423 +342 payment checkout 602 \N Spree::Payment invalid 2024-02-12 21:50:57.318805 2024-02-12 21:50:57.318805 +345 payment checkout 598 \N Spree::Payment invalid 2024-02-12 21:51:11.685888 2024-02-12 21:51:11.685888 +347 order cart 632 \N Spree::Order address 2024-02-12 21:53:04.29061 2024-02-12 21:53:04.29061 +344 payment checkout 591 \N Spree::Payment invalid 2024-02-12 21:51:05.39921 2024-02-12 21:51:05.39921 +348 order cart 635 \N Spree::Order address 2024-02-12 21:53:08.642137 2024-02-12 21:53:08.642137 +349 order cart 629 \N Spree::Order address 2024-02-12 21:53:12.758415 2024-02-12 21:53:12.758415 +350 order cart 631 \N Spree::Order address 2024-02-12 21:53:16.614199 2024-02-12 21:53:16.614199 +351 order cart 628 \N Spree::Order address 2024-02-12 21:53:16.999162 2024-02-12 21:53:16.999162 +352 order cart 632 \N Spree::Order address 2024-02-12 21:53:26.363159 2024-02-12 21:53:26.363159 +353 order delivery 630 \N Spree::Order payment 2024-02-12 21:53:31.633541 2024-02-12 21:53:31.633541 +354 order payment 630 \N Spree::Order confirm 2024-02-12 21:53:31.694109 2024-02-12 21:53:31.694109 +355 payment checkout 612 \N Spree::Payment processing 2024-02-12 21:53:31.74321 2024-02-12 21:53:31.74321 +356 payment processing 612 \N Spree::Payment pending 2024-02-12 21:53:31.783989 2024-02-12 21:53:31.783989 +357 order confirm 630 \N Spree::Order complete 2024-02-12 21:53:31.813041 2024-02-12 21:53:31.813041 +358 payment \N 630 \N Spree::Order balance_due 2024-02-12 21:53:31.832937 2024-02-12 21:53:31.832937 +359 shipment \N 630 \N Spree::Order pending 2024-02-12 21:53:32.070099 2024-02-12 21:53:32.070099 +360 order cart 629 \N Spree::Order address 2024-02-12 21:53:34.985841 2024-02-12 21:53:34.985841 +361 order delivery 634 \N Spree::Order payment 2024-02-12 21:53:37.074422 2024-02-12 21:53:37.074422 +362 order payment 634 \N Spree::Order confirm 2024-02-12 21:53:37.135903 2024-02-12 21:53:37.135903 +363 payment checkout 616 \N Spree::Payment processing 2024-02-12 21:53:37.18778 2024-02-12 21:53:37.18778 +364 payment processing 616 \N Spree::Payment pending 2024-02-12 21:53:37.224139 2024-02-12 21:53:37.224139 +365 order confirm 634 \N Spree::Order complete 2024-02-12 21:53:37.252009 2024-02-12 21:53:37.252009 +366 payment \N 634 \N Spree::Order balance_due 2024-02-12 21:53:37.279595 2024-02-12 21:53:37.279595 +367 shipment \N 634 \N Spree::Order pending 2024-02-12 21:53:37.3947 2024-02-12 21:53:37.3947 +368 order delivery 628 \N Spree::Order payment 2024-02-12 21:53:56.809627 2024-02-12 21:53:56.809627 +369 order payment 628 \N Spree::Order confirm 2024-02-12 21:53:56.871184 2024-02-12 21:53:56.871184 +370 payment checkout 610 \N Spree::Payment processing 2024-02-12 21:53:56.95657 2024-02-12 21:53:56.95657 +371 payment processing 610 \N Spree::Payment pending 2024-02-12 21:53:56.995466 2024-02-12 21:53:56.995466 +372 order confirm 628 \N Spree::Order complete 2024-02-12 21:53:57.031689 2024-02-12 21:53:57.031689 +373 payment \N 628 \N Spree::Order balance_due 2024-02-12 21:53:57.049677 2024-02-12 21:53:57.049677 +374 shipment \N 628 \N Spree::Order pending 2024-02-12 21:53:57.348687 2024-02-12 21:53:57.348687 +375 order delivery 635 \N Spree::Order payment 2024-02-12 21:54:07.644534 2024-02-12 21:54:07.644534 +376 order payment 635 \N Spree::Order confirm 2024-02-12 21:54:07.70562 2024-02-12 21:54:07.70562 +377 payment checkout 617 \N Spree::Payment processing 2024-02-12 21:54:07.759168 2024-02-12 21:54:07.759168 +378 payment processing 617 \N Spree::Payment pending 2024-02-12 21:54:07.794497 2024-02-12 21:54:07.794497 +379 order confirm 635 \N Spree::Order complete 2024-02-12 21:54:07.824349 2024-02-12 21:54:07.824349 +380 payment \N 635 \N Spree::Order balance_due 2024-02-12 21:54:07.842017 2024-02-12 21:54:07.842017 +381 shipment \N 635 \N Spree::Order pending 2024-02-12 21:54:08.035707 2024-02-12 21:54:08.035707 +382 order delivery 629 \N Spree::Order payment 2024-02-12 21:54:14.930511 2024-02-12 21:54:14.930511 +383 order payment 629 \N Spree::Order confirm 2024-02-12 21:54:15.001057 2024-02-12 21:54:15.001057 +384 payment checkout 611 \N Spree::Payment processing 2024-02-12 21:54:15.063381 2024-02-12 21:54:15.063381 +385 payment processing 611 \N Spree::Payment pending 2024-02-12 21:54:15.098018 2024-02-12 21:54:15.098018 +386 order confirm 629 \N Spree::Order complete 2024-02-12 21:54:15.130074 2024-02-12 21:54:15.130074 +387 payment \N 629 \N Spree::Order balance_due 2024-02-12 21:54:15.147563 2024-02-12 21:54:15.147563 +388 shipment \N 629 \N Spree::Order pending 2024-02-12 21:54:15.428514 2024-02-12 21:54:15.428514 +389 payment checkout 622 \N Spree::Payment invalid 2024-02-12 21:54:21.588467 2024-02-12 21:54:21.588467 +390 order delivery 631 \N Spree::Order payment 2024-02-12 21:54:23.799614 2024-02-12 21:54:23.799614 +391 order payment 631 \N Spree::Order confirm 2024-02-12 21:54:23.858425 2024-02-12 21:54:23.858425 +392 payment checkout 613 \N Spree::Payment processing 2024-02-12 21:54:23.915146 2024-02-12 21:54:23.915146 +393 payment processing 613 \N Spree::Payment pending 2024-02-12 21:54:23.973855 2024-02-12 21:54:23.973855 +394 order confirm 631 \N Spree::Order complete 2024-02-12 21:54:24.004003 2024-02-12 21:54:24.004003 +395 payment \N 631 \N Spree::Order balance_due 2024-02-12 21:54:24.023811 2024-02-12 21:54:24.023811 +396 shipment \N 631 \N Spree::Order pending 2024-02-12 21:54:24.217352 2024-02-12 21:54:24.217352 +397 payment checkout 623 \N Spree::Payment invalid 2024-02-12 21:54:29.436457 2024-02-12 21:54:29.436457 +398 payment checkout 624 \N Spree::Payment invalid 2024-02-12 21:54:39.970006 2024-02-12 21:54:39.970006 +399 order cart 633 \N Spree::Order address 2024-02-12 21:54:41.786933 2024-02-12 21:54:41.786933 +400 payment checkout 626 \N Spree::Payment invalid 2024-02-12 21:54:45.730069 2024-02-12 21:54:45.730069 +401 order cart 637 \N Spree::Order address 2024-02-12 21:54:47.222877 2024-02-12 21:54:47.222877 +402 payment checkout 615 \N Spree::Payment invalid 2024-02-12 21:55:32.970542 2024-02-12 21:55:32.970542 +403 order delivery 637 \N Spree::Order payment 2024-02-12 21:55:49.855581 2024-02-12 21:55:49.855581 +404 order payment 637 \N Spree::Order confirm 2024-02-12 21:55:49.925402 2024-02-12 21:55:49.925402 +405 payment checkout 619 \N Spree::Payment processing 2024-02-12 21:55:49.980879 2024-02-12 21:55:49.980879 +406 payment processing 619 \N Spree::Payment pending 2024-02-12 21:55:50.021077 2024-02-12 21:55:50.021077 +407 order confirm 637 \N Spree::Order complete 2024-02-12 21:55:50.054737 2024-02-12 21:55:50.054737 +408 payment \N 637 \N Spree::Order balance_due 2024-02-12 21:55:50.072189 2024-02-12 21:55:50.072189 +409 shipment \N 637 \N Spree::Order pending 2024-02-12 21:55:50.28234 2024-02-12 21:55:50.28234 +410 payment checkout 631 \N Spree::Payment invalid 2024-02-12 21:56:12.117764 2024-02-12 21:56:12.117764 +411 order cart 646 \N Spree::Order address 2024-02-12 21:57:58.903902 2024-02-12 21:57:58.903902 +412 order cart 649 \N Spree::Order address 2024-02-12 21:58:05.664331 2024-02-12 21:58:05.664331 +413 order cart 647 \N Spree::Order address 2024-02-12 21:58:13.684606 2024-02-12 21:58:13.684606 +414 order cart 648 \N Spree::Order address 2024-02-12 21:58:17.056279 2024-02-12 21:58:17.056279 +415 order cart 646 \N Spree::Order address 2024-02-12 21:58:20.95535 2024-02-12 21:58:20.95535 +416 order delivery 645 \N Spree::Order payment 2024-02-12 21:58:25.667137 2024-02-12 21:58:25.667137 +417 order payment 645 \N Spree::Order confirm 2024-02-12 21:58:25.73141 2024-02-12 21:58:25.73141 +418 payment checkout 633 \N Spree::Payment processing 2024-02-12 21:58:25.781821 2024-02-12 21:58:25.781821 +419 order cart 649 \N Spree::Order address 2024-02-12 21:58:25.802285 2024-02-12 21:58:25.802285 +420 payment processing 633 \N Spree::Payment pending 2024-02-12 21:58:25.822326 2024-02-12 21:58:25.822326 +421 order confirm 645 \N Spree::Order complete 2024-02-12 21:58:25.848358 2024-02-12 21:58:25.848358 +422 payment \N 645 \N Spree::Order balance_due 2024-02-12 21:58:25.866889 2024-02-12 21:58:25.866889 +423 shipment \N 645 \N Spree::Order pending 2024-02-12 21:58:25.997307 2024-02-12 21:58:25.997307 +424 payment checkout 641 \N Spree::Payment invalid 2024-02-12 21:58:33.987597 2024-02-12 21:58:33.987597 +432 order delivery 646 \N Spree::Order payment 2024-02-12 21:59:00.81004 2024-02-12 21:59:00.81004 +433 order payment 646 \N Spree::Order confirm 2024-02-12 21:59:00.883577 2024-02-12 21:59:00.883577 +434 payment checkout 634 \N Spree::Payment processing 2024-02-12 21:59:00.954539 2024-02-12 21:59:00.954539 +435 payment processing 634 \N Spree::Payment pending 2024-02-12 21:59:00.993611 2024-02-12 21:59:00.993611 +436 order confirm 646 \N Spree::Order complete 2024-02-12 21:59:01.027139 2024-02-12 21:59:01.027139 +437 payment \N 646 \N Spree::Order balance_due 2024-02-12 21:59:01.045579 2024-02-12 21:59:01.045579 +438 shipment \N 646 \N Spree::Order pending 2024-02-12 21:59:01.343767 2024-02-12 21:59:01.343767 +425 order delivery 650 \N Spree::Order payment 2024-02-12 21:58:36.197179 2024-02-12 21:58:36.197179 +426 order payment 650 \N Spree::Order confirm 2024-02-12 21:58:36.26605 2024-02-12 21:58:36.26605 +427 payment checkout 638 \N Spree::Payment processing 2024-02-12 21:58:36.340818 2024-02-12 21:58:36.340818 +428 payment processing 638 \N Spree::Payment pending 2024-02-12 21:58:36.384489 2024-02-12 21:58:36.384489 +429 order confirm 650 \N Spree::Order complete 2024-02-12 21:58:36.413883 2024-02-12 21:58:36.413883 +430 payment \N 650 \N Spree::Order balance_due 2024-02-12 21:58:36.46215 2024-02-12 21:58:36.46215 +431 shipment \N 650 \N Spree::Order pending 2024-02-12 21:58:36.579089 2024-02-12 21:58:36.579089 +439 order delivery 647 \N Spree::Order payment 2024-02-12 21:59:16.751202 2024-02-12 21:59:16.751202 +440 order payment 647 \N Spree::Order confirm 2024-02-12 21:59:16.813516 2024-02-12 21:59:16.813516 +441 payment checkout 635 \N Spree::Payment processing 2024-02-12 21:59:16.869092 2024-02-12 21:59:16.869092 +442 payment processing 635 \N Spree::Payment pending 2024-02-12 21:59:16.905653 2024-02-12 21:59:16.905653 +443 order confirm 647 \N Spree::Order complete 2024-02-12 21:59:16.93419 2024-02-12 21:59:16.93419 +444 payment \N 647 \N Spree::Order balance_due 2024-02-12 21:59:16.952364 2024-02-12 21:59:16.952364 +445 shipment \N 647 \N Spree::Order pending 2024-02-12 21:59:17.166517 2024-02-12 21:59:17.166517 +446 order delivery 648 \N Spree::Order payment 2024-02-12 21:59:20.926574 2024-02-12 21:59:20.926574 +447 order payment 648 \N Spree::Order confirm 2024-02-12 21:59:20.998992 2024-02-12 21:59:20.998992 +448 payment checkout 636 \N Spree::Payment processing 2024-02-12 21:59:21.062004 2024-02-12 21:59:21.062004 +449 payment processing 636 \N Spree::Payment pending 2024-02-12 21:59:21.097178 2024-02-12 21:59:21.097178 +450 order confirm 648 \N Spree::Order complete 2024-02-12 21:59:21.127287 2024-02-12 21:59:21.127287 +451 payment \N 648 \N Spree::Order balance_due 2024-02-12 21:59:21.153972 2024-02-12 21:59:21.153972 +452 shipment \N 648 \N Spree::Order pending 2024-02-12 21:59:21.255408 2024-02-12 21:59:21.255408 +453 payment checkout 646 \N Spree::Payment invalid 2024-02-12 21:59:25.563567 2024-02-12 21:59:25.563567 +454 payment checkout 647 \N Spree::Payment invalid 2024-02-12 21:59:39.540997 2024-02-12 21:59:39.540997 +455 payment checkout 648 \N Spree::Payment invalid 2024-02-12 21:59:42.949593 2024-02-12 21:59:42.949593 +456 order cart 654 \N Spree::Order address 2024-02-12 21:59:44.077189 2024-02-12 21:59:44.077189 +457 order cart 652 \N Spree::Order address 2024-02-12 21:59:45.878029 2024-02-12 21:59:45.878029 +458 order delivery 652 \N Spree::Order payment 2024-02-12 22:00:28.831767 2024-02-12 22:00:28.831767 +459 order payment 652 \N Spree::Order confirm 2024-02-12 22:00:28.894547 2024-02-12 22:00:28.894547 +460 payment checkout 640 \N Spree::Payment processing 2024-02-12 22:00:28.955379 2024-02-12 22:00:28.955379 +461 payment processing 640 \N Spree::Payment pending 2024-02-12 22:00:28.992061 2024-02-12 22:00:28.992061 +462 order confirm 652 \N Spree::Order complete 2024-02-12 22:00:29.02007 2024-02-12 22:00:29.02007 +463 payment \N 652 \N Spree::Order balance_due 2024-02-12 22:00:29.037655 2024-02-12 22:00:29.037655 +464 shipment \N 652 \N Spree::Order pending 2024-02-12 22:00:29.227353 2024-02-12 22:00:29.227353 +465 order delivery 654 \N Spree::Order payment 2024-02-12 22:00:46.935064 2024-02-12 22:00:46.935064 +466 order payment 654 \N Spree::Order confirm 2024-02-12 22:00:46.993735 2024-02-12 22:00:46.993735 +467 payment checkout 642 \N Spree::Payment processing 2024-02-12 22:00:47.046728 2024-02-12 22:00:47.046728 +468 payment processing 642 \N Spree::Payment pending 2024-02-12 22:00:47.083923 2024-02-12 22:00:47.083923 +469 order confirm 654 \N Spree::Order complete 2024-02-12 22:00:47.113752 2024-02-12 22:00:47.113752 +470 payment \N 654 \N Spree::Order balance_due 2024-02-12 22:00:47.131453 2024-02-12 22:00:47.131453 +471 shipment \N 654 \N Spree::Order pending 2024-02-12 22:00:47.322541 2024-02-12 22:00:47.322541 +472 payment checkout 652 \N Spree::Payment invalid 2024-02-12 22:00:54.037198 2024-02-12 22:00:54.037198 +473 payment checkout 653 \N Spree::Payment invalid 2024-02-12 22:01:09.135745 2024-02-12 22:01:09.135745 +474 order cart 665 \N Spree::Order address 2024-02-12 22:03:13.50958 2024-02-12 22:03:13.50958 +475 order cart 668 \N Spree::Order address 2024-02-12 22:03:16.186195 2024-02-12 22:03:16.186195 +476 order cart 662 \N Spree::Order address 2024-02-12 22:03:18.31256 2024-02-12 22:03:18.31256 +477 order cart 667 \N Spree::Order address 2024-02-12 22:03:27.099671 2024-02-12 22:03:27.099671 +478 order cart 670 \N Spree::Order address 2024-02-12 22:03:30.586115 2024-02-12 22:03:30.586115 +479 order cart 665 \N Spree::Order address 2024-02-12 22:03:33.659706 2024-02-12 22:03:33.659706 +480 payment checkout 657 \N Spree::Payment invalid 2024-02-12 22:03:40.113244 2024-02-12 22:03:40.113244 +481 payment checkout 664 \N Spree::Payment invalid 2024-02-12 22:03:42.688354 2024-02-12 22:03:42.688354 +482 order delivery 668 \N Spree::Order payment 2024-02-12 22:03:55.993468 2024-02-12 22:03:55.993468 +483 order payment 668 \N Spree::Order confirm 2024-02-12 22:03:56.055021 2024-02-12 22:03:56.055021 +484 payment checkout 661 \N Spree::Payment processing 2024-02-12 22:03:56.113046 2024-02-12 22:03:56.113046 +485 payment processing 661 \N Spree::Payment pending 2024-02-12 22:03:56.158014 2024-02-12 22:03:56.158014 +486 order confirm 668 \N Spree::Order complete 2024-02-12 22:03:56.19223 2024-02-12 22:03:56.19223 +487 payment \N 668 \N Spree::Order balance_due 2024-02-12 22:03:56.213423 2024-02-12 22:03:56.213423 +488 shipment \N 668 \N Spree::Order pending 2024-02-12 22:03:56.426586 2024-02-12 22:03:56.426586 +489 order delivery 662 \N Spree::Order payment 2024-02-12 22:04:16.427261 2024-02-12 22:04:16.427261 +490 order payment 662 \N Spree::Order confirm 2024-02-12 22:04:16.495794 2024-02-12 22:04:16.495794 +491 payment checkout 656 \N Spree::Payment processing 2024-02-12 22:04:16.549429 2024-02-12 22:04:16.549429 +492 payment processing 656 \N Spree::Payment pending 2024-02-12 22:04:16.585362 2024-02-12 22:04:16.585362 +493 order confirm 662 \N Spree::Order complete 2024-02-12 22:04:16.613852 2024-02-12 22:04:16.613852 +494 payment \N 662 \N Spree::Order balance_due 2024-02-12 22:04:16.632634 2024-02-12 22:04:16.632634 +495 shipment \N 662 \N Spree::Order pending 2024-02-12 22:04:16.818966 2024-02-12 22:04:16.818966 +496 order delivery 667 \N Spree::Order payment 2024-02-12 22:04:26.847699 2024-02-12 22:04:26.847699 +497 order payment 667 \N Spree::Order confirm 2024-02-12 22:04:26.907102 2024-02-12 22:04:26.907102 +498 payment checkout 662 \N Spree::Payment processing 2024-02-12 22:04:26.963574 2024-02-12 22:04:26.963574 +499 payment processing 662 \N Spree::Payment pending 2024-02-12 22:04:27.001506 2024-02-12 22:04:27.001506 +500 order confirm 667 \N Spree::Order complete 2024-02-12 22:04:27.03174 2024-02-12 22:04:27.03174 +501 payment \N 667 \N Spree::Order balance_due 2024-02-12 22:04:27.049911 2024-02-12 22:04:27.049911 +502 shipment \N 667 \N Spree::Order pending 2024-02-12 22:04:27.238724 2024-02-12 22:04:27.238724 +503 payment checkout 669 \N Spree::Payment invalid 2024-02-12 22:04:38.350027 2024-02-12 22:04:38.350027 +504 payment checkout 663 \N Spree::Payment invalid 2024-02-12 22:04:40.482457 2024-02-12 22:04:40.482457 +505 payment checkout 665 \N Spree::Payment invalid 2024-02-12 22:04:45.233104 2024-02-12 22:04:45.233104 +507 order cart 679 \N Spree::Order address 2024-02-12 22:06:41.391722 2024-02-12 22:06:41.391722 +509 order cart 679 \N Spree::Order address 2024-02-12 22:07:01.439652 2024-02-12 22:07:01.439652 +518 order delivery 677 \N Spree::Order payment 2024-02-12 22:07:53.643904 2024-02-12 22:07:53.643904 +519 order payment 677 \N Spree::Order confirm 2024-02-12 22:07:53.711133 2024-02-12 22:07:53.711133 +520 payment checkout 677 \N Spree::Payment processing 2024-02-12 22:07:53.775778 2024-02-12 22:07:53.775778 +521 payment processing 677 \N Spree::Payment pending 2024-02-12 22:07:53.813652 2024-02-12 22:07:53.813652 +522 order confirm 677 \N Spree::Order complete 2024-02-12 22:07:53.881672 2024-02-12 22:07:53.881672 +523 payment \N 677 \N Spree::Order balance_due 2024-02-12 22:07:53.92558 2024-02-12 22:07:53.92558 +524 shipment \N 677 \N Spree::Order pending 2024-02-12 22:07:54.28518 2024-02-12 22:07:54.28518 +525 order cart 675 \N Spree::Order address 2024-02-12 22:08:02.854505 2024-02-12 22:08:02.854505 +527 order cart 675 \N Spree::Order address 2024-02-12 22:08:12.536396 2024-02-12 22:08:12.536396 +528 order cart 676 \N Spree::Order address 2024-02-12 22:08:13.755713 2024-02-12 22:08:13.755713 +529 payment checkout 686 \N Spree::Payment invalid 2024-02-12 22:08:18.783886 2024-02-12 22:08:18.783886 +530 order cart 678 \N Spree::Order address 2024-02-12 22:08:19.351956 2024-02-12 22:08:19.351956 +532 order cart 681 \N Spree::Order address 2024-02-12 22:08:24.803053 2024-02-12 22:08:24.803053 +533 order cart 678 \N Spree::Order address 2024-02-12 22:08:29.242919 2024-02-12 22:08:29.242919 +534 order delivery 678 \N Spree::Order payment 2024-02-12 22:09:12.160095 2024-02-12 22:09:12.160095 +535 order payment 678 \N Spree::Order confirm 2024-02-12 22:09:12.217939 2024-02-12 22:09:12.217939 +536 payment checkout 678 \N Spree::Payment processing 2024-02-12 22:09:12.269458 2024-02-12 22:09:12.269458 +537 payment processing 678 \N Spree::Payment pending 2024-02-12 22:09:12.30439 2024-02-12 22:09:12.30439 +538 order confirm 678 \N Spree::Order complete 2024-02-12 22:09:12.332048 2024-02-12 22:09:12.332048 +539 payment \N 678 \N Spree::Order balance_due 2024-02-12 22:09:12.350787 2024-02-12 22:09:12.350787 +540 shipment \N 678 \N Spree::Order pending 2024-02-12 22:09:12.552266 2024-02-12 22:09:12.552266 +506 payment checkout 670 \N Spree::Payment invalid 2024-02-12 22:04:48.554548 2024-02-12 22:04:48.554548 +508 order cart 677 \N Spree::Order address 2024-02-12 22:06:50.552897 2024-02-12 22:06:50.552897 +510 order cart 677 \N Spree::Order address 2024-02-12 22:07:12.836777 2024-02-12 22:07:12.836777 +511 order delivery 684 \N Spree::Order payment 2024-02-12 22:07:16.437864 2024-02-12 22:07:16.437864 +512 order payment 684 \N Spree::Order confirm 2024-02-12 22:07:16.495554 2024-02-12 22:07:16.495554 +513 payment checkout 684 \N Spree::Payment processing 2024-02-12 22:07:16.546998 2024-02-12 22:07:16.546998 +514 payment processing 684 \N Spree::Payment pending 2024-02-12 22:07:16.584867 2024-02-12 22:07:16.584867 +515 order confirm 684 \N Spree::Order complete 2024-02-12 22:07:16.6099 2024-02-12 22:07:16.6099 +516 payment \N 684 \N Spree::Order balance_due 2024-02-12 22:07:16.628896 2024-02-12 22:07:16.628896 +517 shipment \N 684 \N Spree::Order pending 2024-02-12 22:07:16.746939 2024-02-12 22:07:16.746939 +526 payment checkout 680 \N Spree::Payment invalid 2024-02-12 22:08:11.139263 2024-02-12 22:08:11.139263 +531 order cart 682 \N Spree::Order address 2024-02-12 22:08:19.666621 2024-02-12 22:08:19.666621 +541 order cart 675 \N Spree::Order address 2024-02-12 22:09:13.136396 2024-02-12 22:09:13.136396 +542 order delivery 676 \N Spree::Order payment 2024-02-12 22:09:20.458718 2024-02-12 22:09:20.458718 +543 order payment 676 \N Spree::Order confirm 2024-02-12 22:09:20.524952 2024-02-12 22:09:20.524952 +544 payment checkout 676 \N Spree::Payment processing 2024-02-12 22:09:20.580531 2024-02-12 22:09:20.580531 +545 payment processing 676 \N Spree::Payment pending 2024-02-12 22:09:20.627883 2024-02-12 22:09:20.627883 +546 order confirm 676 \N Spree::Order complete 2024-02-12 22:09:20.669254 2024-02-12 22:09:20.669254 +547 payment \N 676 \N Spree::Order balance_due 2024-02-12 22:09:20.713402 2024-02-12 22:09:20.713402 +548 shipment \N 676 \N Spree::Order pending 2024-02-12 22:09:20.966627 2024-02-12 22:09:20.966627 +549 payment checkout 682 \N Spree::Payment invalid 2024-02-12 22:09:24.949517 2024-02-12 22:09:24.949517 +550 order delivery 681 \N Spree::Order payment 2024-02-12 22:09:27.61292 2024-02-12 22:09:27.61292 +551 order payment 681 \N Spree::Order confirm 2024-02-12 22:09:27.675914 2024-02-12 22:09:27.675914 +552 payment checkout 681 \N Spree::Payment processing 2024-02-12 22:09:27.72888 2024-02-12 22:09:27.72888 +553 payment processing 681 \N Spree::Payment pending 2024-02-12 22:09:27.765483 2024-02-12 22:09:27.765483 +554 order confirm 681 \N Spree::Order complete 2024-02-12 22:09:27.796484 2024-02-12 22:09:27.796484 +555 payment \N 681 \N Spree::Order balance_due 2024-02-12 22:09:27.815402 2024-02-12 22:09:27.815402 +556 shipment \N 681 \N Spree::Order pending 2024-02-12 22:09:28.015804 2024-02-12 22:09:28.015804 +557 payment checkout 689 \N Spree::Payment invalid 2024-02-12 22:09:37.42319 2024-02-12 22:09:37.42319 +558 payment checkout 690 \N Spree::Payment invalid 2024-02-12 22:09:42.754412 2024-02-12 22:09:42.754412 +559 payment checkout 692 \N Spree::Payment invalid 2024-02-12 22:09:49.795073 2024-02-12 22:09:49.795073 +560 payment checkout 675 \N Spree::Payment invalid 2024-02-12 22:10:18.09255 2024-02-12 22:10:18.09255 +561 order cart 695 \N Spree::Order address 2024-02-12 22:12:09.922339 2024-02-12 22:12:09.922339 +562 order cart 694 \N Spree::Order address 2024-02-12 22:12:10.019956 2024-02-12 22:12:10.019956 +563 order cart 698 \N Spree::Order address 2024-02-12 22:12:13.311516 2024-02-12 22:12:13.311516 +564 order cart 691 \N Spree::Order address 2024-02-12 22:12:15.386579 2024-02-12 22:12:15.386579 +565 order cart 692 \N Spree::Order address 2024-02-12 22:12:18.659032 2024-02-12 22:12:18.659032 +566 payment checkout 697 \N Spree::Payment invalid 2024-02-12 22:12:24.29861 2024-02-12 22:12:24.29861 +567 order cart 694 \N Spree::Order address 2024-02-12 22:12:29.964945 2024-02-12 22:12:29.964945 +568 order cart 698 \N Spree::Order address 2024-02-12 22:12:32.808173 2024-02-12 22:12:32.808173 +569 order cart 692 \N Spree::Order address 2024-02-12 22:12:40.838131 2024-02-12 22:12:40.838131 +570 order delivery 695 \N Spree::Order payment 2024-02-12 22:13:17.977015 2024-02-12 22:13:17.977015 +571 order payment 695 \N Spree::Order confirm 2024-02-12 22:13:18.042569 2024-02-12 22:13:18.042569 +572 payment checkout 702 \N Spree::Payment processing 2024-02-12 22:13:18.105699 2024-02-12 22:13:18.105699 +573 payment processing 702 \N Spree::Payment pending 2024-02-12 22:13:18.157242 2024-02-12 22:13:18.157242 +574 order confirm 695 \N Spree::Order complete 2024-02-12 22:13:18.198559 2024-02-12 22:13:18.198559 +575 payment \N 695 \N Spree::Order balance_due 2024-02-12 22:13:18.218577 2024-02-12 22:13:18.218577 +576 shipment \N 695 \N Spree::Order pending 2024-02-12 22:13:18.434395 2024-02-12 22:13:18.434395 +577 order delivery 692 \N Spree::Order payment 2024-02-12 22:13:21.230657 2024-02-12 22:13:21.230657 +578 order payment 692 \N Spree::Order confirm 2024-02-12 22:13:21.293915 2024-02-12 22:13:21.293915 +579 payment checkout 699 \N Spree::Payment processing 2024-02-12 22:13:21.356579 2024-02-12 22:13:21.356579 +580 payment processing 699 \N Spree::Payment pending 2024-02-12 22:13:21.395246 2024-02-12 22:13:21.395246 +581 order confirm 692 \N Spree::Order complete 2024-02-12 22:13:21.429174 2024-02-12 22:13:21.429174 +582 payment \N 692 \N Spree::Order balance_due 2024-02-12 22:13:21.447134 2024-02-12 22:13:21.447134 +583 shipment \N 692 \N Spree::Order pending 2024-02-12 22:13:21.763342 2024-02-12 22:13:21.763342 +584 payment checkout 709 \N Spree::Payment invalid 2024-02-12 22:13:48.343741 2024-02-12 22:13:48.343741 +585 order cart 693 \N Spree::Order address 2024-02-12 22:13:52.748529 2024-02-12 22:13:52.748529 +586 order cart 699 \N Spree::Order address 2024-02-12 22:13:53.246175 2024-02-12 22:13:53.246175 +587 order cart 697 \N Spree::Order address 2024-02-12 22:13:56.390165 2024-02-12 22:13:56.390165 +588 order delivery 693 \N Spree::Order payment 2024-02-12 22:14:35.779313 2024-02-12 22:14:35.779313 +589 order payment 693 \N Spree::Order confirm 2024-02-12 22:14:35.881468 2024-02-12 22:14:35.881468 +590 payment checkout 700 \N Spree::Payment processing 2024-02-12 22:14:35.984435 2024-02-12 22:14:35.984435 +591 payment processing 700 \N Spree::Payment pending 2024-02-12 22:14:36.044763 2024-02-12 22:14:36.044763 +592 order confirm 693 \N Spree::Order complete 2024-02-12 22:14:36.11565 2024-02-12 22:14:36.11565 +593 payment \N 693 \N Spree::Order balance_due 2024-02-12 22:14:36.148069 2024-02-12 22:14:36.148069 +594 shipment \N 693 \N Spree::Order pending 2024-02-12 22:14:36.556577 2024-02-12 22:14:36.556577 +595 order delivery 697 \N Spree::Order payment 2024-02-12 22:15:00.714549 2024-02-12 22:15:00.714549 +596 order payment 697 \N Spree::Order confirm 2024-02-12 22:15:00.799362 2024-02-12 22:15:00.799362 +597 payment checkout 704 \N Spree::Payment processing 2024-02-12 22:15:00.861526 2024-02-12 22:15:00.861526 +598 payment processing 704 \N Spree::Payment pending 2024-02-12 22:15:00.910692 2024-02-12 22:15:00.910692 +599 order confirm 697 \N Spree::Order complete 2024-02-12 22:15:00.944137 2024-02-12 22:15:00.944137 +600 payment \N 697 \N Spree::Order balance_due 2024-02-12 22:15:00.962836 2024-02-12 22:15:00.962836 +601 shipment \N 697 \N Spree::Order pending 2024-02-12 22:15:01.168274 2024-02-12 22:15:01.168274 +602 payment checkout 712 \N Spree::Payment invalid 2024-02-12 22:15:23.097265 2024-02-12 22:15:23.097265 +603 order cart 705 \N Spree::Order address 2024-02-12 22:17:19.637086 2024-02-12 22:17:19.637086 +604 order cart 706 \N Spree::Order address 2024-02-12 22:17:22.620226 2024-02-12 22:17:22.620226 +605 order cart 708 \N Spree::Order address 2024-02-12 22:17:24.176851 2024-02-12 22:17:24.176851 +606 order cart 712 \N Spree::Order address 2024-02-12 22:17:39.785113 2024-02-12 22:17:39.785113 +607 order cart 705 \N Spree::Order address 2024-02-12 22:17:41.904726 2024-02-12 22:17:41.904726 +608 order cart 706 \N Spree::Order address 2024-02-12 22:17:42.891861 2024-02-12 22:17:42.891861 +609 order delivery 707 \N Spree::Order payment 2024-02-12 22:17:52.970327 2024-02-12 22:17:52.970327 +611 order payment 707 \N Spree::Order confirm 2024-02-12 22:17:53.054979 2024-02-12 22:17:53.054979 +612 payment checkout 717 \N Spree::Payment processing 2024-02-12 22:17:53.107494 2024-02-12 22:17:53.107494 +613 payment processing 717 \N Spree::Payment pending 2024-02-12 22:17:53.148807 2024-02-12 22:17:53.148807 +614 order confirm 707 \N Spree::Order complete 2024-02-12 22:17:53.188901 2024-02-12 22:17:53.188901 +615 payment \N 707 \N Spree::Order balance_due 2024-02-12 22:17:53.210269 2024-02-12 22:17:53.210269 +616 shipment \N 707 \N Spree::Order pending 2024-02-12 22:17:53.324647 2024-02-12 22:17:53.324647 +638 payment checkout 726 \N Spree::Payment invalid 2024-02-12 22:18:29.82294 2024-02-12 22:18:29.82294 +639 payment checkout 727 \N Spree::Payment invalid 2024-02-12 22:18:40.48827 2024-02-12 22:18:40.48827 +647 order delivery 712 \N Spree::Order payment 2024-02-12 22:18:44.857736 2024-02-12 22:18:44.857736 +648 order payment 712 \N Spree::Order confirm 2024-02-12 22:18:44.918297 2024-02-12 22:18:44.918297 +649 payment checkout 722 \N Spree::Payment processing 2024-02-12 22:18:44.966722 2024-02-12 22:18:44.966722 +650 payment processing 722 \N Spree::Payment pending 2024-02-12 22:18:45.003766 2024-02-12 22:18:45.003766 +651 order confirm 712 \N Spree::Order complete 2024-02-12 22:18:45.029943 2024-02-12 22:18:45.029943 +652 payment \N 712 \N Spree::Order balance_due 2024-02-12 22:18:45.050578 2024-02-12 22:18:45.050578 +653 shipment \N 712 \N Spree::Order pending 2024-02-12 22:18:45.163652 2024-02-12 22:18:45.163652 +654 payment checkout 728 \N Spree::Payment invalid 2024-02-12 22:18:46.687486 2024-02-12 22:18:46.687486 +610 payment checkout 723 \N Spree::Payment invalid 2024-02-12 22:17:53.034835 2024-02-12 22:17:53.034835 +617 order delivery 708 \N Spree::Order payment 2024-02-12 22:18:03.917717 2024-02-12 22:18:03.917717 +618 order payment 708 \N Spree::Order confirm 2024-02-12 22:18:03.974149 2024-02-12 22:18:03.974149 +619 payment checkout 718 \N Spree::Payment processing 2024-02-12 22:18:04.025571 2024-02-12 22:18:04.025571 +620 payment processing 718 \N Spree::Payment pending 2024-02-12 22:18:04.062855 2024-02-12 22:18:04.062855 +621 order confirm 708 \N Spree::Order complete 2024-02-12 22:18:04.093896 2024-02-12 22:18:04.093896 +622 payment \N 708 \N Spree::Order balance_due 2024-02-12 22:18:04.11471 2024-02-12 22:18:04.11471 +623 shipment \N 708 \N Spree::Order pending 2024-02-12 22:18:04.320915 2024-02-12 22:18:04.320915 +624 order delivery 709 \N Spree::Order payment 2024-02-12 22:18:18.500816 2024-02-12 22:18:18.500816 +625 order payment 709 \N Spree::Order confirm 2024-02-12 22:18:18.565659 2024-02-12 22:18:18.565659 +626 payment checkout 719 \N Spree::Payment processing 2024-02-12 22:18:18.620586 2024-02-12 22:18:18.620586 +627 payment processing 719 \N Spree::Payment pending 2024-02-12 22:18:18.663899 2024-02-12 22:18:18.663899 +628 order confirm 709 \N Spree::Order complete 2024-02-12 22:18:18.691122 2024-02-12 22:18:18.691122 +629 payment \N 709 \N Spree::Order balance_due 2024-02-12 22:18:18.721254 2024-02-12 22:18:18.721254 +630 shipment \N 709 \N Spree::Order pending 2024-02-12 22:18:18.84139 2024-02-12 22:18:18.84139 +631 order delivery 705 \N Spree::Order payment 2024-02-12 22:18:21.720406 2024-02-12 22:18:21.720406 +632 order payment 705 \N Spree::Order confirm 2024-02-12 22:18:21.777174 2024-02-12 22:18:21.777174 +633 payment checkout 715 \N Spree::Payment processing 2024-02-12 22:18:21.83815 2024-02-12 22:18:21.83815 +634 payment processing 715 \N Spree::Payment pending 2024-02-12 22:18:21.88394 2024-02-12 22:18:21.88394 +635 order confirm 705 \N Spree::Order complete 2024-02-12 22:18:21.91966 2024-02-12 22:18:21.91966 +636 payment \N 705 \N Spree::Order balance_due 2024-02-12 22:18:21.937801 2024-02-12 22:18:21.937801 +637 shipment \N 705 \N Spree::Order pending 2024-02-12 22:18:22.224565 2024-02-12 22:18:22.224565 +640 order delivery 706 \N Spree::Order payment 2024-02-12 22:18:42.172804 2024-02-12 22:18:42.172804 +641 order payment 706 \N Spree::Order confirm 2024-02-12 22:18:42.229427 2024-02-12 22:18:42.229427 +642 payment checkout 716 \N Spree::Payment processing 2024-02-12 22:18:42.29793 2024-02-12 22:18:42.29793 +643 payment processing 716 \N Spree::Payment pending 2024-02-12 22:18:42.337152 2024-02-12 22:18:42.337152 +644 order confirm 706 \N Spree::Order complete 2024-02-12 22:18:42.370751 2024-02-12 22:18:42.370751 +645 payment \N 706 \N Spree::Order balance_due 2024-02-12 22:18:42.390715 2024-02-12 22:18:42.390715 +646 shipment \N 706 \N Spree::Order pending 2024-02-12 22:18:42.656043 2024-02-12 22:18:42.656043 +655 order cart 710 \N Spree::Order address 2024-02-12 22:18:56.207866 2024-02-12 22:18:56.207866 +656 order cart 710 \N Spree::Order address 2024-02-12 22:19:07.377848 2024-02-12 22:19:07.377848 +657 payment checkout 720 \N Spree::Payment invalid 2024-02-12 22:20:18.27062 2024-02-12 22:20:18.27062 +658 order cart 726 \N Spree::Order address 2024-02-12 22:22:16.338377 2024-02-12 22:22:16.338377 +659 order cart 727 \N Spree::Order address 2024-02-12 22:22:18.038329 2024-02-12 22:22:18.038329 +660 order cart 722 \N Spree::Order address 2024-02-12 22:22:23.844031 2024-02-12 22:22:23.844031 +661 order cart 721 \N Spree::Order address 2024-02-12 22:22:26.16139 2024-02-12 22:22:26.16139 +662 payment checkout 735 \N Spree::Payment invalid 2024-02-12 22:22:28.673095 2024-02-12 22:22:28.673095 +663 order cart 729 \N Spree::Order address 2024-02-12 22:22:30.86091 2024-02-12 22:22:30.86091 +664 order cart 726 \N Spree::Order address 2024-02-12 22:22:35.940162 2024-02-12 22:22:35.940162 +665 order cart 727 \N Spree::Order address 2024-02-12 22:22:38.092202 2024-02-12 22:22:38.092202 +666 payment checkout 738 \N Spree::Payment invalid 2024-02-12 22:22:40.564799 2024-02-12 22:22:40.564799 +667 order delivery 728 \N Spree::Order payment 2024-02-12 22:22:48.477678 2024-02-12 22:22:48.477678 +668 order payment 728 \N Spree::Order confirm 2024-02-12 22:22:48.593888 2024-02-12 22:22:48.593888 +669 payment checkout 743 \N Spree::Payment processing 2024-02-12 22:22:48.642508 2024-02-12 22:22:48.642508 +670 payment processing 743 \N Spree::Payment pending 2024-02-12 22:22:48.693467 2024-02-12 22:22:48.693467 +671 order confirm 728 \N Spree::Order complete 2024-02-12 22:22:48.721353 2024-02-12 22:22:48.721353 +672 payment \N 728 \N Spree::Order balance_due 2024-02-12 22:22:48.740225 2024-02-12 22:22:48.740225 +673 shipment \N 728 \N Spree::Order pending 2024-02-12 22:22:48.850524 2024-02-12 22:22:48.850524 +674 order delivery 722 \N Spree::Order payment 2024-02-12 22:23:03.654432 2024-02-12 22:23:03.654432 +675 order payment 722 \N Spree::Order confirm 2024-02-12 22:23:03.719932 2024-02-12 22:23:03.719932 +676 payment checkout 737 \N Spree::Payment processing 2024-02-12 22:23:03.799961 2024-02-12 22:23:03.799961 +677 payment processing 737 \N Spree::Payment pending 2024-02-12 22:23:03.846205 2024-02-12 22:23:03.846205 +678 order confirm 722 \N Spree::Order complete 2024-02-12 22:23:03.8777 2024-02-12 22:23:03.8777 +679 payment \N 722 \N Spree::Order balance_due 2024-02-12 22:23:03.899218 2024-02-12 22:23:03.899218 +680 shipment \N 722 \N Spree::Order pending 2024-02-12 22:23:04.134753 2024-02-12 22:23:04.134753 +681 order delivery 729 \N Spree::Order payment 2024-02-12 22:23:10.679166 2024-02-12 22:23:10.679166 +682 order payment 729 \N Spree::Order confirm 2024-02-12 22:23:10.751496 2024-02-12 22:23:10.751496 +683 payment checkout 744 \N Spree::Payment processing 2024-02-12 22:23:10.804497 2024-02-12 22:23:10.804497 +684 payment processing 744 \N Spree::Payment pending 2024-02-12 22:23:10.841968 2024-02-12 22:23:10.841968 +685 order confirm 729 \N Spree::Order complete 2024-02-12 22:23:10.872658 2024-02-12 22:23:10.872658 +686 payment \N 729 \N Spree::Order balance_due 2024-02-12 22:23:10.894372 2024-02-12 22:23:10.894372 +687 shipment \N 729 \N Spree::Order pending 2024-02-12 22:23:11.086425 2024-02-12 22:23:11.086425 +688 payment checkout 748 \N Spree::Payment invalid 2024-02-12 22:23:29.245162 2024-02-12 22:23:29.245162 +689 order delivery 726 \N Spree::Order payment 2024-02-12 22:23:35.216406 2024-02-12 22:23:35.216406 +690 order payment 726 \N Spree::Order confirm 2024-02-12 22:23:35.28732 2024-02-12 22:23:35.28732 +691 payment checkout 741 \N Spree::Payment processing 2024-02-12 22:23:35.363106 2024-02-12 22:23:35.363106 +692 payment processing 741 \N Spree::Payment pending 2024-02-12 22:23:35.40549 2024-02-12 22:23:35.40549 +693 order confirm 726 \N Spree::Order complete 2024-02-12 22:23:35.440987 2024-02-12 22:23:35.440987 +694 payment \N 726 \N Spree::Order balance_due 2024-02-12 22:23:35.46175 2024-02-12 22:23:35.46175 +695 payment checkout 749 \N Spree::Payment invalid 2024-02-12 22:23:35.726444 2024-02-12 22:23:35.726444 +696 shipment \N 726 \N Spree::Order pending 2024-02-12 22:23:35.974836 2024-02-12 22:23:35.974836 +697 payment checkout 740 \N Spree::Payment invalid 2024-02-12 22:23:41.704032 2024-02-12 22:23:41.704032 +698 order cart 724 \N Spree::Order address 2024-02-12 22:23:48.216525 2024-02-12 22:23:48.216525 +699 payment checkout 752 \N Spree::Payment invalid 2024-02-12 22:23:57.299497 2024-02-12 22:23:57.299497 +700 order cart 724 \N Spree::Order address 2024-02-12 22:23:59.07939 2024-02-12 22:23:59.07939 +706 payment checkout 759 \N Spree::Payment invalid 2024-02-12 22:27:12.922907 2024-02-12 22:27:12.922907 +714 order delivery 741 \N Spree::Order payment 2024-02-12 22:27:19.096736 2024-02-12 22:27:19.096736 +715 order payment 741 \N Spree::Order confirm 2024-02-12 22:27:19.176219 2024-02-12 22:27:19.176219 +716 payment checkout 762 \N Spree::Payment processing 2024-02-12 22:27:19.232686 2024-02-12 22:27:19.232686 +717 payment processing 762 \N Spree::Payment pending 2024-02-12 22:27:19.272932 2024-02-12 22:27:19.272932 +718 order confirm 741 \N Spree::Order complete 2024-02-12 22:27:19.29951 2024-02-12 22:27:19.29951 +719 payment \N 741 \N Spree::Order balance_due 2024-02-12 22:27:19.318649 2024-02-12 22:27:19.318649 +720 shipment \N 741 \N Spree::Order pending 2024-02-12 22:27:19.432499 2024-02-12 22:27:19.432499 +742 order cart 750 \N Spree::Order address 2024-02-12 22:31:24.493033 2024-02-12 22:31:24.493033 +743 order cart 750 \N Spree::Order address 2024-02-12 22:31:48.288951 2024-02-12 22:31:48.288951 +758 order cart 749 \N Spree::Order address 2024-02-12 22:32:42.01542 2024-02-12 22:32:42.01542 +759 order cart 756 \N Spree::Order address 2024-02-12 22:32:48.218602 2024-02-12 22:32:48.218602 +763 order cart 749 \N Spree::Order address 2024-02-12 22:32:52.004735 2024-02-12 22:32:52.004735 +701 order cart 736 \N Spree::Order address 2024-02-12 22:26:44.95366 2024-02-12 22:26:44.95366 +744 order delivery 748 \N Spree::Order payment 2024-02-12 22:32:17.701741 2024-02-12 22:32:17.701741 +745 order payment 748 \N Spree::Order confirm 2024-02-12 22:32:17.770549 2024-02-12 22:32:17.770549 +746 payment checkout 773 \N Spree::Payment processing 2024-02-12 22:32:17.819549 2024-02-12 22:32:17.819549 +747 payment processing 773 \N Spree::Payment pending 2024-02-12 22:32:17.856663 2024-02-12 22:32:17.856663 +748 order confirm 748 \N Spree::Order complete 2024-02-12 22:32:17.88191 2024-02-12 22:32:17.88191 +749 payment \N 748 \N Spree::Order balance_due 2024-02-12 22:32:17.898467 2024-02-12 22:32:17.898467 +750 shipment \N 748 \N Spree::Order pending 2024-02-12 22:32:18.001079 2024-02-12 22:32:18.001079 +751 order delivery 750 \N Spree::Order payment 2024-02-12 22:32:28.301001 2024-02-12 22:32:28.301001 +752 order payment 750 \N Spree::Order confirm 2024-02-12 22:32:28.363346 2024-02-12 22:32:28.363346 +753 payment checkout 776 \N Spree::Payment processing 2024-02-12 22:32:28.421533 2024-02-12 22:32:28.421533 +754 payment processing 776 \N Spree::Payment pending 2024-02-12 22:32:28.46843 2024-02-12 22:32:28.46843 +755 order confirm 750 \N Spree::Order complete 2024-02-12 22:32:28.501381 2024-02-12 22:32:28.501381 +756 payment \N 750 \N Spree::Order balance_due 2024-02-12 22:32:28.523813 2024-02-12 22:32:28.523813 +757 shipment \N 750 \N Spree::Order pending 2024-02-12 22:32:28.798282 2024-02-12 22:32:28.798282 +760 order cart 757 \N Spree::Order address 2024-02-12 22:32:48.508306 2024-02-12 22:32:48.508306 +761 order cart 752 \N Spree::Order address 2024-02-12 22:32:50.206547 2024-02-12 22:32:50.206547 +762 order cart 751 \N Spree::Order address 2024-02-12 22:32:51.783587 2024-02-12 22:32:51.783587 +764 payment checkout 784 \N Spree::Payment invalid 2024-02-12 22:32:53.484492 2024-02-12 22:32:53.484492 +766 order cart 757 \N Spree::Order address 2024-02-12 22:32:58.302478 2024-02-12 22:32:58.302478 +767 order cart 752 \N Spree::Order address 2024-02-12 22:33:00.124941 2024-02-12 22:33:00.124941 +776 order cart 757 \N Spree::Order address 2024-02-12 22:33:54.205349 2024-02-12 22:33:54.205349 +777 order delivery 751 \N Spree::Order payment 2024-02-12 22:33:55.910545 2024-02-12 22:33:55.910545 +778 order payment 751 \N Spree::Order confirm 2024-02-12 22:33:55.970877 2024-02-12 22:33:55.970877 +779 payment checkout 777 \N Spree::Payment processing 2024-02-12 22:33:56.025427 2024-02-12 22:33:56.025427 +780 payment processing 777 \N Spree::Payment pending 2024-02-12 22:33:56.071838 2024-02-12 22:33:56.071838 +781 order confirm 751 \N Spree::Order complete 2024-02-12 22:33:56.109546 2024-02-12 22:33:56.109546 +782 payment \N 751 \N Spree::Order balance_due 2024-02-12 22:33:56.127049 2024-02-12 22:33:56.127049 +783 shipment \N 751 \N Spree::Order pending 2024-02-12 22:33:56.32539 2024-02-12 22:33:56.32539 +702 order cart 738 \N Spree::Order address 2024-02-12 22:26:45.296177 2024-02-12 22:26:45.296177 +703 order cart 743 \N Spree::Order address 2024-02-12 22:27:04.074655 2024-02-12 22:27:04.074655 +704 order cart 736 \N Spree::Order address 2024-02-12 22:27:05.100104 2024-02-12 22:27:05.100104 +705 order cart 738 \N Spree::Order address 2024-02-12 22:27:07.355741 2024-02-12 22:27:07.355741 +707 order delivery 740 \N Spree::Order payment 2024-02-12 22:27:16.861118 2024-02-12 22:27:16.861118 +708 order payment 740 \N Spree::Order confirm 2024-02-12 22:27:16.920359 2024-02-12 22:27:16.920359 +709 payment checkout 761 \N Spree::Payment processing 2024-02-12 22:27:16.969102 2024-02-12 22:27:16.969102 +710 payment processing 761 \N Spree::Payment pending 2024-02-12 22:27:17.007237 2024-02-12 22:27:17.007237 +711 order confirm 740 \N Spree::Order complete 2024-02-12 22:27:17.035544 2024-02-12 22:27:17.035544 +712 payment \N 740 \N Spree::Order balance_due 2024-02-12 22:27:17.056592 2024-02-12 22:27:17.056592 +713 shipment \N 740 \N Spree::Order pending 2024-02-12 22:27:17.219966 2024-02-12 22:27:17.219966 +721 order delivery 738 \N Spree::Order payment 2024-02-12 22:27:48.288198 2024-02-12 22:27:48.288198 +722 order payment 738 \N Spree::Order confirm 2024-02-12 22:27:48.349061 2024-02-12 22:27:48.349061 +723 payment checkout 758 \N Spree::Payment processing 2024-02-12 22:27:48.404094 2024-02-12 22:27:48.404094 +724 payment processing 758 \N Spree::Payment pending 2024-02-12 22:27:48.452764 2024-02-12 22:27:48.452764 +725 order confirm 738 \N Spree::Order complete 2024-02-12 22:27:48.48319 2024-02-12 22:27:48.48319 +726 payment \N 738 \N Spree::Order balance_due 2024-02-12 22:27:48.500726 2024-02-12 22:27:48.500726 +727 shipment \N 738 \N Spree::Order pending 2024-02-12 22:27:48.691791 2024-02-12 22:27:48.691791 +728 order delivery 743 \N Spree::Order payment 2024-02-12 22:28:05.290973 2024-02-12 22:28:05.290973 +729 order payment 743 \N Spree::Order confirm 2024-02-12 22:28:05.351667 2024-02-12 22:28:05.351667 +730 payment checkout 764 \N Spree::Payment processing 2024-02-12 22:28:05.409599 2024-02-12 22:28:05.409599 +731 payment processing 764 \N Spree::Payment pending 2024-02-12 22:28:05.445029 2024-02-12 22:28:05.445029 +732 order confirm 743 \N Spree::Order complete 2024-02-12 22:28:05.473533 2024-02-12 22:28:05.473533 +733 payment \N 743 \N Spree::Order balance_due 2024-02-12 22:28:05.491124 2024-02-12 22:28:05.491124 +734 shipment \N 743 \N Spree::Order pending 2024-02-12 22:28:05.674419 2024-02-12 22:28:05.674419 +735 order cart 734 \N Spree::Order address 2024-02-12 22:28:08.540657 2024-02-12 22:28:08.540657 +736 payment checkout 768 \N Spree::Payment invalid 2024-02-12 22:28:13.167727 2024-02-12 22:28:13.167727 +737 payment checkout 760 \N Spree::Payment invalid 2024-02-12 22:28:16.725089 2024-02-12 22:28:16.725089 +738 order cart 734 \N Spree::Order address 2024-02-12 22:28:19.840438 2024-02-12 22:28:19.840438 +739 order cart 742 \N Spree::Order address 2024-02-12 22:28:24.405378 2024-02-12 22:28:24.405378 +740 payment checkout 769 \N Spree::Payment invalid 2024-02-12 22:28:27.164589 2024-02-12 22:28:27.164589 +741 order cart 748 \N Spree::Order address 2024-02-12 22:31:15.375884 2024-02-12 22:31:15.375884 +765 order cart 756 \N Spree::Order address 2024-02-12 22:32:58.060781 2024-02-12 22:32:58.060781 +768 order delivery 756 \N Spree::Order payment 2024-02-12 22:33:40.949504 2024-02-12 22:33:40.949504 +769 order payment 756 \N Spree::Order confirm 2024-02-12 22:33:41.009634 2024-02-12 22:33:41.009634 +770 payment checkout 781 \N Spree::Payment processing 2024-02-12 22:33:41.079172 2024-02-12 22:33:41.079172 +771 payment processing 781 \N Spree::Payment pending 2024-02-12 22:33:41.11673 2024-02-12 22:33:41.11673 +772 order confirm 756 \N Spree::Order complete 2024-02-12 22:33:41.148658 2024-02-12 22:33:41.148658 +773 payment \N 756 \N Spree::Order balance_due 2024-02-12 22:33:41.166092 2024-02-12 22:33:41.166092 +774 shipment \N 756 \N Spree::Order pending 2024-02-12 22:33:41.435071 2024-02-12 22:33:41.435071 +775 order cart 749 \N Spree::Order address 2024-02-12 22:33:51.35637 2024-02-12 22:33:51.35637 +784 payment checkout 786 \N Spree::Payment invalid 2024-02-12 22:34:06.149061 2024-02-12 22:34:06.149061 +785 payment checkout 787 \N Spree::Payment invalid 2024-02-12 22:34:18.176384 2024-02-12 22:34:18.176384 +786 order delivery 757 \N Spree::Order payment 2024-02-12 22:34:59.925059 2024-02-12 22:34:59.925059 +787 order payment 757 \N Spree::Order confirm 2024-02-12 22:35:00.002359 2024-02-12 22:35:00.002359 +788 payment checkout 782 \N Spree::Payment processing 2024-02-12 22:35:00.066117 2024-02-12 22:35:00.066117 +789 payment processing 782 \N Spree::Payment pending 2024-02-12 22:35:00.102108 2024-02-12 22:35:00.102108 +790 order confirm 757 \N Spree::Order complete 2024-02-12 22:35:00.139764 2024-02-12 22:35:00.139764 +791 payment \N 757 \N Spree::Order balance_due 2024-02-12 22:35:00.158784 2024-02-12 22:35:00.158784 +792 shipment \N 757 \N Spree::Order pending 2024-02-12 22:35:00.515064 2024-02-12 22:35:00.515064 +793 payment checkout 790 \N Spree::Payment invalid 2024-02-12 22:35:22.305752 2024-02-12 22:35:22.305752 +794 order cart 770 \N Spree::Order address 2024-02-12 22:37:14.159926 2024-02-12 22:37:14.159926 +795 order cart 771 \N Spree::Order address 2024-02-12 22:37:14.478504 2024-02-12 22:37:14.478504 +796 order cart 765 \N Spree::Order address 2024-02-12 22:37:21.514837 2024-02-12 22:37:21.514837 +797 order cart 770 \N Spree::Order address 2024-02-12 22:37:34.612949 2024-02-12 22:37:34.612949 +798 order cart 771 \N Spree::Order address 2024-02-12 22:37:36.458394 2024-02-12 22:37:36.458394 +799 order delivery 764 \N Spree::Order payment 2024-02-12 22:37:38.479022 2024-02-12 22:37:38.479022 +800 order payment 764 \N Spree::Order confirm 2024-02-12 22:37:38.553528 2024-02-12 22:37:38.553528 +801 payment checkout 793 \N Spree::Payment processing 2024-02-12 22:37:38.613602 2024-02-12 22:37:38.613602 +802 payment processing 793 \N Spree::Payment pending 2024-02-12 22:37:38.656793 2024-02-12 22:37:38.656793 +803 order confirm 764 \N Spree::Order complete 2024-02-12 22:37:38.68494 2024-02-12 22:37:38.68494 +804 payment \N 764 \N Spree::Order balance_due 2024-02-12 22:37:38.704764 2024-02-12 22:37:38.704764 +805 shipment \N 764 \N Spree::Order pending 2024-02-12 22:37:38.935936 2024-02-12 22:37:38.935936 +806 order delivery 767 \N Spree::Order payment 2024-02-12 22:37:41.314657 2024-02-12 22:37:41.314657 +807 order payment 767 \N Spree::Order confirm 2024-02-12 22:37:41.386392 2024-02-12 22:37:41.386392 +808 payment checkout 796 \N Spree::Payment processing 2024-02-12 22:37:41.447233 2024-02-12 22:37:41.447233 +809 payment processing 796 \N Spree::Payment pending 2024-02-12 22:37:41.488435 2024-02-12 22:37:41.488435 +810 order confirm 767 \N Spree::Order complete 2024-02-12 22:37:41.516615 2024-02-12 22:37:41.516615 +811 payment \N 767 \N Spree::Order balance_due 2024-02-12 22:37:41.535728 2024-02-12 22:37:41.535728 +812 shipment \N 767 \N Spree::Order pending 2024-02-12 22:37:41.646925 2024-02-12 22:37:41.646925 +813 order cart 765 \N Spree::Order address 2024-02-12 22:37:43.694488 2024-02-12 22:37:43.694488 +814 payment checkout 802 \N Spree::Payment invalid 2024-02-12 22:38:03.14611 2024-02-12 22:38:03.14611 +815 payment checkout 803 \N Spree::Payment invalid 2024-02-12 22:38:06.113614 2024-02-12 22:38:06.113614 +816 order delivery 770 \N Spree::Order payment 2024-02-12 22:38:14.366534 2024-02-12 22:38:14.366534 +817 order payment 770 \N Spree::Order confirm 2024-02-12 22:38:14.42989 2024-02-12 22:38:14.42989 +818 payment checkout 799 \N Spree::Payment processing 2024-02-12 22:38:14.491314 2024-02-12 22:38:14.491314 +819 payment processing 799 \N Spree::Payment pending 2024-02-12 22:38:14.52915 2024-02-12 22:38:14.52915 +820 order confirm 770 \N Spree::Order complete 2024-02-12 22:38:14.56172 2024-02-12 22:38:14.56172 +821 payment \N 770 \N Spree::Order balance_due 2024-02-12 22:38:14.580046 2024-02-12 22:38:14.580046 +822 shipment \N 770 \N Spree::Order pending 2024-02-12 22:38:14.874757 2024-02-12 22:38:14.874757 +823 payment checkout 792 \N Spree::Payment invalid 2024-02-12 22:38:25.158416 2024-02-12 22:38:25.158416 +853 order cart 780 \N Spree::Order address 2024-02-12 22:41:51.006158 2024-02-12 22:41:51.006158 +858 order cart 782 \N Spree::Order address 2024-02-12 22:42:07.992687 2024-02-12 22:42:07.992687 +877 order delivery 785 \N Spree::Order payment 2024-02-12 22:43:00.227595 2024-02-12 22:43:00.227595 +878 order payment 785 \N Spree::Order confirm 2024-02-12 22:43:00.299956 2024-02-12 22:43:00.299956 +879 payment checkout 823 \N Spree::Payment processing 2024-02-12 22:43:00.376943 2024-02-12 22:43:00.376943 +880 payment processing 823 \N Spree::Payment pending 2024-02-12 22:43:00.416474 2024-02-12 22:43:00.416474 +881 order confirm 785 \N Spree::Order complete 2024-02-12 22:43:00.451401 2024-02-12 22:43:00.451401 +882 payment \N 785 \N Spree::Order balance_due 2024-02-12 22:43:00.473995 2024-02-12 22:43:00.473995 +883 shipment \N 785 \N Spree::Order pending 2024-02-12 22:43:00.750727 2024-02-12 22:43:00.750727 +900 payment checkout 830 \N Spree::Payment invalid 2024-02-12 22:43:32.376425 2024-02-12 22:43:32.376425 +903 payment checkout 817 \N Spree::Payment invalid 2024-02-12 22:44:15.871666 2024-02-12 22:44:15.871666 +904 order cart 795 \N Spree::Order address 2024-02-12 22:47:21.151347 2024-02-12 22:47:21.151347 +824 order delivery 771 \N Spree::Order payment 2024-02-12 22:38:35.967011 2024-02-12 22:38:35.967011 +825 order payment 771 \N Spree::Order confirm 2024-02-12 22:38:36.042031 2024-02-12 22:38:36.042031 +826 payment checkout 800 \N Spree::Payment processing 2024-02-12 22:38:36.110608 2024-02-12 22:38:36.110608 +827 payment processing 800 \N Spree::Payment pending 2024-02-12 22:38:36.157853 2024-02-12 22:38:36.157853 +828 order confirm 771 \N Spree::Order complete 2024-02-12 22:38:36.201901 2024-02-12 22:38:36.201901 +829 payment \N 771 \N Spree::Order balance_due 2024-02-12 22:38:36.225143 2024-02-12 22:38:36.225143 +830 shipment \N 771 \N Spree::Order pending 2024-02-12 22:38:36.542726 2024-02-12 22:38:36.542726 +832 payment checkout 806 \N Spree::Payment invalid 2024-02-12 22:38:39.323472 2024-02-12 22:38:39.323472 +833 payment checkout 798 \N Spree::Payment invalid 2024-02-12 22:38:43.593392 2024-02-12 22:38:43.593392 +845 order delivery 768 \N Spree::Order payment 2024-02-12 22:39:39.794936 2024-02-12 22:39:39.794936 +846 order payment 768 \N Spree::Order confirm 2024-02-12 22:39:39.860068 2024-02-12 22:39:39.860068 +847 payment checkout 797 \N Spree::Payment processing 2024-02-12 22:39:39.910311 2024-02-12 22:39:39.910311 +848 payment processing 797 \N Spree::Payment pending 2024-02-12 22:39:39.952901 2024-02-12 22:39:39.952901 +849 order confirm 768 \N Spree::Order complete 2024-02-12 22:39:39.978715 2024-02-12 22:39:39.978715 +850 payment \N 768 \N Spree::Order balance_due 2024-02-12 22:39:39.997884 2024-02-12 22:39:39.997884 +851 shipment \N 768 \N Spree::Order pending 2024-02-12 22:39:40.132646 2024-02-12 22:39:40.132646 +855 order cart 785 \N Spree::Order address 2024-02-12 22:41:58.049754 2024-02-12 22:41:58.049754 +857 order cart 784 \N Spree::Order address 2024-02-12 22:42:07.064184 2024-02-12 22:42:07.064184 +862 order cart 784 \N Spree::Order address 2024-02-12 22:42:29.326687 2024-02-12 22:42:29.326687 +908 order cart 802 \N Spree::Order address 2024-02-12 22:47:54.381029 2024-02-12 22:47:54.381029 +909 order delivery 800 \N Spree::Order payment 2024-02-12 22:47:59.049445 2024-02-12 22:47:59.049445 +910 order payment 800 \N Spree::Order confirm 2024-02-12 22:47:59.172956 2024-02-12 22:47:59.172956 +911 payment checkout 842 \N Spree::Payment processing 2024-02-12 22:47:59.312415 2024-02-12 22:47:59.312415 +912 payment processing 842 \N Spree::Payment pending 2024-02-12 22:47:59.359132 2024-02-12 22:47:59.359132 +913 order confirm 800 \N Spree::Order complete 2024-02-12 22:47:59.392202 2024-02-12 22:47:59.392202 +914 payment \N 800 \N Spree::Order balance_due 2024-02-12 22:47:59.416645 2024-02-12 22:47:59.416645 +915 shipment \N 800 \N Spree::Order pending 2024-02-12 22:47:59.550786 2024-02-12 22:47:59.550786 +916 order delivery 801 \N Spree::Order payment 2024-02-12 22:48:00.867384 2024-02-12 22:48:00.867384 +917 order payment 801 \N Spree::Order confirm 2024-02-12 22:48:00.941369 2024-02-12 22:48:00.941369 +918 payment checkout 843 \N Spree::Payment processing 2024-02-12 22:48:00.998146 2024-02-12 22:48:00.998146 +919 payment processing 843 \N Spree::Payment pending 2024-02-12 22:48:01.048839 2024-02-12 22:48:01.048839 +920 order confirm 801 \N Spree::Order complete 2024-02-12 22:48:01.090537 2024-02-12 22:48:01.090537 +921 payment \N 801 \N Spree::Order balance_due 2024-02-12 22:48:01.117548 2024-02-12 22:48:01.117548 +922 shipment \N 801 \N Spree::Order pending 2024-02-12 22:48:01.293004 2024-02-12 22:48:01.293004 +831 payment checkout 794 \N Spree::Payment invalid 2024-02-12 22:38:36.58701 2024-02-12 22:38:36.58701 +834 order delivery 765 \N Spree::Order payment 2024-02-12 22:38:45.337479 2024-02-12 22:38:45.337479 +835 order payment 765 \N Spree::Order confirm 2024-02-12 22:38:45.410598 2024-02-12 22:38:45.410598 +836 payment checkout 795 \N Spree::Payment processing 2024-02-12 22:38:45.471147 2024-02-12 22:38:45.471147 +837 payment processing 795 \N Spree::Payment pending 2024-02-12 22:38:45.509381 2024-02-12 22:38:45.509381 +838 order confirm 765 \N Spree::Order complete 2024-02-12 22:38:45.56 2024-02-12 22:38:45.56 +839 payment \N 765 \N Spree::Order balance_due 2024-02-12 22:38:45.582124 2024-02-12 22:38:45.582124 +840 shipment \N 765 \N Spree::Order pending 2024-02-12 22:38:45.854428 2024-02-12 22:38:45.854428 +841 order cart 768 \N Spree::Order address 2024-02-12 22:38:47.033924 2024-02-12 22:38:47.033924 +842 order cart 768 \N Spree::Order address 2024-02-12 22:38:56.873006 2024-02-12 22:38:56.873006 +843 payment checkout 809 \N Spree::Payment invalid 2024-02-12 22:38:57.845857 2024-02-12 22:38:57.845857 +844 payment checkout 812 \N Spree::Payment invalid 2024-02-12 22:39:07.300978 2024-02-12 22:39:07.300978 +852 payment checkout 815 \N Spree::Payment invalid 2024-02-12 22:40:05.068554 2024-02-12 22:40:05.068554 +854 order cart 783 \N Spree::Order address 2024-02-12 22:41:55.489362 2024-02-12 22:41:55.489362 +856 order cart 781 \N Spree::Order address 2024-02-12 22:42:04.378164 2024-02-12 22:42:04.378164 +859 order cart 780 \N Spree::Order address 2024-02-12 22:42:13.175622 2024-02-12 22:42:13.175622 +860 order cart 783 \N Spree::Order address 2024-02-12 22:42:17.46608 2024-02-12 22:42:17.46608 +861 order cart 785 \N Spree::Order address 2024-02-12 22:42:20.066544 2024-02-12 22:42:20.066544 +863 order delivery 788 \N Spree::Order payment 2024-02-12 22:42:30.082757 2024-02-12 22:42:30.082757 +864 order payment 788 \N Spree::Order confirm 2024-02-12 22:42:30.154358 2024-02-12 22:42:30.154358 +865 payment checkout 826 \N Spree::Payment processing 2024-02-12 22:42:30.214473 2024-02-12 22:42:30.214473 +866 payment processing 826 \N Spree::Payment pending 2024-02-12 22:42:30.361715 2024-02-12 22:42:30.361715 +867 order confirm 788 \N Spree::Order complete 2024-02-12 22:42:30.409185 2024-02-12 22:42:30.409185 +868 payment \N 788 \N Spree::Order balance_due 2024-02-12 22:42:30.428362 2024-02-12 22:42:30.428362 +869 shipment \N 788 \N Spree::Order pending 2024-02-12 22:42:30.537054 2024-02-12 22:42:30.537054 +870 order delivery 783 \N Spree::Order payment 2024-02-12 22:42:57.497653 2024-02-12 22:42:57.497653 +871 order payment 783 \N Spree::Order confirm 2024-02-12 22:42:57.557062 2024-02-12 22:42:57.557062 +872 payment checkout 821 \N Spree::Payment processing 2024-02-12 22:42:57.620761 2024-02-12 22:42:57.620761 +873 payment processing 821 \N Spree::Payment pending 2024-02-12 22:42:57.660655 2024-02-12 22:42:57.660655 +874 order confirm 783 \N Spree::Order complete 2024-02-12 22:42:57.693547 2024-02-12 22:42:57.693547 +875 payment \N 783 \N Spree::Order balance_due 2024-02-12 22:42:57.711326 2024-02-12 22:42:57.711326 +876 shipment \N 783 \N Spree::Order pending 2024-02-12 22:42:58.001823 2024-02-12 22:42:58.001823 +884 order delivery 782 \N Spree::Order payment 2024-02-12 22:43:10.3091 2024-02-12 22:43:10.3091 +885 order payment 782 \N Spree::Order confirm 2024-02-12 22:43:10.365227 2024-02-12 22:43:10.365227 +886 payment checkout 820 \N Spree::Payment processing 2024-02-12 22:43:10.4177 2024-02-12 22:43:10.4177 +887 payment processing 820 \N Spree::Payment pending 2024-02-12 22:43:10.460525 2024-02-12 22:43:10.460525 +888 order confirm 782 \N Spree::Order complete 2024-02-12 22:43:10.491703 2024-02-12 22:43:10.491703 +889 payment \N 782 \N Spree::Order balance_due 2024-02-12 22:43:10.518159 2024-02-12 22:43:10.518159 +890 shipment \N 782 \N Spree::Order pending 2024-02-12 22:43:10.717046 2024-02-12 22:43:10.717046 +891 order cart 779 \N Spree::Order address 2024-02-12 22:43:12.1605 2024-02-12 22:43:12.1605 +892 order cart 779 \N Spree::Order address 2024-02-12 22:43:22.002013 2024-02-12 22:43:22.002013 +893 payment checkout 829 \N Spree::Payment invalid 2024-02-12 22:43:24.99711 2024-02-12 22:43:24.99711 +894 order delivery 784 \N Spree::Order payment 2024-02-12 22:43:32.074219 2024-02-12 22:43:32.074219 +895 order payment 784 \N Spree::Order confirm 2024-02-12 22:43:32.134983 2024-02-12 22:43:32.134983 +896 payment checkout 822 \N Spree::Payment processing 2024-02-12 22:43:32.19525 2024-02-12 22:43:32.19525 +897 payment processing 822 \N Spree::Payment pending 2024-02-12 22:43:32.232443 2024-02-12 22:43:32.232443 +898 order confirm 784 \N Spree::Order complete 2024-02-12 22:43:32.271435 2024-02-12 22:43:32.271435 +899 payment \N 784 \N Spree::Order balance_due 2024-02-12 22:43:32.291849 2024-02-12 22:43:32.291849 +901 shipment \N 784 \N Spree::Order pending 2024-02-12 22:43:32.631391 2024-02-12 22:43:32.631391 +902 payment checkout 833 \N Spree::Payment invalid 2024-02-12 22:43:53.791923 2024-02-12 22:43:53.791923 +905 order cart 797 \N Spree::Order address 2024-02-12 22:47:25.570547 2024-02-12 22:47:25.570547 +906 order cart 802 \N Spree::Order address 2024-02-12 22:47:31.65756 2024-02-12 22:47:31.65756 +907 order cart 795 \N Spree::Order address 2024-02-12 22:47:43.605909 2024-02-12 22:47:43.605909 +923 payment checkout 847 \N Spree::Payment invalid 2024-02-12 22:48:26.528091 2024-02-12 22:48:26.528091 +924 order delivery 797 \N Spree::Order payment 2024-02-12 22:48:28.541855 2024-02-12 22:48:28.541855 +925 order payment 797 \N Spree::Order confirm 2024-02-12 22:48:28.620796 2024-02-12 22:48:28.620796 +926 payment checkout 839 \N Spree::Payment processing 2024-02-12 22:48:28.692248 2024-02-12 22:48:28.692248 +927 payment processing 839 \N Spree::Payment pending 2024-02-12 22:48:28.737608 2024-02-12 22:48:28.737608 +928 order confirm 797 \N Spree::Order complete 2024-02-12 22:48:28.776981 2024-02-12 22:48:28.776981 +929 payment \N 797 \N Spree::Order balance_due 2024-02-12 22:48:28.801427 2024-02-12 22:48:28.801427 +930 shipment \N 797 \N Spree::Order pending 2024-02-12 22:48:29.109721 2024-02-12 22:48:29.109721 +931 order delivery 795 \N Spree::Order payment 2024-02-12 22:48:45.259339 2024-02-12 22:48:45.259339 +932 order payment 795 \N Spree::Order confirm 2024-02-12 22:48:45.330892 2024-02-12 22:48:45.330892 +933 payment checkout 837 \N Spree::Payment processing 2024-02-12 22:48:45.535059 2024-02-12 22:48:45.535059 +934 payment processing 837 \N Spree::Payment pending 2024-02-12 22:48:45.604039 2024-02-12 22:48:45.604039 +935 order confirm 795 \N Spree::Order complete 2024-02-12 22:48:45.649788 2024-02-12 22:48:45.649788 +936 payment \N 795 \N Spree::Order balance_due 2024-02-12 22:48:45.678772 2024-02-12 22:48:45.678772 +937 shipment \N 795 \N Spree::Order pending 2024-02-12 22:48:46.077827 2024-02-12 22:48:46.077827 +938 payment checkout 849 \N Spree::Payment invalid 2024-02-12 22:48:50.497319 2024-02-12 22:48:50.497319 +939 payment checkout 845 \N Spree::Payment invalid 2024-02-12 22:49:00.653913 2024-02-12 22:49:00.653913 +940 payment checkout 850 \N Spree::Payment invalid 2024-02-12 22:49:07.592888 2024-02-12 22:49:07.592888 +941 order cart 812 \N Spree::Order address 2024-02-12 22:51:30.029697 2024-02-12 22:51:30.029697 +942 order cart 808 \N Spree::Order address 2024-02-12 22:51:36.459057 2024-02-12 22:51:36.459057 +943 order cart 809 \N Spree::Order address 2024-02-12 22:51:39.304348 2024-02-12 22:51:39.304348 +944 order cart 811 \N Spree::Order address 2024-02-12 22:51:42.297467 2024-02-12 22:51:42.297467 +945 order cart 816 \N Spree::Order address 2024-02-12 22:51:44.164109 2024-02-12 22:51:44.164109 +946 order cart 812 \N Spree::Order address 2024-02-12 22:51:50.232573 2024-02-12 22:51:50.232573 +947 order cart 808 \N Spree::Order address 2024-02-12 22:51:58.589521 2024-02-12 22:51:58.589521 +978 payment checkout 860 \N Spree::Payment invalid 2024-02-12 22:53:00.504398 2024-02-12 22:53:00.504398 +948 order delivery 809 \N Spree::Order payment 2024-02-12 22:52:19.020006 2024-02-12 22:52:19.020006 +949 order payment 809 \N Spree::Order confirm 2024-02-12 22:52:19.089374 2024-02-12 22:52:19.089374 +950 payment checkout 855 \N Spree::Payment processing 2024-02-12 22:52:19.157734 2024-02-12 22:52:19.157734 +951 payment processing 855 \N Spree::Payment pending 2024-02-12 22:52:19.201102 2024-02-12 22:52:19.201102 +952 order confirm 809 \N Spree::Order complete 2024-02-12 22:52:19.238212 2024-02-12 22:52:19.238212 +953 payment \N 809 \N Spree::Order balance_due 2024-02-12 22:52:19.260886 2024-02-12 22:52:19.260886 +954 shipment \N 809 \N Spree::Order pending 2024-02-12 22:52:19.506711 2024-02-12 22:52:19.506711 +955 order delivery 811 \N Spree::Order payment 2024-02-12 22:52:22.21607 2024-02-12 22:52:22.21607 +956 order payment 811 \N Spree::Order confirm 2024-02-12 22:52:22.295937 2024-02-12 22:52:22.295937 +957 payment checkout 857 \N Spree::Payment processing 2024-02-12 22:52:22.368746 2024-02-12 22:52:22.368746 +958 payment processing 857 \N Spree::Payment pending 2024-02-12 22:52:22.41726 2024-02-12 22:52:22.41726 +959 order confirm 811 \N Spree::Order complete 2024-02-12 22:52:22.455172 2024-02-12 22:52:22.455172 +960 payment \N 811 \N Spree::Order balance_due 2024-02-12 22:52:22.479541 2024-02-12 22:52:22.479541 +961 shipment \N 811 \N Spree::Order pending 2024-02-12 22:52:22.730265 2024-02-12 22:52:22.730265 +962 order delivery 816 \N Spree::Order payment 2024-02-12 22:52:24.122104 2024-02-12 22:52:24.122104 +963 order payment 816 \N Spree::Order confirm 2024-02-12 22:52:24.19264 2024-02-12 22:52:24.19264 +964 payment checkout 861 \N Spree::Payment processing 2024-02-12 22:52:24.266872 2024-02-12 22:52:24.266872 +965 payment processing 861 \N Spree::Payment pending 2024-02-12 22:52:24.315081 2024-02-12 22:52:24.315081 +966 order confirm 816 \N Spree::Order complete 2024-02-12 22:52:24.350876 2024-02-12 22:52:24.350876 +967 payment \N 816 \N Spree::Order balance_due 2024-02-12 22:52:24.37408 2024-02-12 22:52:24.37408 +968 shipment \N 816 \N Spree::Order pending 2024-02-12 22:52:24.684993 2024-02-12 22:52:24.684993 +969 payment checkout 864 \N Spree::Payment invalid 2024-02-12 22:52:47.562225 2024-02-12 22:52:47.562225 +970 payment checkout 865 \N Spree::Payment invalid 2024-02-12 22:52:49.293156 2024-02-12 22:52:49.293156 +971 order delivery 808 \N Spree::Order payment 2024-02-12 22:52:58.004588 2024-02-12 22:52:58.004588 +972 order payment 808 \N Spree::Order confirm 2024-02-12 22:52:58.076202 2024-02-12 22:52:58.076202 +973 payment checkout 854 \N Spree::Payment processing 2024-02-12 22:52:58.155934 2024-02-12 22:52:58.155934 +974 payment processing 854 \N Spree::Payment pending 2024-02-12 22:52:58.207411 2024-02-12 22:52:58.207411 +975 order confirm 808 \N Spree::Order complete 2024-02-12 22:52:58.250023 2024-02-12 22:52:58.250023 +976 payment \N 808 \N Spree::Order balance_due 2024-02-12 22:52:58.274401 2024-02-12 22:52:58.274401 +977 shipment \N 808 \N Spree::Order pending 2024-02-12 22:52:58.800957 2024-02-12 22:52:58.800957 +979 order cart 810 \N Spree::Order address 2024-02-12 22:53:05.705193 2024-02-12 22:53:05.705193 +980 payment checkout 868 \N Spree::Payment invalid 2024-02-12 22:53:20.352521 2024-02-12 22:53:20.352521 +\. + + +-- +-- Data for Name: spree_states; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_states (id, name, abbr, country_id, updated_at, created_at) FROM stdin; +1 Australian Capital Territory ACT 12 2022-07-12 18:10:03.904685 2022-07-12 18:10:03.904685 +2 New South Wales NSW 12 2022-07-12 18:10:03.91859 2022-07-12 18:10:03.91859 +3 Northern Territory NT 12 2022-07-12 18:10:03.933122 2022-07-12 18:10:03.933122 +4 Queensland QLD 12 2022-07-12 18:10:03.946611 2022-07-12 18:10:03.946611 +5 South Australia SA 12 2022-07-12 18:10:03.960084 2022-07-12 18:10:03.960084 +6 Tasmania TAS 12 2022-07-12 18:10:03.974088 2022-07-12 18:10:03.974088 +7 Victoria VIC 12 2022-07-12 18:10:03.987587 2022-07-12 18:10:03.987587 +8 Western Australia WA 12 2022-07-12 18:10:04.003262 2022-07-12 18:10:04.003262 +9 Acre AC 29 2022-07-12 18:10:04.021072 2022-07-12 18:10:04.021072 +10 Alagoas AL 29 2022-07-12 18:10:04.033647 2022-07-12 18:10:04.033647 +11 Amazonas AM 29 2022-07-12 18:10:04.046443 2022-07-12 18:10:04.046443 +12 Amapá AP 29 2022-07-12 18:10:04.059442 2022-07-12 18:10:04.059442 +13 Bahia BA 29 2022-07-12 18:10:04.073319 2022-07-12 18:10:04.073319 +14 Ceará CE 29 2022-07-12 18:10:04.086624 2022-07-12 18:10:04.086624 +15 Distrito Federal DF 29 2022-07-12 18:10:04.100519 2022-07-12 18:10:04.100519 +16 Espírito Santo ES 29 2022-07-12 18:10:04.127679 2022-07-12 18:10:04.127679 +17 Goiás GO 29 2022-07-12 18:10:04.142972 2022-07-12 18:10:04.142972 +18 Maranhão MA 29 2022-07-12 18:10:04.157073 2022-07-12 18:10:04.157073 +19 Minas Gerais MG 29 2022-07-12 18:10:04.170175 2022-07-12 18:10:04.170175 +20 Mato Grosso do Sul MS 29 2022-07-12 18:10:04.183469 2022-07-12 18:10:04.183469 +21 Mato Grosso MT 29 2022-07-12 18:10:04.197014 2022-07-12 18:10:04.197014 +22 Pará PA 29 2022-07-12 18:10:04.211094 2022-07-12 18:10:04.211094 +23 Paraíba PB 29 2022-07-12 18:10:04.225311 2022-07-12 18:10:04.225311 +24 Pernambuco PE 29 2022-07-12 18:10:04.239088 2022-07-12 18:10:04.239088 +25 Piauí PI 29 2022-07-12 18:10:04.254286 2022-07-12 18:10:04.254286 +26 Paraná PR 29 2022-07-12 18:10:04.268099 2022-07-12 18:10:04.268099 +27 Rio de Janeiro RJ 29 2022-07-12 18:10:04.281361 2022-07-12 18:10:04.281361 +28 Rio Grande do Norte RN 29 2022-07-12 18:10:04.295464 2022-07-12 18:10:04.295464 +29 Rondônia RO 29 2022-07-12 18:10:04.309521 2022-07-12 18:10:04.309521 +30 Roraima RR 29 2022-07-12 18:10:04.323295 2022-07-12 18:10:04.323295 +31 Rio Grande do Sul RS 29 2022-07-12 18:10:04.337416 2022-07-12 18:10:04.337416 +32 Santa Catarina SC 29 2022-07-12 18:10:04.353147 2022-07-12 18:10:04.353147 +33 Sergipe SE 29 2022-07-12 18:10:04.366881 2022-07-12 18:10:04.366881 +34 São Paulo SP 29 2022-07-12 18:10:04.380504 2022-07-12 18:10:04.380504 +35 Tocantins TO 29 2022-07-12 18:10:04.394767 2022-07-12 18:10:04.394767 +36 Alberta AB 35 2022-07-12 18:10:04.411696 2022-07-12 18:10:04.411696 +37 British Columbia BC 35 2022-07-12 18:10:04.425031 2022-07-12 18:10:04.425031 +38 Manitoba MB 35 2022-07-12 18:10:04.438458 2022-07-12 18:10:04.438458 +39 New Brunswick NB 35 2022-07-12 18:10:04.453485 2022-07-12 18:10:04.453485 +40 Newfoundland and Labrador NL 35 2022-07-12 18:10:04.467574 2022-07-12 18:10:04.467574 +41 Nova Scotia NS 35 2022-07-12 18:10:04.485195 2022-07-12 18:10:04.485195 +42 Northwest Territories NT 35 2022-07-12 18:10:04.50051 2022-07-12 18:10:04.50051 +43 Nunavut NU 35 2022-07-12 18:10:04.515089 2022-07-12 18:10:04.515089 +44 Ontario ON 35 2022-07-12 18:10:04.528423 2022-07-12 18:10:04.528423 +45 Prince Edward Island PE 35 2022-07-12 18:10:04.542179 2022-07-12 18:10:04.542179 +46 Quebec QC 35 2022-07-12 18:10:04.555858 2022-07-12 18:10:04.555858 +47 Saskatchewan SK 35 2022-07-12 18:10:04.569233 2022-07-12 18:10:04.569233 +48 Yukon Territory YT 35 2022-07-12 18:10:04.585037 2022-07-12 18:10:04.585037 +49 Anhui Sheng AH 45 2022-07-12 18:10:04.603327 2022-07-12 18:10:04.603327 +50 Beijing Shi BJ 45 2022-07-12 18:10:04.61654 2022-07-12 18:10:04.61654 +51 Chongqing Shi CQ 45 2022-07-12 18:10:04.629567 2022-07-12 18:10:04.629567 +52 Fujian Sheng FJ 45 2022-07-12 18:10:04.642945 2022-07-12 18:10:04.642945 +53 Guangdong Sheng GD 45 2022-07-12 18:10:04.656237 2022-07-12 18:10:04.656237 +54 Gansu Sheng GS 45 2022-07-12 18:10:04.669703 2022-07-12 18:10:04.669703 +55 Guangxi Zhuangzu Zizhiqu GX 45 2022-07-12 18:10:04.684004 2022-07-12 18:10:04.684004 +56 Guizhou Sheng GZ 45 2022-07-12 18:10:04.697871 2022-07-12 18:10:04.697871 +57 Henan Sheng HA 45 2022-07-12 18:10:04.712288 2022-07-12 18:10:04.712288 +58 Hubei Sheng HB 45 2022-07-12 18:10:04.726045 2022-07-12 18:10:04.726045 +59 Hebei Sheng HE 45 2022-07-12 18:10:04.739409 2022-07-12 18:10:04.739409 +60 Hainan Sheng HI 45 2022-07-12 18:10:04.75225 2022-07-12 18:10:04.75225 +61 Heilongjiang Sheng HL 45 2022-07-12 18:10:04.766103 2022-07-12 18:10:04.766103 +62 Hunan Sheng HN 45 2022-07-12 18:10:04.779252 2022-07-12 18:10:04.779252 +63 Jilin Sheng JL 45 2022-07-12 18:10:04.793026 2022-07-12 18:10:04.793026 +64 Jiangsu Sheng JS 45 2022-07-12 18:10:04.807831 2022-07-12 18:10:04.807831 +65 Jiangxi Sheng JX 45 2022-07-12 18:10:04.821212 2022-07-12 18:10:04.821212 +66 Liaoning Sheng LN 45 2022-07-12 18:10:04.83938 2022-07-12 18:10:04.83938 +67 Nei Mongol Zizhiqu NM 45 2022-07-12 18:10:04.854167 2022-07-12 18:10:04.854167 +68 Ningxia Huizi Zizhiqu NX 45 2022-07-12 18:10:04.867548 2022-07-12 18:10:04.867548 +69 Qinghai Sheng QH 45 2022-07-12 18:10:04.881493 2022-07-12 18:10:04.881493 +70 Sichuan Sheng SC 45 2022-07-12 18:10:04.895447 2022-07-12 18:10:04.895447 +71 Shandong Sheng SD 45 2022-07-12 18:10:04.90959 2022-07-12 18:10:04.90959 +72 Shanghai Shi SH 45 2022-07-12 18:10:04.924074 2022-07-12 18:10:04.924074 +73 Shaanxi Sheng SN 45 2022-07-12 18:10:04.937861 2022-07-12 18:10:04.937861 +74 Shanxi Sheng SX 45 2022-07-12 18:10:04.953914 2022-07-12 18:10:04.953914 +75 Tianjin Shi TJ 45 2022-07-12 18:10:04.968547 2022-07-12 18:10:04.968547 +76 Xinjiang Uygur Zizhiqu XJ 45 2022-07-12 18:10:04.982603 2022-07-12 18:10:04.982603 +77 Xizang Zizhiqu XZ 45 2022-07-12 18:10:04.996923 2022-07-12 18:10:04.996923 +78 Yunnan Sheng YN 45 2022-07-12 18:10:05.010423 2022-07-12 18:10:05.010423 +79 Zhejiang Sheng ZJ 45 2022-07-12 18:10:05.025392 2022-07-12 18:10:05.025392 +80 Almería AL 64 \N \N +81 Cádiz CA 64 \N \N +82 Córdoba CO 64 \N \N +83 Granada GR 64 \N \N +84 Huelva H 64 \N \N +85 Jaén J 64 \N \N +86 Málaga MA 64 \N \N +87 Sevilla SE 64 \N \N +88 Huesca HU 64 \N \N +89 Teruel TE 64 \N \N +90 Zaragoza Z 64 \N \N +91 Asturias O 64 \N \N +92 Cantabria S 64 \N \N +93 Ceuta CE 64 2022-07-12 18:10:05.058286 2022-07-12 18:10:05.058286 +94 Ávila AV 64 \N \N +95 Burgos BU 64 \N \N +96 León LE 64 \N \N +97 Palencia P 64 \N \N +98 Salamanca SA 64 \N \N +99 Segovia SG 64 \N \N +100 Soria SO 64 \N \N +101 Valladolid VA 64 \N \N +102 Zamora ZA 64 \N \N +103 Albacete AB 64 \N \N +104 Ciudad Real CR 64 \N \N +105 Cuenca CU 64 \N \N +106 Guadalajara GU 64 \N \N +107 Toledo TO 64 \N \N +108 Las Palmas GC 64 \N \N +109 Santa Cruz de Tenerife TF 64 \N \N +110 Barcelona B 64 \N \N +111 Girona GI 64 \N \N +112 Lleida L 64 \N \N +113 Tarragona T 64 \N \N +114 Badajoz BA 64 \N \N +115 Cáceres CC 64 \N \N +116 A Coruña C 64 \N \N +117 Lugo LU 64 \N \N +118 Ourense OR 64 \N \N +119 Pontevedra PO 64 \N \N +120 Balears PM 64 \N \N +121 Murcia MU 64 \N \N +122 Madrid M 64 \N \N +123 Melilla ML 64 2022-07-12 18:10:05.098759 2022-07-12 18:10:05.098759 +124 Navarra / Nafarroa NA 64 \N \N +125 Vizcaya / Bizkaia BI 64 \N \N +126 Gipuzkoa SS 64 \N \N +127 Álava VI 64 \N \N +128 La Rioja LO 64 \N \N +129 Alicante A 64 \N \N +130 Castellón CS 64 \N \N +131 Valencia / València V 64 \N \N +132 Andaman and Nicobar Islands AN 99 2022-07-12 18:10:05.129774 2022-07-12 18:10:05.129774 +133 Andhra Pradesh AP 99 2022-07-12 18:10:05.143513 2022-07-12 18:10:05.143513 +134 Arunachal Pradesh AR 99 2022-07-12 18:10:05.158031 2022-07-12 18:10:05.158031 +135 Assam AS 99 2022-07-12 18:10:05.17159 2022-07-12 18:10:05.17159 +136 Bihar BR 99 2022-07-12 18:10:05.185612 2022-07-12 18:10:05.185612 +137 Chandigarh CH 99 2022-07-12 18:10:05.203263 2022-07-12 18:10:05.203263 +138 Chhattisgarh CT 99 2022-07-12 18:10:05.218259 2022-07-12 18:10:05.218259 +139 Daman and Diu DD 99 2022-07-12 18:10:05.232146 2022-07-12 18:10:05.232146 +140 Delhi DL 99 2022-07-12 18:10:05.246379 2022-07-12 18:10:05.246379 +141 Dadra and Nagar Haveli DN 99 2022-07-12 18:10:05.261562 2022-07-12 18:10:05.261562 +142 Goa GA 99 2022-07-12 18:10:05.276627 2022-07-12 18:10:05.276627 +143 Gujarat GJ 99 2022-07-12 18:10:05.290679 2022-07-12 18:10:05.290679 +144 Himachal Pradesh HP 99 2022-07-12 18:10:05.305942 2022-07-12 18:10:05.305942 +145 Haryana HR 99 2022-07-12 18:10:05.320601 2022-07-12 18:10:05.320601 +146 Jharkhand JH 99 2022-07-12 18:10:05.334009 2022-07-12 18:10:05.334009 +147 Jammu and Kashmir JK 99 2022-07-12 18:10:05.349443 2022-07-12 18:10:05.349443 +148 Karnataka KA 99 2022-07-12 18:10:05.363588 2022-07-12 18:10:05.363588 +149 Kerala KL 99 2022-07-12 18:10:05.377625 2022-07-12 18:10:05.377625 +150 Lakshadweep LD 99 2022-07-12 18:10:05.393469 2022-07-12 18:10:05.393469 +151 Maharashtra MH 99 2022-07-12 18:10:05.435441 2022-07-12 18:10:05.435441 +152 Meghalaya ML 99 2022-07-12 18:10:05.450909 2022-07-12 18:10:05.450909 +153 Manipur MN 99 2022-07-12 18:10:05.464955 2022-07-12 18:10:05.464955 +154 Madhya Pradesh MP 99 2022-07-12 18:10:05.47949 2022-07-12 18:10:05.47949 +155 Mizoram MZ 99 2022-07-12 18:10:05.493322 2022-07-12 18:10:05.493322 +156 Nagaland NL 99 2022-07-12 18:10:05.507782 2022-07-12 18:10:05.507782 +157 Odisha OR 99 2022-07-12 18:10:05.524004 2022-07-12 18:10:05.524004 +158 Punjab PB 99 2022-07-12 18:10:05.538522 2022-07-12 18:10:05.538522 +159 Puducherry PY 99 2022-07-12 18:10:05.552303 2022-07-12 18:10:05.552303 +160 Rajasthan RJ 99 2022-07-12 18:10:05.566016 2022-07-12 18:10:05.566016 +161 Sikkim SK 99 2022-07-12 18:10:05.585255 2022-07-12 18:10:05.585255 +162 Telangana TG 99 2022-07-12 18:10:05.599573 2022-07-12 18:10:05.599573 +163 Tamil Nadu TN 99 2022-07-12 18:10:05.613692 2022-07-12 18:10:05.613692 +164 Tripura TR 99 2022-07-12 18:10:05.629824 2022-07-12 18:10:05.629824 +165 Uttar Pradesh UP 99 2022-07-12 18:10:05.646442 2022-07-12 18:10:05.646442 +166 Uttarakhand UT 99 2022-07-12 18:10:05.662855 2022-07-12 18:10:05.662855 +167 West Bengal WB 99 2022-07-12 18:10:05.677754 2022-07-12 18:10:05.677754 +168 Alessandria AL 103 \N \N +169 Asti AT 103 \N \N +170 Biella BI 103 \N \N +171 Cuneo CN 103 \N \N +172 Novara NO 103 \N \N +173 Torino TO 103 \N \N +174 Verbano-Cusio-Ossola VB 103 \N \N +175 Vercelli VC 103 \N \N +176 Aosta AO 103 \N \N +177 Bergamo BG 103 \N \N +178 Brescia BS 103 \N \N +179 Como CO 103 \N \N +180 Cremona CR 103 \N \N +181 Lecco LC 103 \N \N +182 Lodi LO 103 \N \N +183 Monza e Brianza MB 103 \N \N +184 Milano MI 103 \N \N +185 Mantova MN 103 \N \N +186 Pavia PV 103 \N \N +187 Sondrio SO 103 \N \N +188 Varese VA 103 \N \N +189 Bolzano BZ 103 \N \N +190 Trento TN 103 \N \N +191 Belluno BL 103 \N \N +192 Padova PD 103 \N \N +193 Rovigo RO 103 \N \N +194 Treviso TV 103 \N \N +195 Venezia VE 103 \N \N +196 Vicenza VI 103 \N \N +197 Verona VR 103 \N \N +198 Gorizia GO 103 \N \N +199 Pordenone PN 103 \N \N +200 Trieste TS 103 \N \N +201 Udine UD 103 \N \N +202 Genova GE 103 \N \N +203 Imperia IM 103 \N \N +204 La Spezia SP 103 \N \N +205 Savona SV 103 \N \N +206 Bologna BO 103 \N \N +207 Forlì-Cesena FC 103 \N \N +208 Ferrara FE 103 \N \N +209 Modena MO 103 \N \N +210 Piacenza PC 103 \N \N +211 Parma PR 103 \N \N +212 Ravenna RA 103 \N \N +213 Reggio Emilia RE 103 \N \N +214 Rimini RN 103 \N \N +215 Arezzo AR 103 \N \N +216 Firenze FI 103 \N \N +217 Grosseto GR 103 \N \N +218 Livorno LI 103 \N \N +219 Lucca LU 103 \N \N +220 Massa-Carrara MS 103 \N \N +221 Pisa PI 103 \N \N +222 Prato PO 103 \N \N +223 Pistoia PT 103 \N \N +224 Siena SI 103 \N \N +225 Perugia PG 103 \N \N +226 Terni TR 103 \N \N +227 Ancona AN 103 \N \N +228 Ascoli Piceno AP 103 \N \N +229 Fermo FM 103 \N \N +230 Macerata MC 103 \N \N +231 Pesaro e Urbino PU 103 \N \N +232 Frosinone FR 103 \N \N +233 Latina LT 103 \N \N +234 Rieti RI 103 \N \N +235 Roma RM 103 \N \N +236 Viterbo VT 103 \N \N +237 L'Aquila AQ 103 \N \N +238 Chieti CH 103 \N \N +239 Pescara PE 103 \N \N +240 Teramo TE 103 \N \N +241 Campobasso CB 103 \N \N +242 Isernia IS 103 \N \N +243 Avellino AV 103 \N \N +244 Benevento BN 103 \N \N +245 Caserta CE 103 \N \N +246 Napoli NA 103 \N \N +247 Salerno SA 103 \N \N +248 Bari BA 103 \N \N +249 Brindisi BR 103 \N \N +250 Barletta-Andria-Trani BT 103 \N \N +251 Foggia FG 103 \N \N +252 Lecce LE 103 \N \N +253 Taranto TA 103 \N \N +254 Matera MT 103 \N \N +255 Potenza PZ 103 \N \N +256 Cosenza CS 103 \N \N +257 Catanzaro CZ 103 \N \N +258 Crotone KR 103 \N \N +259 Reggio Calabria RC 103 \N \N +260 Vibo Valentia VV 103 \N \N +261 Agrigento AG 103 \N \N +262 Caltanissetta CL 103 \N \N +263 Catania CT 103 \N \N +264 Enna EN 103 \N \N +265 Messina ME 103 \N \N +266 Palermo PA 103 \N \N +267 Ragusa RG 103 \N \N +268 Siracusa SR 103 \N \N +269 Trapani TP 103 \N \N +270 Cagliari CA 103 \N \N +271 Carbonia-Iglesias CI 103 \N \N +272 Nuoro NU 103 \N \N +273 Ogliastra OG 103 \N \N +274 Oristano OR 103 \N \N +275 Olbia-Tempio OT 103 \N \N +276 Sassari SS 103 \N \N +277 Medio Campidano VS 103 \N \N +278 Aguascalientes AGU 150 2022-07-12 18:10:05.775277 2022-07-12 18:10:05.775277 +279 Baja California BCN 150 2022-07-12 18:10:05.793828 2022-07-12 18:10:05.793828 +280 Baja California Sur BCS 150 2022-07-12 18:10:05.810978 2022-07-12 18:10:05.810978 +281 Campeche CAM 150 2022-07-12 18:10:05.827399 2022-07-12 18:10:05.827399 +282 Chihuahua CHH 150 2022-07-12 18:10:05.841179 2022-07-12 18:10:05.841179 +283 Chiapas CHP 150 2022-07-12 18:10:05.85536 2022-07-12 18:10:05.85536 +284 Ciudad de México CMX 150 2022-07-12 18:10:05.87104 2022-07-12 18:10:05.87104 +285 Coahuila de Zaragoza COA 150 2022-07-12 18:10:05.885181 2022-07-12 18:10:05.885181 +286 Colima COL 150 2022-07-12 18:10:05.898432 2022-07-12 18:10:05.898432 +287 Durango DUR 150 2022-07-12 18:10:05.919403 2022-07-12 18:10:05.919403 +288 Guerrero GRO 150 2022-07-12 18:10:05.990347 2022-07-12 18:10:05.990347 +289 Guanajuato GUA 150 2022-07-12 18:10:06.064438 2022-07-12 18:10:06.064438 +290 Hidalgo HID 150 2022-07-12 18:10:06.081417 2022-07-12 18:10:06.081417 +291 Jalisco JAL 150 2022-07-12 18:10:06.095447 2022-07-12 18:10:06.095447 +292 México MEX 150 2022-07-12 18:10:06.108846 2022-07-12 18:10:06.108846 +293 Michoacán de Ocampo MIC 150 2022-07-12 18:10:06.122676 2022-07-12 18:10:06.122676 +294 Morelos MOR 150 2022-07-12 18:10:06.136426 2022-07-12 18:10:06.136426 +295 Nayarit NAY 150 2022-07-12 18:10:06.150191 2022-07-12 18:10:06.150191 +296 Nuevo León NLE 150 2022-07-12 18:10:06.163944 2022-07-12 18:10:06.163944 +297 Oaxaca OAX 150 2022-07-12 18:10:06.177165 2022-07-12 18:10:06.177165 +298 Puebla PUE 150 2022-07-12 18:10:06.190432 2022-07-12 18:10:06.190432 +299 Querétaro QUE 150 2022-07-12 18:10:06.205061 2022-07-12 18:10:06.205061 +300 Quintana Roo ROO 150 2022-07-12 18:10:06.218516 2022-07-12 18:10:06.218516 +301 Sinaloa SIN 150 2022-07-12 18:10:06.232398 2022-07-12 18:10:06.232398 +302 San Luis Potosí SLP 150 2022-07-12 18:10:06.246599 2022-07-12 18:10:06.246599 +303 Sonora SON 150 2022-07-12 18:10:06.261213 2022-07-12 18:10:06.261213 +304 Tabasco TAB 150 2022-07-12 18:10:06.275176 2022-07-12 18:10:06.275176 +305 Tamaulipas TAM 150 2022-07-12 18:10:06.28863 2022-07-12 18:10:06.28863 +306 Tlaxcala TLA 150 2022-07-12 18:10:06.303553 2022-07-12 18:10:06.303553 +307 Veracruz de Ignacio de la Llave VER 150 2022-07-12 18:10:06.318206 2022-07-12 18:10:06.318206 +308 Yucatán YUC 150 2022-07-12 18:10:06.333143 2022-07-12 18:10:06.333143 +309 Zacatecas ZAC 150 2022-07-12 18:10:06.34679 2022-07-12 18:10:06.34679 +310 Johor 01 151 2022-07-12 18:10:06.367272 2022-07-12 18:10:06.367272 +311 Kedah 02 151 2022-07-12 18:10:06.380866 2022-07-12 18:10:06.380866 +312 Kelantan 03 151 2022-07-12 18:10:06.39535 2022-07-12 18:10:06.39535 +313 Melaka 04 151 2022-07-12 18:10:06.408702 2022-07-12 18:10:06.408702 +314 Negeri Sembilan 05 151 2022-07-12 18:10:06.422618 2022-07-12 18:10:06.422618 +315 Pahang 06 151 2022-07-12 18:10:06.436106 2022-07-12 18:10:06.436106 +316 Pulau Pinang 07 151 2022-07-12 18:10:06.449697 2022-07-12 18:10:06.449697 +317 Perak 08 151 2022-07-12 18:10:06.46611 2022-07-12 18:10:06.46611 +318 Perlis 09 151 2022-07-12 18:10:06.481639 2022-07-12 18:10:06.481639 +319 Selangor 10 151 2022-07-12 18:10:06.495321 2022-07-12 18:10:06.495321 +320 Terengganu 11 151 2022-07-12 18:10:06.509103 2022-07-12 18:10:06.509103 +321 Sabah 12 151 2022-07-12 18:10:06.52285 2022-07-12 18:10:06.52285 +322 Sarawak 13 151 2022-07-12 18:10:06.536318 2022-07-12 18:10:06.536318 +323 Wilayah Persekutuan Kuala Lumpur 14 151 2022-07-12 18:10:06.551022 2022-07-12 18:10:06.551022 +324 Wilayah Persekutuan Labuan 15 151 2022-07-12 18:10:06.569528 2022-07-12 18:10:06.569528 +325 Wilayah Persekutuan Putrajaya 16 151 2022-07-12 18:10:06.583933 2022-07-12 18:10:06.583933 +326 Chatham Islands Territory CIT 164 2022-07-12 18:10:06.604669 2022-07-12 18:10:06.604669 +327 Auckland AUK 164 2022-07-12 18:10:06.619074 2022-07-12 18:10:06.619074 +328 Bay of Plenty BOP 164 2022-07-12 18:10:06.633085 2022-07-12 18:10:06.633085 +329 Canterbury CAN 164 2022-07-12 18:10:06.646906 2022-07-12 18:10:06.646906 +330 Gisborne GIS 164 2022-07-12 18:10:06.660677 2022-07-12 18:10:06.660677 +331 Hawke's Bay HKB 164 2022-07-12 18:10:06.674674 2022-07-12 18:10:06.674674 +332 Manawatu-Wanganui MWT 164 2022-07-12 18:10:06.6888 2022-07-12 18:10:06.6888 +333 Marlborough MBH 164 2022-07-12 18:10:06.702509 2022-07-12 18:10:06.702509 +334 Nelson NSN 164 2022-07-12 18:10:06.716712 2022-07-12 18:10:06.716712 +335 Northland NTL 164 2022-07-12 18:10:06.7306 2022-07-12 18:10:06.7306 +336 Otago OTA 164 2022-07-12 18:10:06.744946 2022-07-12 18:10:06.744946 +337 Southland STL 164 2022-07-12 18:10:06.759457 2022-07-12 18:10:06.759457 +338 Taranaki TKI 164 2022-07-12 18:10:06.773515 2022-07-12 18:10:06.773515 +339 Tasman TAS 164 2022-07-12 18:10:06.787532 2022-07-12 18:10:06.787532 +340 Wellington WGN 164 2022-07-12 18:10:06.802228 2022-07-12 18:10:06.802228 +341 Waikato WKO 164 2022-07-12 18:10:06.818391 2022-07-12 18:10:06.818391 +342 West Coast WTC 164 2022-07-12 18:10:06.833076 2022-07-12 18:10:06.833076 +343 Aveiro 01 177 2022-07-12 18:10:06.898811 2022-07-12 18:10:06.898811 +344 Beja 02 177 2022-07-12 18:10:06.977882 2022-07-12 18:10:06.977882 +345 Braga 03 177 2022-07-12 18:10:06.992981 2022-07-12 18:10:06.992981 +346 Bragança 04 177 2022-07-12 18:10:07.00729 2022-07-12 18:10:07.00729 +347 Castelo Branco 05 177 2022-07-12 18:10:07.021685 2022-07-12 18:10:07.021685 +348 Coimbra 06 177 2022-07-12 18:10:07.036322 2022-07-12 18:10:07.036322 +349 Évora 07 177 2022-07-12 18:10:07.050368 2022-07-12 18:10:07.050368 +350 Faro 08 177 2022-07-12 18:10:07.064855 2022-07-12 18:10:07.064855 +351 Guarda 09 177 2022-07-12 18:10:07.080037 2022-07-12 18:10:07.080037 +352 Leiria 10 177 2022-07-12 18:10:07.094777 2022-07-12 18:10:07.094777 +353 Lisboa 11 177 2022-07-12 18:10:07.109113 2022-07-12 18:10:07.109113 +354 Portalegre 12 177 2022-07-12 18:10:07.126296 2022-07-12 18:10:07.126296 +355 Porto 13 177 2022-07-12 18:10:07.142265 2022-07-12 18:10:07.142265 +356 Santarém 14 177 2022-07-12 18:10:07.162551 2022-07-12 18:10:07.162551 +357 Setúbal 15 177 2022-07-12 18:10:07.180853 2022-07-12 18:10:07.180853 +358 Viana do Castelo 16 177 2022-07-12 18:10:07.196399 2022-07-12 18:10:07.196399 +359 Vila Real 17 177 2022-07-12 18:10:07.210847 2022-07-12 18:10:07.210847 +360 Viseu 18 177 2022-07-12 18:10:07.225331 2022-07-12 18:10:07.225331 +361 Região Autónoma dos Açores 20 177 2022-07-12 18:10:07.23937 2022-07-12 18:10:07.23937 +362 Região Autónoma da Madeira 30 177 2022-07-12 18:10:07.253599 2022-07-12 18:10:07.253599 +363 Alba AB 182 2022-07-12 18:10:07.277944 2022-07-12 18:10:07.277944 +364 Argeș AG 182 2022-07-12 18:10:07.292157 2022-07-12 18:10:07.292157 +365 Arad AR 182 2022-07-12 18:10:07.306174 2022-07-12 18:10:07.306174 +366 București B 182 2022-07-12 18:10:07.322188 2022-07-12 18:10:07.322188 +367 Bacău BC 182 2022-07-12 18:10:07.339028 2022-07-12 18:10:07.339028 +368 Bihor BH 182 2022-07-12 18:10:07.35405 2022-07-12 18:10:07.35405 +369 Bistrița-Năsăud BN 182 2022-07-12 18:10:07.369176 2022-07-12 18:10:07.369176 +370 Brăila BR 182 2022-07-12 18:10:07.383138 2022-07-12 18:10:07.383138 +371 Botoșani BT 182 2022-07-12 18:10:07.39775 2022-07-12 18:10:07.39775 +372 Brașov BV 182 2022-07-12 18:10:07.412716 2022-07-12 18:10:07.412716 +373 Buzău BZ 182 2022-07-12 18:10:07.427272 2022-07-12 18:10:07.427272 +374 Cluj CJ 182 2022-07-12 18:10:07.44375 2022-07-12 18:10:07.44375 +375 Călărași CL 182 2022-07-12 18:10:07.457599 2022-07-12 18:10:07.457599 +376 Caraș-Severin CS 182 2022-07-12 18:10:07.473173 2022-07-12 18:10:07.473173 +377 Constanța CT 182 2022-07-12 18:10:07.487762 2022-07-12 18:10:07.487762 +378 Covasna CV 182 2022-07-12 18:10:07.502629 2022-07-12 18:10:07.502629 +379 Dâmbovița DB 182 2022-07-12 18:10:07.517913 2022-07-12 18:10:07.517913 +380 Dolj DJ 182 2022-07-12 18:10:07.533878 2022-07-12 18:10:07.533878 +381 Gorj GJ 182 2022-07-12 18:10:07.549893 2022-07-12 18:10:07.549893 +382 Galați GL 182 2022-07-12 18:10:07.5654 2022-07-12 18:10:07.5654 +383 Giurgiu GR 182 2022-07-12 18:10:07.57956 2022-07-12 18:10:07.57956 +384 Hunedoara HD 182 2022-07-12 18:10:07.593777 2022-07-12 18:10:07.593777 +385 Harghita HR 182 2022-07-12 18:10:07.607812 2022-07-12 18:10:07.607812 +386 Ilfov IF 182 2022-07-12 18:10:07.622286 2022-07-12 18:10:07.622286 +387 Ialomița IL 182 2022-07-12 18:10:07.636895 2022-07-12 18:10:07.636895 +388 Iași IS 182 2022-07-12 18:10:07.656272 2022-07-12 18:10:07.656272 +389 Mehedinți MH 182 2022-07-12 18:10:07.67252 2022-07-12 18:10:07.67252 +390 Maramureș MM 182 2022-07-12 18:10:07.687468 2022-07-12 18:10:07.687468 +391 Mureș MS 182 2022-07-12 18:10:07.701554 2022-07-12 18:10:07.701554 +392 Neamț NT 182 2022-07-12 18:10:07.715889 2022-07-12 18:10:07.715889 +393 Olt OT 182 2022-07-12 18:10:07.754266 2022-07-12 18:10:07.754266 +394 Prahova PH 182 2022-07-12 18:10:07.776318 2022-07-12 18:10:07.776318 +395 Sibiu SB 182 2022-07-12 18:10:07.791669 2022-07-12 18:10:07.791669 +396 Sălaj SJ 182 2022-07-12 18:10:07.807378 2022-07-12 18:10:07.807378 +397 Satu Mare SM 182 2022-07-12 18:10:07.82202 2022-07-12 18:10:07.82202 +398 Suceava SV 182 2022-07-12 18:10:07.836996 2022-07-12 18:10:07.836996 +399 Tulcea TL 182 2022-07-12 18:10:07.851595 2022-07-12 18:10:07.851595 +400 Timiș TM 182 2022-07-12 18:10:07.86724 2022-07-12 18:10:07.86724 +401 Teleorman TR 182 2022-07-12 18:10:07.881656 2022-07-12 18:10:07.881656 +402 Vâlcea VL 182 2022-07-12 18:10:07.89627 2022-07-12 18:10:07.89627 +403 Vrancea VN 182 2022-07-12 18:10:07.909675 2022-07-12 18:10:07.909675 +404 Vaslui VS 182 2022-07-12 18:10:07.924387 2022-07-12 18:10:07.924387 +405 Krung Thep Maha Nakhon Bangkok 10 210 2022-07-12 18:10:07.947162 2022-07-12 18:10:07.947162 +406 Samut Prakan 11 210 2022-07-12 18:10:07.962069 2022-07-12 18:10:07.962069 +407 Nonthaburi 12 210 2022-07-12 18:10:07.977378 2022-07-12 18:10:07.977378 +408 Pathum Thani 13 210 2022-07-12 18:10:07.992449 2022-07-12 18:10:07.992449 +409 Phra Nakhon Si Ayutthaya 14 210 2022-07-12 18:10:08.006902 2022-07-12 18:10:08.006902 +410 Ang Thong 15 210 2022-07-12 18:10:08.021257 2022-07-12 18:10:08.021257 +411 Lop Buri 16 210 2022-07-12 18:10:08.035913 2022-07-12 18:10:08.035913 +412 Sing Buri 17 210 2022-07-12 18:10:08.051449 2022-07-12 18:10:08.051449 +413 Chai Nat 18 210 2022-07-12 18:10:08.06635 2022-07-12 18:10:08.06635 +414 Saraburi 19 210 2022-07-12 18:10:08.080565 2022-07-12 18:10:08.080565 +415 Chon Buri 20 210 2022-07-12 18:10:08.094596 2022-07-12 18:10:08.094596 +416 Rayong 21 210 2022-07-12 18:10:08.109141 2022-07-12 18:10:08.109141 +417 Chanthaburi 22 210 2022-07-12 18:10:08.12394 2022-07-12 18:10:08.12394 +418 Trat 23 210 2022-07-12 18:10:08.139066 2022-07-12 18:10:08.139066 +419 Chachoengsao 24 210 2022-07-12 18:10:08.154058 2022-07-12 18:10:08.154058 +420 Prachin Buri 25 210 2022-07-12 18:10:08.172927 2022-07-12 18:10:08.172927 +421 Nakhon Nayok 26 210 2022-07-12 18:10:08.188729 2022-07-12 18:10:08.188729 +422 Sa Kaeo 27 210 2022-07-12 18:10:08.203404 2022-07-12 18:10:08.203404 +423 Nakhon Ratchasima 30 210 2022-07-12 18:10:08.217868 2022-07-12 18:10:08.217868 +424 Buri Ram 31 210 2022-07-12 18:10:08.232519 2022-07-12 18:10:08.232519 +425 Surin 32 210 2022-07-12 18:10:08.247549 2022-07-12 18:10:08.247549 +426 Si Sa Ket 33 210 2022-07-12 18:10:08.261721 2022-07-12 18:10:08.261721 +427 Ubon Ratchathani 34 210 2022-07-12 18:10:08.276608 2022-07-12 18:10:08.276608 +428 Yasothon 35 210 2022-07-12 18:10:08.291538 2022-07-12 18:10:08.291538 +429 Chaiyaphum 36 210 2022-07-12 18:10:08.306034 2022-07-12 18:10:08.306034 +430 Amnat Charoen 37 210 2022-07-12 18:10:08.320345 2022-07-12 18:10:08.320345 +431 Nong Bua Lam Phu 39 210 2022-07-12 18:10:08.33657 2022-07-12 18:10:08.33657 +432 Khon Kaen 40 210 2022-07-12 18:10:08.351916 2022-07-12 18:10:08.351916 +433 Udon Thani 41 210 2022-07-12 18:10:08.367785 2022-07-12 18:10:08.367785 +434 Loei 42 210 2022-07-12 18:10:08.382571 2022-07-12 18:10:08.382571 +435 Nong Khai 43 210 2022-07-12 18:10:08.397089 2022-07-12 18:10:08.397089 +436 Maha Sarakham 44 210 2022-07-12 18:10:08.410631 2022-07-12 18:10:08.410631 +437 Roi Et 45 210 2022-07-12 18:10:08.424148 2022-07-12 18:10:08.424148 +438 Kalasin 46 210 2022-07-12 18:10:08.438864 2022-07-12 18:10:08.438864 +439 Sakon Nakhon 47 210 2022-07-12 18:10:08.453805 2022-07-12 18:10:08.453805 +440 Nakhon Phanom 48 210 2022-07-12 18:10:08.468596 2022-07-12 18:10:08.468596 +441 Mukdahan 49 210 2022-07-12 18:10:08.484423 2022-07-12 18:10:08.484423 +442 Chiang Mai 50 210 2022-07-12 18:10:08.498929 2022-07-12 18:10:08.498929 +443 Lamphun 51 210 2022-07-12 18:10:08.513223 2022-07-12 18:10:08.513223 +444 Lampang 52 210 2022-07-12 18:10:08.527944 2022-07-12 18:10:08.527944 +445 Uttaradit 53 210 2022-07-12 18:10:08.543373 2022-07-12 18:10:08.543373 +446 Phrae 54 210 2022-07-12 18:10:08.558362 2022-07-12 18:10:08.558362 +447 Nan 55 210 2022-07-12 18:10:08.573518 2022-07-12 18:10:08.573518 +448 Phayao 56 210 2022-07-12 18:10:08.587945 2022-07-12 18:10:08.587945 +449 Chiang Rai 57 210 2022-07-12 18:10:08.602146 2022-07-12 18:10:08.602146 +450 Mae Hong Son 58 210 2022-07-12 18:10:08.616701 2022-07-12 18:10:08.616701 +451 Nakhon Sawan 60 210 2022-07-12 18:10:08.630886 2022-07-12 18:10:08.630886 +452 Uthai Thani 61 210 2022-07-12 18:10:08.645548 2022-07-12 18:10:08.645548 +453 Kamphaeng Phet 62 210 2022-07-12 18:10:08.664898 2022-07-12 18:10:08.664898 +454 Tak 63 210 2022-07-12 18:10:08.704983 2022-07-12 18:10:08.704983 +455 Sukhothai 64 210 2022-07-12 18:10:08.72299 2022-07-12 18:10:08.72299 +456 Phitsanulok 65 210 2022-07-12 18:10:08.738124 2022-07-12 18:10:08.738124 +457 Phichit 66 210 2022-07-12 18:10:08.753163 2022-07-12 18:10:08.753163 +458 Phetchabun 67 210 2022-07-12 18:10:08.793689 2022-07-12 18:10:08.793689 +459 Ratchaburi 70 210 2022-07-12 18:10:08.811155 2022-07-12 18:10:08.811155 +460 Kanchanaburi 71 210 2022-07-12 18:10:08.826186 2022-07-12 18:10:08.826186 +461 Suphan Buri 72 210 2022-07-12 18:10:08.840721 2022-07-12 18:10:08.840721 +462 Nakhon Pathom 73 210 2022-07-12 18:10:08.855385 2022-07-12 18:10:08.855385 +463 Samut Sakhon 74 210 2022-07-12 18:10:08.870701 2022-07-12 18:10:08.870701 +464 Samut Songkhram 75 210 2022-07-12 18:10:08.885202 2022-07-12 18:10:08.885202 +465 Phetchaburi 76 210 2022-07-12 18:10:08.899504 2022-07-12 18:10:08.899504 +466 Prachuap Khiri Khan 77 210 2022-07-12 18:10:08.914396 2022-07-12 18:10:08.914396 +467 Nakhon Si Thammarat 80 210 2022-07-12 18:10:08.929413 2022-07-12 18:10:08.929413 +468 Krabi 81 210 2022-07-12 18:10:08.943739 2022-07-12 18:10:08.943739 +469 Phangnga 82 210 2022-07-12 18:10:08.957316 2022-07-12 18:10:08.957316 +470 Phuket 83 210 2022-07-12 18:10:08.973162 2022-07-12 18:10:08.973162 +471 Surat Thani 84 210 2022-07-12 18:10:08.988864 2022-07-12 18:10:08.988864 +472 Ranong 85 210 2022-07-12 18:10:09.002909 2022-07-12 18:10:09.002909 +473 Chumphon 86 210 2022-07-12 18:10:09.018925 2022-07-12 18:10:09.018925 +474 Songkhla 90 210 2022-07-12 18:10:09.034273 2022-07-12 18:10:09.034273 +475 Satun 91 210 2022-07-12 18:10:09.049538 2022-07-12 18:10:09.049538 +476 Trang 92 210 2022-07-12 18:10:09.064582 2022-07-12 18:10:09.064582 +477 Phatthalung 93 210 2022-07-12 18:10:09.079405 2022-07-12 18:10:09.079405 +478 Pattani 94 210 2022-07-12 18:10:09.0939 2022-07-12 18:10:09.0939 +479 Yala 95 210 2022-07-12 18:10:09.108865 2022-07-12 18:10:09.108865 +480 Narathiwat 96 210 2022-07-12 18:10:09.123847 2022-07-12 18:10:09.123847 +481 Phatthaya S 210 2022-07-12 18:10:09.140443 2022-07-12 18:10:09.140443 +482 Alaska AK 224 2022-07-12 18:10:09.165609 2022-07-12 18:10:09.165609 +483 Alabama AL 224 2022-07-12 18:10:09.184919 2022-07-12 18:10:09.184919 +484 Arkansas AR 224 2022-07-12 18:10:09.200547 2022-07-12 18:10:09.200547 +485 Arizona AZ 224 2022-07-12 18:10:09.215196 2022-07-12 18:10:09.215196 +486 California CA 224 2022-07-12 18:10:09.229755 2022-07-12 18:10:09.229755 +487 Colorado CO 224 2022-07-12 18:10:09.244909 2022-07-12 18:10:09.244909 +488 Connecticut CT 224 2022-07-12 18:10:09.259566 2022-07-12 18:10:09.259566 +489 District of Columbia DC 224 2022-07-12 18:10:09.274316 2022-07-12 18:10:09.274316 +490 Delaware DE 224 2022-07-12 18:10:09.290813 2022-07-12 18:10:09.290813 +491 Florida FL 224 2022-07-12 18:10:09.305614 2022-07-12 18:10:09.305614 +492 Georgia GA 224 2022-07-12 18:10:09.319583 2022-07-12 18:10:09.319583 +493 Hawaii HI 224 2022-07-12 18:10:09.334949 2022-07-12 18:10:09.334949 +494 Iowa IA 224 2022-07-12 18:10:09.351446 2022-07-12 18:10:09.351446 +495 Idaho ID 224 2022-07-12 18:10:09.367303 2022-07-12 18:10:09.367303 +496 Illinois IL 224 2022-07-12 18:10:09.383765 2022-07-12 18:10:09.383765 +497 Indiana IN 224 2022-07-12 18:10:09.397745 2022-07-12 18:10:09.397745 +498 Kansas KS 224 2022-07-12 18:10:09.411381 2022-07-12 18:10:09.411381 +499 Kentucky KY 224 2022-07-12 18:10:09.42602 2022-07-12 18:10:09.42602 +500 Louisiana LA 224 2022-07-12 18:10:09.441 2022-07-12 18:10:09.441 +501 Massachusetts MA 224 2022-07-12 18:10:09.458652 2022-07-12 18:10:09.458652 +502 Maryland MD 224 2022-07-12 18:10:09.474617 2022-07-12 18:10:09.474617 +503 Maine ME 224 2022-07-12 18:10:09.489904 2022-07-12 18:10:09.489904 +504 Michigan MI 224 2022-07-12 18:10:09.505136 2022-07-12 18:10:09.505136 +505 Minnesota MN 224 2022-07-12 18:10:09.520337 2022-07-12 18:10:09.520337 +506 Missouri MO 224 2022-07-12 18:10:09.535348 2022-07-12 18:10:09.535348 +507 Mississippi MS 224 2022-07-12 18:10:09.550675 2022-07-12 18:10:09.550675 +508 Montana MT 224 2022-07-12 18:10:09.565884 2022-07-12 18:10:09.565884 +509 North Carolina NC 224 2022-07-12 18:10:09.580547 2022-07-12 18:10:09.580547 +510 North Dakota ND 224 2022-07-12 18:10:09.595176 2022-07-12 18:10:09.595176 +511 Nebraska NE 224 2022-07-12 18:10:09.609534 2022-07-12 18:10:09.609534 +512 New Hampshire NH 224 2022-07-12 18:10:09.624308 2022-07-12 18:10:09.624308 +513 New Jersey NJ 224 2022-07-12 18:10:09.639837 2022-07-12 18:10:09.639837 +514 New Mexico NM 224 2022-07-12 18:10:09.65476 2022-07-12 18:10:09.65476 +515 Nevada NV 224 2022-07-12 18:10:09.675048 2022-07-12 18:10:09.675048 +516 New York NY 224 2022-07-12 18:10:09.690932 2022-07-12 18:10:09.690932 +517 Ohio OH 224 2022-07-12 18:10:09.706785 2022-07-12 18:10:09.706785 +518 Oklahoma OK 224 2022-07-12 18:10:09.721983 2022-07-12 18:10:09.721983 +519 Oregon OR 224 2022-07-12 18:10:09.737499 2022-07-12 18:10:09.737499 +520 Pennsylvania PA 224 2022-07-12 18:10:09.752398 2022-07-12 18:10:09.752398 +521 Rhode Island RI 224 2022-07-12 18:10:09.76725 2022-07-12 18:10:09.76725 +522 South Carolina SC 224 2022-07-12 18:10:09.782617 2022-07-12 18:10:09.782617 +523 South Dakota SD 224 2022-07-12 18:10:09.799005 2022-07-12 18:10:09.799005 +524 Tennessee TN 224 2022-07-12 18:10:09.814399 2022-07-12 18:10:09.814399 +525 Texas TX 224 2022-07-12 18:10:09.829366 2022-07-12 18:10:09.829366 +526 Utah UT 224 2022-07-12 18:10:09.84456 2022-07-12 18:10:09.84456 +527 Virginia VA 224 2022-07-12 18:10:09.859161 2022-07-12 18:10:09.859161 +528 Vermont VT 224 2022-07-12 18:10:09.874098 2022-07-12 18:10:09.874098 +529 Washington WA 224 2022-07-12 18:10:09.889942 2022-07-12 18:10:09.889942 +530 Wisconsin WI 224 2022-07-12 18:10:09.904896 2022-07-12 18:10:09.904896 +531 West Virginia WV 224 2022-07-12 18:10:09.919346 2022-07-12 18:10:09.919346 +532 Wyoming WY 224 2022-07-12 18:10:09.934197 2022-07-12 18:10:09.934197 +533 Armed Forces Americas (except Canada) AA 224 2022-07-12 18:10:09.949376 2022-07-12 18:10:09.949376 +534 Armed Forces Africa, Canada, Europe, Middle East AE 224 2022-07-12 18:10:09.969382 2022-07-12 18:10:09.969382 +535 Armed Forces Pacific AP 224 2022-07-12 18:10:09.986894 2022-07-12 18:10:09.986894 +536 Eastern Cape EC 238 2022-07-12 18:10:10.012803 2022-07-12 18:10:10.012803 +537 Free State FS 238 2022-07-12 18:10:10.028703 2022-07-12 18:10:10.028703 +538 Gauteng GT 238 2022-07-12 18:10:10.044343 2022-07-12 18:10:10.044343 +539 Limpopo LP 238 2022-07-12 18:10:10.059304 2022-07-12 18:10:10.059304 +540 Mpumalanga MP 238 2022-07-12 18:10:10.074378 2022-07-12 18:10:10.074378 +541 Northern Cape NC 238 2022-07-12 18:10:10.088888 2022-07-12 18:10:10.088888 +542 Kwazulu-Natal NL 238 2022-07-12 18:10:10.103215 2022-07-12 18:10:10.103215 +543 North-West (South Africa) NW 238 2022-07-12 18:10:10.117966 2022-07-12 18:10:10.117966 +544 Western Cape WC 238 2022-07-12 18:10:10.139932 2022-07-12 18:10:10.139932 +545 'Ajmān AJ 2 2022-07-12 18:10:10.159187 2022-07-12 18:10:10.159187 +546 Abū Ȥaby [Abu Dhabi] AZ 2 2022-07-12 18:10:10.175334 2022-07-12 18:10:10.175334 +547 Dubayy DU 2 2022-07-12 18:10:10.190722 2022-07-12 18:10:10.190722 +548 Al Fujayrah FU 2 2022-07-12 18:10:10.205592 2022-07-12 18:10:10.205592 +549 Ra’s al Khaymah RK 2 2022-07-12 18:10:10.219706 2022-07-12 18:10:10.219706 +550 Ash Shāriqah SH 2 2022-07-12 18:10:10.234974 2022-07-12 18:10:10.234974 +551 Umm al Qaywayn UQ 2 2022-07-12 18:10:10.249657 2022-07-12 18:10:10.249657 +552 Galway G 96 \N \N +553 Leitrim LM 96 \N \N +554 Mayo MO 96 \N \N +555 Roscommon RN 96 \N \N +556 Sligo SO 96 \N \N +557 Carlow CW 96 \N \N +558 Dublin D 96 \N \N +559 Kildare KE 96 \N \N +560 Kilkenny KK 96 \N \N +561 Longford LD 96 \N \N +562 Louth LH 96 \N \N +563 Laois LS 96 \N \N +564 Meath MH 96 \N \N +565 Offaly OY 96 \N \N +566 Westmeath WH 96 \N \N +567 Wicklow WW 96 \N \N +568 Wexford WX 96 \N \N +569 Clare CE 96 \N \N +570 Cork CO 96 \N \N +571 Kerry KY 96 \N \N +572 Limerick LK 96 \N \N +573 Tipperary TA 96 \N \N +574 Waterford WD 96 \N \N +575 Cavan CN 96 \N \N +576 Donegal DL 96 \N \N +577 Monaghan MN 96 \N \N +\. + + +-- +-- Data for Name: spree_stock_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_stock_items (id, stock_location_id, variant_id, count_on_hand, created_at, updated_at, backorderable, deleted_at) FROM stdin; +46 1 46 0 2022-07-12 18:15:32.454253 2022-09-02 16:27:24.019961 f 2022-09-02 16:27:24.019947 +11 1 11 0 2022-07-12 18:15:32.453139 2022-09-02 16:27:31.570566 f 2022-09-02 16:27:31.570553 +78 1 78 0 2022-07-12 18:15:32.455286 2022-09-02 16:27:34.737893 f 2022-09-02 16:27:34.737879 +67 1 67 0 2022-07-12 18:15:32.454951 2022-09-02 16:27:35.441065 f 2022-09-02 16:27:35.441052 +43 1 43 0 2022-07-12 18:15:32.454162 2022-09-02 16:27:36.619025 f 2022-09-02 16:27:36.619013 +83 1 83 0 2022-07-12 18:15:32.455436 2022-09-02 16:27:38.105099 f 2022-09-02 16:27:38.105086 +58 1 58 0 2022-07-12 18:15:32.454618 2022-09-02 16:27:41.39703 f 2022-09-02 16:27:41.397018 +5 1 5 0 2022-07-12 18:15:32.452852 2022-09-02 16:27:42.675794 f 2022-09-02 16:27:42.675778 +4 1 4 0 2022-07-12 18:15:32.452822 2022-09-02 16:27:43.251754 f 2022-09-02 16:27:43.251741 +15 1 15 0 2022-07-12 18:15:32.45326 2022-09-02 16:27:45.464357 f 2022-09-02 16:27:45.464345 +28 1 28 0 2022-07-12 18:15:32.453654 2022-09-02 16:27:46.073716 f 2022-09-02 16:27:46.073704 +21 1 21 0 2022-07-12 18:15:32.453442 2022-09-02 16:27:46.653112 f 2022-09-02 16:27:46.653101 +59 1 59 0 2022-07-12 18:15:32.454648 2022-09-02 16:27:48.058503 f 2022-09-02 16:27:48.058491 +97 1 97 0 2022-07-12 18:15:32.45625 2022-09-02 16:27:49.450415 f 2022-09-02 16:27:49.450378 +57 1 57 0 2022-07-12 18:15:32.454588 2022-09-02 16:27:53.420272 f 2022-09-02 16:27:53.420258 +42 1 42 0 2022-07-12 18:15:32.454132 2022-09-02 16:27:53.938835 f 2022-09-02 16:27:53.93882 +90 1 90 0 2022-07-12 18:15:32.456044 2022-09-02 16:28:00.453606 f 2022-09-02 16:28:00.453592 +26 1 26 0 2022-07-12 18:15:32.453595 2022-09-02 16:28:01.088267 f 2022-09-02 16:28:01.088253 +32 1 32 0 2022-07-12 18:15:32.453775 2022-09-02 16:28:01.703674 f 2022-09-02 16:28:01.703661 +94 1 94 0 2022-07-12 18:15:32.456162 2022-09-02 16:28:02.429425 f 2022-09-02 16:28:02.429412 +34 1 34 0 2022-07-12 18:15:32.453834 2022-09-02 16:28:03.011075 f 2022-09-02 16:28:03.01106 +60 1 60 0 2022-07-12 18:15:32.454677 2022-09-02 16:28:03.695084 f 2022-09-02 16:28:03.69507 +68 1 68 0 2022-07-12 18:15:32.454982 2022-09-02 16:28:04.928122 f 2022-09-02 16:28:04.928103 +47 1 47 0 2022-07-12 18:15:32.454283 2022-09-02 16:28:06.168054 f 2022-09-02 16:28:06.168042 +55 1 55 0 2022-07-12 18:15:32.454527 2022-09-02 16:28:06.864281 f 2022-09-02 16:28:06.864267 +18 1 18 0 2022-07-12 18:15:32.453351 2022-09-02 16:28:07.402119 f 2022-09-02 16:28:07.402107 +98 1 98 0 2022-07-12 18:15:32.45628 2022-09-02 16:28:19.235717 f 2022-09-02 16:28:19.235705 +86 1 86 0 2022-07-12 18:15:32.455526 2022-09-02 16:28:19.868778 f 2022-09-02 16:28:19.868767 +82 1 82 0 2022-07-12 18:15:32.455406 2022-09-02 16:28:20.459351 f 2022-09-02 16:28:20.459338 +91 1 91 0 2022-07-12 18:15:32.456074 2022-09-02 16:28:28.380636 f 2022-09-02 16:28:28.380624 +37 1 37 0 2022-07-12 18:15:32.453983 2022-09-02 16:28:29.203297 f 2022-09-02 16:28:29.203277 +99 1 99 0 2022-07-12 18:15:32.456309 2022-09-02 16:28:31.200246 f 2022-09-02 16:28:31.200235 +72 1 72 0 2022-07-12 18:15:32.455103 2022-09-02 16:28:32.304546 f 2022-09-02 16:28:32.304534 +45 1 45 0 2022-07-12 18:15:32.454223 2022-09-02 16:28:32.926192 f 2022-09-02 16:28:32.926178 +7 1 7 0 2022-07-12 18:15:32.453017 2022-09-02 16:28:35.411778 f 2022-09-02 16:28:35.411765 +16 1 16 0 2022-07-12 18:15:32.45329 2022-09-02 16:28:36.092967 f 2022-09-02 16:28:36.092953 +61 1 61 0 2022-07-12 18:15:32.454707 2022-09-02 16:28:36.779542 f 2022-09-02 16:28:36.77953 +77 1 77 0 2022-07-12 18:15:32.455255 2022-09-02 16:28:37.981238 f 2022-09-02 16:28:37.981226 +53 1 53 0 2022-07-12 18:15:32.454466 2022-09-02 16:28:38.594511 f 2022-09-02 16:28:38.59449 +6 1 6 0 2022-07-12 18:15:32.452989 2022-09-02 16:28:39.289226 f 2022-09-02 16:28:39.289214 +69 1 69 0 2022-07-12 18:15:32.455012 2022-09-02 16:28:40.011749 f 2022-09-02 16:28:40.011736 +52 1 52 0 2022-07-12 18:15:32.454436 2022-09-02 16:28:42.428028 f 2022-09-02 16:28:42.428015 +62 1 62 0 2022-07-12 18:15:32.454738 2022-09-02 16:28:44.308146 f 2022-09-02 16:28:44.308133 +79 1 79 0 2022-07-12 18:15:32.455316 2022-09-02 16:28:45.028216 f 2022-09-02 16:28:45.028204 +39 1 39 0 2022-07-12 18:15:32.454043 2022-09-02 14:33:31.99561 f 2022-09-02 14:33:31.995591 +87 1 87 0 2022-07-12 18:15:32.455956 2022-09-02 14:33:39.461703 f 2022-09-02 14:33:39.46169 +70 1 70 0 2022-07-12 18:15:32.455042 2022-09-02 14:33:48.948322 f 2022-09-02 14:33:48.948309 +84 1 84 0 2022-07-12 18:15:32.455466 2022-09-02 16:25:39.96182 f 2022-09-02 16:25:39.961782 +19 1 19 0 2022-07-12 18:15:32.453381 2022-09-02 16:25:41.924709 f 2022-09-02 16:25:41.924695 +64 1 64 0 2022-07-12 18:15:32.454798 2022-09-02 16:25:43.728361 f 2022-09-02 16:25:43.728337 +96 1 96 0 2022-07-12 18:15:32.456221 2022-09-02 16:25:45.396645 f 2022-09-02 16:25:45.396631 +8 1 8 0 2022-07-12 18:15:32.453049 2022-09-02 16:25:48.644336 f 2022-09-02 16:25:48.644323 +85 1 85 0 2022-07-12 18:15:32.455496 2022-09-02 16:25:50.375818 f 2022-09-02 16:25:50.375805 +3 1 3 0 2022-07-12 18:15:32.452792 2022-09-02 16:25:54.036291 f 2022-09-02 16:25:54.036277 +81 1 81 0 2022-07-12 18:15:32.455376 2022-09-02 16:25:56.000464 f 2022-09-02 16:25:56.00045 +76 1 76 0 2022-07-12 18:15:32.455224 2022-09-02 16:25:57.825866 f 2022-09-02 16:25:57.825853 +75 1 75 0 2022-07-12 18:15:32.455194 2022-09-02 16:25:59.467136 f 2022-09-02 16:25:59.46712 +95 1 95 0 2022-07-12 18:15:32.456192 2022-09-02 16:26:01.235231 f 2022-09-02 16:26:01.235218 +36 1 36 0 2022-07-12 18:15:32.453953 2022-09-02 16:26:03.313513 f 2022-09-02 16:26:03.313495 +48 1 48 0 2022-07-12 18:15:32.454313 2022-09-02 16:26:04.090663 f 2022-09-02 16:26:04.090649 +65 1 65 0 2022-07-12 18:15:32.454828 2022-09-02 16:26:05.717331 f 2022-09-02 16:26:05.717316 +54 1 54 0 2022-07-12 18:15:32.454497 2022-09-02 16:26:06.323312 f 2022-09-02 16:26:06.323299 +33 1 33 0 2022-07-12 18:15:32.453804 2022-09-02 16:26:06.999386 f 2022-09-02 16:26:06.999374 +89 1 89 0 2022-07-12 18:15:32.456015 2022-09-02 16:26:07.49175 f 2022-09-02 16:26:07.491737 +92 1 92 0 2022-07-12 18:15:32.456103 2022-09-02 16:26:08.112682 f 2022-09-02 16:26:08.11267 +9 1 9 0 2022-07-12 18:15:32.453079 2022-09-02 16:26:08.883414 f 2022-09-02 16:26:08.8834 +31 1 31 0 2022-07-12 18:15:32.453744 2022-09-02 16:26:10.248965 f 2022-09-02 16:26:10.248951 +41 1 41 0 2022-07-12 18:15:32.454102 2022-09-02 16:26:59.850938 f 2022-09-02 16:26:59.850924 +44 1 44 0 2022-07-12 18:15:32.454192 2022-09-02 16:27:01.168211 f 2022-09-02 16:27:01.168198 +66 1 66 0 2022-07-12 18:15:32.454921 2022-09-02 16:27:01.940992 f 2022-09-02 16:27:01.940979 +56 1 56 0 2022-07-12 18:15:32.454558 2022-09-02 16:27:02.613292 f 2022-09-02 16:27:02.613274 +29 1 29 0 2022-07-12 18:15:32.453685 2022-09-02 16:27:04.200624 f 2022-09-02 16:27:04.20061 +35 1 35 0 2022-07-12 18:15:32.453922 2022-09-02 16:27:05.2923 f 2022-09-02 16:27:05.292284 +40 1 40 0 2022-07-12 18:15:32.454073 2022-09-02 16:27:08.97791 f 2022-09-02 16:27:08.977896 +10 1 10 0 2022-07-12 18:15:32.453109 2022-09-02 16:27:09.815233 f 2022-09-02 16:27:09.81522 +27 1 27 0 2022-07-12 18:15:32.453624 2022-09-02 16:27:10.550866 f 2022-09-02 16:27:10.550852 +13 1 13 0 2022-07-12 18:15:32.453199 2022-09-02 16:27:12.88554 f 2022-09-02 16:27:12.885526 +24 1 24 0 2022-07-12 18:15:32.453533 2022-09-02 16:27:13.430246 f 2022-09-02 16:27:13.430232 +50 1 50 0 2022-07-12 18:15:32.454375 2022-09-02 16:27:14.105792 f 2022-09-02 16:27:14.105779 +22 1 22 0 2022-07-12 18:15:32.453472 2022-09-02 16:27:14.773079 f 2022-09-02 16:27:14.773053 +93 1 93 0 2022-07-12 18:15:32.456133 2022-09-02 16:27:16.889691 f 2022-09-02 16:27:16.889679 +73 1 73 0 2022-07-12 18:15:32.455133 2022-09-02 16:27:17.392204 f 2022-09-02 16:27:17.392191 +23 1 23 0 2022-07-12 18:15:32.453503 2022-09-02 16:27:18.369271 f 2022-09-02 16:27:18.369259 +25 1 25 0 2022-07-12 18:15:32.453564 2022-09-02 16:27:21.394012 f 2022-09-02 16:27:21.394 +20 1 20 0 2022-07-12 18:15:32.453412 2022-09-02 16:27:23.266981 f 2022-09-02 16:27:23.266966 +162 1 162 23 2022-07-12 18:15:32.458222 2022-09-02 16:27:24.09138 f 2022-09-02 16:27:24.091368 +127 1 127 49 2022-07-12 18:15:32.457145 2022-09-02 16:27:31.636924 f 2022-09-02 16:27:31.636911 +105 1 105 0 2022-07-12 18:15:32.456484 2022-09-02 16:27:33.629577 f 2022-09-02 16:27:33.629564 +80 1 80 0 2022-07-12 18:15:32.455346 2022-09-02 16:27:34.239865 f 2022-09-02 16:27:34.239842 +183 1 183 41 2022-07-12 18:15:32.4589 2022-09-02 16:27:35.511428 f 2022-09-02 16:27:35.511415 +111 1 111 0 2022-07-12 18:15:32.456661 2022-09-02 16:27:35.902273 f 2022-09-02 16:27:35.902259 +159 1 159 20 2022-07-12 18:15:32.458133 2022-09-02 16:27:36.691491 f 2022-09-02 16:27:36.69148 +174 1 174 40 2022-07-12 18:15:32.458583 2022-09-02 16:27:41.489032 f 2022-09-02 16:27:41.489018 +121 1 121 32 2022-07-12 18:15:32.456975 2022-09-02 16:27:42.76013 f 2022-09-02 16:27:42.760115 +120 1 120 38 2022-07-12 18:15:32.456948 2022-09-02 16:27:43.322495 f 2022-09-02 16:27:43.322479 +131 1 131 41 2022-07-12 18:15:32.457264 2022-09-02 16:27:45.536154 f 2022-09-02 16:27:45.536141 +144 1 144 20 2022-07-12 18:15:32.45765 2022-09-02 16:27:46.14154 f 2022-09-02 16:27:46.141528 +137 1 137 40 2022-07-12 18:15:32.457442 2022-09-02 16:27:46.718825 f 2022-09-02 16:27:46.718813 +51 1 51 0 2022-07-12 18:15:32.454406 2022-09-02 16:27:47.375107 f 2022-09-02 16:27:47.375093 +175 1 175 38 2022-07-12 18:15:32.458612 2022-09-02 16:27:48.125685 f 2022-09-02 16:27:48.125672 +102 1 102 0 2022-07-12 18:15:32.456397 2022-09-02 16:27:48.612009 f 2022-09-02 16:27:48.611996 +103 1 103 0 2022-07-12 18:15:32.456426 2022-09-02 16:27:49.941615 f 2022-09-02 16:27:49.941603 +108 1 108 0 2022-07-12 18:15:32.456573 2022-09-02 16:27:50.650999 f 2022-09-02 16:27:50.650986 +104 1 104 0 2022-07-12 18:15:32.456455 2022-09-02 16:27:52.709013 f 2022-09-02 16:27:52.709 +173 1 173 30 2022-07-12 18:15:32.458552 2022-09-02 16:27:53.497345 f 2022-09-02 16:27:53.497332 +158 1 158 24 2022-07-12 18:15:32.458103 2022-09-02 16:27:54.024454 f 2022-09-02 16:27:54.024436 +142 1 142 46 2022-07-12 18:15:32.457591 2022-09-02 16:28:01.156866 f 2022-09-02 16:28:01.156853 +148 1 148 23 2022-07-12 18:15:32.457768 2022-09-02 16:28:01.780678 f 2022-09-02 16:28:01.780657 +150 1 150 45 2022-07-12 18:15:32.457877 2022-09-02 16:28:03.084249 f 2022-09-02 16:28:03.084229 +176 1 176 35 2022-07-12 18:15:32.458643 2022-09-02 16:28:03.776437 f 2022-09-02 16:28:03.776423 +133 1 133 35 2022-07-12 18:15:32.457324 2022-09-02 16:28:04.458122 f 2022-09-02 16:28:04.45811 +184 1 184 39 2022-07-12 18:15:32.45893 2022-09-02 16:28:05.0246 f 2022-09-02 16:28:05.024585 +163 1 163 36 2022-07-12 18:15:32.458252 2022-09-02 16:28:06.264294 f 2022-09-02 16:28:06.264281 +134 1 134 44 2022-07-12 18:15:32.457353 2022-09-02 16:28:07.472912 f 2022-09-02 16:28:07.472892 +100 1 100 0 2022-07-12 18:15:32.456338 2022-09-02 16:28:18.655444 f 2022-09-02 16:28:18.655431 +107 1 107 0 2022-07-12 18:15:32.456543 2022-09-02 16:28:20.83485 f 2022-09-02 16:28:20.834835 +153 1 153 35 2022-07-12 18:15:32.457953 2022-09-02 16:28:29.268802 f 2022-09-02 16:28:29.26879 +187 1 187 27 2022-07-12 18:15:32.45902 2022-09-02 16:28:31.815192 f 2022-09-02 16:28:31.81518 +188 1 188 33 2022-07-12 18:15:32.45905 2022-09-02 16:28:32.370093 f 2022-09-02 16:28:32.37008 +161 1 161 21 2022-07-12 18:15:32.458192 2022-09-02 16:28:33.012565 f 2022-09-02 16:28:33.012551 +123 1 123 30 2022-07-12 18:15:32.457026 2022-09-02 16:28:35.504211 f 2022-09-02 16:28:35.504198 +132 1 132 50 2022-07-12 18:15:32.457294 2022-09-02 16:28:36.159615 f 2022-09-02 16:28:36.1596 +177 1 177 39 2022-07-12 18:15:32.458672 2022-09-02 16:28:36.848575 f 2022-09-02 16:28:36.848564 +169 1 169 40 2022-07-12 18:15:32.458431 2022-09-02 16:28:38.665538 f 2022-09-02 16:28:38.665524 +122 1 122 21 2022-07-12 18:15:32.457004 2022-09-02 16:28:39.350933 f 2022-09-02 16:28:39.350913 +155 1 155 26 2022-07-12 18:15:32.458013 2022-09-02 14:33:32.06254 f 2022-09-02 14:33:32.062524 +185 1 185 25 2022-07-12 18:15:32.45896 2022-09-02 16:28:40.077434 f 2022-09-02 16:28:40.077423 +112 1 112 0 2022-07-12 18:15:32.45669 2022-09-02 16:28:41.163238 f 2022-09-02 16:28:41.163225 +135 1 135 47 2022-07-12 18:15:32.457382 2022-09-02 16:25:42.010711 f 2022-09-02 16:25:42.010697 +118 1 118 43 2022-07-12 18:15:32.45691 2022-09-02 16:25:47.169893 f 2022-09-02 16:25:47.16988 +124 1 124 20 2022-07-12 18:15:32.457056 2022-09-02 16:25:48.711847 f 2022-09-02 16:25:48.711832 +179 1 179 24 2022-07-12 18:15:32.458731 2022-09-02 16:25:52.088405 f 2022-09-02 16:25:52.08839 +119 1 119 42 2022-07-12 18:15:32.456928 2022-09-02 16:25:54.105451 f 2022-09-02 16:25:54.105437 +192 1 192 47 2022-07-12 18:15:32.45917 2022-09-02 16:25:57.89224 f 2022-09-02 16:25:57.892227 +191 1 191 39 2022-07-12 18:15:32.45914 2022-09-02 16:25:59.534834 f 2022-09-02 16:25:59.53482 +164 1 164 34 2022-07-12 18:15:32.458282 2022-09-02 16:26:04.186057 f 2022-09-02 16:26:04.186043 +154 1 154 38 2022-07-12 18:15:32.457983 2022-09-02 16:26:04.785415 f 2022-09-02 16:26:04.785402 +165 1 165 26 2022-07-12 18:15:32.458312 2022-09-02 16:26:05.151722 f 2022-09-02 16:26:05.151708 +181 1 181 50 2022-07-12 18:15:32.45884 2022-09-02 16:26:05.789458 f 2022-09-02 16:26:05.789443 +170 1 170 39 2022-07-12 18:15:32.458461 2022-09-02 16:26:06.532684 f 2022-09-02 16:26:06.532671 +149 1 149 20 2022-07-12 18:15:32.457846 2022-09-02 16:26:07.080935 f 2022-09-02 16:26:07.080921 +125 1 125 22 2022-07-12 18:15:32.457086 2022-09-02 16:26:08.955984 f 2022-09-02 16:26:08.955972 +147 1 147 41 2022-07-12 18:15:32.457739 2022-09-02 16:26:10.352314 f 2022-09-02 16:26:10.352298 +157 1 157 45 2022-07-12 18:15:32.458074 2022-09-02 16:26:59.944185 f 2022-09-02 16:26:59.944172 +160 1 160 28 2022-07-12 18:15:32.458162 2022-09-02 16:27:01.239847 f 2022-09-02 16:27:01.239834 +182 1 182 47 2022-07-12 18:15:32.45887 2022-09-02 16:27:02.04214 f 2022-09-02 16:27:02.042126 +172 1 172 42 2022-07-12 18:15:32.458522 2022-09-02 16:27:02.693605 f 2022-09-02 16:27:02.69359 +116 1 116 0 2022-07-12 18:15:32.456807 2022-09-02 16:27:03.412793 f 2022-09-02 16:27:03.412778 +145 1 145 40 2022-07-12 18:15:32.457679 2022-09-02 16:27:04.27149 f 2022-09-02 16:27:04.271478 +190 1 190 33 2022-07-12 18:15:32.45911 2022-09-02 16:27:07.218789 f 2022-09-02 16:27:07.218775 +101 1 101 0 2022-07-12 18:15:32.456368 2022-09-02 16:27:08.009728 f 2022-09-02 16:27:08.009715 +156 1 156 42 2022-07-12 18:15:32.458044 2022-09-02 16:27:09.055651 f 2022-09-02 16:27:09.055639 +126 1 126 32 2022-07-12 18:15:32.457115 2022-09-02 16:27:09.883679 f 2022-09-02 16:27:09.883664 +143 1 143 44 2022-07-12 18:15:32.45762 2022-09-02 16:27:10.623313 f 2022-09-02 16:27:10.623299 +129 1 129 47 2022-07-12 18:15:32.457204 2022-09-02 16:27:12.964416 f 2022-09-02 16:27:12.964401 +166 1 166 29 2022-07-12 18:15:32.458342 2022-09-02 16:27:14.185729 f 2022-09-02 16:27:14.185717 +138 1 138 36 2022-07-12 18:15:32.457471 2022-09-02 16:27:14.848803 f 2022-09-02 16:27:14.848791 +106 1 106 0 2022-07-12 18:15:32.456514 2022-09-02 16:27:16.093855 f 2022-09-02 16:27:16.093841 +189 1 189 27 2022-07-12 18:15:32.45908 2022-09-02 16:27:17.476829 f 2022-09-02 16:27:17.476815 +139 1 139 22 2022-07-12 18:15:32.457501 2022-09-02 16:27:18.4375 f 2022-09-02 16:27:18.437489 +141 1 141 24 2022-07-12 18:15:32.457561 2022-09-02 16:27:21.455429 f 2022-09-02 16:27:21.455418 +115 1 115 0 2022-07-12 18:15:32.456778 2022-09-02 16:27:22.559326 f 2022-09-02 16:27:22.559312 +136 1 136 34 2022-07-12 18:15:32.457412 2022-09-02 16:27:23.334851 f 2022-09-02 16:27:23.334838 +114 1 114 0 2022-07-12 18:15:32.456748 2022-09-02 16:28:41.783177 f 2022-09-02 16:28:41.783165 +230 1 230 30 2022-07-12 18:15:32.460385 2022-09-02 16:28:41.849 f 2022-09-02 16:28:41.848988 +168 1 168 21 2022-07-12 18:15:32.458401 2022-09-02 16:28:42.50307 f 2022-09-02 16:28:42.503057 +128 1 128 46 2022-07-12 18:15:32.457175 2022-09-02 16:28:43.315766 f 2022-09-02 16:28:43.31575 +178 1 178 47 2022-07-12 18:15:32.458702 2022-09-02 16:28:44.401619 f 2022-09-02 16:28:44.401607 +113 1 113 0 2022-07-12 18:15:32.456719 2022-09-02 16:28:46.867569 f 2022-09-02 16:28:46.867559 +221 1 221 20 2022-07-12 18:15:32.460117 2022-09-02 16:27:33.728148 f 2022-09-02 16:27:33.728134 +196 1 196 33 2022-07-12 18:15:32.45929 2022-09-02 16:27:34.32223 f 2022-09-02 16:27:34.322217 +194 1 194 47 2022-07-12 18:15:32.459231 2022-09-02 16:27:34.818535 f 2022-09-02 16:27:34.818521 +227 1 227 29 2022-07-12 18:15:32.460295 2022-09-02 16:27:35.985601 f 2022-09-02 16:27:35.985587 +199 1 199 36 2022-07-12 18:15:32.45938 2022-09-02 16:27:38.171306 f 2022-09-02 16:27:38.171294 +110 1 110 0 2022-07-12 18:15:32.456632 2022-09-02 16:27:42.051143 f 2022-09-02 16:27:42.05113 +226 1 226 27 2022-07-12 18:15:32.460266 2022-09-02 16:27:42.121961 f 2022-09-02 16:27:42.121949 +167 1 167 43 2022-07-12 18:15:32.458372 2022-09-02 16:27:47.447553 f 2022-09-02 16:27:47.44754 +218 1 218 40 2022-07-12 18:15:32.460028 2022-09-02 16:27:48.69017 f 2022-09-02 16:27:48.690156 +213 1 213 46 2022-07-12 18:15:32.459882 2022-09-02 16:27:49.515355 f 2022-09-02 16:27:49.515343 +219 1 219 21 2022-07-12 18:15:32.460058 2022-09-02 16:27:50.005738 f 2022-09-02 16:27:50.005726 +224 1 224 22 2022-07-12 18:15:32.460206 2022-09-02 16:27:50.727244 f 2022-09-02 16:27:50.727231 +14 1 14 0 2022-07-12 18:15:32.45323 2022-09-02 14:33:28.802781 f 2022-09-02 14:33:28.802756 +130 1 130 34 2022-07-12 18:15:32.457234 2022-09-02 14:33:28.937655 f 2022-09-02 14:33:28.937633 +30 1 30 0 2022-07-12 18:15:32.453714 2022-09-02 14:33:34.238782 f 2022-09-02 14:33:34.238759 +146 1 146 21 2022-07-12 18:15:32.457709 2022-09-02 14:33:34.348566 f 2022-09-02 14:33:34.348552 +203 1 203 29 2022-07-12 18:15:32.459499 2022-09-02 14:33:39.524752 f 2022-09-02 14:33:39.52474 +186 1 186 27 2022-07-12 18:15:32.45899 2022-09-02 14:33:49.018458 f 2022-09-02 14:33:49.018444 +109 1 109 0 2022-07-12 18:15:32.456602 2022-09-02 16:27:51.236699 f 2022-09-02 16:27:51.236687 +225 1 225 29 2022-07-12 18:15:32.460236 2022-09-02 16:27:51.300871 f 2022-09-02 16:27:51.30086 +220 1 220 29 2022-07-12 18:15:32.460088 2022-09-02 16:27:52.804628 f 2022-09-02 16:27:52.804614 +206 1 206 32 2022-07-12 18:15:32.459589 2022-09-02 16:28:00.524532 f 2022-09-02 16:28:00.524518 +200 1 200 20 2022-07-12 18:15:32.45941 2022-09-02 16:25:40.048808 f 2022-09-02 16:25:40.048788 +180 1 180 45 2022-07-12 18:15:32.458761 2022-09-02 16:25:43.822316 f 2022-09-02 16:25:43.82229 +212 1 212 35 2022-07-12 18:15:32.459856 2022-09-02 16:25:45.465198 f 2022-09-02 16:25:45.465184 +2 1 2 2 2022-07-12 18:15:32.452762 2022-09-02 16:25:47.106959 f 2022-09-02 16:25:47.106946 +201 1 201 43 2022-07-12 18:15:32.459439 2022-09-02 16:25:50.444739 f 2022-09-02 16:25:50.444725 +63 1 63 0 2022-07-12 18:15:32.454768 2022-09-02 16:25:52.019705 f 2022-09-02 16:25:52.019692 +197 1 197 23 2022-07-12 18:15:32.45932 2022-09-02 16:25:56.091295 f 2022-09-02 16:25:56.091282 +211 1 211 47 2022-07-12 18:15:32.459738 2022-09-02 16:26:01.319181 f 2022-09-02 16:26:01.319168 +152 1 152 32 2022-07-12 18:15:32.457923 2022-09-02 16:26:03.411905 f 2022-09-02 16:26:03.411885 +38 1 38 0 2022-07-12 18:15:32.454013 2022-09-02 16:26:04.639243 f 2022-09-02 16:26:04.63923 +49 1 49 0 2022-07-12 18:15:32.454344 2022-09-02 16:26:05.03036 f 2022-09-02 16:26:05.030342 +205 1 205 47 2022-07-12 18:15:32.459558 2022-09-02 16:26:07.566824 f 2022-09-02 16:26:07.56681 +208 1 208 23 2022-07-12 18:15:32.459648 2022-09-02 16:26:08.18241 f 2022-09-02 16:26:08.182375 +1 1 1 2 2022-07-12 18:15:32.45271 2022-09-02 16:26:09.592784 f 2022-09-02 16:26:09.592771 +117 1 117 42 2022-07-12 18:15:32.456889 2022-09-02 16:26:09.660558 f 2022-09-02 16:26:09.660545 +232 1 232 50 2022-07-12 18:15:32.460445 2022-09-02 16:27:03.496286 f 2022-09-02 16:27:03.496272 +151 1 151 45 2022-07-12 18:15:32.457898 2022-09-02 16:27:05.364886 f 2022-09-02 16:27:05.364873 +74 1 74 0 2022-07-12 18:15:32.455164 2022-09-02 16:27:07.150518 f 2022-09-02 16:27:07.150504 +217 1 217 21 2022-07-12 18:15:32.459998 2022-09-02 16:27:08.089518 f 2022-09-02 16:27:08.089505 +140 1 140 32 2022-07-12 18:15:32.457531 2022-09-02 16:27:13.524712 f 2022-09-02 16:27:13.524698 +88 1 88 0 2022-07-12 18:15:32.455986 2022-09-02 16:27:15.366388 f 2022-09-02 16:27:15.366374 +204 1 204 46 2022-07-12 18:15:32.459529 2022-09-02 16:27:15.432868 f 2022-09-02 16:27:15.432854 +222 1 222 47 2022-07-12 18:15:32.460147 2022-09-02 16:27:16.166907 f 2022-09-02 16:27:16.166895 +209 1 209 50 2022-07-12 18:15:32.459678 2022-09-02 16:27:16.954073 f 2022-09-02 16:27:16.954061 +231 1 231 20 2022-07-12 18:15:32.460415 2022-09-02 16:27:22.633749 f 2022-09-02 16:27:22.633735 +210 1 210 37 2022-07-12 18:15:32.459708 2022-09-02 16:28:02.505692 f 2022-09-02 16:28:02.505679 +17 1 17 0 2022-07-12 18:15:32.453321 2022-09-02 16:28:04.391108 f 2022-09-02 16:28:04.391095 +171 1 171 40 2022-07-12 18:15:32.458492 2022-09-02 16:28:06.927793 f 2022-09-02 16:28:06.92778 +216 1 216 38 2022-07-12 18:15:32.459968 2022-09-02 16:28:18.719992 f 2022-09-02 16:28:18.719979 +214 1 214 48 2022-07-12 18:15:32.459908 2022-09-02 16:28:19.302187 f 2022-09-02 16:28:19.302175 +202 1 202 20 2022-07-12 18:15:32.45947 2022-09-02 16:28:19.933248 f 2022-09-02 16:28:19.933227 +198 1 198 38 2022-07-12 18:15:32.45935 2022-09-02 16:28:20.52437 f 2022-09-02 16:28:20.524357 +223 1 223 43 2022-07-12 18:15:32.460177 2022-09-02 16:28:20.906553 f 2022-09-02 16:28:20.906538 +207 1 207 41 2022-07-12 18:15:32.459618 2022-09-02 16:28:28.443834 f 2022-09-02 16:28:28.443823 +215 1 215 26 2022-07-12 18:15:32.459938 2022-09-02 16:28:31.260586 f 2022-09-02 16:28:31.260575 +71 1 71 0 2022-07-12 18:15:32.455073 2022-09-02 16:28:31.745062 f 2022-09-02 16:28:31.745049 +193 1 193 28 2022-07-12 18:15:32.4592 2022-09-02 16:28:38.047228 f 2022-09-02 16:28:38.047216 +228 1 228 29 2022-07-12 18:15:32.460325 2022-09-02 16:28:41.235068 f 2022-09-02 16:28:41.235055 +12 1 12 0 2022-07-12 18:15:32.453169 2022-09-02 16:28:43.230766 f 2022-09-02 16:28:43.230752 +195 1 195 42 2022-07-12 18:15:32.45926 2022-09-02 16:28:45.093339 f 2022-09-02 16:28:45.093327 +229 1 229 25 2022-07-12 18:15:32.460355 2022-09-02 16:28:46.935995 f 2022-09-02 16:28:46.935984 +234 1 234 8018 2022-09-02 17:12:43.404498 2024-02-12 22:52:24.538843 f \N +239 1 239 6486 2022-09-02 18:41:55.921383 2024-02-12 22:52:24.643294 f \N +240 1 240 5235 2022-09-02 18:43:51.861678 2024-02-12 22:42:30.498657 f \N +246 1 246 8985 2022-09-02 19:03:48.978648 2024-02-12 22:52:58.501733 f \N +236 1 236 5254 2022-09-02 17:36:52.276273 2024-02-12 22:52:58.628274 f \N +244 1 244 8074 2022-09-02 18:58:24.14416 2024-02-12 22:52:58.745881 f \N +241 1 241 4054 2022-09-02 18:46:23.913179 2024-02-12 22:47:59.50533 f \N +243 1 243 1000 2022-09-02 18:54:26.562147 2024-02-12 20:50:37.070179 t 2024-02-12 20:50:37.07017 +247 1 243 0 2024-02-12 20:50:58.411851 2024-02-12 20:51:17.308575 f 2024-02-12 20:51:17.308568 +248 1 243 8000 2024-02-12 20:51:22.877758 2024-02-12 20:51:22.949416 f \N +237 1 237 6050 2022-09-02 18:31:39.554729 2024-02-12 22:35:00.4858 f \N +235 1 235 1280 2022-09-02 17:30:06.037723 2024-02-12 22:52:19.364928 f \N +233 1 233 8014 2022-09-02 16:34:50.883227 2024-02-12 22:38:45.746405 f \N +238 1 238 8050 2022-09-02 18:40:15.84499 2024-02-12 22:52:22.569111 f \N +245 1 245 8689 2022-09-02 19:00:46.078642 2024-02-12 22:38:45.822191 f \N +242 1 242 3612 2022-09-02 18:51:38.685733 2024-02-12 22:52:22.679983 f \N +\. + + +-- +-- Data for Name: spree_stock_locations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_stock_locations (id, name, created_at, updated_at, "default", address1, address2, city, state_id, state_name, country_id, zipcode, phone, active, backorderable_default, propagate_all_variants, admin_name) FROM stdin; +1 default 2022-07-12 18:10:15.24519 2022-07-12 18:15:32.438735 t Example Street \N City 483 \N 224 12345 \N t f f \N +\. + + +-- +-- Data for Name: spree_stock_movements; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_stock_movements (id, stock_item_id, quantity, action, created_at, updated_at, originator_type, originator_id) FROM stdin; +1 127 49 \N 2022-07-12 18:15:32.78468 2022-07-12 18:15:32.78468 \N \N +2 178 47 \N 2022-07-12 18:15:32.961873 2022-07-12 18:15:32.961873 \N \N +3 228 29 \N 2022-07-12 18:15:33.45479 2022-07-12 18:15:33.45479 \N \N +4 229 25 \N 2022-07-12 18:15:33.623155 2022-07-12 18:15:33.623155 \N \N +5 230 30 \N 2022-07-12 18:15:33.76863 2022-07-12 18:15:33.76863 \N \N +6 231 20 \N 2022-07-12 18:15:33.943098 2022-07-12 18:15:33.943098 \N \N +7 117 42 \N 2022-07-12 18:15:34.446092 2022-07-12 18:15:34.446092 \N \N +8 118 43 \N 2022-07-12 18:15:34.584035 2022-07-12 18:15:34.584035 \N \N +9 119 42 \N 2022-07-12 18:15:34.72435 2022-07-12 18:15:34.72435 \N \N +10 120 38 \N 2022-07-12 18:15:34.872651 2022-07-12 18:15:34.872651 \N \N +11 121 32 \N 2022-07-12 18:15:35.014509 2022-07-12 18:15:35.014509 \N \N +12 122 21 \N 2022-07-12 18:15:35.162963 2022-07-12 18:15:35.162963 \N \N +13 123 30 \N 2022-07-12 18:15:35.310181 2022-07-12 18:15:35.310181 \N \N +14 124 20 \N 2022-07-12 18:15:35.452645 2022-07-12 18:15:35.452645 \N \N +15 125 22 \N 2022-07-12 18:15:35.598628 2022-07-12 18:15:35.598628 \N \N +16 126 32 \N 2022-07-12 18:15:35.744559 2022-07-12 18:15:35.744559 \N \N +17 128 46 \N 2022-07-12 18:15:35.890488 2022-07-12 18:15:35.890488 \N \N +18 129 47 \N 2022-07-12 18:15:36.04426 2022-07-12 18:15:36.04426 \N \N +19 130 34 \N 2022-07-12 18:15:36.219543 2022-07-12 18:15:36.219543 \N \N +20 131 41 \N 2022-07-12 18:15:36.377124 2022-07-12 18:15:36.377124 \N \N +21 132 50 \N 2022-07-12 18:15:36.526468 2022-07-12 18:15:36.526468 \N \N +22 133 35 \N 2022-07-12 18:15:36.666197 2022-07-12 18:15:36.666197 \N \N +23 134 44 \N 2022-07-12 18:15:36.801753 2022-07-12 18:15:36.801753 \N \N +24 135 47 \N 2022-07-12 18:15:36.941088 2022-07-12 18:15:36.941088 \N \N +25 136 34 \N 2022-07-12 18:15:37.078876 2022-07-12 18:15:37.078876 \N \N +26 137 40 \N 2022-07-12 18:15:37.223224 2022-07-12 18:15:37.223224 \N \N +27 138 36 \N 2022-07-12 18:15:37.364593 2022-07-12 18:15:37.364593 \N \N +28 139 22 \N 2022-07-12 18:15:37.507117 2022-07-12 18:15:37.507117 \N \N +29 140 32 \N 2022-07-12 18:15:37.645676 2022-07-12 18:15:37.645676 \N \N +30 141 24 \N 2022-07-12 18:15:37.782272 2022-07-12 18:15:37.782272 \N \N +31 142 46 \N 2022-07-12 18:15:37.924352 2022-07-12 18:15:37.924352 \N \N +32 143 44 \N 2022-07-12 18:15:38.07368 2022-07-12 18:15:38.07368 \N \N +33 144 20 \N 2022-07-12 18:15:38.238498 2022-07-12 18:15:38.238498 \N \N +34 145 40 \N 2022-07-12 18:15:38.409506 2022-07-12 18:15:38.409506 \N \N +35 146 21 \N 2022-07-12 18:15:38.644275 2022-07-12 18:15:38.644275 \N \N +36 147 41 \N 2022-07-12 18:15:38.926899 2022-07-12 18:15:38.926899 \N \N +37 148 23 \N 2022-07-12 18:15:39.101712 2022-07-12 18:15:39.101712 \N \N +38 149 20 \N 2022-07-12 18:15:39.25904 2022-07-12 18:15:39.25904 \N \N +39 150 45 \N 2022-07-12 18:15:39.495104 2022-07-12 18:15:39.495104 \N \N +40 151 45 \N 2022-07-12 18:15:39.711703 2022-07-12 18:15:39.711703 \N \N +41 152 32 \N 2022-07-12 18:15:39.86765 2022-07-12 18:15:39.86765 \N \N +42 153 35 \N 2022-07-12 18:15:40.034215 2022-07-12 18:15:40.034215 \N \N +43 154 38 \N 2022-07-12 18:15:40.194405 2022-07-12 18:15:40.194405 \N \N +44 155 26 \N 2022-07-12 18:15:40.36491 2022-07-12 18:15:40.36491 \N \N +45 156 42 \N 2022-07-12 18:15:40.533343 2022-07-12 18:15:40.533343 \N \N +46 157 45 \N 2022-07-12 18:15:40.705553 2022-07-12 18:15:40.705553 \N \N +47 158 24 \N 2022-07-12 18:15:40.862601 2022-07-12 18:15:40.862601 \N \N +48 159 20 \N 2022-07-12 18:15:41.009363 2022-07-12 18:15:41.009363 \N \N +49 160 28 \N 2022-07-12 18:15:41.153885 2022-07-12 18:15:41.153885 \N \N +50 161 21 \N 2022-07-12 18:15:41.310699 2022-07-12 18:15:41.310699 \N \N +51 162 23 \N 2022-07-12 18:15:41.465721 2022-07-12 18:15:41.465721 \N \N +52 163 36 \N 2022-07-12 18:15:41.645505 2022-07-12 18:15:41.645505 \N \N +53 164 34 \N 2022-07-12 18:15:41.806174 2022-07-12 18:15:41.806174 \N \N +54 165 26 \N 2022-07-12 18:15:41.963567 2022-07-12 18:15:41.963567 \N \N +55 166 29 \N 2022-07-12 18:15:42.146353 2022-07-12 18:15:42.146353 \N \N +56 167 43 \N 2022-07-12 18:15:42.324971 2022-07-12 18:15:42.324971 \N \N +57 168 21 \N 2022-07-12 18:15:42.479828 2022-07-12 18:15:42.479828 \N \N +58 169 40 \N 2022-07-12 18:15:42.634016 2022-07-12 18:15:42.634016 \N \N +59 170 39 \N 2022-07-12 18:15:42.79729 2022-07-12 18:15:42.79729 \N \N +60 171 40 \N 2022-07-12 18:15:42.954282 2022-07-12 18:15:42.954282 \N \N +61 172 42 \N 2022-07-12 18:15:43.152692 2022-07-12 18:15:43.152692 \N \N +62 173 30 \N 2022-07-12 18:15:43.329116 2022-07-12 18:15:43.329116 \N \N +63 174 40 \N 2022-07-12 18:15:43.495986 2022-07-12 18:15:43.495986 \N \N +64 175 38 \N 2022-07-12 18:15:43.90417 2022-07-12 18:15:43.90417 \N \N +65 176 35 \N 2022-07-12 18:15:44.119478 2022-07-12 18:15:44.119478 \N \N +66 177 39 \N 2022-07-12 18:15:44.302259 2022-07-12 18:15:44.302259 \N \N +67 179 24 \N 2022-07-12 18:15:44.443082 2022-07-12 18:15:44.443082 \N \N +68 180 45 \N 2022-07-12 18:15:44.600243 2022-07-12 18:15:44.600243 \N \N +69 181 50 \N 2022-07-12 18:15:44.756806 2022-07-12 18:15:44.756806 \N \N +70 182 47 \N 2022-07-12 18:15:44.92136 2022-07-12 18:15:44.92136 \N \N +71 183 41 \N 2022-07-12 18:15:45.076232 2022-07-12 18:15:45.076232 \N \N +72 184 39 \N 2022-07-12 18:15:45.224247 2022-07-12 18:15:45.224247 \N \N +73 185 25 \N 2022-07-12 18:15:45.374344 2022-07-12 18:15:45.374344 \N \N +74 186 27 \N 2022-07-12 18:15:45.53047 2022-07-12 18:15:45.53047 \N \N +75 187 27 \N 2022-07-12 18:15:45.74501 2022-07-12 18:15:45.74501 \N \N +76 188 33 \N 2022-07-12 18:15:45.939103 2022-07-12 18:15:45.939103 \N \N +77 189 27 \N 2022-07-12 18:15:46.140331 2022-07-12 18:15:46.140331 \N \N +78 190 33 \N 2022-07-12 18:15:46.312799 2022-07-12 18:15:46.312799 \N \N +79 191 39 \N 2022-07-12 18:15:46.527592 2022-07-12 18:15:46.527592 \N \N +80 192 47 \N 2022-07-12 18:15:46.757245 2022-07-12 18:15:46.757245 \N \N +81 193 28 \N 2022-07-12 18:15:46.925407 2022-07-12 18:15:46.925407 \N \N +82 194 47 \N 2022-07-12 18:15:47.130335 2022-07-12 18:15:47.130335 \N \N +83 195 42 \N 2022-07-12 18:15:47.286958 2022-07-12 18:15:47.286958 \N \N +84 196 33 \N 2022-07-12 18:15:47.448134 2022-07-12 18:15:47.448134 \N \N +85 197 23 \N 2022-07-12 18:15:47.607419 2022-07-12 18:15:47.607419 \N \N +86 198 38 \N 2022-07-12 18:15:47.759305 2022-07-12 18:15:47.759305 \N \N +87 199 36 \N 2022-07-12 18:15:47.912039 2022-07-12 18:15:47.912039 \N \N +88 200 20 \N 2022-07-12 18:15:48.072396 2022-07-12 18:15:48.072396 \N \N +89 201 43 \N 2022-07-12 18:15:48.223719 2022-07-12 18:15:48.223719 \N \N +90 202 20 \N 2022-07-12 18:15:48.37827 2022-07-12 18:15:48.37827 \N \N +91 203 29 \N 2022-07-12 18:15:48.526301 2022-07-12 18:15:48.526301 \N \N +92 204 46 \N 2022-07-12 18:15:48.704397 2022-07-12 18:15:48.704397 \N \N +93 205 47 \N 2022-07-12 18:15:48.849804 2022-07-12 18:15:48.849804 \N \N +94 206 32 \N 2022-07-12 18:15:49.007179 2022-07-12 18:15:49.007179 \N \N +95 207 41 \N 2022-07-12 18:15:49.170408 2022-07-12 18:15:49.170408 \N \N +96 208 23 \N 2022-07-12 18:15:49.325291 2022-07-12 18:15:49.325291 \N \N +97 209 50 \N 2022-07-12 18:15:49.480825 2022-07-12 18:15:49.480825 \N \N +98 210 37 \N 2022-07-12 18:15:49.63403 2022-07-12 18:15:49.63403 \N \N +99 211 47 \N 2022-07-12 18:15:49.780696 2022-07-12 18:15:49.780696 \N \N +100 212 35 \N 2022-07-12 18:15:49.935922 2022-07-12 18:15:49.935922 \N \N +101 213 46 \N 2022-07-12 18:15:50.0808 2022-07-12 18:15:50.0808 \N \N +102 214 48 \N 2022-07-12 18:15:50.246208 2022-07-12 18:15:50.246208 \N \N +103 215 26 \N 2022-07-12 18:15:50.402103 2022-07-12 18:15:50.402103 \N \N +104 216 38 \N 2022-07-12 18:15:50.550703 2022-07-12 18:15:50.550703 \N \N +105 217 21 \N 2022-07-12 18:15:50.715301 2022-07-12 18:15:50.715301 \N \N +106 218 40 \N 2022-07-12 18:15:50.874821 2022-07-12 18:15:50.874821 \N \N +107 219 21 \N 2022-07-12 18:15:51.028671 2022-07-12 18:15:51.028671 \N \N +108 220 29 \N 2022-07-12 18:15:51.172972 2022-07-12 18:15:51.172972 \N \N +109 221 20 \N 2022-07-12 18:15:51.321074 2022-07-12 18:15:51.321074 \N \N +110 222 47 \N 2022-07-12 18:15:51.478665 2022-07-12 18:15:51.478665 \N \N +111 223 43 \N 2022-07-12 18:15:51.63819 2022-07-12 18:15:51.63819 \N \N +112 224 22 \N 2022-07-12 18:15:51.789091 2022-07-12 18:15:51.789091 \N \N +113 225 29 \N 2022-07-12 18:15:51.938729 2022-07-12 18:15:51.938729 \N \N +114 226 27 \N 2022-07-12 18:15:52.086709 2022-07-12 18:15:52.086709 \N \N +115 227 29 \N 2022-07-12 18:15:52.241894 2022-07-12 18:15:52.241894 \N \N +116 232 50 \N 2022-07-12 18:15:52.39771 2022-07-12 18:15:52.39771 \N \N +117 2 1 \N 2022-09-02 16:12:46.848476 2022-09-02 16:12:46.848476 Spree::Shipment 2 +118 1 1 \N 2022-09-02 16:14:58.106673 2022-09-02 16:14:58.106673 Spree::Shipment 1 +119 233 30 \N 2022-09-02 16:34:50.973374 2022-09-02 16:34:50.973374 \N \N +120 234 40 \N 2022-09-02 17:12:43.482311 2022-09-02 17:12:43.482311 \N \N +121 235 100 \N 2022-09-02 17:30:06.118911 2022-09-02 17:30:06.118911 \N \N +122 236 300 \N 2022-09-02 17:36:52.365209 2022-09-02 17:36:52.365209 \N \N +123 237 65 \N 2022-09-02 18:31:39.625706 2022-09-02 18:31:39.625706 \N \N +124 238 58 \N 2022-09-02 18:40:15.962931 2022-09-02 18:40:15.962931 \N \N +125 239 500 \N 2022-09-02 18:41:56.002909 2022-09-02 18:41:56.002909 \N \N +126 240 250 \N 2022-09-02 18:43:51.957096 2022-09-02 18:43:51.957096 \N \N +127 241 67 \N 2022-09-02 18:46:23.995711 2022-09-02 18:46:23.995711 \N \N +128 242 125 \N 2022-09-02 18:51:38.762738 2022-09-02 18:51:38.762738 \N \N +129 243 1000 \N 2022-09-02 18:54:26.634775 2022-09-02 18:54:26.634775 \N \N +130 244 89 \N 2022-09-02 18:58:24.294859 2022-09-02 18:58:24.294859 \N \N +131 245 300 \N 2022-09-02 19:00:46.164707 2022-09-02 19:00:46.164707 \N \N +132 246 1992 \N 2022-09-02 19:03:49.054546 2022-09-02 19:03:49.054546 \N \N +133 233 -1 \N 2024-02-12 20:14:34.211665 2024-02-12 20:14:34.211665 Spree::Shipment 481 +134 236 -1 \N 2024-02-12 20:14:34.310828 2024-02-12 20:14:34.310828 Spree::Shipment 481 +135 240 -1 \N 2024-02-12 20:14:34.404523 2024-02-12 20:14:34.404523 Spree::Shipment 481 +136 238 -1 \N 2024-02-12 20:14:34.586488 2024-02-12 20:14:34.586488 Spree::Shipment 481 +137 233 -1 \N 2024-02-12 20:16:13.762484 2024-02-12 20:16:13.762484 Spree::Shipment 483 +138 236 -1 \N 2024-02-12 20:16:13.84537 2024-02-12 20:16:13.84537 Spree::Shipment 483 +139 233 -1 \N 2024-02-12 20:18:52.868011 2024-02-12 20:18:52.868011 Spree::Shipment 486 +140 234 -1 \N 2024-02-12 20:18:52.95215 2024-02-12 20:18:52.95215 Spree::Shipment 486 +141 240 -1 \N 2024-02-12 20:18:53.044776 2024-02-12 20:18:53.044776 Spree::Shipment 486 +142 233 -1 \N 2024-02-12 20:21:24.003807 2024-02-12 20:21:24.003807 Spree::Shipment 489 +143 239 -1 \N 2024-02-12 20:21:24.083045 2024-02-12 20:21:24.083045 Spree::Shipment 489 +144 236 -1 \N 2024-02-12 20:21:24.160852 2024-02-12 20:21:24.160852 Spree::Shipment 489 +145 233 -2 \N 2024-02-12 20:24:07.825756 2024-02-12 20:24:07.825756 Spree::Shipment 494 +146 236 -1 \N 2024-02-12 20:24:07.915728 2024-02-12 20:24:07.915728 Spree::Shipment 494 +147 234 -2 \N 2024-02-12 20:24:08.008169 2024-02-12 20:24:08.008169 Spree::Shipment 494 +148 233 -1 \N 2024-02-12 20:25:59.961622 2024-02-12 20:25:59.961622 Spree::Shipment 495 +149 247 10000 \N 2024-02-12 20:50:58.463881 2024-02-12 20:50:58.463881 \N \N +150 248 8000 \N 2024-02-12 20:51:22.917522 2024-02-12 20:51:22.917522 \N \N +151 233 8000 \N 2024-02-12 20:51:41.481629 2024-02-12 20:51:41.481629 \N \N +152 234 8000 \N 2024-02-12 20:51:51.222505 2024-02-12 20:51:51.222505 \N \N +153 244 8000 \N 2024-02-12 20:52:19.573066 2024-02-12 20:52:19.573066 \N \N +154 246 7000 \N 2024-02-12 20:52:35.639989 2024-02-12 20:52:35.639989 \N \N +155 235 1200 \N 2024-02-12 20:52:47.52528 2024-02-12 20:52:47.52528 \N \N +156 236 5000 \N 2024-02-12 20:52:57.606805 2024-02-12 20:52:57.606805 \N \N +157 237 6000 \N 2024-02-12 20:53:05.412071 2024-02-12 20:53:05.412071 \N \N +158 239 6000 \N 2024-02-12 20:53:13.71728 2024-02-12 20:53:13.71728 \N \N +159 238 8000 \N 2024-02-12 20:53:27.03347 2024-02-12 20:53:27.03347 \N \N +160 240 5000 \N 2024-02-12 20:53:34.086099 2024-02-12 20:53:34.086099 \N \N +161 241 4000 \N 2024-02-12 21:00:33.410753 2024-02-12 21:00:33.410753 \N \N +162 242 3500 \N 2024-02-12 21:00:43.508962 2024-02-12 21:00:43.508962 \N \N +163 245 8400 \N 2024-02-12 21:00:53.742783 2024-02-12 21:00:53.742783 \N \N +164 235 -1 \N 2024-02-12 21:27:46.227926 2024-02-12 21:27:46.227926 Spree::Shipment 517 +165 236 -1 \N 2024-02-12 21:27:46.324815 2024-02-12 21:27:46.324815 Spree::Shipment 517 +166 237 -1 \N 2024-02-12 21:28:08.432488 2024-02-12 21:28:08.432488 Spree::Shipment 516 +167 236 -1 \N 2024-02-12 21:28:08.539137 2024-02-12 21:28:08.539137 Spree::Shipment 516 +168 240 -1 \N 2024-02-12 21:28:08.634772 2024-02-12 21:28:08.634772 Spree::Shipment 516 +169 239 -1 \N 2024-02-12 21:29:18.202354 2024-02-12 21:29:18.202354 Spree::Shipment 525 +170 245 -1 \N 2024-02-12 21:29:18.305684 2024-02-12 21:29:18.305684 Spree::Shipment 525 +171 236 -1 \N 2024-02-12 21:29:18.420303 2024-02-12 21:29:18.420303 Spree::Shipment 525 +172 245 -1 \N 2024-02-12 21:32:57.625407 2024-02-12 21:32:57.625407 Spree::Shipment 531 +173 244 -1 \N 2024-02-12 21:32:57.708935 2024-02-12 21:32:57.708935 Spree::Shipment 531 +174 234 -2 \N 2024-02-12 21:33:19.072573 2024-02-12 21:33:19.072573 Spree::Shipment 535 +175 233 -1 \N 2024-02-12 21:33:19.154475 2024-02-12 21:33:19.154475 Spree::Shipment 535 +176 245 -1 \N 2024-02-12 21:33:23.000059 2024-02-12 21:33:23.000059 Spree::Shipment 536 +177 236 -1 \N 2024-02-12 21:33:23.111946 2024-02-12 21:33:23.111946 Spree::Shipment 536 +178 246 -1 \N 2024-02-12 21:33:23.199014 2024-02-12 21:33:23.199014 Spree::Shipment 536 +179 239 -1 \N 2024-02-12 21:33:25.486169 2024-02-12 21:33:25.486169 Spree::Shipment 539 +180 238 -1 \N 2024-02-12 21:33:25.580632 2024-02-12 21:33:25.580632 Spree::Shipment 539 +181 235 -1 \N 2024-02-12 21:33:25.663427 2024-02-12 21:33:25.663427 Spree::Shipment 539 +182 241 -2 \N 2024-02-12 21:34:37.956995 2024-02-12 21:34:37.956995 Spree::Shipment 542 +183 236 -1 \N 2024-02-12 21:34:38.037598 2024-02-12 21:34:38.037598 Spree::Shipment 542 +184 241 -1 \N 2024-02-12 21:38:00.501699 2024-02-12 21:38:00.501699 Spree::Shipment 558 +185 236 -1 \N 2024-02-12 21:38:00.591134 2024-02-12 21:38:00.591134 Spree::Shipment 558 +186 238 -1 \N 2024-02-12 21:38:00.682882 2024-02-12 21:38:00.682882 Spree::Shipment 558 +187 244 -1 \N 2024-02-12 21:38:02.549692 2024-02-12 21:38:02.549692 Spree::Shipment 551 +188 236 -1 \N 2024-02-12 21:38:02.631626 2024-02-12 21:38:02.631626 Spree::Shipment 551 +189 240 -1 \N 2024-02-12 21:38:05.002148 2024-02-12 21:38:05.002148 Spree::Shipment 553 +190 236 -1 \N 2024-02-12 21:38:05.085115 2024-02-12 21:38:05.085115 Spree::Shipment 553 +191 237 -1 \N 2024-02-12 21:38:08.411093 2024-02-12 21:38:08.411093 Spree::Shipment 554 +192 234 -1 \N 2024-02-12 21:38:08.509955 2024-02-12 21:38:08.509955 Spree::Shipment 554 +193 233 -1 \N 2024-02-12 21:38:09.003107 2024-02-12 21:38:09.003107 Spree::Shipment 561 +194 234 -1 \N 2024-02-12 21:38:09.155842 2024-02-12 21:38:09.155842 Spree::Shipment 561 +195 242 -1 \N 2024-02-12 21:38:09.264493 2024-02-12 21:38:09.264493 Spree::Shipment 561 +196 241 -1 \N 2024-02-12 21:39:19.145264 2024-02-12 21:39:19.145264 Spree::Shipment 565 +197 233 -1 \N 2024-02-12 21:39:19.231658 2024-02-12 21:39:19.231658 Spree::Shipment 565 +198 236 -1 \N 2024-02-12 21:39:19.428837 2024-02-12 21:39:19.428837 Spree::Shipment 565 +199 242 -1 \N 2024-02-12 21:44:20.229948 2024-02-12 21:44:20.229948 Spree::Shipment 570 +200 245 -1 \N 2024-02-12 21:44:20.362832 2024-02-12 21:44:20.362832 Spree::Shipment 570 +201 240 -1 \N 2024-02-12 21:44:52.056657 2024-02-12 21:44:52.056657 Spree::Shipment 576 +202 235 -1 \N 2024-02-12 21:44:52.146222 2024-02-12 21:44:52.146222 Spree::Shipment 576 +203 244 -1 \N 2024-02-12 21:44:52.223762 2024-02-12 21:44:52.223762 Spree::Shipment 576 +204 235 -1 \N 2024-02-12 21:46:02.180355 2024-02-12 21:46:02.180355 Spree::Shipment 584 +205 245 -1 \N 2024-02-12 21:46:02.264017 2024-02-12 21:46:02.264017 Spree::Shipment 584 +206 236 -1 \N 2024-02-12 21:46:02.34776 2024-02-12 21:46:02.34776 Spree::Shipment 584 +207 235 -1 \N 2024-02-12 21:46:03.487465 2024-02-12 21:46:03.487465 Spree::Shipment 585 +208 242 -1 \N 2024-02-12 21:46:03.589458 2024-02-12 21:46:03.589458 Spree::Shipment 585 +209 236 -1 \N 2024-02-12 21:46:03.683121 2024-02-12 21:46:03.683121 Spree::Shipment 585 +210 244 -1 \N 2024-02-12 21:46:04.500833 2024-02-12 21:46:04.500833 Spree::Shipment 586 +211 237 -1 \N 2024-02-12 21:46:04.593219 2024-02-12 21:46:04.593219 Spree::Shipment 586 +212 236 -1 \N 2024-02-12 21:46:04.687452 2024-02-12 21:46:04.687452 Spree::Shipment 586 +213 236 -2 \N 2024-02-12 21:47:17.201485 2024-02-12 21:47:17.201485 Spree::Shipment 588 +214 233 -1 \N 2024-02-12 21:47:17.391773 2024-02-12 21:47:17.391773 Spree::Shipment 588 +215 242 -1 \N 2024-02-12 21:47:17.478883 2024-02-12 21:47:17.478883 Spree::Shipment 588 +216 241 -1 \N 2024-02-12 21:50:07.971654 2024-02-12 21:50:07.971654 Spree::Shipment 590 +217 235 -1 \N 2024-02-12 21:50:32.949889 2024-02-12 21:50:32.949889 Spree::Shipment 596 +218 241 -1 \N 2024-02-12 21:50:33.042759 2024-02-12 21:50:33.042759 Spree::Shipment 596 +222 237 -1 \N 2024-02-12 21:53:31.994078 2024-02-12 21:53:31.994078 Spree::Shipment 603 +223 244 -1 \N 2024-02-12 21:53:37.327463 2024-02-12 21:53:37.327463 Spree::Shipment 607 +229 246 -1 \N 2024-02-12 21:54:15.199442 2024-02-12 21:54:15.199442 Spree::Shipment 615 +230 239 -1 \N 2024-02-12 21:54:15.28239 2024-02-12 21:54:15.28239 Spree::Shipment 615 +231 236 -1 \N 2024-02-12 21:54:15.369438 2024-02-12 21:54:15.369438 Spree::Shipment 615 +234 245 -1 \N 2024-02-12 21:55:50.123888 2024-02-12 21:55:50.123888 Spree::Shipment 619 +235 233 -1 \N 2024-02-12 21:55:50.220046 2024-02-12 21:55:50.220046 Spree::Shipment 619 +237 244 -1 \N 2024-02-12 21:58:36.514154 2024-02-12 21:58:36.514154 Spree::Shipment 625 +241 235 -1 \N 2024-02-12 21:59:17.01031 2024-02-12 21:59:17.01031 Spree::Shipment 628 +242 240 -1 \N 2024-02-12 21:59:17.104271 2024-02-12 21:59:17.104271 Spree::Shipment 628 +244 234 -1 \N 2024-02-12 22:00:29.084343 2024-02-12 22:00:29.084343 Spree::Shipment 636 +245 239 -1 \N 2024-02-12 22:00:29.16817 2024-02-12 22:00:29.16817 Spree::Shipment 636 +246 238 -1 \N 2024-02-12 22:00:47.174754 2024-02-12 22:00:47.174754 Spree::Shipment 635 +247 234 -1 \N 2024-02-12 22:00:47.26299 2024-02-12 22:00:47.26299 Spree::Shipment 635 +219 237 -1 \N 2024-02-12 21:50:34.04228 2024-02-12 21:50:34.04228 Spree::Shipment 594 +220 236 -1 \N 2024-02-12 21:50:34.13274 2024-02-12 21:50:34.13274 Spree::Shipment 594 +221 237 -1 \N 2024-02-12 21:50:37.772596 2024-02-12 21:50:37.772596 Spree::Shipment 593 +224 245 -1 \N 2024-02-12 21:53:57.105755 2024-02-12 21:53:57.105755 Spree::Shipment 613 +225 236 -1 \N 2024-02-12 21:53:57.201385 2024-02-12 21:53:57.201385 Spree::Shipment 613 +226 235 -1 \N 2024-02-12 21:53:57.286865 2024-02-12 21:53:57.286865 Spree::Shipment 613 +227 237 -1 \N 2024-02-12 21:54:07.886706 2024-02-12 21:54:07.886706 Spree::Shipment 610 +228 236 -1 \N 2024-02-12 21:54:07.9747 2024-02-12 21:54:07.9747 Spree::Shipment 610 +232 237 -1 \N 2024-02-12 21:54:24.070933 2024-02-12 21:54:24.070933 Spree::Shipment 612 +233 245 -1 \N 2024-02-12 21:54:24.156208 2024-02-12 21:54:24.156208 Spree::Shipment 612 +236 239 -1 \N 2024-02-12 21:58:25.922065 2024-02-12 21:58:25.922065 Spree::Shipment 620 +238 237 -1 \N 2024-02-12 21:59:01.102288 2024-02-12 21:59:01.102288 Spree::Shipment 630 +239 236 -1 \N 2024-02-12 21:59:01.191072 2024-02-12 21:59:01.191072 Spree::Shipment 630 +240 241 -1 \N 2024-02-12 21:59:01.280957 2024-02-12 21:59:01.280957 Spree::Shipment 630 +243 242 -2 \N 2024-02-12 21:59:21.195931 2024-02-12 21:59:21.195931 Spree::Shipment 629 +248 234 -1 \N 2024-02-12 22:03:56.266124 2024-02-12 22:03:56.266124 Spree::Shipment 643 +249 236 -1 \N 2024-02-12 22:03:56.358924 2024-02-12 22:03:56.358924 Spree::Shipment 643 +250 240 -1 \N 2024-02-12 22:04:16.676558 2024-02-12 22:04:16.676558 Spree::Shipment 644 +251 245 -1 \N 2024-02-12 22:04:16.756861 2024-02-12 22:04:16.756861 Spree::Shipment 644 +252 242 -1 \N 2024-02-12 22:04:27.096586 2024-02-12 22:04:27.096586 Spree::Shipment 645 +253 235 -1 \N 2024-02-12 22:04:27.17759 2024-02-12 22:04:27.17759 Spree::Shipment 645 +254 244 -1 \N 2024-02-12 22:07:16.673264 2024-02-12 22:07:16.673264 Spree::Shipment 651 +255 241 -1 \N 2024-02-12 22:07:54.047245 2024-02-12 22:07:54.047245 Spree::Shipment 657 +256 246 -1 \N 2024-02-12 22:07:54.139235 2024-02-12 22:07:54.139235 Spree::Shipment 657 +257 235 -1 \N 2024-02-12 22:07:54.221747 2024-02-12 22:07:54.221747 Spree::Shipment 657 +258 244 -1 \N 2024-02-12 22:09:12.398503 2024-02-12 22:09:12.398503 Spree::Shipment 668 +259 236 -2 \N 2024-02-12 22:09:12.493228 2024-02-12 22:09:12.493228 Spree::Shipment 668 +260 238 -1 \N 2024-02-12 22:09:20.802576 2024-02-12 22:09:20.802576 Spree::Shipment 664 +261 242 -1 \N 2024-02-12 22:09:20.901642 2024-02-12 22:09:20.901642 Spree::Shipment 664 +262 237 -1 \N 2024-02-12 22:09:27.866047 2024-02-12 22:09:27.866047 Spree::Shipment 667 +263 240 -1 \N 2024-02-12 22:09:27.950801 2024-02-12 22:09:27.950801 Spree::Shipment 667 +264 237 -1 \N 2024-02-12 22:13:18.267974 2024-02-12 22:13:18.267974 Spree::Shipment 675 +265 236 -1 \N 2024-02-12 22:13:18.35466 2024-02-12 22:13:18.35466 Spree::Shipment 675 +266 234 -1 \N 2024-02-12 22:13:21.499647 2024-02-12 22:13:21.499647 Spree::Shipment 682 +267 235 -1 \N 2024-02-12 22:13:21.602914 2024-02-12 22:13:21.602914 Spree::Shipment 682 +268 236 -1 \N 2024-02-12 22:13:21.692423 2024-02-12 22:13:21.692423 Spree::Shipment 682 +269 242 -1 \N 2024-02-12 22:14:36.21611 2024-02-12 22:14:36.21611 Spree::Shipment 687 +270 234 -1 \N 2024-02-12 22:14:36.357958 2024-02-12 22:14:36.357958 Spree::Shipment 687 +271 234 -1 \N 2024-02-12 22:15:01.013772 2024-02-12 22:15:01.013772 Spree::Shipment 689 +272 241 -1 \N 2024-02-12 22:15:01.101743 2024-02-12 22:15:01.101743 Spree::Shipment 689 +273 239 -1 \N 2024-02-12 22:17:53.257457 2024-02-12 22:17:53.257457 Spree::Shipment 692 +274 233 -1 \N 2024-02-12 22:18:04.162684 2024-02-12 22:18:04.162684 Spree::Shipment 698 +275 236 -1 \N 2024-02-12 22:18:04.26118 2024-02-12 22:18:04.26118 Spree::Shipment 698 +276 235 -1 \N 2024-02-12 22:18:18.769548 2024-02-12 22:18:18.769548 Spree::Shipment 694 +277 237 -1 \N 2024-02-12 22:18:21.989577 2024-02-12 22:18:21.989577 Spree::Shipment 700 +278 236 -1 \N 2024-02-12 22:18:22.075953 2024-02-12 22:18:22.075953 Spree::Shipment 700 +279 238 -1 \N 2024-02-12 22:18:22.166541 2024-02-12 22:18:22.166541 Spree::Shipment 700 +280 244 -1 \N 2024-02-12 22:18:42.442783 2024-02-12 22:18:42.442783 Spree::Shipment 701 +281 236 -1 \N 2024-02-12 22:18:42.522366 2024-02-12 22:18:42.522366 Spree::Shipment 701 +282 239 -1 \N 2024-02-12 22:18:42.599362 2024-02-12 22:18:42.599362 Spree::Shipment 701 +283 240 -2 \N 2024-02-12 22:18:45.101634 2024-02-12 22:18:45.101634 Spree::Shipment 699 +284 235 -1 \N 2024-02-12 22:22:48.786269 2024-02-12 22:22:48.786269 Spree::Shipment 709 +285 245 -1 \N 2024-02-12 22:23:03.947834 2024-02-12 22:23:03.947834 Spree::Shipment 713 +286 234 -1 \N 2024-02-12 22:23:04.064091 2024-02-12 22:23:04.064091 Spree::Shipment 713 +287 234 -1 \N 2024-02-12 22:23:10.93945 2024-02-12 22:23:10.93945 Spree::Shipment 715 +288 239 -1 \N 2024-02-12 22:23:11.027923 2024-02-12 22:23:11.027923 Spree::Shipment 715 +289 237 -1 \N 2024-02-12 22:23:35.529414 2024-02-12 22:23:35.529414 Spree::Shipment 716 +290 236 -1 \N 2024-02-12 22:23:35.619073 2024-02-12 22:23:35.619073 Spree::Shipment 716 +291 234 -1 \N 2024-02-12 22:23:35.753778 2024-02-12 22:23:35.753778 Spree::Shipment 716 +292 241 -1 \N 2024-02-12 22:27:17.111285 2024-02-12 22:27:17.111285 Spree::Shipment 725 +293 234 -1 \N 2024-02-12 22:27:19.3656 2024-02-12 22:27:19.3656 Spree::Shipment 726 +294 240 -1 \N 2024-02-12 22:27:48.547488 2024-02-12 22:27:48.547488 Spree::Shipment 732 +295 236 -2 \N 2024-02-12 22:27:48.62936 2024-02-12 22:27:48.62936 Spree::Shipment 732 +296 242 -1 \N 2024-02-12 22:28:05.534339 2024-02-12 22:28:05.534339 Spree::Shipment 730 +297 233 -1 \N 2024-02-12 22:28:05.614619 2024-02-12 22:28:05.614619 Spree::Shipment 730 +298 244 -2 \N 2024-02-12 22:32:17.939303 2024-02-12 22:32:17.939303 Spree::Shipment 741 +299 244 -1 \N 2024-02-12 22:32:28.580397 2024-02-12 22:32:28.580397 Spree::Shipment 746 +300 235 -1 \N 2024-02-12 22:32:28.663319 2024-02-12 22:32:28.663319 Spree::Shipment 746 +301 237 -1 \N 2024-02-12 22:32:28.743702 2024-02-12 22:32:28.743702 Spree::Shipment 746 +302 234 -1 \N 2024-02-12 22:33:41.21607 2024-02-12 22:33:41.21607 Spree::Shipment 755 +303 240 -1 \N 2024-02-12 22:33:41.297174 2024-02-12 22:33:41.297174 Spree::Shipment 755 +304 236 -1 \N 2024-02-12 22:33:41.37802 2024-02-12 22:33:41.37802 Spree::Shipment 755 +305 240 -1 \N 2024-02-12 22:33:56.173102 2024-02-12 22:33:56.173102 Spree::Shipment 753 +306 238 -1 \N 2024-02-12 22:33:56.264503 2024-02-12 22:33:56.264503 Spree::Shipment 753 +307 235 -1 \N 2024-02-12 22:35:00.209659 2024-02-12 22:35:00.209659 Spree::Shipment 759 +308 239 -1 \N 2024-02-12 22:35:00.29392 2024-02-12 22:35:00.29392 Spree::Shipment 759 +309 236 -1 \N 2024-02-12 22:35:00.37234 2024-02-12 22:35:00.37234 Spree::Shipment 759 +310 237 -1 \N 2024-02-12 22:35:00.46009 2024-02-12 22:35:00.46009 Spree::Shipment 759 +311 239 -1 \N 2024-02-12 22:37:38.864766 2024-02-12 22:37:38.864766 Spree::Shipment 760 +312 246 -1 \N 2024-02-12 22:37:41.579947 2024-02-12 22:37:41.579947 Spree::Shipment 762 +313 233 -1 \N 2024-02-12 22:38:14.630913 2024-02-12 22:38:14.630913 Spree::Shipment 769 +314 236 -1 \N 2024-02-12 22:38:14.712164 2024-02-12 22:38:14.712164 Spree::Shipment 769 +315 240 -1 \N 2024-02-12 22:38:14.81357 2024-02-12 22:38:14.81357 Spree::Shipment 769 +316 241 -1 \N 2024-02-12 22:38:36.281857 2024-02-12 22:38:36.281857 Spree::Shipment 770 +317 236 -1 \N 2024-02-12 22:38:36.37563 2024-02-12 22:38:36.37563 Spree::Shipment 770 +318 235 -1 \N 2024-02-12 22:38:36.467406 2024-02-12 22:38:36.467406 Spree::Shipment 770 +319 235 -1 \N 2024-02-12 22:38:45.635797 2024-02-12 22:38:45.635797 Spree::Shipment 772 +320 233 -1 \N 2024-02-12 22:38:45.721233 2024-02-12 22:38:45.721233 Spree::Shipment 772 +321 245 -1 \N 2024-02-12 22:38:45.796767 2024-02-12 22:38:45.796767 Spree::Shipment 772 +323 240 -1 \N 2024-02-12 22:42:30.47259 2024-02-12 22:42:30.47259 Spree::Shipment 783 +324 234 -1 \N 2024-02-12 22:42:57.762355 2024-02-12 22:42:57.762355 Spree::Shipment 792 +325 236 -1 \N 2024-02-12 22:42:57.849893 2024-02-12 22:42:57.849893 Spree::Shipment 792 +326 235 -1 \N 2024-02-12 22:42:57.942369 2024-02-12 22:42:57.942369 Spree::Shipment 792 +330 244 -1 \N 2024-02-12 22:43:10.564688 2024-02-12 22:43:10.564688 Spree::Shipment 789 +331 239 -1 \N 2024-02-12 22:43:10.650935 2024-02-12 22:43:10.650935 Spree::Shipment 789 +322 236 -3 \N 2024-02-12 22:39:40.048251 2024-02-12 22:39:40.048251 Spree::Shipment 776 +335 241 -1 \N 2024-02-12 22:47:59.469916 2024-02-12 22:47:59.469916 Spree::Shipment 799 +336 244 -1 \N 2024-02-12 22:48:01.182719 2024-02-12 22:48:01.182719 Spree::Shipment 800 +327 241 -1 \N 2024-02-12 22:43:00.526156 2024-02-12 22:43:00.526156 Spree::Shipment 793 +328 236 -1 \N 2024-02-12 22:43:00.607779 2024-02-12 22:43:00.607779 Spree::Shipment 793 +329 235 -1 \N 2024-02-12 22:43:00.69088 2024-02-12 22:43:00.69088 Spree::Shipment 793 +332 242 -1 \N 2024-02-12 22:43:32.34821 2024-02-12 22:43:32.34821 Spree::Shipment 794 +333 234 -1 \N 2024-02-12 22:43:32.43964 2024-02-12 22:43:32.43964 Spree::Shipment 794 +334 246 -1 \N 2024-02-12 22:43:32.568823 2024-02-12 22:43:32.568823 Spree::Shipment 794 +337 239 -1 \N 2024-02-12 22:48:28.867268 2024-02-12 22:48:28.867268 Spree::Shipment 803 +338 236 -1 \N 2024-02-12 22:48:29.021344 2024-02-12 22:48:29.021344 Spree::Shipment 803 +339 234 -1 \N 2024-02-12 22:48:45.757197 2024-02-12 22:48:45.757197 Spree::Shipment 805 +340 236 -1 \N 2024-02-12 22:48:45.884532 2024-02-12 22:48:45.884532 Spree::Shipment 805 +341 242 -1 \N 2024-02-12 22:48:46.000302 2024-02-12 22:48:46.000302 Spree::Shipment 805 +342 235 -1 \N 2024-02-12 22:52:19.331165 2024-02-12 22:52:19.331165 Spree::Shipment 816 +343 246 -1 \N 2024-02-12 22:52:19.432356 2024-02-12 22:52:19.432356 Spree::Shipment 816 +344 238 -1 \N 2024-02-12 22:52:22.53613 2024-02-12 22:52:22.53613 Spree::Shipment 817 +345 242 -1 \N 2024-02-12 22:52:22.649162 2024-02-12 22:52:22.649162 Spree::Shipment 817 +346 234 -1 \N 2024-02-12 22:52:24.505056 2024-02-12 22:52:24.505056 Spree::Shipment 818 +347 239 -1 \N 2024-02-12 22:52:24.610422 2024-02-12 22:52:24.610422 Spree::Shipment 818 +348 246 -1 \N 2024-02-12 22:52:58.447704 2024-02-12 22:52:58.447704 Spree::Shipment 820 +349 236 -1 \N 2024-02-12 22:52:58.586639 2024-02-12 22:52:58.586639 Spree::Shipment 820 +350 244 -1 \N 2024-02-12 22:52:58.706827 2024-02-12 22:52:58.706827 Spree::Shipment 820 +\. + + +-- +-- Data for Name: spree_stock_transfers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_stock_transfers (id, type, reference, source_location_id, destination_location_id, created_at, updated_at, number, public_metadata, private_metadata) FROM stdin; +\. + + +-- +-- Data for Name: spree_store_credit_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_store_credit_categories (id, name, created_at, updated_at) FROM stdin; +1 Default 2022-07-12 18:10:15.124218 2022-07-12 18:10:15.124218 +2 Non-expiring 2022-07-12 18:10:15.132929 2022-07-12 18:10:15.132929 +3 Expiring 2022-07-12 18:10:15.141368 2022-07-12 18:10:15.141368 +\. + + +-- +-- Data for Name: spree_store_credit_events; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_store_credit_events (id, store_credit_id, action, amount, authorization_code, user_total_amount, originator_id, originator_type, deleted_at, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_store_credit_types; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_store_credit_types (id, name, priority, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_store_credits; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_store_credits (id, user_id, category_id, created_by_id, amount, amount_used, memo, deleted_at, currency, amount_authorized, originator_id, originator_type, type_id, created_at, updated_at, store_id, public_metadata, private_metadata) FROM stdin; +\. + + +-- +-- Data for Name: spree_stores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_stores (id, name, url, meta_description, meta_keywords, seo_title, mail_from_address, default_currency, code, "default", created_at, updated_at, supported_currencies, facebook, twitter, instagram, default_locale, customer_support_email, default_country_id, description, address, contact_phone, new_order_notifications_email, checkout_zone_id, seo_robots, supported_locales, deleted_at, settings) FROM stdin; +2 EU Store eu.lvh.me:3000 \N \N \N eustore@example.com EUR eustore f 2022-07-12 18:13:09.659503 2022-07-12 18:16:24.666541 EUR \N \N \N de \N 54 \N \N \N \N 1 \N de,fr,es \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} +3 UK Store uk.lvh.me:3000 \N \N \N ukstore@example.com GBP ukstore f 2022-07-12 18:13:09.683842 2022-07-12 18:16:30.922302 GBP \N \N \N en \N 73 \N \N \N \N 2 \N en \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} +1 Spree Demo Site localhost:3000 This is the new Spree UX DEMO | OVERVIEW: http://bit.ly/new-spree-ux | DOCS: http://bit.ly/spree-ux-customization-docs | CONTACT: https://spreecommerce.org/contact/ \N Spree Commerce Demo Shop no-reply@example.com USD spree t 2022-07-12 18:10:15.205657 2022-09-02 19:01:55.33074 CAD,USD spreecommerce spreecommerce spreecommerce en support@example.com 224 \N \N \N \N 3 \N en,fr \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} +\. + + +-- +-- Data for Name: spree_tax_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_tax_categories (id, name, description, is_default, deleted_at, created_at, updated_at, tax_code) FROM stdin; +1 Clothing \N f \N 2022-07-12 18:13:10.454216 2022-07-12 18:13:10.454216 \N +\. + + +-- +-- Data for Name: spree_tax_rates; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_tax_rates (id, amount, zone_id, tax_category_id, included_in_price, created_at, updated_at, name, show_rate_in_label, deleted_at) FROM stdin; +1 0.10000 7 1 f 2022-07-12 18:13:10.50718 2022-07-12 18:13:10.50718 California t \N +\. + + +-- +-- Data for Name: spree_taxonomies; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_taxonomies (id, name, created_at, updated_at, "position", store_id, public_metadata, private_metadata) FROM stdin; +1 Categories 2022-07-12 18:13:13.006568 2024-02-12 22:52:58.776218 1 1 \N \N +2 Brands 2022-09-08 15:35:27.672175 2024-02-12 22:52:58.776218 2 1 \N \N +\. + + +-- +-- Data for Name: spree_taxons; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_taxons (id, parent_id, "position", name, permalink, taxonomy_id, lft, rgt, description, created_at, updated_at, meta_title, meta_description, meta_keywords, depth, hide_from_nav, public_metadata, private_metadata) FROM stdin; +18 1 0 New categories/new 1 2 3 \N 2022-07-12 18:13:16.06433 2024-02-12 22:52:24.567393 \N \N \N 1 f \N \N +19 1 0 Bestsellers categories/bestsellers 1 4 5 \N 2022-07-12 18:13:16.160785 2024-02-12 22:52:58.65843 \N \N \N 1 f \N \N +20 1 0 Events categories/events 1 6 7 2022-07-12 18:13:16.262337 2024-02-12 22:52:58.773708 1 f \N \N +29 1 0 Stickers categories/stickers 1 8 9 \N 2022-09-08 15:37:54.624775 2024-02-12 22:52:58.773708 \N \N \N 1 f \N \N +1 \N 0 Categories categories 1 1 10 \N 2022-07-12 18:13:13.056398 2024-02-12 22:52:58.773708 \N \N \N 0 f \N \N +28 27 0 Datadog brands/datadog 2 12 13 2022-09-08 15:35:33.979137 2024-02-12 22:52:58.773708 1 f \N \N +27 \N 0 Brands brands 2 11 14 \N 2022-09-08 15:35:27.70656 2024-02-12 22:52:58.773708 \N \N \N 0 f \N \N +\. + + +-- +-- Data for Name: spree_trackers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_trackers (id, analytics_id, active, created_at, updated_at, engine) FROM stdin; +\. + + +-- +-- Data for Name: spree_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_users (id, encrypted_password, password_salt, email, remember_token, persistence_token, reset_password_token, perishable_token, sign_in_count, failed_attempts, last_request_at, current_sign_in_at, last_sign_in_at, current_sign_in_ip, last_sign_in_ip, login, ship_address_id, bill_address_id, authentication_token, unlock_token, locked_at, reset_password_sent_at, created_at, updated_at, public_metadata, private_metadata, spree_api_key, remember_created_at, deleted_at, confirmation_token, confirmed_at, confirmation_sent_at) FROM stdin; +1 017c17daa9432dadaa5e366efec930442e224fa0bce40875d2abbb4c646ad49634b75e54e463d7d8eb7b5589f34f4bb441eb23a93c9595fea90f77ccbc0187db Z_xHp1AnU2Pym9r9i6Eo spree@example.com \N \N \N \N 2 0 \N 2022-09-02 18:32:11.429383 2022-07-12 18:19:30.851865 130.211.45.14 192.168.112.1 spree@example.com \N \N \N \N \N \N 2022-07-12 18:10:57.963932 2022-09-02 18:32:11.42984 \N \N f1482a3e59937d82768703f510481ce883ee7a147ecee0f7 \N \N \N \N \N +2 1cf82576bc3b69691fbb42eb91c9aef961eeb2a387aa8a095c7fc4f2899a85ccd9ce35e69c06ef5db597d08b48a4fc341183b9fc647acd1c5491247ffe9dc007 gu9U4KcwmLgNf1y3ySZ6 admin@storedog.com \N \N \N \N 4 0 \N 2024-02-12 20:09:33.818323 2022-09-13 20:48:56.222491 172.20.0.1 130.211.45.14 admin@storedog.com \N \N \N \N \N \N 2022-09-02 14:43:42.061842 2024-02-12 20:09:33.818705 \N \N \N \N \N \N \N \N +\. + + +-- +-- Data for Name: spree_variants; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_variants (id, sku, weight, height, width, depth, deleted_at, is_master, product_id, cost_price, "position", cost_currency, track_inventory, tax_category_id, updated_at, discontinue_on, created_at, public_metadata, private_metadata) FROM stdin; +46 Dresses_floralwrapdress_14.99 0.00 \N \N \N 2022-09-02 16:27:24.051667 t 46 \N 1 USD t \N 2022-09-02 16:27:24.005391 \N 2022-07-12 18:13:34.149084 \N \N +37 Skirts_midiskirtwithbottoms_40.99 0.00 \N \N \N 2022-09-02 16:28:29.23276 t 37 \N 1 USD t \N 2022-09-02 16:28:29.17789 \N 2022-07-12 18:13:30.711966 \N \N +45 Skirts_pleatedskirt2_17.99 0.00 \N \N \N 2022-09-02 16:28:32.968005 t 45 \N 1 USD t \N 2022-09-02 16:28:32.909776 \N 2022-07-12 18:13:33.627405 \N \N +43 Skirts_skatershortskirt_67.99 0.00 \N \N \N 2022-09-02 16:27:36.645343 t 43 \N 1 USD t \N 2022-09-02 16:27:36.60744 \N 2022-07-12 18:13:32.882839 \N \N +58 ShirtsandBlouses_semi-sheershirtwithfloralcuffs_91.99 0.00 \N \N \N 2022-09-02 16:27:41.438657 t 58 \N 1 USD t \N 2022-09-02 16:27:41.38346 \N 2022-07-12 18:13:38.530682 \N \N +7 Shirts_regularshirt_94.99 0.00 \N \N \N 2022-09-02 16:28:35.445368 t 7 \N 1 USD t \N 2022-09-02 16:28:35.39854 \N 2022-07-12 18:13:19.457637 \N \N +16 T-shirts_raw-edget-shirt_84.99 0.00 \N \N \N 2022-09-02 16:28:36.121348 t 16 \N 1 USD t \N 2022-09-02 16:28:36.079628 \N 2022-07-12 18:13:22.528645 \N \N +5 Shirts_shortsleeveshirt_55.99 0.00 \N \N \N 2022-09-02 16:27:42.714303 t 5 \N 1 USD t \N 2022-09-02 16:27:42.657976 \N 2022-07-12 18:13:18.775253 \N \N +4 Shirts_slimfitshirt_17.99 0.00 \N \N \N 2022-09-02 16:27:43.281653 t 4 \N 1 USD t \N 2022-09-02 16:27:43.238032 \N 2022-07-12 18:13:18.445029 \N \N +15 T-shirts_t-shirtwithholes_34.99 0.00 \N \N \N 2022-09-02 16:27:45.493878 t 15 \N 1 USD t \N 2022-09-02 16:27:45.451147 \N 2022-07-12 18:13:22.174284 \N \N +53 Dresses_printedslit-sleevesdress_76.99 0.00 \N \N \N 2022-09-02 16:28:38.625874 t 53 \N 1 USD t \N 2022-09-02 16:28:38.581324 \N 2022-07-12 18:13:36.725263 \N \N +28 JacketsandCoats_suedebikerjacket_33.99 0.00 \N \N \N 2022-09-02 16:27:46.100771 t 28 \N 1 USD t \N 2022-09-02 16:27:46.061841 \N 2022-07-12 18:13:27.111087 \N \N +6 Shirts_printedshortsleeveshirt_74.99 0.00 \N \N \N 2022-09-02 16:28:39.314498 t 6 \N 1 USD t \N 2022-09-02 16:28:39.277684 \N 2022-07-12 18:13:19.118316 \N \N +21 Sweaters_strippedjumper_88.99 0.00 \N \N \N 2022-09-02 16:27:46.680785 t 21 \N 1 USD t \N 2022-09-02 16:27:46.641971 \N 2022-07-12 18:13:24.451456 \N \N +51 Dresses_stripedshirtdress_87.99 0.00 \N \N \N 2022-09-02 16:27:47.404072 t 51 \N 1 USD t \N 2022-09-02 16:27:47.362162 \N 2022-07-12 18:13:35.993896 \N \N +59 ShirtsandBlouses_stripedshirt_60.99 0.00 \N \N \N 2022-09-02 16:27:48.087057 t 59 \N 1 USD t \N 2022-09-02 16:27:48.046063 \N 2022-07-12 18:13:38.87686 \N \N +230 Pants_printedpants_45.99_grey_xs 0.00 \N \N \N 2022-09-02 16:28:41.890146 f 114 45.99 2 USD t 1 2022-09-02 16:28:41.837277 \N 2022-07-12 18:15:32.033717 \N \N +57 Dresses_slitmaxidress_26.99 0.00 \N \N \N 2022-09-02 16:27:53.451263 t 57 \N 1 USD t \N 2022-09-02 16:27:53.405892 \N 2022-07-12 18:13:38.185924 \N \N +52 Dresses_printeddress_83.99 0.00 \N \N \N 2022-09-02 16:28:42.460959 t 52 \N 1 USD t \N 2022-09-02 16:28:42.41562 \N 2022-07-12 18:13:36.361534 \N \N +42 Skirts_skaterskirt_17.99 0.00 \N \N \N 2022-09-02 16:27:53.98248 t 42 \N 1 USD t \N 2022-09-02 16:27:53.92359 \N 2022-07-12 18:13:32.524376 \N \N +26 Sweaters_zippedhighnecksweater_67.99 0.00 \N \N \N 2022-09-02 16:28:01.115989 t 26 \N 1 USD t \N 2022-09-02 16:28:01.075717 \N 2022-07-12 18:13:26.314655 \N \N +12 T-shirts_polot-shirt_52.99 0.00 \N \N \N 2022-09-02 16:28:43.263043 t 12 \N 1 USD t \N 2022-09-02 16:28:43.218479 \N 2022-07-12 18:13:21.153267 \N \N +32 JacketsandCoats_wool-blendshortcoat_27.99 0.00 \N \N \N 2022-09-02 16:28:01.733546 t 32 \N 1 USD t \N 2022-09-02 16:28:01.690755 \N 2022-07-12 18:13:28.883618 \N \N +178 ShirtsandBlouses_pleatedsleevev-neckshirt_28.99_orange_xs 0.00 \N \N \N 2022-09-02 16:28:44.447988 f 62 28.99 2 USD t 1 2022-09-02 16:28:44.388545 \N 2022-07-12 18:15:24.188046 \N \N +229 Pants_pants_50.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:46.977167 f 113 50.99 2 USD t 1 2022-09-02 16:28:46.924925 \N 2022-07-12 18:15:31.905511 \N \N +34 JacketsandCoats_wool-blendcoat_35.99 0.00 \N \N \N 2022-09-02 16:28:03.039371 t 34 \N 1 USD t \N 2022-09-02 16:28:02.997621 \N 2022-07-12 18:13:29.611553 \N \N +3 Shirts_coveredplacketshirt_99.99 0.00 \N \N \N 2022-09-02 16:25:54.065104 t 3 \N 1 USD t \N 2022-09-02 16:25:54.02392 \N 2022-07-12 18:13:18.106026 \N \N +36 Skirts_flaredmidiskirt_21.99 0.00 \N \N \N 2022-09-02 16:26:03.353912 t 36 \N 1 USD t \N 2022-09-02 16:26:03.297544 \N 2022-07-12 18:13:30.344098 \N \N +48 Dresses_flareddress_81.99 0.00 \N \N \N 2022-09-02 16:26:04.139052 t 48 \N 1 USD t \N 2022-09-02 16:26:04.07464 \N 2022-07-12 18:13:34.899604 \N \N +60 ShirtsandBlouses_v-neckwideshirt_68.99 0.00 \N \N \N 2022-09-02 16:28:03.732031 t 60 \N 1 USD t \N 2022-09-02 16:28:03.680404 \N 2022-07-12 18:13:39.3651 \N \N +49 Dresses_elegantflareddress_55.99 0.00 \N \N \N 2022-09-02 16:26:05.072422 t 49 \N 1 USD t \N 2022-09-02 16:26:05.014675 \N 2022-07-12 18:13:35.255036 \N \N +54 Dresses_dresswithbelt_36.99 0.00 \N \N \N 2022-09-02 16:26:06.355821 t 54 \N 1 USD t \N 2022-09-02 16:26:06.308444 \N 2022-07-12 18:13:37.096464 \N \N +33 JacketsandCoats_downjacketwithhood_64.99 0.00 \N \N \N 2022-09-02 16:26:07.037549 t 33 \N 1 USD t \N 2022-09-02 16:26:06.981809 \N 2022-07-12 18:13:29.251612 \N \N +9 Shirts_dottedshirt_33.99 0.00 \N \N \N 2022-09-02 16:26:08.915185 t 9 \N 1 USD t \N 2022-09-02 16:26:08.869418 \N 2022-07-12 18:13:20.142839 \N \N +1 Shirts_denimshirt_24.99 0.00 \N \N \N 2022-09-02 16:26:09.621482 t 1 \N 1 USD t \N 2022-09-02 16:26:09.580526 \N 2022-07-12 18:13:17.278307 \N \N +41 Skirts_flaredskirt_74.99 0.00 \N \N \N 2022-09-02 16:26:59.899398 t 41 \N 1 USD t \N 2022-09-02 16:26:59.837831 \N 2022-07-12 18:13:32.160666 \N \N +44 Skirts_floralflaredskirt_10.99 0.00 \N \N \N 2022-09-02 16:27:01.199664 t 44 \N 1 USD t \N 2022-09-02 16:27:01.154861 \N 2022-07-12 18:13:33.256328 \N \N +66 ShirtsandBlouses_floralshirt_72.99 0.00 \N \N \N 2022-09-02 16:27:01.996118 t 66 \N 1 USD t \N 2022-09-02 16:27:01.928484 \N 2022-07-12 18:13:41.464928 \N \N +56 Dresses_flounceddress_32.99 0.00 \N \N \N 2022-09-02 16:27:02.64798 t 56 \N 1 USD t \N 2022-09-02 16:27:02.59889 \N 2022-07-12 18:13:37.833355 \N \N +17 T-shirts_v-neckt-shirt_47.99 0.00 \N \N \N 2022-09-02 16:28:04.419913 t 17 \N 1 USD t \N 2022-09-02 16:28:04.378221 \N 2022-07-12 18:13:23.018076 \N \N +35 JacketsandCoats_jacketwithliner_73.99 0.00 \N \N \N 2022-09-02 16:27:05.323416 t 35 \N 1 USD t \N 2022-09-02 16:27:05.279356 \N 2022-07-12 18:13:29.981032 \N \N +40 Skirts_leatherskirtwithlacing_46.99 0.00 \N \N \N 2022-09-02 16:27:09.011798 t 40 \N 1 USD t \N 2022-09-02 16:27:08.963317 \N 2022-07-12 18:13:31.803298 \N \N +10 Shirts_linenshirt_87.99 0.00 \N \N \N 2022-09-02 16:27:09.843474 t 10 \N 1 USD t \N 2022-09-02 16:27:09.8027 \N 2022-07-12 18:13:20.488531 \N \N +27 Sweaters_longsleevejumper_64.99 0.00 \N \N \N 2022-09-02 16:27:10.582728 t 27 \N 1 USD t \N 2022-09-02 16:27:10.538459 \N 2022-07-12 18:13:26.680535 \N \N +13 T-shirts_longsleevet-shirt_28.99 0.00 \N \N \N 2022-09-02 16:27:12.917893 t 13 \N 1 USD t \N 2022-09-02 16:27:12.873076 \N 2022-07-12 18:13:21.489469 \N \N +50 Dresses_longsleeveknitteddress_23.99 0.00 \N \N \N 2022-09-02 16:27:14.139573 t 50 \N 1 USD t \N 2022-09-02 16:27:14.087941 \N 2022-07-12 18:13:35.611949 \N \N +22 Sweaters_longsleevejumperwithpocket_93.99 0.00 \N \N \N 2022-09-02 16:27:14.803899 t 22 \N 1 USD t \N 2022-09-02 16:27:14.75998 \N 2022-07-12 18:13:24.81014 \N \N +23 Sweaters_jumper_61.99 0.00 \N \N \N 2022-09-02 16:27:18.400015 t 23 \N 1 USD t \N 2022-09-02 16:27:18.355994 \N 2022-07-12 18:13:25.155502 \N \N +25 Sweaters_hoodie_24.99 0.00 \N \N \N 2022-09-02 16:27:21.420616 t 25 \N 1 USD t \N 2022-09-02 16:27:21.381553 \N 2022-07-12 18:13:25.873591 \N \N +47 Dresses_v-neckfloralmaxidress_31.99 0.00 \N \N \N 2022-09-02 16:28:06.212788 t 47 \N 1 USD t \N 2022-09-02 16:28:06.155188 \N 2022-07-12 18:13:34.52817 \N \N +20 Sweaters_highnecksweater_45.99 0.00 \N \N \N 2022-09-02 16:27:23.296418 t 20 \N 1 USD t \N 2022-09-02 16:27:23.252862 \N 2022-07-12 18:13:24.097249 \N \N +55 Dresses_v-neckfloraldress_73.99 0.00 \N \N \N 2022-09-02 16:28:06.891602 t 55 \N 1 USD t \N 2022-09-02 16:28:06.852374 \N 2022-07-12 18:13:37.452035 \N \N +18 T-shirts_tanktop_10.99 0.00 \N \N \N 2022-09-02 16:28:07.431801 t 18 \N 1 USD t \N 2022-09-02 16:28:07.389363 \N 2022-07-12 18:13:23.365655 \N \N +162 Dresses_floralwrapdress_14.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:27:24.14378 f 46 14.99 2 USD t 1 2022-09-02 16:27:24.078791 \N 2022-07-12 18:15:20.424697 \N \N +91 JacketsandCoats_loose-fittedjacket_43.99 0.00 \N \N \N 2022-09-02 16:28:28.408865 t 91 \N 1 USD t \N 2022-09-02 16:28:28.367695 \N 2022-07-12 18:13:51.733944 \N \N +80 TopsandT-shirts_scrappycroptopwithtie_46.99 0.00 \N \N \N 2022-09-02 16:27:34.280149 t 80 \N 1 USD t \N 2022-09-02 16:27:34.221845 \N 2022-07-12 18:13:47.372456 \N \N +78 TopsandT-shirts_scrappytop_40.99 0.00 \N \N \N 2022-09-02 16:27:34.774698 t 78 \N 1 USD t \N 2022-09-02 16:27:34.724551 \N 2022-07-12 18:13:46.53476 \N \N +99 Tops_oversizet-shirtwrappedonback_76.99 0.00 \N \N \N 2022-09-02 16:28:31.22779 t 99 \N 1 USD t \N 2022-09-02 16:28:31.189501 \N 2022-07-12 18:13:54.846809 \N \N +71 Sweaters_oversizedknittedsweater_24.99 0.00 \N \N \N 2022-09-02 16:28:31.774534 t 71 \N 1 USD t \N 2022-09-02 16:28:31.725479 \N 2022-07-12 18:13:43.3256 \N \N +72 Sweaters_oversizedsweatshirt_86.99 0.00 \N \N \N 2022-09-02 16:28:32.333955 t 72 \N 1 USD t \N 2022-09-02 16:28:32.29144 \N 2022-07-12 18:13:43.676766 \N \N +111 Pants_shortpants_14.99 0.00 \N \N \N 2022-09-02 16:27:35.933236 t 111 \N 1 USD t \N 2022-09-02 16:27:35.888896 \N 2022-07-12 18:13:59.435193 \N \N +227 Pants_shortpants_14.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:36.029665 f 111 14.99 2 USD t 1 2022-09-02 16:27:35.971936 \N 2022-07-12 18:15:31.61544 \N \N +123 Shirts_regularshirt_94.99_blue_xs 0.00 \N \N \N 2022-09-02 16:28:35.552512 f 7 94.99 2 USD t 1 2022-09-02 16:28:35.489896 \N 2022-07-12 18:15:13.927919 \N \N +110 Pants_shinedpants_73.99 0.00 \N \N \N 2022-09-02 16:27:42.082222 t 110 \N 1 USD t \N 2022-09-02 16:27:42.035375 \N 2022-07-12 18:13:59.082328 \N \N +61 ShirtsandBlouses_printedwrappedblouse_15.99 0.00 \N \N \N 2022-09-02 16:28:36.810688 t 61 \N 1 USD t \N 2022-09-02 16:28:36.767736 \N 2022-07-12 18:13:39.721106 \N \N +102 Tops_sportsbramediumsupport_29.99 0.00 \N \N \N 2022-09-02 16:27:48.643156 t 102 \N 1 USD t \N 2022-09-02 16:27:48.598303 \N 2022-07-12 18:13:55.941681 \N \N +77 TopsandT-shirts_printedt-shirt_30.99 0.00 \N \N \N 2022-09-02 16:28:38.011934 t 77 \N 1 USD t \N 2022-09-02 16:28:37.967601 \N 2022-07-12 18:13:45.768345 \N \N +69 ShirtsandBlouses_printedshirt_46.99 0.00 \N \N \N 2022-09-02 16:28:40.039826 t 69 \N 1 USD t \N 2022-09-02 16:28:39.998653 \N 2022-07-12 18:13:42.598927 \N \N +112 Pants_printedpantswithholes_45.99 0.00 \N \N \N 2022-09-02 16:28:41.194112 t 112 \N 1 USD t \N 2022-09-02 16:28:41.150016 \N 2022-07-12 18:13:59.786966 \N \N +97 Tops_sportsbralowsupport_41.99 0.00 \N \N \N 2022-09-02 16:27:49.476773 t 97 \N 1 USD t \N 2022-09-02 16:27:49.437841 \N 2022-07-12 18:13:54.146383 \N \N +114 Pants_printedpants_45.99 0.00 \N \N \N 2022-09-02 16:28:41.811248 t 114 \N 1 USD t \N 2022-09-02 16:28:41.770356 \N 2022-07-12 18:14:00.662845 \N \N +128 T-shirts_polot-shirt_52.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:28:43.364421 f 12 52.99 2 USD t 1 2022-09-02 16:28:43.299573 \N 2022-07-12 18:15:14.629967 \N \N +103 Tops_sportsbra_79.99 0.00 \N \N \N 2022-09-02 16:27:49.967555 t 103 \N 1 USD t \N 2022-09-02 16:27:49.929603 \N 2022-07-12 18:13:56.364974 \N \N +108 Sweatshirts_sportwindproofjacket_54.99 0.00 \N \N \N 2022-09-02 16:27:50.68162 t 108 \N 1 USD t \N 2022-09-02 16:27:50.638146 \N 2022-07-12 18:13:58.33504 \N \N +109 Sweatshirts_sportwaistcoat_71.99 0.00 \N \N \N 2022-09-02 16:27:51.264163 t 109 \N 1 USD t \N 2022-09-02 16:27:51.22469 \N 2022-07-12 18:13:58.734436 \N \N +104 Tops_sportcropptop_47.99 0.00 \N \N \N 2022-09-02 16:27:52.750756 t 104 \N 1 USD t \N 2022-09-02 16:27:52.69484 \N 2022-07-12 18:13:56.85845 \N \N +90 JacketsandCoats_zippedjacket_28.99 0.00 \N \N \N 2022-09-02 16:28:00.482561 t 90 \N 1 USD t \N 2022-09-02 16:28:00.441982 \N 2022-07-12 18:13:51.278269 \N \N +62 ShirtsandBlouses_pleatedsleevev-neckshirt_28.99 0.00 \N \N \N 2022-09-02 16:28:44.353569 t 62 \N 1 USD t \N 2022-09-02 16:28:44.296019 \N 2022-07-12 18:13:40.07126 \N \N +124 Shirts_checkedslimfitshirt_27.99_black_xs 0.00 \N \N \N 2022-09-02 16:25:48.76213 f 8 27.99 2 USD t 1 2022-09-02 16:25:48.699256 \N 2022-07-12 18:15:14.059946 \N \N +85 JacketsandCoats_coatwithpockets_27.99 0.00 \N \N \N 2022-09-02 16:25:50.404762 t 85 \N 1 USD t \N 2022-09-02 16:25:50.363476 \N 2022-07-12 18:13:49.209388 \N \N +63 ShirtsandBlouses_cottonshirt_17.99 0.00 \N \N \N 2022-09-02 16:25:52.048839 t 63 \N 1 USD t \N 2022-09-02 16:25:52.006234 \N 2022-07-12 18:13:40.404525 \N \N +119 Shirts_coveredplacketshirt_99.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:25:54.15683 f 3 99.99 2 USD t 1 2022-09-02 16:25:54.092854 \N 2022-07-12 18:15:13.339516 \N \N +81 TopsandT-shirts_croptop_60.99 0.00 \N \N \N 2022-09-02 16:25:56.046161 t 81 \N 1 USD t \N 2022-09-02 16:25:55.98781 \N 2022-07-12 18:13:47.726298 \N \N +76 TopsandT-shirts_croptopwithtie_96.99 0.00 \N \N \N 2022-09-02 16:25:57.854051 t 76 \N 1 USD t \N 2022-09-02 16:25:57.810885 \N 2022-07-12 18:13:45.362221 \N \N +75 Sweaters_croppedfittedsweater_92.99 0.00 \N \N \N 2022-09-02 16:25:59.495627 t 75 \N 1 USD t \N 2022-09-02 16:25:59.455168 \N 2022-07-12 18:13:44.985947 \N \N +65 ShirtsandBlouses_elegantblousewithchocker_19.99 0.00 \N \N \N 2022-09-02 16:26:05.74851 t 65 \N 1 USD t \N 2022-09-02 16:26:05.703803 \N 2022-07-12 18:13:41.093327 \N \N +89 JacketsandCoats_downjacket_59.99 0.00 \N \N \N 2022-09-02 16:26:07.523043 t 89 \N 1 USD t \N 2022-09-02 16:26:07.47837 \N 2022-07-12 18:13:50.867977 \N \N +92 JacketsandCoats_double-breastedjacket_50.99 0.00 \N \N \N 2022-09-02 16:26:08.142966 t 92 \N 1 USD t \N 2022-09-02 16:26:08.099574 \N 2022-07-12 18:13:52.214767 \N \N +125 Shirts_dottedshirt_33.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:09.002988 f 9 33.99 2 USD t 1 2022-09-02 16:26:08.944393 \N 2022-07-12 18:15:14.198049 \N \N +116 Pants_highwaistpants_20.99 0.00 \N \N \N 2022-09-02 16:27:03.450137 t 116 \N 1 USD t \N 2022-09-02 16:27:03.399484 \N 2022-07-12 18:14:01.365089 \N \N +74 Sweaters_knittedv-necksweater_17.99 0.00 \N \N \N 2022-09-02 16:27:07.179876 t 74 \N 1 USD t \N 2022-09-02 16:27:07.138688 \N 2022-07-12 18:13:44.438445 \N \N +101 Tops_lacedcroptop_11.99 0.00 \N \N \N 2022-09-02 16:27:08.048753 t 101 \N 1 USD t \N 2022-09-02 16:27:07.996964 \N 2022-07-12 18:13:55.55447 \N \N +68 ShirtsandBlouses_v-neckshirt_87.99 0.00 \N \N \N 2022-09-02 16:28:04.977989 t 68 \N 1 USD t \N 2022-09-02 16:28:04.905895 \N 2022-07-12 18:13:42.212788 \N \N +129 T-shirts_longsleevet-shirt_28.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:13.020644 f 13 28.99 2 USD t 1 2022-09-02 16:27:12.95165 \N 2022-07-12 18:15:14.819033 \N \N +88 JacketsandCoats_longcoatwithbelt_47.99 0.00 \N \N \N 2022-09-02 16:27:15.39564 t 88 \N 1 USD t \N 2022-09-02 16:27:15.353977 \N 2022-07-12 18:13:50.318911 \N \N +106 Sweatshirts_lightweightrunningjacket_52.99 0.00 \N \N \N 2022-09-02 16:27:16.124865 t 106 \N 1 USD t \N 2022-09-02 16:27:16.079378 \N 2022-07-12 18:13:57.602507 \N \N +93 JacketsandCoats_leatherbikerjacket_26.99 0.00 \N \N \N 2022-09-02 16:27:16.91678 t 93 \N 1 USD t \N 2022-09-02 16:27:16.877391 \N 2022-07-12 18:13:52.596401 \N \N +115 Pants_highwaistpantswithpockets_92.99 0.00 \N \N \N 2022-09-02 16:27:22.589577 t 115 \N 1 USD t \N 2022-09-02 16:27:22.545781 \N 2022-07-12 18:14:01.016981 \N \N +100 Tops_longsleevescroptop_34.99 0.00 \N \N \N 2022-09-02 16:28:18.683841 t 100 \N 1 USD t \N 2022-09-02 16:28:18.644172 \N 2022-07-12 18:13:55.201393 \N \N +98 Tops_longsleevesyogacroptop_37.99 0.00 \N \N \N 2022-09-02 16:28:19.262344 t 98 \N 1 USD t \N 2022-09-02 16:28:19.223875 \N 2022-07-12 18:13:54.491579 \N \N +86 JacketsandCoats_longwool-blendcoatwithbelt_43.99 0.00 \N \N \N 2022-09-02 16:28:19.895498 t 86 \N 1 USD t \N 2022-09-02 16:28:19.857404 \N 2022-07-12 18:13:49.570722 \N \N +107 Sweatshirts_oversizesweatshirt_67.99 0.00 \N \N \N 2022-09-02 16:28:20.863512 t 107 \N 1 USD t \N 2022-09-02 16:28:20.822905 \N 2022-07-12 18:13:57.977045 \N \N +79 TopsandT-shirts_pleatedsleevet-shirt_83.99 0.00 \N \N \N 2022-09-02 16:28:45.056474 t 79 \N 1 USD t \N 2022-09-02 16:28:45.015383 \N 2022-07-12 18:13:46.976331 \N \N +113 Pants_pants_50.99 0.00 \N \N \N 2022-09-02 16:28:46.897303 t 113 \N 1 USD t \N 2022-09-02 16:28:46.856165 \N 2022-07-12 18:14:00.22087 \N \N +228 Pants_printedpantswithholes_45.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:41.286039 f 112 45.99 2 USD t 1 2022-09-02 16:28:41.220897 \N 2022-07-12 18:15:31.757608 \N \N +187 Sweaters_oversizedknittedsweater_24.99_red_xs 0.00 \N \N \N 2022-09-02 16:28:31.858241 f 71 24.99 2 USD t 1 2022-09-02 16:28:31.800983 \N 2022-07-12 18:15:25.582655 \N \N +11 Shirts_regularshirtwithrolledupsleeves_98.99 0.00 \N \N \N 2022-09-02 16:27:31.599052 t 11 \N 1 USD t \N 2022-09-02 16:27:31.556833 \N 2022-07-12 18:13:20.818637 \N \N +127 Shirts_regularshirtwithrolledupsleeves_98.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:31.679903 f 11 98.99 2 USD t 1 2022-09-02 16:27:31.625013 \N 2022-07-12 18:15:14.492009 \N \N +105 Sweatshirts_runningsweatshirt_17.99 0.00 \N \N \N 2022-09-02 16:27:33.662114 t 105 \N 1 USD t \N 2022-09-02 16:27:33.615893 \N 2022-07-12 18:13:57.216205 \N \N +224 Sweatshirts_sportwindproofjacket_54.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:50.772401 f 108 54.99 2 USD t 1 2022-09-02 16:27:50.713407 \N 2022-07-12 18:15:31.15113 \N \N +188 Sweaters_oversizedsweatshirt_86.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:32.412223 f 72 86.99 2 USD t 1 2022-09-02 16:28:32.35847 \N 2022-07-12 18:15:25.720664 \N \N +161 Skirts_pleatedskirt2_17.99_green_mini_xs 0.00 \N \N \N 2022-09-02 16:28:33.068674 f 45 17.99 2 USD t 1 2022-09-02 16:28:32.998685 \N 2022-07-12 18:15:20.036528 \N \N +144 JacketsandCoats_suedebikerjacket_33.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:46.194178 f 28 33.99 2 USD t 1 2022-09-02 16:27:46.130439 \N 2022-07-12 18:15:17.027655 \N \N +132 T-shirts_raw-edget-shirt_84.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:36.205487 f 16 84.99 2 USD t 1 2022-09-02 16:28:36.147856 \N 2022-07-12 18:15:15.226759 \N \N +137 Sweaters_strippedjumper_88.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:46.763092 f 21 88.99 2 USD t 1 2022-09-02 16:27:46.707109 \N 2022-07-12 18:15:16.011332 \N \N +167 Dresses_stripedshirtdress_87.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:27:47.495932 f 51 87.99 2 USD t 1 2022-09-02 16:27:47.433788 \N 2022-07-12 18:15:21.503862 \N \N +94 JacketsandCoats_wool-blendcoatwithbelt_13.99 0.00 \N \N \N 2022-09-02 16:28:02.464498 t 94 \N 1 USD t \N 2022-09-02 16:28:02.416184 \N 2022-07-12 18:13:52.987407 \N \N +185 ShirtsandBlouses_printedshirt_46.99_green_xs 0.00 \N \N \N 2022-09-02 16:28:40.118126 f 69 46.99 2 USD t 1 2022-09-02 16:28:40.066667 \N 2022-07-12 18:15:25.217615 \N \N +158 Skirts_skaterskirt_17.99_brown_mini_xs 0.00 \N \N \N 2022-09-02 16:27:54.073185 f 42 17.99 2 USD t 1 2022-09-02 16:27:54.011765 \N 2022-07-12 18:15:19.469858 \N \N +142 Sweaters_zippedhighnecksweater_67.99_green_xs 0.00 \N \N \N 2022-09-02 16:28:01.222573 f 26 67.99 2 USD t 1 2022-09-02 16:28:01.144397 \N 2022-07-12 18:15:16.73958 \N \N +148 JacketsandCoats_wool-blendshortcoat_27.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:01.829392 f 32 27.99 2 USD t 1 2022-09-02 16:28:01.766574 \N 2022-07-12 18:15:17.656374 \N \N +202 JacketsandCoats_longwool-blendcoatwithbelt_43.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:28:19.978618 f 86 43.99 2 USD t 1 2022-09-02 16:28:19.920506 \N 2022-07-12 18:15:27.992448 \N \N +176 ShirtsandBlouses_v-neckwideshirt_68.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:28:03.829578 f 60 68.99 2 USD t 1 2022-09-02 16:28:03.763336 \N 2022-07-12 18:15:23.86542 \N \N +133 T-shirts_v-neckt-shirt_47.99_grey_xs 0.00 \N \N \N 2022-09-02 16:28:04.507918 f 17 47.99 2 USD t 1 2022-09-02 16:28:04.446266 \N 2022-07-12 18:15:15.402611 \N \N +184 ShirtsandBlouses_v-neckshirt_87.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:05.07162 f 68 87.99 2 USD t 1 2022-09-02 16:28:05.011298 \N 2022-07-12 18:15:25.057849 \N \N +152 Skirts_flaredmidiskirt_21.99_burgundy_mini_xs 0.00 \N \N \N 2022-09-02 16:26:03.473466 f 36 21.99 2 USD t 1 2022-09-02 16:26:03.396119 \N 2022-07-12 18:15:18.302424 \N \N +164 Dresses_flareddress_81.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:26:04.253403 f 48 81.99 2 USD t 1 2022-09-02 16:26:04.173309 \N 2022-07-12 18:15:20.838618 \N \N +165 Dresses_elegantflareddress_55.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:26:05.217296 f 49 55.99 2 USD t 1 2022-09-02 16:26:05.136073 \N 2022-07-12 18:15:21.047071 \N \N +181 ShirtsandBlouses_elegantblousewithchocker_19.99_mint_xs 0.00 \N \N \N 2022-09-02 16:26:05.835473 f 65 19.99 2 USD t 1 2022-09-02 16:26:05.776838 \N 2022-07-12 18:15:24.582466 \N \N +170 Dresses_dresswithbelt_36.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:26:06.715579 f 54 36.99 2 USD t 1 2022-09-02 16:26:06.471029 \N 2022-07-12 18:15:22.197143 \N \N +149 JacketsandCoats_downjacketwithhood_64.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:26:07.127135 f 33 64.99 2 USD t 1 2022-09-02 16:26:07.068328 \N 2022-07-12 18:15:17.792208 \N \N +147 JacketsandCoats_denimjacket_76.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:26:10.408016 f 31 76.99 2 USD t 1 2022-09-02 16:26:10.338523 \N 2022-07-12 18:15:17.519267 \N \N +157 Skirts_flaredskirt_74.99_orange_mini_xs 0.00 \N \N \N 2022-09-02 16:27:00.000501 f 41 74.99 2 USD t 1 2022-09-02 16:26:59.930591 \N 2022-07-12 18:15:19.291507 \N \N +182 ShirtsandBlouses_floralshirt_72.99_pink_xs 0.00 \N \N \N 2022-09-02 16:27:02.092458 f 66 72.99 2 USD t 1 2022-09-02 16:27:02.027517 \N 2022-07-12 18:15:24.754232 \N \N +172 Dresses_flounceddress_32.99_beige_mini_xs 0.00 \N \N \N 2022-09-02 16:27:02.752623 f 56 32.99 2 USD t 1 2022-09-02 16:27:02.678681 \N 2022-07-12 18:15:23.201184 \N \N +145 JacketsandCoats_hoodedjacket_11.99_beige_xs 0.00 \N \N \N 2022-09-02 16:27:04.317928 f 29 11.99 2 USD t 1 2022-09-02 16:27:04.259871 \N 2022-07-12 18:15:17.233116 \N \N +151 JacketsandCoats_jacketwithliner_73.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:05.409868 f 35 73.99 2 USD t 1 2022-09-02 16:27:05.35208 \N 2022-07-12 18:15:18.155236 \N \N +190 Sweaters_knittedv-necksweater_17.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:07.262829 f 74 17.99 2 USD t 1 2022-09-02 16:27:07.207052 \N 2022-07-12 18:15:26.03684 \N \N +171 Dresses_v-neckfloraldress_73.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:06.975571 f 55 73.99 2 USD t 1 2022-09-02 16:28:06.915753 \N 2022-07-12 18:15:22.625338 \N \N +143 Sweaters_longsleevejumper_64.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:27:10.668359 f 27 64.99 2 USD t 1 2022-09-02 16:27:10.610874 \N 2022-07-12 18:15:16.86765 \N \N +140 Sweaters_longsleevesweatshirt_73.99_mint_xs 0.00 \N \N \N 2022-09-02 16:27:13.594964 f 24 73.99 2 USD t 1 2022-09-02 16:27:13.509798 \N 2022-07-12 18:15:16.42043 \N \N +166 Dresses_longsleeveknitteddress_23.99_grey_mini_xs 0.00 \N \N \N 2022-09-02 16:27:14.23831 f 50 23.99 2 USD t 1 2022-09-02 16:27:14.172502 \N 2022-07-12 18:15:21.246726 \N \N +138 Sweaters_longsleevejumperwithpocket_93.99_ecru_xs 0.00 \N \N \N 2022-09-02 16:27:14.894952 f 22 93.99 2 USD t 1 2022-09-02 16:27:14.8367 \N 2022-07-12 18:15:16.14429 \N \N +189 Sweaters_knittedhighnecksweater_86.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:17.522917 f 73 86.99 2 USD t 1 2022-09-02 16:27:17.46347 \N 2022-07-12 18:15:25.850981 \N \N +139 Sweaters_jumper_61.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:18.480182 f 23 61.99 2 USD t 1 2022-09-02 16:27:18.425627 \N 2022-07-12 18:15:16.278994 \N \N +141 Sweaters_hoodie_24.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:21.495281 f 25 24.99 2 USD t 1 2022-09-02 16:27:21.444867 \N 2022-07-12 18:15:16.61067 \N \N +136 Sweaters_highnecksweater_45.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:23.380948 f 20 45.99 2 USD t 1 2022-09-02 16:27:23.321559 \N 2022-07-12 18:15:15.868786 \N \N +134 T-shirts_tanktop_10.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:07.522773 f 18 10.99 2 USD t 1 2022-09-02 16:28:07.457783 \N 2022-07-12 18:15:15.552987 \N \N +207 JacketsandCoats_loose-fittedjacket_43.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:28:28.49236 f 91 43.99 2 USD t 1 2022-09-02 16:28:28.433109 \N 2022-07-12 18:15:28.666324 \N \N +221 Sweatshirts_runningsweatshirt_17.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:33.778162 f 105 17.99 2 USD t 1 2022-09-02 16:27:33.697093 \N 2022-07-12 18:15:30.763151 \N \N +215 Tops_oversizet-shirtwrappedonback_76.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:31.300318 f 99 76.99 2 USD t 1 2022-09-02 16:28:31.250523 \N 2022-07-12 18:15:29.852532 \N \N +196 TopsandT-shirts_scrappycroptopwithtie_46.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:34.370142 f 80 46.99 2 USD t 1 2022-09-02 16:27:34.309639 \N 2022-07-12 18:15:26.986256 \N \N +194 TopsandT-shirts_scrappytop_40.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:34.861676 f 78 40.99 2 USD t 1 2022-09-02 16:27:34.806622 \N 2022-07-12 18:15:26.713421 \N \N +177 ShirtsandBlouses_printedwrappedblouse_15.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:36.892985 f 61 15.99 2 USD t 1 2022-09-02 16:28:36.83716 \N 2022-07-12 18:15:24.041195 \N \N +67 ShirtsandBlouses_semi-sheershirtwithpockets_36.99 0.00 \N \N \N 2022-09-02 16:27:35.471903 t 67 \N 1 USD t \N 2022-09-02 16:27:35.425615 \N 2022-07-12 18:13:41.825593 \N \N +193 TopsandT-shirts_printedt-shirt_30.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:38.088413 f 77 30.99 2 USD t 1 2022-09-02 16:28:38.036415 \N 2022-07-12 18:15:26.551833 \N \N +195 TopsandT-shirts_pleatedsleevet-shirt_83.99_beige_xs 0.00 \N \N \N 2022-09-02 16:28:45.135444 f 79 83.99 2 USD t 1 2022-09-02 16:28:45.081557 \N 2022-07-12 18:15:26.839638 \N \N +159 Skirts_skatershortskirt_67.99_white_mini_xs 0.00 \N \N \N 2022-09-02 16:27:36.74416 f 43 67.99 2 USD t 1 2022-09-02 16:27:36.679284 \N 2022-07-12 18:15:19.637771 \N \N +14 T-shirts_3_4sleevet-shirt_18.99 0.00 \N \N \N 2022-09-02 14:33:28.898515 t 14 \N 1 USD t \N 2022-09-02 14:33:28.772603 \N 2022-07-12 18:13:21.818352 \N \N +130 T-shirts_3_4sleevet-shirt_18.99_white_xs 0.00 \N \N \N 2022-09-02 14:33:29.005907 f 14 18.99 2 USD t 1 2022-09-02 14:33:28.925684 \N 2022-07-12 18:15:14.952579 \N \N +39 Skirts_a-linesuedeskirt_30.99 0.00 \N \N \N 2022-09-02 14:33:32.024959 t 39 \N 1 USD t \N 2022-09-02 14:33:31.984026 \N 2022-07-12 18:13:31.445057 \N \N +155 Skirts_a-linesuedeskirt_30.99_dark_blue_mini_xs 0.00 \N \N \N 2022-09-02 14:33:32.141078 f 39 30.99 2 USD t 1 2022-09-02 14:33:32.050632 \N 2022-07-12 18:15:18.907441 \N \N +30 JacketsandCoats_anorakwithhood_44.99 0.00 \N \N \N 2022-09-02 14:33:34.310546 t 30 \N 1 USD t \N 2022-09-02 14:33:34.206932 \N 2022-07-12 18:13:27.9051 \N \N +146 JacketsandCoats_anorakwithhood_44.99_yellow_xs 0.00 \N \N \N 2022-09-02 14:33:34.462213 f 30 44.99 2 USD t 1 2022-09-02 14:33:34.336567 \N 2022-07-12 18:15:17.35957 \N \N +87 JacketsandCoats_asymmetriccoat_19.99 0.00 \N \N \N 2022-09-02 14:33:39.48791 t 87 \N 1 USD t \N 2022-09-02 14:33:39.450141 \N 2022-07-12 18:13:49.948975 \N \N +203 JacketsandCoats_asymmetriccoat_19.99_white_xs 0.00 \N \N \N 2022-09-02 14:33:39.575761 f 87 19.99 2 USD t 1 2022-09-02 14:33:39.512639 \N 2022-07-12 18:15:28.155011 \N \N +70 Sweaters_asymmetricsweaterwithwidesleeves_34.99 0.00 \N \N \N 2022-09-02 14:33:48.981418 t 70 \N 1 USD t \N 2022-09-02 14:33:48.93574 \N 2022-07-12 18:13:42.970167 \N \N +186 Sweaters_asymmetricsweaterwithwidesleeves_34.99_blue_xs 0.00 \N \N \N 2022-09-02 14:33:49.061903 f 70 34.99 2 USD t 1 2022-09-02 14:33:49.006784 \N 2022-07-12 18:15:25.364416 \N \N +226 Pants_shinedpants_73.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:42.184394 f 110 73.99 2 USD t 1 2022-09-02 16:27:42.109367 \N 2022-07-12 18:15:31.432742 \N \N +197 TopsandT-shirts_croptop_60.99_black_xs 0.00 \N \N \N 2022-09-02 16:25:56.139756 f 81 60.99 2 USD t 1 2022-09-02 16:25:56.076108 \N 2022-07-12 18:15:27.113257 \N \N +121 Shirts_shortsleeveshirt_55.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:27:42.807222 f 5 55.99 2 USD t 1 2022-09-02 16:27:42.747101 \N 2022-07-12 18:15:13.6705 \N \N +191 Sweaters_croppedfittedsweater_92.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:59.581124 f 75 92.99 2 USD t 1 2022-09-02 16:25:59.522251 \N 2022-07-12 18:15:26.27123 \N \N +211 JacketsandCoats_denimhoodedjacket_88.99_blue_xs 0.00 \N \N \N 2022-09-02 16:26:01.371345 f 95 88.99 2 USD t 1 2022-09-02 16:26:01.302463 \N 2022-07-12 18:15:29.250644 \N \N +205 JacketsandCoats_downjacket_59.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:07.619489 f 89 59.99 2 USD t 1 2022-09-02 16:26:07.552574 \N 2022-07-12 18:15:28.409217 \N \N +208 JacketsandCoats_double-breastedjacket_50.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:08.229462 f 92 50.99 2 USD t 1 2022-09-02 16:26:08.169198 \N 2022-07-12 18:15:28.813987 \N \N +117 Shirts_denimshirt_24.99_blue_xs 0.00 \N \N \N 2022-09-02 16:26:09.715666 f 1 24.99 2 USD t 1 2022-09-02 16:26:09.648484 \N 2022-07-12 18:15:12.939404 \N \N +232 Pants_highwaistpants_20.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:03.549862 f 116 20.99 2 USD t 1 2022-09-02 16:27:03.482606 \N 2022-07-12 18:15:32.316211 \N \N +217 Tops_lacedcroptop_11.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:08.13341 f 101 11.99 2 USD t 1 2022-09-02 16:27:08.076538 \N 2022-07-12 18:15:30.159613 \N \N +222 Sweatshirts_lightweightrunningjacket_52.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:16.21087 f 106 52.99 2 USD t 1 2022-09-02 16:27:16.153781 \N 2022-07-12 18:15:30.890381 \N \N +209 JacketsandCoats_leatherbikerjacket_26.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:17.014767 f 93 26.99 2 USD t 1 2022-09-02 16:27:16.942628 \N 2022-07-12 18:15:28.952222 \N \N +120 Shirts_slimfitshirt_17.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:27:43.368734 f 4 17.99 2 USD t 1 2022-09-02 16:27:43.308535 \N 2022-07-12 18:15:13.500055 \N \N +175 ShirtsandBlouses_stripedshirt_60.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:48.168551 f 59 60.99 2 USD t 1 2022-09-02 16:27:48.113535 \N 2022-07-12 18:15:23.708805 \N \N +218 Tops_sportsbramediumsupport_29.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:48.735519 f 102 29.99 2 USD t 1 2022-09-02 16:27:48.677137 \N 2022-07-12 18:15:30.289117 \N \N +213 Tops_sportsbralowsupport_41.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:49.555999 f 97 41.99 2 USD t 1 2022-09-02 16:27:49.503108 \N 2022-07-12 18:15:29.519133 \N \N +219 Tops_sportsbra_79.99_green_xs 0.00 \N \N \N 2022-09-02 16:27:50.047501 f 103 79.99 2 USD t 1 2022-09-02 16:27:49.994521 \N 2022-07-12 18:15:30.42087 \N \N +225 Sweatshirts_sportwaistcoat_71.99_purple_xs 0.00 \N \N \N 2022-09-02 16:27:51.34261 f 109 71.99 2 USD t 1 2022-09-02 16:27:51.290019 \N 2022-07-12 18:15:31.299067 \N \N +220 Tops_sportcropptop_47.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:27:52.859754 f 104 47.99 2 USD t 1 2022-09-02 16:27:52.789695 \N 2022-07-12 18:15:30.598815 \N \N +206 JacketsandCoats_zippedjacket_28.99_blue_xs 0.00 \N \N \N 2022-09-02 16:28:00.572621 f 90 28.99 2 USD t 1 2022-09-02 16:28:00.512441 \N 2022-07-12 18:15:28.53186 \N \N +210 JacketsandCoats_wool-blendcoatwithbelt_13.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:28:02.554324 f 94 13.99 2 USD t 1 2022-09-02 16:28:02.493165 \N 2022-07-12 18:15:29.084726 \N \N +216 Tops_longsleevescroptop_34.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:18.773442 f 100 34.99 2 USD t 1 2022-09-02 16:28:18.708649 \N 2022-07-12 18:15:30.018305 \N \N +214 Tops_longsleevesyogacroptop_37.99_mint_xs 0.00 \N \N \N 2022-09-02 16:28:19.351743 f 98 37.99 2 USD t 1 2022-09-02 16:28:19.290562 \N 2022-07-12 18:15:29.679163 \N \N +198 TopsandT-shirts_looset-shirtwithpocketimitation_37.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:20.565687 f 82 37.99 2 USD t 1 2022-09-02 16:28:20.51303 \N 2022-07-12 18:15:27.265611 \N \N +223 Sweatshirts_oversizesweatshirt_67.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:20.951534 f 107 67.99 2 USD t 1 2022-09-02 16:28:20.893354 \N 2022-07-12 18:15:31.019412 \N \N +183 ShirtsandBlouses_semi-sheershirtwithpockets_36.99_white_xs 0.00 \N \N \N 2022-09-02 16:27:35.555549 f 67 36.99 2 USD t 1 2022-09-02 16:27:35.498337 \N 2022-07-12 18:15:24.923064 \N \N +83 TopsandT-shirts_sleevelessloosetop_58.99 0.00 \N \N \N 2022-09-02 16:27:38.13385 t 83 \N 1 USD t \N 2022-09-02 16:27:38.092844 \N 2022-07-12 18:13:48.448016 \N \N +199 TopsandT-shirts_sleevelessloosetop_58.99_white_xs 0.00 \N \N \N 2022-09-02 16:27:38.21357 f 83 58.99 2 USD t 1 2022-09-02 16:27:38.160546 \N 2022-07-12 18:15:27.41567 \N \N +84 TopsandT-shirts_basiclooset-shirt_25.99 0.00 \N \N \N 2022-09-02 16:25:40.005269 t 84 \N 1 USD t \N 2022-09-02 16:25:39.93034 \N 2022-07-12 18:13:48.839371 \N \N +200 TopsandT-shirts_basiclooset-shirt_25.99_green_xs 0.00 \N \N \N 2022-09-02 16:25:40.111976 f 84 25.99 2 USD t 1 2022-09-02 16:25:40.035731 \N 2022-07-12 18:15:27.543138 \N \N +19 T-shirts_basict-shirt_23.99 0.00 \N \N \N 2022-09-02 16:25:41.966985 t 19 \N 1 USD t \N 2022-09-02 16:25:41.908098 \N 2022-07-12 18:13:23.722793 \N \N +135 T-shirts_basict-shirt_23.99_grey_xs 0.00 \N \N \N 2022-09-02 16:25:42.057416 f 19 23.99 2 USD t 1 2022-09-02 16:25:41.99729 \N 2022-07-12 18:15:15.685832 \N \N +64 ShirtsandBlouses_blousewithwideflouncedsleeve_90.99 0.00 \N \N \N 2022-09-02 16:25:43.768924 t 64 \N 1 USD t \N 2022-09-02 16:25:43.71097 \N 2022-07-12 18:13:40.75357 \N \N +180 ShirtsandBlouses_blousewithwideflouncedsleeve_90.99_pink_xs 0.00 \N \N \N 2022-09-02 16:25:43.876697 f 64 90.99 2 USD t 1 2022-09-02 16:25:43.806219 \N 2022-07-12 18:15:24.447025 \N \N +96 JacketsandCoats_bomberjacket_30.99 0.00 \N \N \N 2022-09-02 16:25:45.426838 t 96 \N 1 USD t \N 2022-09-02 16:25:45.384073 \N 2022-07-12 18:13:53.785087 \N \N +212 JacketsandCoats_bomberjacket_30.99_khaki_xs 0.00 \N \N \N 2022-09-02 16:25:45.511489 f 96 30.99 2 USD t 1 2022-09-02 16:25:45.452976 \N 2022-07-12 18:15:29.390578 \N \N +174 ShirtsandBlouses_semi-sheershirtwithfloralcuffs_91.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:41.537355 f 58 91.99 2 USD t 1 2022-09-02 16:27:41.475488 \N 2022-07-12 18:15:23.560416 \N \N +2 Shirts_checkedshirt_65.99 0.00 \N \N \N 2022-09-02 16:25:47.133408 t 2 \N 1 USD t \N 2022-09-02 16:25:47.095883 \N 2022-07-12 18:13:17.702715 \N \N +118 Shirts_checkedshirt_65.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:47.213706 f 2 65.99 2 USD t 1 2022-09-02 16:25:47.158292 \N 2022-07-12 18:15:13.177339 \N \N +8 Shirts_checkedslimfitshirt_27.99 0.00 \N \N \N 2022-09-02 16:25:48.671876 t 8 \N 1 USD t \N 2022-09-02 16:25:48.631983 \N 2022-07-12 18:13:19.795682 \N \N +201 JacketsandCoats_coatwithpockets_27.99_pink_xs 0.00 \N \N \N 2022-09-02 16:25:50.49159 f 85 27.99 2 USD t 1 2022-09-02 16:25:50.431949 \N 2022-07-12 18:15:27.805748 \N \N +179 ShirtsandBlouses_cottonshirt_17.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:25:52.13818 f 63 17.99 2 USD t 1 2022-09-02 16:25:52.075004 \N 2022-07-12 18:15:24.320987 \N \N +192 TopsandT-shirts_croptopwithtie_96.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:57.93975 f 76 96.99 2 USD t 1 2022-09-02 16:25:57.880278 \N 2022-07-12 18:15:26.423508 \N \N +95 JacketsandCoats_denimhoodedjacket_88.99 0.00 \N \N \N 2022-09-02 16:26:01.265264 t 95 \N 1 USD t \N 2022-09-02 16:26:01.222311 \N 2022-07-12 18:13:53.349777 \N \N +38 Skirts_fittedskirt_62.99 0.00 \N \N \N 2022-09-02 16:26:04.73456 t 38 \N 1 USD t \N 2022-09-02 16:26:04.61839 \N 2022-07-12 18:13:31.079813 \N \N +154 Skirts_fittedskirt_62.99_orange_mini_xs 0.00 \N \N \N 2022-09-02 16:26:04.84182 f 38 62.99 2 USD t 1 2022-09-02 16:26:04.772042 \N 2022-07-12 18:15:18.730967 \N \N +31 JacketsandCoats_denimjacket_76.99 0.00 \N \N \N 2022-09-02 16:26:10.286488 t 31 \N 1 USD t \N 2022-09-02 16:26:10.233395 \N 2022-07-12 18:13:28.368403 \N \N +160 Skirts_floralflaredskirt_10.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:27:01.291461 f 44 10.99 2 USD t 1 2022-09-02 16:27:01.227411 \N 2022-07-12 18:15:19.830645 \N \N +29 JacketsandCoats_hoodedjacket_11.99 0.00 \N \N \N 2022-09-02 16:27:04.231108 t 29 \N 1 USD t \N 2022-09-02 16:27:04.187959 \N 2022-07-12 18:13:27.519287 \N \N +156 Skirts_leatherskirtwithlacing_46.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:27:09.104723 f 40 46.99 2 USD t 1 2022-09-02 16:27:09.042237 \N 2022-07-12 18:15:19.12211 \N \N +126 Shirts_linenshirt_87.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:09.926999 f 10 87.99 2 USD t 1 2022-09-02 16:27:09.871383 \N 2022-07-12 18:15:14.338667 \N \N +24 Sweaters_longsleevesweatshirt_73.99 0.00 \N \N \N 2022-09-02 16:27:13.47202 t 24 \N 1 USD t \N 2022-09-02 16:27:13.411378 \N 2022-07-12 18:13:25.511834 \N \N +204 JacketsandCoats_longcoatwithbelt_47.99_beige_xs 0.00 \N \N \N 2022-09-02 16:27:15.479352 f 88 47.99 2 USD t 1 2022-09-02 16:27:15.420583 \N 2022-07-12 18:15:28.284299 \N \N +73 Sweaters_knittedhighnecksweater_86.99 0.00 \N \N \N 2022-09-02 16:27:17.421617 t 73 \N 1 USD t \N 2022-09-02 16:27:17.37991 \N 2022-07-12 18:13:44.049227 \N \N +231 Pants_highwaistpantswithpockets_92.99_pink_xs 0.00 \N \N \N 2022-09-02 16:27:22.680055 f 115 92.99 2 USD t 1 2022-09-02 16:27:22.620303 \N 2022-07-12 18:15:32.161467 \N \N +131 T-shirts_t-shirtwithholes_34.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:45.584417 f 15 34.99 2 USD t 1 2022-09-02 16:27:45.522075 \N 2022-07-12 18:15:15.088686 \N \N +173 Dresses_slitmaxidress_26.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:27:53.548333 f 57 26.99 2 USD t 1 2022-09-02 16:27:53.483332 \N 2022-07-12 18:15:23.391595 \N \N +150 JacketsandCoats_wool-blendcoat_35.99_beige_xs 0.00 \N \N \N 2022-09-02 16:28:03.136773 f 34 35.99 2 USD t 1 2022-09-02 16:28:03.068998 \N 2022-07-12 18:15:18.022671 \N \N +163 Dresses_v-neckfloralmaxidress_31.99_pink_mini_xs 0.00 \N \N \N 2022-09-02 16:28:06.31637 f 47 31.99 2 USD t 1 2022-09-02 16:28:06.249263 \N 2022-07-12 18:15:20.59315 \N \N +82 TopsandT-shirts_looset-shirtwithpocketimitation_37.99 0.00 \N \N \N 2022-09-02 16:28:20.487671 t 82 \N 1 USD t \N 2022-09-02 16:28:20.445797 \N 2022-07-12 18:13:48.073782 \N \N +153 Skirts_midiskirtwithbottoms_40.99_green_mini_xs 0.00 \N \N \N 2022-09-02 16:28:29.313947 f 37 40.99 2 USD t 1 2022-09-02 16:28:29.257813 \N 2022-07-12 18:15:18.46425 \N \N +169 Dresses_printedslit-sleevesdress_76.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:38.713672 f 53 76.99 2 USD t 1 2022-09-02 16:28:38.652981 \N 2022-07-12 18:15:21.921309 \N \N +122 Shirts_printedshortsleeveshirt_74.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:39.410274 f 6 74.99 2 USD t 1 2022-09-02 16:28:39.340227 \N 2022-07-12 18:15:13.800204 \N \N +168 Dresses_printeddress_83.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:42.561033 f 52 83.99 2 USD t 1 2022-09-02 16:28:42.490251 \N 2022-07-12 18:15:21.714444 \N \N +243 dd_100_12 0.00 \N \N \N \N t 127 3.10 1 USD t \N 2024-02-12 20:51:22.954975 \N 2022-09-02 18:52:56.264637 \N \N +237 dd_100_07 0.00 \N \N \N \N t 121 1.60 1 USD t \N 2024-02-12 22:35:00.488011 \N 2022-09-02 18:30:30.901574 \N \N +241 dd_100_11 0.00 \N \N \N \N t 125 1.30 1 USD t \N 2024-02-12 22:47:59.510325 \N 2022-09-02 18:44:36.12419 \N \N +235 dd_100_05 0.00 \N \N \N \N t 119 0.99 1 USD t \N 2024-02-12 22:52:19.36965 \N 2022-09-02 17:19:13.887876 \N \N +233 dd_100_04 0.00 \N \N \N \N t 117 2.75 1 USD t \N 2024-02-12 22:38:45.748422 \N 2022-09-02 16:33:37.722029 \N \N +245 dd_100_14 0.00 \N \N \N \N t 129 0.99 1 USD t \N 2024-02-12 22:38:45.824444 \N 2022-09-02 18:59:14.658464 \N \N +238 dd_100_09 0.00 \N \N \N \N t 122 1.99 1 USD t \N 2024-02-12 22:52:22.573995 \N 2022-09-02 18:38:46.417233 \N \N +240 dd_100_10 0.00 \N \N \N \N t 124 0.99 1 USD t \N 2024-02-12 22:42:30.502475 \N 2022-09-02 18:42:26.500871 \N \N +242 dd_100_13 0.00 \N \N \N \N t 126 1.22 1 USD t \N 2024-02-12 22:52:22.682657 \N 2022-09-02 18:50:49.231267 \N \N +234 dd_100_03 0.00 \N \N \N \N t 118 1.14 1 USD t \N 2024-02-12 22:52:24.543996 \N 2022-09-02 17:09:21.55014 \N \N +239 dd_100_08 0.00 \N \N \N \N t 123 0.49 1 USD t \N 2024-02-12 22:52:24.64628 \N 2022-09-02 18:41:05.37736 \N \N +246 dd_100_02 0.00 \N \N \N \N t 130 1.36 1 USD t \N 2024-02-12 22:52:58.507036 \N 2022-09-02 19:01:55.290267 \N \N +236 dd_100_06 0.00 \N \N \N \N t 120 1.10 1 USD t \N 2024-02-12 22:52:58.63269 \N 2022-09-02 17:31:19.718131 \N \N +244 dd_100_01 0.00 \N \N \N \N t 128 1.10 1 USD t \N 2024-02-12 22:52:58.748954 \N 2022-09-02 18:57:21.592453 \N \N +\. + + +-- +-- Data for Name: spree_webhooks_events; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_webhooks_events (id, execution_time, name, request_errors, response_code, subscriber_id, success, url, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_webhooks_subscribers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_webhooks_subscribers (id, url, active, subscriptions, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_wished_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_wished_items (id, variant_id, wishlist_id, quantity, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_wishlists; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_wishlists (id, user_id, store_id, name, token, is_private, is_default, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_zone_members; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_zone_members (id, zoneable_type, zoneable_id, zone_id, created_at, updated_at) FROM stdin; +1 Spree::Country 172 1 2022-07-12 18:10:10.405063 2022-07-12 18:10:10.405063 +2 Spree::Country 66 1 2022-07-12 18:10:10.423231 2022-07-12 18:10:10.423231 +3 Spree::Country 177 1 2022-07-12 18:10:10.440269 2022-07-12 18:10:10.440269 +4 Spree::Country 182 1 2022-07-12 18:10:10.45837 2022-07-12 18:10:10.45837 +5 Spree::Country 54 1 2022-07-12 18:10:10.475381 2022-07-12 18:10:10.475381 +6 Spree::Country 71 1 2022-07-12 18:10:10.492976 2022-07-12 18:10:10.492976 +7 Spree::Country 195 1 2022-07-12 18:10:10.5104 2022-07-12 18:10:10.5104 +8 Spree::Country 94 1 2022-07-12 18:10:10.527591 2022-07-12 18:10:10.527591 +9 Spree::Country 193 1 2022-07-12 18:10:10.544283 2022-07-12 18:10:10.544283 +10 Spree::Country 96 1 2022-07-12 18:10:10.562074 2022-07-12 18:10:10.562074 +11 Spree::Country 11 1 2022-07-12 18:10:10.578268 2022-07-12 18:10:10.578268 +12 Spree::Country 64 1 2022-07-12 18:10:10.59627 2022-07-12 18:10:10.59627 +13 Spree::Country 103 1 2022-07-12 18:10:10.614534 2022-07-12 18:10:10.614534 +14 Spree::Country 18 1 2022-07-12 18:10:10.638549 2022-07-12 18:10:10.638549 +15 Spree::Country 190 1 2022-07-12 18:10:10.657556 2022-07-12 18:10:10.657556 +16 Spree::Country 128 1 2022-07-12 18:10:10.674166 2022-07-12 18:10:10.674166 +17 Spree::Country 20 1 2022-07-12 18:10:10.691149 2022-07-12 18:10:10.691149 +18 Spree::Country 126 1 2022-07-12 18:10:10.708295 2022-07-12 18:10:10.708295 +19 Spree::Country 52 1 2022-07-12 18:10:10.726777 2022-07-12 18:10:10.726777 +20 Spree::Country 127 1 2022-07-12 18:10:10.743693 2022-07-12 18:10:10.743693 +21 Spree::Country 146 1 2022-07-12 18:10:10.760072 2022-07-12 18:10:10.760072 +22 Spree::Country 56 1 2022-07-12 18:10:10.777237 2022-07-12 18:10:10.777237 +23 Spree::Country 159 1 2022-07-12 18:10:10.795046 2022-07-12 18:10:10.795046 +24 Spree::Country 61 1 2022-07-12 18:10:10.81281 2022-07-12 18:10:10.81281 +25 Spree::Country 92 1 2022-07-12 18:10:10.829662 2022-07-12 18:10:10.829662 +26 Spree::Country 53 1 2022-07-12 18:10:10.84629 2022-07-12 18:10:10.84629 +27 Spree::Country 85 1 2022-07-12 18:10:10.863738 2022-07-12 18:10:10.863738 +28 Spree::Country 73 2 2022-07-12 18:10:10.880336 2022-07-12 18:10:10.880336 +29 Spree::Country 224 3 2022-07-12 18:10:10.896747 2022-07-12 18:10:10.896747 +30 Spree::Country 35 3 2022-07-12 18:10:10.916171 2022-07-12 18:10:10.916171 +31 Spree::Country 21 5 2022-07-12 18:10:10.933092 2022-07-12 18:10:10.933092 +32 Spree::Country 52 5 2022-07-12 18:10:10.9515 2022-07-12 18:10:10.9515 +33 Spree::Country 62 5 2022-07-12 18:10:10.96885 2022-07-12 18:10:10.96885 +34 Spree::Country 101 5 2022-07-12 18:10:10.985735 2022-07-12 18:10:10.985735 +35 Spree::Country 100 5 2022-07-12 18:10:11.002632 2022-07-12 18:10:11.002632 +36 Spree::Country 97 5 2022-07-12 18:10:11.01869 2022-07-12 18:10:11.01869 +37 Spree::Country 106 5 2022-07-12 18:10:11.035597 2022-07-12 18:10:11.035597 +38 Spree::Country 116 5 2022-07-12 18:10:11.05289 2022-07-12 18:10:11.05289 +39 Spree::Country 120 5 2022-07-12 18:10:11.068983 2022-07-12 18:10:11.068983 +40 Spree::Country 165 5 2022-07-12 18:10:11.089914 2022-07-12 18:10:11.089914 +41 Spree::Country 180 5 2022-07-12 18:10:11.113329 2022-07-12 18:10:11.113329 +42 Spree::Country 186 5 2022-07-12 18:10:11.131276 2022-07-12 18:10:11.131276 +43 Spree::Country 205 5 2022-07-12 18:10:11.147987 2022-07-12 18:10:11.147987 +44 Spree::Country 217 5 2022-07-12 18:10:11.164353 2022-07-12 18:10:11.164353 +45 Spree::Country 2 5 2022-07-12 18:10:11.180786 2022-07-12 18:10:11.180786 +46 Spree::Country 236 5 2022-07-12 18:10:11.198545 2022-07-12 18:10:11.198545 +47 Spree::Country 3 6 2022-07-12 18:10:11.214402 2022-07-12 18:10:11.214402 +48 Spree::Country 7 6 2022-07-12 18:10:11.229682 2022-07-12 18:10:11.229682 +49 Spree::Country 14 6 2022-07-12 18:10:11.245826 2022-07-12 18:10:11.245826 +50 Spree::Country 21 6 2022-07-12 18:10:11.262439 2022-07-12 18:10:11.262439 +51 Spree::Country 17 6 2022-07-12 18:10:11.281424 2022-07-12 18:10:11.281424 +52 Spree::Country 31 6 2022-07-12 18:10:11.298955 2022-07-12 18:10:11.298955 +53 Spree::Country 26 6 2022-07-12 18:10:11.315405 2022-07-12 18:10:11.315405 +54 Spree::Country 110 6 2022-07-12 18:10:11.332458 2022-07-12 18:10:11.332458 +55 Spree::Country 45 6 2022-07-12 18:10:11.351137 2022-07-12 18:10:11.351137 +56 Spree::Country 51 6 2022-07-12 18:10:11.369967 2022-07-12 18:10:11.369967 +57 Spree::Country 36 6 2022-07-12 18:10:11.387533 2022-07-12 18:10:11.387533 +58 Spree::Country 75 6 2022-07-12 18:10:11.403646 2022-07-12 18:10:11.403646 +59 Spree::Country 90 6 2022-07-12 18:10:11.419559 2022-07-12 18:10:11.419559 +60 Spree::Country 99 6 2022-07-12 18:10:11.436056 2022-07-12 18:10:11.436056 +61 Spree::Country 95 6 2022-07-12 18:10:11.452783 2022-07-12 18:10:11.452783 +62 Spree::Country 101 6 2022-07-12 18:10:11.471894 2022-07-12 18:10:11.471894 +63 Spree::Country 100 6 2022-07-12 18:10:11.490219 2022-07-12 18:10:11.490219 +64 Spree::Country 97 6 2022-07-12 18:10:11.506642 2022-07-12 18:10:11.506642 +65 Spree::Country 107 6 2022-07-12 18:10:11.524877 2022-07-12 18:10:11.524877 +66 Spree::Country 106 6 2022-07-12 18:10:11.543176 2022-07-12 18:10:11.543176 +67 Spree::Country 118 6 2022-07-12 18:10:11.56433 2022-07-12 18:10:11.56433 +68 Spree::Country 116 6 2022-07-12 18:10:11.583863 2022-07-12 18:10:11.583863 +69 Spree::Country 109 6 2022-07-12 18:10:11.601527 2022-07-12 18:10:11.601527 +70 Spree::Country 119 6 2022-07-12 18:10:11.618043 2022-07-12 18:10:11.618043 +71 Spree::Country 120 6 2022-07-12 18:10:11.638824 2022-07-12 18:10:11.638824 +72 Spree::Country 141 6 2022-07-12 18:10:11.657621 2022-07-12 18:10:11.657621 +73 Spree::Country 151 6 2022-07-12 18:10:11.676009 2022-07-12 18:10:11.676009 +74 Spree::Country 148 6 2022-07-12 18:10:11.692075 2022-07-12 18:10:11.692075 +75 Spree::Country 140 6 2022-07-12 18:10:11.707685 2022-07-12 18:10:11.707685 +76 Spree::Country 139 6 2022-07-12 18:10:11.725046 2022-07-12 18:10:11.725046 +77 Spree::Country 161 6 2022-07-12 18:10:11.743281 2022-07-12 18:10:11.743281 +78 Spree::Country 114 6 2022-07-12 18:10:11.760208 2022-07-12 18:10:11.760208 +79 Spree::Country 165 6 2022-07-12 18:10:11.776952 2022-07-12 18:10:11.776952 +80 Spree::Country 171 6 2022-07-12 18:10:11.794199 2022-07-12 18:10:11.794199 +81 Spree::Country 176 6 2022-07-12 18:10:11.810439 2022-07-12 18:10:11.810439 +82 Spree::Country 170 6 2022-07-12 18:10:11.827316 2022-07-12 18:10:11.827316 +83 Spree::Country 180 6 2022-07-12 18:10:11.843967 2022-07-12 18:10:11.843967 +84 Spree::Country 186 6 2022-07-12 18:10:11.86304 2022-07-12 18:10:11.86304 +85 Spree::Country 191 6 2022-07-12 18:10:11.879281 2022-07-12 18:10:11.879281 +86 Spree::Country 115 6 2022-07-12 18:10:11.896992 2022-07-12 18:10:11.896992 +87 Spree::Country 123 6 2022-07-12 18:10:11.913096 2022-07-12 18:10:11.913096 +88 Spree::Country 205 6 2022-07-12 18:10:11.929124 2022-07-12 18:10:11.929124 +89 Spree::Country 220 6 2022-07-12 18:10:11.946046 2022-07-12 18:10:11.946046 +90 Spree::Country 211 6 2022-07-12 18:10:11.962519 2022-07-12 18:10:11.962519 +91 Spree::Country 210 6 2022-07-12 18:10:11.978922 2022-07-12 18:10:11.978922 +92 Spree::Country 217 6 2022-07-12 18:10:11.99946 2022-07-12 18:10:11.99946 +93 Spree::Country 214 6 2022-07-12 18:10:12.017611 2022-07-12 18:10:12.017611 +94 Spree::Country 2 6 2022-07-12 18:10:12.034187 2022-07-12 18:10:12.034187 +95 Spree::Country 226 6 2022-07-12 18:10:12.05072 2022-07-12 18:10:12.05072 +96 Spree::Country 232 6 2022-07-12 18:10:12.069239 2022-07-12 18:10:12.069239 +97 Spree::Country 236 6 2022-07-12 18:10:12.086379 2022-07-12 18:10:12.086379 +98 Spree::Country 9 4 2022-07-12 18:10:12.102346 2022-07-12 18:10:12.102346 +99 Spree::Country 27 4 2022-07-12 18:10:12.119038 2022-07-12 18:10:12.119038 +100 Spree::Country 29 4 2022-07-12 18:10:12.135968 2022-07-12 18:10:12.135968 +101 Spree::Country 43 4 2022-07-12 18:10:12.153681 2022-07-12 18:10:12.153681 +102 Spree::Country 46 4 2022-07-12 18:10:12.171475 2022-07-12 18:10:12.171475 +103 Spree::Country 60 4 2022-07-12 18:10:12.189273 2022-07-12 18:10:12.189273 +104 Spree::Country 68 4 2022-07-12 18:10:12.205847 2022-07-12 18:10:12.205847 +105 Spree::Country 76 4 2022-07-12 18:10:12.222604 2022-07-12 18:10:12.222604 +106 Spree::Country 89 4 2022-07-12 18:10:12.240487 2022-07-12 18:10:12.240487 +107 Spree::Country 179 4 2022-07-12 18:10:12.257107 2022-07-12 18:10:12.257107 +108 Spree::Country 167 4 2022-07-12 18:10:12.27388 2022-07-12 18:10:12.27388 +109 Spree::Country 200 4 2022-07-12 18:10:12.291607 2022-07-12 18:10:12.291607 +110 Spree::Country 225 4 2022-07-12 18:10:12.311388 2022-07-12 18:10:12.311388 +111 Spree::Country 229 4 2022-07-12 18:10:12.32979 2022-07-12 18:10:12.32979 +112 Spree::State 486 7 2022-07-12 18:13:09.542943 2022-07-12 18:13:09.542943 +\. + + +-- +-- Data for Name: spree_zones; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_zones (id, name, description, default_tax, zone_members_count, created_at, updated_at, kind) FROM stdin; +6 Asia Asia f 51 2022-07-12 18:10:10.376548 2022-07-12 18:10:10.376548 country +1 EU_VAT Countries that make up the EU VAT zone. f 27 2022-07-12 18:10:10.305345 2022-07-12 18:10:10.305345 country +2 UK_VAT \N f 1 2022-07-12 18:10:10.325113 2022-07-12 18:10:10.325113 country +3 North America USA + Canada f 2 2022-07-12 18:10:10.338281 2022-07-12 18:10:10.338281 country +4 South America South America f 14 2022-07-12 18:10:10.3516 2022-07-12 18:10:10.3516 country +7 California Tax California tax zone f 1 2022-07-12 18:13:09.507712 2022-07-12 18:13:09.507712 state +5 Middle East Middle East f 16 2022-07-12 18:10:10.364145 2022-07-12 18:10:10.364145 country +\. + + +-- +-- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.action_mailbox_inbound_emails_id_seq', 1, false); + + +-- +-- Name: action_text_rich_texts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.action_text_rich_texts_id_seq', 1, false); + + +-- +-- Name: active_storage_attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.active_storage_attachments_id_seq', 116, true); + + +-- +-- Name: active_storage_blobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.active_storage_blobs_id_seq', 116, true); + + +-- +-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.active_storage_variant_records_id_seq', 91, true); + + +-- +-- Name: friendly_id_slugs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.friendly_id_slugs_id_seq', 161, true); + + +-- +-- Name: spree_addresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_addresses_id_seq', 3018, true); + + +-- +-- Name: spree_adjustments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_adjustments_id_seq', 2, true); + + +-- +-- Name: spree_assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_assets_id_seq', 15, true); + + +-- +-- Name: spree_calculators_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_calculators_id_seq', 6, true); + + +-- +-- Name: spree_checks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_checks_id_seq', 1, false); + + +-- +-- Name: spree_cms_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_cms_pages_id_seq', 36, true); + + +-- +-- Name: spree_cms_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_cms_sections_id_seq', 72, true); + + +-- +-- Name: spree_countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_countries_id_seq', 240, true); + + +-- +-- Name: spree_credit_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_credit_cards_id_seq', 869, true); + + +-- +-- Name: spree_customer_returns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_customer_returns_id_seq', 1, false); + + +-- +-- Name: spree_digital_links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_digital_links_id_seq', 1, false); + + +-- +-- Name: spree_digitals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_digitals_id_seq', 1, false); + + +-- +-- Name: spree_gateways_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_gateways_id_seq', 1, false); + + +-- +-- Name: spree_inventory_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_inventory_units_id_seq', 1068, true); + + +-- +-- Name: spree_line_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_line_items_id_seq', 882, true); + + +-- +-- Name: spree_log_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_log_entries_id_seq', 94, true); + + +-- +-- Name: spree_menu_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_menu_items_id_seq', 276, true); + + +-- +-- Name: spree_menus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_menus_id_seq', 12, true); + + +-- +-- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_oauth_access_grants_id_seq', 1, false); + + +-- +-- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_oauth_access_tokens_id_seq', 2, true); + + +-- +-- Name: spree_oauth_applications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_oauth_applications_id_seq', 1, true); + + +-- +-- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_option_type_prototypes_id_seq', 1, false); + + +-- +-- Name: spree_option_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_option_types_id_seq', 3, true); + + +-- +-- Name: spree_option_value_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_option_value_variants_id_seq', 254, true); + + +-- +-- Name: spree_option_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_option_values_id_seq', 27, true); + + +-- +-- Name: spree_order_promotions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_order_promotions_id_seq', 1, false); + + +-- +-- Name: spree_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_orders_id_seq', 820, true); + + +-- +-- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_payment_capture_events_id_seq', 1, false); + + +-- +-- Name: spree_payment_methods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_payment_methods_id_seq', 2, true); + + +-- +-- Name: spree_payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_payments_id_seq', 870, true); + + +-- +-- Name: spree_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_preferences_id_seq', 1, true); + + +-- +-- Name: spree_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_prices_id_seq', 246, true); + + +-- +-- Name: spree_product_option_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_product_option_types_id_seq', 254, true); + + +-- +-- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_product_promotion_rules_id_seq', 1, false); + + +-- +-- Name: spree_product_properties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_product_properties_id_seq', 974, true); + + +-- +-- Name: spree_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_products_id_seq', 130, true); + + +-- +-- Name: spree_products_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_products_stores_id_seq', 362, true); + + +-- +-- Name: spree_products_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_products_taxons_id_seq', 481, true); + + +-- +-- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_action_line_items_id_seq', 1, false); + + +-- +-- Name: spree_promotion_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_actions_id_seq', 1, true); + + +-- +-- Name: spree_promotion_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_categories_id_seq', 1, false); + + +-- +-- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_rule_taxons_id_seq', 1, false); + + +-- +-- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_rule_users_id_seq', 1, false); + + +-- +-- Name: spree_promotion_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotion_rules_id_seq', 1, true); + + +-- +-- Name: spree_promotions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotions_id_seq', 1, true); + + +-- +-- Name: spree_promotions_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_promotions_stores_id_seq', 3, true); + + +-- +-- Name: spree_properties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_properties_id_seq', 16, true); + + +-- +-- Name: spree_property_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_property_prototypes_id_seq', 14, true); + + +-- +-- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_prototype_taxons_id_seq', 1, false); + + +-- +-- Name: spree_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_prototypes_id_seq', 4, true); + + +-- +-- Name: spree_refund_reasons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_refund_reasons_id_seq', 1, true); + + +-- +-- Name: spree_refunds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_refunds_id_seq', 1, false); + + +-- +-- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_reimbursement_credits_id_seq', 1, false); + + +-- +-- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_reimbursement_types_id_seq', 1, false); + + +-- +-- Name: spree_reimbursements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_reimbursements_id_seq', 1, true); + + +-- +-- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_return_authorization_reasons_id_seq', 9, true); + + +-- +-- Name: spree_return_authorizations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_return_authorizations_id_seq', 1, false); + + +-- +-- Name: spree_return_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_return_items_id_seq', 1, false); + + +-- +-- Name: spree_role_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_role_users_id_seq', 2, true); + + +-- +-- Name: spree_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_roles_id_seq', 1, true); + + +-- +-- Name: spree_shipments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipments_id_seq', 824, true); + + +-- +-- Name: spree_shipping_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipping_categories_id_seq', 2, true); + + +-- +-- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipping_method_categories_id_seq', 5, true); + + +-- +-- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipping_method_zones_id_seq', 5, true); + + +-- +-- Name: spree_shipping_methods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipping_methods_id_seq', 5, true); + + +-- +-- Name: spree_shipping_rates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_shipping_rates_id_seq', 2475, true); + + +-- +-- Name: spree_state_changes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_state_changes_id_seq', 980, true); + + +-- +-- Name: spree_states_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_states_id_seq', 577, true); + + +-- +-- Name: spree_stock_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_stock_items_id_seq', 248, true); + + +-- +-- Name: spree_stock_locations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_stock_locations_id_seq', 1, true); + + +-- +-- Name: spree_stock_movements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_stock_movements_id_seq', 350, true); + + +-- +-- Name: spree_stock_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_stock_transfers_id_seq', 1, false); + + +-- +-- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_store_credit_categories_id_seq', 3, true); + + +-- +-- Name: spree_store_credit_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_store_credit_events_id_seq', 1, false); + + +-- +-- Name: spree_store_credit_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_store_credit_types_id_seq', 1, false); + + +-- +-- Name: spree_store_credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_store_credits_id_seq', 1, false); + + +-- +-- Name: spree_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_stores_id_seq', 3, true); + + +-- +-- Name: spree_tax_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_tax_categories_id_seq', 1, true); + + +-- +-- Name: spree_tax_rates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_tax_rates_id_seq', 1, true); + + +-- +-- Name: spree_taxonomies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_taxonomies_id_seq', 2, true); + + +-- +-- Name: spree_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_taxons_id_seq', 29, true); + + +-- +-- Name: spree_trackers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_trackers_id_seq', 1, false); + + +-- +-- Name: spree_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_users_id_seq', 2, true); + + +-- +-- Name: spree_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_variants_id_seq', 246, true); + + +-- +-- Name: spree_webhooks_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_webhooks_events_id_seq', 1, false); + + +-- +-- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_webhooks_subscribers_id_seq', 1, false); + + +-- +-- Name: spree_wished_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_wished_items_id_seq', 1, false); + + +-- +-- Name: spree_wishlists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_wishlists_id_seq', 1, false); + + +-- +-- Name: spree_zone_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_zone_members_id_seq', 112, true); + + +-- +-- Name: spree_zones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.spree_zones_id_seq', 7, true); + + +-- +-- Name: action_mailbox_inbound_emails action_mailbox_inbound_emails_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.action_mailbox_inbound_emails + ADD CONSTRAINT action_mailbox_inbound_emails_pkey PRIMARY KEY (id); + + +-- +-- Name: action_text_rich_texts action_text_rich_texts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.action_text_rich_texts + ADD CONSTRAINT action_text_rich_texts_pkey PRIMARY KEY (id); + + +-- +-- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_attachments + ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id); + + +-- +-- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_blobs + ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id); + + +-- +-- Name: active_storage_variant_records active_storage_variant_records_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_variant_records + ADD CONSTRAINT active_storage_variant_records_pkey PRIMARY KEY (id); + + +-- +-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.ar_internal_metadata + ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key); + + +-- +-- Name: friendly_id_slugs friendly_id_slugs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.friendly_id_slugs + ADD CONSTRAINT friendly_id_slugs_pkey PRIMARY KEY (id); + + +-- +-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.schema_migrations + ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); + + +-- +-- Name: spree_addresses spree_addresses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_addresses + ADD CONSTRAINT spree_addresses_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_adjustments spree_adjustments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_adjustments + ADD CONSTRAINT spree_adjustments_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_assets spree_assets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_assets + ADD CONSTRAINT spree_assets_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_calculators spree_calculators_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_calculators + ADD CONSTRAINT spree_calculators_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_checks spree_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_checks + ADD CONSTRAINT spree_checks_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_cms_pages spree_cms_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_cms_pages + ADD CONSTRAINT spree_cms_pages_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_cms_sections spree_cms_sections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_cms_sections + ADD CONSTRAINT spree_cms_sections_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_countries spree_countries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_countries + ADD CONSTRAINT spree_countries_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_credit_cards spree_credit_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_credit_cards + ADD CONSTRAINT spree_credit_cards_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_customer_returns spree_customer_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_customer_returns + ADD CONSTRAINT spree_customer_returns_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_digital_links spree_digital_links_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_digital_links + ADD CONSTRAINT spree_digital_links_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_digitals spree_digitals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_digitals + ADD CONSTRAINT spree_digitals_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_gateways spree_gateways_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_gateways + ADD CONSTRAINT spree_gateways_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_inventory_units spree_inventory_units_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_inventory_units + ADD CONSTRAINT spree_inventory_units_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_line_items spree_line_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_line_items + ADD CONSTRAINT spree_line_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_log_entries spree_log_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_log_entries + ADD CONSTRAINT spree_log_entries_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_menu_items spree_menu_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_menu_items + ADD CONSTRAINT spree_menu_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_menus spree_menus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_menus + ADD CONSTRAINT spree_menus_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_oauth_access_grants spree_oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_grants + ADD CONSTRAINT spree_oauth_access_grants_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_oauth_access_tokens spree_oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_tokens + ADD CONSTRAINT spree_oauth_access_tokens_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_oauth_applications spree_oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_applications + ADD CONSTRAINT spree_oauth_applications_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_option_type_prototypes spree_option_type_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_type_prototypes + ADD CONSTRAINT spree_option_type_prototypes_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_option_types spree_option_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_types + ADD CONSTRAINT spree_option_types_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_option_value_variants spree_option_value_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_value_variants + ADD CONSTRAINT spree_option_value_variants_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_option_values spree_option_values_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_option_values + ADD CONSTRAINT spree_option_values_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_order_promotions spree_order_promotions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_order_promotions + ADD CONSTRAINT spree_order_promotions_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_orders spree_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_orders + ADD CONSTRAINT spree_orders_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_payment_capture_events spree_payment_capture_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payment_capture_events + ADD CONSTRAINT spree_payment_capture_events_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_payment_methods spree_payment_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payment_methods + ADD CONSTRAINT spree_payment_methods_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_payments spree_payments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_payments + ADD CONSTRAINT spree_payments_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_preferences spree_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_preferences + ADD CONSTRAINT spree_preferences_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_prices spree_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prices + ADD CONSTRAINT spree_prices_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_product_option_types spree_product_option_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_option_types + ADD CONSTRAINT spree_product_option_types_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_product_promotion_rules spree_product_promotion_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_promotion_rules + ADD CONSTRAINT spree_product_promotion_rules_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_product_properties spree_product_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_product_properties + ADD CONSTRAINT spree_product_properties_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_products spree_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products + ADD CONSTRAINT spree_products_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_products_stores spree_products_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products_stores + ADD CONSTRAINT spree_products_stores_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_products_taxons spree_products_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_products_taxons + ADD CONSTRAINT spree_products_taxons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_action_line_items spree_promotion_action_line_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_action_line_items + ADD CONSTRAINT spree_promotion_action_line_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_actions spree_promotion_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_actions + ADD CONSTRAINT spree_promotion_actions_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_categories spree_promotion_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_categories + ADD CONSTRAINT spree_promotion_categories_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_rule_taxons spree_promotion_rule_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rule_taxons + ADD CONSTRAINT spree_promotion_rule_taxons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_rule_users spree_promotion_rule_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rule_users + ADD CONSTRAINT spree_promotion_rule_users_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotion_rules spree_promotion_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotion_rules + ADD CONSTRAINT spree_promotion_rules_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotions spree_promotions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotions + ADD CONSTRAINT spree_promotions_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_promotions_stores spree_promotions_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_promotions_stores + ADD CONSTRAINT spree_promotions_stores_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_properties spree_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_properties + ADD CONSTRAINT spree_properties_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_property_prototypes spree_property_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_property_prototypes + ADD CONSTRAINT spree_property_prototypes_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_prototype_taxons spree_prototype_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prototype_taxons + ADD CONSTRAINT spree_prototype_taxons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_prototypes spree_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_prototypes + ADD CONSTRAINT spree_prototypes_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_refund_reasons spree_refund_reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_refund_reasons + ADD CONSTRAINT spree_refund_reasons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_refunds spree_refunds_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_refunds + ADD CONSTRAINT spree_refunds_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_reimbursement_credits spree_reimbursement_credits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursement_credits + ADD CONSTRAINT spree_reimbursement_credits_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_reimbursement_types spree_reimbursement_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursement_types + ADD CONSTRAINT spree_reimbursement_types_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_reimbursements spree_reimbursements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_reimbursements + ADD CONSTRAINT spree_reimbursements_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_return_authorization_reasons spree_return_authorization_reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_authorization_reasons + ADD CONSTRAINT spree_return_authorization_reasons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_return_authorizations spree_return_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_authorizations + ADD CONSTRAINT spree_return_authorizations_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_return_items spree_return_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_return_items + ADD CONSTRAINT spree_return_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_role_users spree_role_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_role_users + ADD CONSTRAINT spree_role_users_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_roles spree_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_roles + ADD CONSTRAINT spree_roles_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipments spree_shipments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipments + ADD CONSTRAINT spree_shipments_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipping_categories spree_shipping_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_categories + ADD CONSTRAINT spree_shipping_categories_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipping_method_categories spree_shipping_method_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_method_categories + ADD CONSTRAINT spree_shipping_method_categories_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipping_method_zones spree_shipping_method_zones_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_method_zones + ADD CONSTRAINT spree_shipping_method_zones_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipping_methods spree_shipping_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_methods + ADD CONSTRAINT spree_shipping_methods_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_shipping_rates spree_shipping_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_shipping_rates + ADD CONSTRAINT spree_shipping_rates_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_state_changes spree_state_changes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_state_changes + ADD CONSTRAINT spree_state_changes_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_states spree_states_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_states + ADD CONSTRAINT spree_states_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_stock_items spree_stock_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_items + ADD CONSTRAINT spree_stock_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_stock_locations spree_stock_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_locations + ADD CONSTRAINT spree_stock_locations_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_stock_movements spree_stock_movements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_movements + ADD CONSTRAINT spree_stock_movements_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_stock_transfers spree_stock_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stock_transfers + ADD CONSTRAINT spree_stock_transfers_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_store_credit_categories spree_store_credit_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_categories + ADD CONSTRAINT spree_store_credit_categories_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_store_credit_events spree_store_credit_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_events + ADD CONSTRAINT spree_store_credit_events_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_store_credit_types spree_store_credit_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credit_types + ADD CONSTRAINT spree_store_credit_types_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_store_credits spree_store_credits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_store_credits + ADD CONSTRAINT spree_store_credits_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_stores spree_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_stores + ADD CONSTRAINT spree_stores_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_tax_categories spree_tax_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_tax_categories + ADD CONSTRAINT spree_tax_categories_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_tax_rates spree_tax_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_tax_rates + ADD CONSTRAINT spree_tax_rates_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_taxonomies spree_taxonomies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_taxonomies + ADD CONSTRAINT spree_taxonomies_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_taxons spree_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_taxons + ADD CONSTRAINT spree_taxons_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_trackers spree_trackers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_trackers + ADD CONSTRAINT spree_trackers_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_users spree_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_users + ADD CONSTRAINT spree_users_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_variants spree_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_variants + ADD CONSTRAINT spree_variants_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_webhooks_events spree_webhooks_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_webhooks_events + ADD CONSTRAINT spree_webhooks_events_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_webhooks_subscribers spree_webhooks_subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_webhooks_subscribers + ADD CONSTRAINT spree_webhooks_subscribers_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_wished_items spree_wished_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_wished_items + ADD CONSTRAINT spree_wished_items_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_wishlists spree_wishlists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_wishlists + ADD CONSTRAINT spree_wishlists_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_zone_members spree_zone_members_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_zone_members + ADD CONSTRAINT spree_zone_members_pkey PRIMARY KEY (id); + + +-- +-- Name: spree_zones spree_zones_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_zones + ADD CONSTRAINT spree_zones_pkey PRIMARY KEY (id); + + +-- +-- Name: email_idx_unique; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX email_idx_unique ON public.spree_users USING btree (email); + + +-- +-- Name: index_action_mailbox_inbound_emails_uniqueness; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_action_mailbox_inbound_emails_uniqueness ON public.action_mailbox_inbound_emails USING btree (message_id, message_checksum); + + +-- +-- Name: index_action_text_rich_texts_uniqueness; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_action_text_rich_texts_uniqueness ON public.action_text_rich_texts USING btree (record_type, record_id, name); + + +-- +-- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id); + + +-- +-- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id); + + +-- +-- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key); + + +-- +-- Name: index_active_storage_variant_records_uniqueness; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_active_storage_variant_records_uniqueness ON public.active_storage_variant_records USING btree (blob_id, variation_digest); + + +-- +-- Name: index_addresses_on_firstname; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_addresses_on_firstname ON public.spree_addresses USING btree (firstname); + + +-- +-- Name: index_addresses_on_lastname; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_addresses_on_lastname ON public.spree_addresses USING btree (lastname); + + +-- +-- Name: index_assets_on_viewable_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_assets_on_viewable_id ON public.spree_assets USING btree (viewable_id); + + +-- +-- Name: index_assets_on_viewable_type_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_assets_on_viewable_type_and_type ON public.spree_assets USING btree (viewable_type, type); + + +-- +-- Name: index_friendly_id_slugs_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_friendly_id_slugs_on_deleted_at ON public.friendly_id_slugs USING btree (deleted_at); + + +-- +-- Name: index_friendly_id_slugs_on_slug_and_sluggable_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type ON public.friendly_id_slugs USING btree (slug, sluggable_type); + + +-- +-- Name: index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope ON public.friendly_id_slugs USING btree (slug, sluggable_type, scope); + + +-- +-- Name: index_friendly_id_slugs_on_sluggable_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_friendly_id_slugs_on_sluggable_id ON public.friendly_id_slugs USING btree (sluggable_id); + + +-- +-- Name: index_friendly_id_slugs_on_sluggable_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_friendly_id_slugs_on_sluggable_type ON public.friendly_id_slugs USING btree (sluggable_type); + + +-- +-- Name: index_inventory_units_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_inventory_units_on_order_id ON public.spree_inventory_units USING btree (order_id); + + +-- +-- Name: index_inventory_units_on_shipment_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_inventory_units_on_shipment_id ON public.spree_inventory_units USING btree (shipment_id); + + +-- +-- Name: index_inventory_units_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_inventory_units_on_variant_id ON public.spree_inventory_units USING btree (variant_id); + + +-- +-- Name: index_option_values_variants_on_variant_id_and_option_value_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_option_values_variants_on_variant_id_and_option_value_id ON public.spree_option_value_variants USING btree (variant_id, option_value_id); + + +-- +-- Name: index_product_properties_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_product_properties_on_product_id ON public.spree_product_properties USING btree (product_id); + + +-- +-- Name: index_products_promotion_rules_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_products_promotion_rules_on_product_id ON public.spree_product_promotion_rules USING btree (product_id); + + +-- +-- Name: index_products_promotion_rules_on_promotion_rule_and_product; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_products_promotion_rules_on_promotion_rule_and_product ON public.spree_product_promotion_rules USING btree (promotion_rule_id, product_id); + + +-- +-- Name: index_promotion_rules_on_product_group_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_promotion_rules_on_product_group_id ON public.spree_promotion_rules USING btree (product_group_id); + + +-- +-- Name: index_promotion_rules_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_promotion_rules_on_user_id ON public.spree_promotion_rules USING btree (user_id); + + +-- +-- Name: index_promotion_rules_users_on_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_promotion_rules_users_on_promotion_rule_id ON public.spree_promotion_rule_users USING btree (promotion_rule_id); + + +-- +-- Name: index_promotion_rules_users_on_user_id_and_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_promotion_rules_users_on_user_id_and_promotion_rule_id ON public.spree_promotion_rule_users USING btree (user_id, promotion_rule_id); + + +-- +-- Name: index_property_prototypes_on_prototype_id_and_property_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_property_prototypes_on_prototype_id_and_property_id ON public.spree_property_prototypes USING btree (prototype_id, property_id); + + +-- +-- Name: index_refunds_on_refund_reason_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_refunds_on_refund_reason_id ON public.spree_refunds USING btree (refund_reason_id); + + +-- +-- Name: index_reimbursement_credits_on_creditable_id_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_reimbursement_credits_on_creditable_id_and_type ON public.spree_reimbursement_credits USING btree (creditable_id, creditable_type); + + +-- +-- Name: index_return_authorizations_on_return_authorization_reason_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_return_authorizations_on_return_authorization_reason_id ON public.spree_return_authorizations USING btree (return_authorization_reason_id); + + +-- +-- Name: index_return_items_on_customer_return_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_return_items_on_customer_return_id ON public.spree_return_items USING btree (customer_return_id); + + +-- +-- Name: index_spree_addresses_on_country_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_addresses_on_country_id ON public.spree_addresses USING btree (country_id); + + +-- +-- Name: index_spree_addresses_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_addresses_on_deleted_at ON public.spree_addresses USING btree (deleted_at); + + +-- +-- Name: index_spree_addresses_on_state_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_addresses_on_state_id ON public.spree_addresses USING btree (state_id); + + +-- +-- Name: index_spree_addresses_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_addresses_on_user_id ON public.spree_addresses USING btree (user_id); + + +-- +-- Name: index_spree_adjustments_on_adjustable_id_and_adjustable_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_adjustments_on_adjustable_id_and_adjustable_type ON public.spree_adjustments USING btree (adjustable_id, adjustable_type); + + +-- +-- Name: index_spree_adjustments_on_eligible; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_adjustments_on_eligible ON public.spree_adjustments USING btree (eligible); + + +-- +-- Name: index_spree_adjustments_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_adjustments_on_order_id ON public.spree_adjustments USING btree (order_id); + + +-- +-- Name: index_spree_adjustments_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_adjustments_on_source_id_and_source_type ON public.spree_adjustments USING btree (source_id, source_type); + + +-- +-- Name: index_spree_assets_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_assets_on_position ON public.spree_assets USING btree ("position"); + + +-- +-- Name: index_spree_calculators_on_calculable_id_and_calculable_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_calculators_on_calculable_id_and_calculable_type ON public.spree_calculators USING btree (calculable_id, calculable_type); + + +-- +-- Name: index_spree_calculators_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_calculators_on_deleted_at ON public.spree_calculators USING btree (deleted_at); + + +-- +-- Name: index_spree_calculators_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_calculators_on_id_and_type ON public.spree_calculators USING btree (id, type); + + +-- +-- Name: index_spree_checks_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_checks_on_payment_method_id ON public.spree_checks USING btree (payment_method_id); + + +-- +-- Name: index_spree_checks_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_checks_on_user_id ON public.spree_checks USING btree (user_id); + + +-- +-- Name: index_spree_cms_pages_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_deleted_at ON public.spree_cms_pages USING btree (deleted_at); + + +-- +-- Name: index_spree_cms_pages_on_slug_and_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_cms_pages_on_slug_and_store_id ON public.spree_cms_pages USING btree (slug, store_id); + + +-- +-- Name: index_spree_cms_pages_on_slug_and_store_id_and_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_slug_and_store_id_and_deleted_at ON public.spree_cms_pages USING btree (slug, store_id, deleted_at); + + +-- +-- Name: index_spree_cms_pages_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_store_id ON public.spree_cms_pages USING btree (store_id); + + +-- +-- Name: index_spree_cms_pages_on_store_id_and_locale_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_store_id_and_locale_and_type ON public.spree_cms_pages USING btree (store_id, locale, type); + + +-- +-- Name: index_spree_cms_pages_on_title_and_type_and_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_title_and_type_and_store_id ON public.spree_cms_pages USING btree (title, type, store_id); + + +-- +-- Name: index_spree_cms_pages_on_visible; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_pages_on_visible ON public.spree_cms_pages USING btree (visible); + + +-- +-- Name: index_spree_cms_sections_on_cms_page_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_sections_on_cms_page_id ON public.spree_cms_sections USING btree (cms_page_id); + + +-- +-- Name: index_spree_cms_sections_on_linked_resource; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_sections_on_linked_resource ON public.spree_cms_sections USING btree (linked_resource_type, linked_resource_id); + + +-- +-- Name: index_spree_cms_sections_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_sections_on_position ON public.spree_cms_sections USING btree ("position"); + + +-- +-- Name: index_spree_cms_sections_on_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_cms_sections_on_type ON public.spree_cms_sections USING btree (type); + + +-- +-- Name: index_spree_countries_on_iso; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_countries_on_iso ON public.spree_countries USING btree (iso); + + +-- +-- Name: index_spree_countries_on_iso3; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_countries_on_iso3 ON public.spree_countries USING btree (iso3); + + +-- +-- Name: index_spree_countries_on_iso_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_countries_on_iso_name ON public.spree_countries USING btree (iso_name); + + +-- +-- Name: index_spree_countries_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_countries_on_name ON public.spree_countries USING btree (name); + + +-- +-- Name: index_spree_credit_cards_on_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_credit_cards_on_address_id ON public.spree_credit_cards USING btree (address_id); + + +-- +-- Name: index_spree_credit_cards_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_credit_cards_on_deleted_at ON public.spree_credit_cards USING btree (deleted_at); + + +-- +-- Name: index_spree_credit_cards_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_credit_cards_on_payment_method_id ON public.spree_credit_cards USING btree (payment_method_id); + + +-- +-- Name: index_spree_credit_cards_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_credit_cards_on_user_id ON public.spree_credit_cards USING btree (user_id); + + +-- +-- Name: index_spree_customer_returns_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_customer_returns_on_number ON public.spree_customer_returns USING btree (number); + + +-- +-- Name: index_spree_customer_returns_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_customer_returns_on_stock_location_id ON public.spree_customer_returns USING btree (stock_location_id); + + +-- +-- Name: index_spree_customer_returns_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_customer_returns_on_store_id ON public.spree_customer_returns USING btree (store_id); + + +-- +-- Name: index_spree_digital_links_on_digital_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_digital_links_on_digital_id ON public.spree_digital_links USING btree (digital_id); + + +-- +-- Name: index_spree_digital_links_on_line_item_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_digital_links_on_line_item_id ON public.spree_digital_links USING btree (line_item_id); + + +-- +-- Name: index_spree_digital_links_on_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_digital_links_on_token ON public.spree_digital_links USING btree (token); + + +-- +-- Name: index_spree_digitals_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_digitals_on_variant_id ON public.spree_digitals USING btree (variant_id); + + +-- +-- Name: index_spree_gateways_on_active; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_gateways_on_active ON public.spree_gateways USING btree (active); + + +-- +-- Name: index_spree_gateways_on_test_mode; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_gateways_on_test_mode ON public.spree_gateways USING btree (test_mode); + + +-- +-- Name: index_spree_inventory_units_on_line_item_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_inventory_units_on_line_item_id ON public.spree_inventory_units USING btree (line_item_id); + + +-- +-- Name: index_spree_inventory_units_on_original_return_item_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_inventory_units_on_original_return_item_id ON public.spree_inventory_units USING btree (original_return_item_id); + + +-- +-- Name: index_spree_line_items_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_line_items_on_order_id ON public.spree_line_items USING btree (order_id); + + +-- +-- Name: index_spree_line_items_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_line_items_on_tax_category_id ON public.spree_line_items USING btree (tax_category_id); + + +-- +-- Name: index_spree_line_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_line_items_on_variant_id ON public.spree_line_items USING btree (variant_id); + + +-- +-- Name: index_spree_log_entries_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_log_entries_on_source_id_and_source_type ON public.spree_log_entries USING btree (source_id, source_type); + + +-- +-- Name: index_spree_menu_items_on_code; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_code ON public.spree_menu_items USING btree (code); + + +-- +-- Name: index_spree_menu_items_on_depth; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_depth ON public.spree_menu_items USING btree (depth); + + +-- +-- Name: index_spree_menu_items_on_item_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_item_type ON public.spree_menu_items USING btree (item_type); + + +-- +-- Name: index_spree_menu_items_on_lft; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_lft ON public.spree_menu_items USING btree (lft); + + +-- +-- Name: index_spree_menu_items_on_linked_resource; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_linked_resource ON public.spree_menu_items USING btree (linked_resource_type, linked_resource_id); + + +-- +-- Name: index_spree_menu_items_on_menu_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_menu_id ON public.spree_menu_items USING btree (menu_id); + + +-- +-- Name: index_spree_menu_items_on_parent_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_parent_id ON public.spree_menu_items USING btree (parent_id); + + +-- +-- Name: index_spree_menu_items_on_rgt; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menu_items_on_rgt ON public.spree_menu_items USING btree (rgt); + + +-- +-- Name: index_spree_menus_on_locale; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menus_on_locale ON public.spree_menus USING btree (locale); + + +-- +-- Name: index_spree_menus_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_menus_on_store_id ON public.spree_menus USING btree (store_id); + + +-- +-- Name: index_spree_menus_on_store_id_and_location_and_locale; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_menus_on_store_id_and_location_and_locale ON public.spree_menus USING btree (store_id, location, locale); + + +-- +-- Name: index_spree_oauth_access_grants_on_application_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_oauth_access_grants_on_application_id ON public.spree_oauth_access_grants USING btree (application_id); + + +-- +-- Name: index_spree_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_oauth_access_grants_on_token ON public.spree_oauth_access_grants USING btree (token); + + +-- +-- Name: index_spree_oauth_access_tokens_on_application_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_oauth_access_tokens_on_application_id ON public.spree_oauth_access_tokens USING btree (application_id); + + +-- +-- Name: index_spree_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_oauth_access_tokens_on_refresh_token ON public.spree_oauth_access_tokens USING btree (refresh_token); + + +-- +-- Name: index_spree_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_oauth_access_tokens_on_resource_owner_id ON public.spree_oauth_access_tokens USING btree (resource_owner_id); + + +-- +-- Name: index_spree_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_oauth_access_tokens_on_token ON public.spree_oauth_access_tokens USING btree (token); + + +-- +-- Name: index_spree_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_oauth_applications_on_uid ON public.spree_oauth_applications USING btree (uid); + + +-- +-- Name: index_spree_option_type_prototypes_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_type_prototypes_on_option_type_id ON public.spree_option_type_prototypes USING btree (option_type_id); + + +-- +-- Name: index_spree_option_type_prototypes_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_type_prototypes_on_prototype_id ON public.spree_option_type_prototypes USING btree (prototype_id); + + +-- +-- Name: index_spree_option_types_on_filterable; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_types_on_filterable ON public.spree_option_types USING btree (filterable); + + +-- +-- Name: index_spree_option_types_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_types_on_name ON public.spree_option_types USING btree (name); + + +-- +-- Name: index_spree_option_types_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_types_on_position ON public.spree_option_types USING btree ("position"); + + +-- +-- Name: index_spree_option_value_variants_on_option_value_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_value_variants_on_option_value_id ON public.spree_option_value_variants USING btree (option_value_id); + + +-- +-- Name: index_spree_option_value_variants_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_value_variants_on_variant_id ON public.spree_option_value_variants USING btree (variant_id); + + +-- +-- Name: index_spree_option_values_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_values_on_name ON public.spree_option_values USING btree (name); + + +-- +-- Name: index_spree_option_values_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_values_on_option_type_id ON public.spree_option_values USING btree (option_type_id); + + +-- +-- Name: index_spree_option_values_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_option_values_on_position ON public.spree_option_values USING btree ("position"); + + +-- +-- Name: index_spree_order_promotions_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_order_promotions_on_order_id ON public.spree_order_promotions USING btree (order_id); + + +-- +-- Name: index_spree_order_promotions_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_order_promotions_on_promotion_id ON public.spree_order_promotions USING btree (promotion_id); + + +-- +-- Name: index_spree_order_promotions_on_promotion_id_and_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_order_promotions_on_promotion_id_and_order_id ON public.spree_order_promotions USING btree (promotion_id, order_id); + + +-- +-- Name: index_spree_orders_on_approver_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_approver_id ON public.spree_orders USING btree (approver_id); + + +-- +-- Name: index_spree_orders_on_bill_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_bill_address_id ON public.spree_orders USING btree (bill_address_id); + + +-- +-- Name: index_spree_orders_on_canceler_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_canceler_id ON public.spree_orders USING btree (canceler_id); + + +-- +-- Name: index_spree_orders_on_completed_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_completed_at ON public.spree_orders USING btree (completed_at); + + +-- +-- Name: index_spree_orders_on_confirmation_delivered; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_confirmation_delivered ON public.spree_orders USING btree (confirmation_delivered); + + +-- +-- Name: index_spree_orders_on_considered_risky; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_considered_risky ON public.spree_orders USING btree (considered_risky); + + +-- +-- Name: index_spree_orders_on_created_by_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_created_by_id ON public.spree_orders USING btree (created_by_id); + + +-- +-- Name: index_spree_orders_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_orders_on_number ON public.spree_orders USING btree (number); + + +-- +-- Name: index_spree_orders_on_ship_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_ship_address_id ON public.spree_orders USING btree (ship_address_id); + + +-- +-- Name: index_spree_orders_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_store_id ON public.spree_orders USING btree (store_id); + + +-- +-- Name: index_spree_orders_on_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_token ON public.spree_orders USING btree (token); + + +-- +-- Name: index_spree_orders_on_user_id_and_created_by_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_orders_on_user_id_and_created_by_id ON public.spree_orders USING btree (user_id, created_by_id); + + +-- +-- Name: index_spree_payment_capture_events_on_payment_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payment_capture_events_on_payment_id ON public.spree_payment_capture_events USING btree (payment_id); + + +-- +-- Name: index_spree_payment_methods_on_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payment_methods_on_id ON public.spree_payment_methods USING btree (id); + + +-- +-- Name: index_spree_payment_methods_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payment_methods_on_id_and_type ON public.spree_payment_methods USING btree (id, type); + + +-- +-- Name: index_spree_payment_methods_stores_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payment_methods_stores_on_payment_method_id ON public.spree_payment_methods_stores USING btree (payment_method_id); + + +-- +-- Name: index_spree_payment_methods_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payment_methods_stores_on_store_id ON public.spree_payment_methods_stores USING btree (store_id); + + +-- +-- Name: index_spree_payments_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_payments_on_number ON public.spree_payments USING btree (number); + + +-- +-- Name: index_spree_payments_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payments_on_order_id ON public.spree_payments USING btree (order_id); + + +-- +-- Name: index_spree_payments_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payments_on_payment_method_id ON public.spree_payments USING btree (payment_method_id); + + +-- +-- Name: index_spree_payments_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_payments_on_source_id_and_source_type ON public.spree_payments USING btree (source_id, source_type); + + +-- +-- Name: index_spree_preferences_on_key; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_preferences_on_key ON public.spree_preferences USING btree (key); + + +-- +-- Name: index_spree_prices_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prices_on_deleted_at ON public.spree_prices USING btree (deleted_at); + + +-- +-- Name: index_spree_prices_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prices_on_variant_id ON public.spree_prices USING btree (variant_id); + + +-- +-- Name: index_spree_prices_on_variant_id_and_currency; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prices_on_variant_id_and_currency ON public.spree_prices USING btree (variant_id, currency); + + +-- +-- Name: index_spree_product_option_types_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_option_types_on_option_type_id ON public.spree_product_option_types USING btree (option_type_id); + + +-- +-- Name: index_spree_product_option_types_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_option_types_on_position ON public.spree_product_option_types USING btree ("position"); + + +-- +-- Name: index_spree_product_option_types_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_option_types_on_product_id ON public.spree_product_option_types USING btree (product_id); + + +-- +-- Name: index_spree_product_properties_on_filter_param; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_properties_on_filter_param ON public.spree_product_properties USING btree (filter_param); + + +-- +-- Name: index_spree_product_properties_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_properties_on_position ON public.spree_product_properties USING btree ("position"); + + +-- +-- Name: index_spree_product_properties_on_property_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_product_properties_on_property_id ON public.spree_product_properties USING btree (property_id); + + +-- +-- Name: index_spree_product_properties_on_property_id_and_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_product_properties_on_property_id_and_product_id ON public.spree_product_properties USING btree (property_id, product_id); + + +-- +-- Name: index_spree_products_on_available_on; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_available_on ON public.spree_products USING btree (available_on); + + +-- +-- Name: index_spree_products_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_deleted_at ON public.spree_products USING btree (deleted_at); + + +-- +-- Name: index_spree_products_on_discontinue_on; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_discontinue_on ON public.spree_products USING btree (discontinue_on); + + +-- +-- Name: index_spree_products_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_name ON public.spree_products USING btree (name); + + +-- +-- Name: index_spree_products_on_shipping_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_shipping_category_id ON public.spree_products USING btree (shipping_category_id); + + +-- +-- Name: index_spree_products_on_slug; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_products_on_slug ON public.spree_products USING btree (slug); + + +-- +-- Name: index_spree_products_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_on_tax_category_id ON public.spree_products USING btree (tax_category_id); + + +-- +-- Name: index_spree_products_stores_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_stores_on_product_id ON public.spree_products_stores USING btree (product_id); + + +-- +-- Name: index_spree_products_stores_on_product_id_and_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_products_stores_on_product_id_and_store_id ON public.spree_products_stores USING btree (product_id, store_id); + + +-- +-- Name: index_spree_products_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_stores_on_store_id ON public.spree_products_stores USING btree (store_id); + + +-- +-- Name: index_spree_products_taxons_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_taxons_on_position ON public.spree_products_taxons USING btree ("position"); + + +-- +-- Name: index_spree_products_taxons_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_taxons_on_product_id ON public.spree_products_taxons USING btree (product_id); + + +-- +-- Name: index_spree_products_taxons_on_product_id_and_taxon_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_products_taxons_on_product_id_and_taxon_id ON public.spree_products_taxons USING btree (product_id, taxon_id); + + +-- +-- Name: index_spree_products_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_products_taxons_on_taxon_id ON public.spree_products_taxons USING btree (taxon_id); + + +-- +-- Name: index_spree_promotion_action_line_items_on_promotion_action_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_action_line_items_on_promotion_action_id ON public.spree_promotion_action_line_items USING btree (promotion_action_id); + + +-- +-- Name: index_spree_promotion_action_line_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_action_line_items_on_variant_id ON public.spree_promotion_action_line_items USING btree (variant_id); + + +-- +-- Name: index_spree_promotion_actions_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_actions_on_deleted_at ON public.spree_promotion_actions USING btree (deleted_at); + + +-- +-- Name: index_spree_promotion_actions_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_actions_on_id_and_type ON public.spree_promotion_actions USING btree (id, type); + + +-- +-- Name: index_spree_promotion_actions_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_actions_on_promotion_id ON public.spree_promotion_actions USING btree (promotion_id); + + +-- +-- Name: index_spree_promotion_rule_taxons_on_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_rule_taxons_on_promotion_rule_id ON public.spree_promotion_rule_taxons USING btree (promotion_rule_id); + + +-- +-- Name: index_spree_promotion_rule_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_rule_taxons_on_taxon_id ON public.spree_promotion_rule_taxons USING btree (taxon_id); + + +-- +-- Name: index_spree_promotion_rules_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotion_rules_on_promotion_id ON public.spree_promotion_rules USING btree (promotion_id); + + +-- +-- Name: index_spree_promotions_on_advertise; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_advertise ON public.spree_promotions USING btree (advertise); + + +-- +-- Name: index_spree_promotions_on_code; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_code ON public.spree_promotions USING btree (code); + + +-- +-- Name: index_spree_promotions_on_expires_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_expires_at ON public.spree_promotions USING btree (expires_at); + + +-- +-- Name: index_spree_promotions_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_id_and_type ON public.spree_promotions USING btree (id, type); + + +-- +-- Name: index_spree_promotions_on_path; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_path ON public.spree_promotions USING btree (path); + + +-- +-- Name: index_spree_promotions_on_promotion_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_promotion_category_id ON public.spree_promotions USING btree (promotion_category_id); + + +-- +-- Name: index_spree_promotions_on_starts_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_on_starts_at ON public.spree_promotions USING btree (starts_at); + + +-- +-- Name: index_spree_promotions_stores_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_stores_on_promotion_id ON public.spree_promotions_stores USING btree (promotion_id); + + +-- +-- Name: index_spree_promotions_stores_on_promotion_id_and_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_promotions_stores_on_promotion_id_and_store_id ON public.spree_promotions_stores USING btree (promotion_id, store_id); + + +-- +-- Name: index_spree_promotions_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_promotions_stores_on_store_id ON public.spree_promotions_stores USING btree (store_id); + + +-- +-- Name: index_spree_properties_on_filter_param; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_properties_on_filter_param ON public.spree_properties USING btree (filter_param); + + +-- +-- Name: index_spree_properties_on_filterable; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_properties_on_filterable ON public.spree_properties USING btree (filterable); + + +-- +-- Name: index_spree_properties_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_properties_on_name ON public.spree_properties USING btree (name); + + +-- +-- Name: index_spree_property_prototypes_on_property_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_property_prototypes_on_property_id ON public.spree_property_prototypes USING btree (property_id); + + +-- +-- Name: index_spree_property_prototypes_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_property_prototypes_on_prototype_id ON public.spree_property_prototypes USING btree (prototype_id); + + +-- +-- Name: index_spree_prototype_taxons_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prototype_taxons_on_prototype_id ON public.spree_prototype_taxons USING btree (prototype_id); + + +-- +-- Name: index_spree_prototype_taxons_on_prototype_id_and_taxon_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prototype_taxons_on_prototype_id_and_taxon_id ON public.spree_prototype_taxons USING btree (prototype_id, taxon_id); + + +-- +-- Name: index_spree_prototype_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_prototype_taxons_on_taxon_id ON public.spree_prototype_taxons USING btree (taxon_id); + + +-- +-- Name: index_spree_refund_reasons_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_refund_reasons_on_name ON public.spree_refund_reasons USING btree (name); + + +-- +-- Name: index_spree_refunds_on_payment_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_refunds_on_payment_id ON public.spree_refunds USING btree (payment_id); + + +-- +-- Name: index_spree_refunds_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_refunds_on_reimbursement_id ON public.spree_refunds USING btree (reimbursement_id); + + +-- +-- Name: index_spree_reimbursement_credits_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_reimbursement_credits_on_reimbursement_id ON public.spree_reimbursement_credits USING btree (reimbursement_id); + + +-- +-- Name: index_spree_reimbursement_types_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_reimbursement_types_on_name ON public.spree_reimbursement_types USING btree (name); + + +-- +-- Name: index_spree_reimbursement_types_on_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_reimbursement_types_on_type ON public.spree_reimbursement_types USING btree (type); + + +-- +-- Name: index_spree_reimbursements_on_customer_return_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_reimbursements_on_customer_return_id ON public.spree_reimbursements USING btree (customer_return_id); + + +-- +-- Name: index_spree_reimbursements_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_reimbursements_on_number ON public.spree_reimbursements USING btree (number); + + +-- +-- Name: index_spree_reimbursements_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_reimbursements_on_order_id ON public.spree_reimbursements USING btree (order_id); + + +-- +-- Name: index_spree_return_authorization_reasons_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_return_authorization_reasons_on_name ON public.spree_return_authorization_reasons USING btree (name); + + +-- +-- Name: index_spree_return_authorizations_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_return_authorizations_on_number ON public.spree_return_authorizations USING btree (number); + + +-- +-- Name: index_spree_return_authorizations_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_authorizations_on_order_id ON public.spree_return_authorizations USING btree (order_id); + + +-- +-- Name: index_spree_return_authorizations_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_authorizations_on_stock_location_id ON public.spree_return_authorizations USING btree (stock_location_id); + + +-- +-- Name: index_spree_return_items_on_exchange_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_exchange_variant_id ON public.spree_return_items USING btree (exchange_variant_id); + + +-- +-- Name: index_spree_return_items_on_inventory_unit_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_inventory_unit_id ON public.spree_return_items USING btree (inventory_unit_id); + + +-- +-- Name: index_spree_return_items_on_override_reimbursement_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_override_reimbursement_type_id ON public.spree_return_items USING btree (override_reimbursement_type_id); + + +-- +-- Name: index_spree_return_items_on_preferred_reimbursement_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_preferred_reimbursement_type_id ON public.spree_return_items USING btree (preferred_reimbursement_type_id); + + +-- +-- Name: index_spree_return_items_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_reimbursement_id ON public.spree_return_items USING btree (reimbursement_id); + + +-- +-- Name: index_spree_return_items_on_return_authorization_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_return_items_on_return_authorization_id ON public.spree_return_items USING btree (return_authorization_id); + + +-- +-- Name: index_spree_role_users_on_role_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_role_users_on_role_id ON public.spree_role_users USING btree (role_id); + + +-- +-- Name: index_spree_role_users_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_role_users_on_user_id ON public.spree_role_users USING btree (user_id); + + +-- +-- Name: index_spree_roles_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_roles_on_name ON public.spree_roles USING btree (name); + + +-- +-- Name: index_spree_shipments_on_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipments_on_address_id ON public.spree_shipments USING btree (address_id); + + +-- +-- Name: index_spree_shipments_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_shipments_on_number ON public.spree_shipments USING btree (number); + + +-- +-- Name: index_spree_shipments_on_order_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipments_on_order_id ON public.spree_shipments USING btree (order_id); + + +-- +-- Name: index_spree_shipments_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipments_on_stock_location_id ON public.spree_shipments USING btree (stock_location_id); + + +-- +-- Name: index_spree_shipping_categories_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_categories_on_name ON public.spree_shipping_categories USING btree (name); + + +-- +-- Name: index_spree_shipping_method_categories_on_shipping_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_method_categories_on_shipping_category_id ON public.spree_shipping_method_categories USING btree (shipping_category_id); + + +-- +-- Name: index_spree_shipping_method_categories_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_method_categories_on_shipping_method_id ON public.spree_shipping_method_categories USING btree (shipping_method_id); + + +-- +-- Name: index_spree_shipping_method_zones_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_method_zones_on_shipping_method_id ON public.spree_shipping_method_zones USING btree (shipping_method_id); + + +-- +-- Name: index_spree_shipping_method_zones_on_zone_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_method_zones_on_zone_id ON public.spree_shipping_method_zones USING btree (zone_id); + + +-- +-- Name: index_spree_shipping_methods_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_methods_on_deleted_at ON public.spree_shipping_methods USING btree (deleted_at); + + +-- +-- Name: index_spree_shipping_methods_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_methods_on_tax_category_id ON public.spree_shipping_methods USING btree (tax_category_id); + + +-- +-- Name: index_spree_shipping_rates_on_selected; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_rates_on_selected ON public.spree_shipping_rates USING btree (selected); + + +-- +-- Name: index_spree_shipping_rates_on_shipment_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_rates_on_shipment_id ON public.spree_shipping_rates USING btree (shipment_id); + + +-- +-- Name: index_spree_shipping_rates_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_rates_on_shipping_method_id ON public.spree_shipping_rates USING btree (shipping_method_id); + + +-- +-- Name: index_spree_shipping_rates_on_tax_rate_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_shipping_rates_on_tax_rate_id ON public.spree_shipping_rates USING btree (tax_rate_id); + + +-- +-- Name: index_spree_state_changes_on_stateful_id_and_stateful_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_state_changes_on_stateful_id_and_stateful_type ON public.spree_state_changes USING btree (stateful_id, stateful_type); + + +-- +-- Name: index_spree_states_on_country_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_states_on_country_id ON public.spree_states USING btree (country_id); + + +-- +-- Name: index_spree_stock_items_on_backorderable; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_items_on_backorderable ON public.spree_stock_items USING btree (backorderable); + + +-- +-- Name: index_spree_stock_items_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_items_on_deleted_at ON public.spree_stock_items USING btree (deleted_at); + + +-- +-- Name: index_spree_stock_items_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_items_on_stock_location_id ON public.spree_stock_items USING btree (stock_location_id); + + +-- +-- Name: index_spree_stock_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_items_on_variant_id ON public.spree_stock_items USING btree (variant_id); + + +-- +-- Name: index_spree_stock_locations_on_active; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_locations_on_active ON public.spree_stock_locations USING btree (active); + + +-- +-- Name: index_spree_stock_locations_on_backorderable_default; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_locations_on_backorderable_default ON public.spree_stock_locations USING btree (backorderable_default); + + +-- +-- Name: index_spree_stock_locations_on_country_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_locations_on_country_id ON public.spree_stock_locations USING btree (country_id); + + +-- +-- Name: index_spree_stock_locations_on_propagate_all_variants; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_locations_on_propagate_all_variants ON public.spree_stock_locations USING btree (propagate_all_variants); + + +-- +-- Name: index_spree_stock_locations_on_state_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_locations_on_state_id ON public.spree_stock_locations USING btree (state_id); + + +-- +-- Name: index_spree_stock_movements_on_stock_item_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_movements_on_stock_item_id ON public.spree_stock_movements USING btree (stock_item_id); + + +-- +-- Name: index_spree_stock_transfers_on_destination_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_transfers_on_destination_location_id ON public.spree_stock_transfers USING btree (destination_location_id); + + +-- +-- Name: index_spree_stock_transfers_on_number; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_stock_transfers_on_number ON public.spree_stock_transfers USING btree (number); + + +-- +-- Name: index_spree_stock_transfers_on_source_location_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stock_transfers_on_source_location_id ON public.spree_stock_transfers USING btree (source_location_id); + + +-- +-- Name: index_spree_store_credit_events_on_store_credit_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credit_events_on_store_credit_id ON public.spree_store_credit_events USING btree (store_credit_id); + + +-- +-- Name: index_spree_store_credit_types_on_priority; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credit_types_on_priority ON public.spree_store_credit_types USING btree (priority); + + +-- +-- Name: index_spree_store_credits_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credits_on_deleted_at ON public.spree_store_credits USING btree (deleted_at); + + +-- +-- Name: index_spree_store_credits_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credits_on_store_id ON public.spree_store_credits USING btree (store_id); + + +-- +-- Name: index_spree_store_credits_on_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credits_on_type_id ON public.spree_store_credits USING btree (type_id); + + +-- +-- Name: index_spree_store_credits_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_store_credits_on_user_id ON public.spree_store_credits USING btree (user_id); + + +-- +-- Name: index_spree_stores_on_code; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_stores_on_code ON public.spree_stores USING btree (code); + + +-- +-- Name: index_spree_stores_on_default; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stores_on_default ON public.spree_stores USING btree ("default"); + + +-- +-- Name: index_spree_stores_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stores_on_deleted_at ON public.spree_stores USING btree (deleted_at); + + +-- +-- Name: index_spree_stores_on_url; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_stores_on_url ON public.spree_stores USING btree (url); + + +-- +-- Name: index_spree_tax_categories_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_categories_on_deleted_at ON public.spree_tax_categories USING btree (deleted_at); + + +-- +-- Name: index_spree_tax_categories_on_is_default; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_categories_on_is_default ON public.spree_tax_categories USING btree (is_default); + + +-- +-- Name: index_spree_tax_rates_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_rates_on_deleted_at ON public.spree_tax_rates USING btree (deleted_at); + + +-- +-- Name: index_spree_tax_rates_on_included_in_price; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_rates_on_included_in_price ON public.spree_tax_rates USING btree (included_in_price); + + +-- +-- Name: index_spree_tax_rates_on_show_rate_in_label; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_rates_on_show_rate_in_label ON public.spree_tax_rates USING btree (show_rate_in_label); + + +-- +-- Name: index_spree_tax_rates_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_rates_on_tax_category_id ON public.spree_tax_rates USING btree (tax_category_id); + + +-- +-- Name: index_spree_tax_rates_on_zone_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_tax_rates_on_zone_id ON public.spree_tax_rates USING btree (zone_id); + + +-- +-- Name: index_spree_taxonomies_on_name_and_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_taxonomies_on_name_and_store_id ON public.spree_taxonomies USING btree (name, store_id); + + +-- +-- Name: index_spree_taxonomies_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxonomies_on_position ON public.spree_taxonomies USING btree ("position"); + + +-- +-- Name: index_spree_taxonomies_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxonomies_on_store_id ON public.spree_taxonomies USING btree (store_id); + + +-- +-- Name: index_spree_taxons_on_lft; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxons_on_lft ON public.spree_taxons USING btree (lft); + + +-- +-- Name: index_spree_taxons_on_name; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxons_on_name ON public.spree_taxons USING btree (name); + + +-- +-- Name: index_spree_taxons_on_name_and_parent_id_and_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_taxons_on_name_and_parent_id_and_taxonomy_id ON public.spree_taxons USING btree (name, parent_id, taxonomy_id); + + +-- +-- Name: index_spree_taxons_on_permalink_and_parent_id_and_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_taxons_on_permalink_and_parent_id_and_taxonomy_id ON public.spree_taxons USING btree (permalink, parent_id, taxonomy_id); + + +-- +-- Name: index_spree_taxons_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxons_on_position ON public.spree_taxons USING btree ("position"); + + +-- +-- Name: index_spree_taxons_on_rgt; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_taxons_on_rgt ON public.spree_taxons USING btree (rgt); + + +-- +-- Name: index_spree_trackers_on_active; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_trackers_on_active ON public.spree_trackers USING btree (active); + + +-- +-- Name: index_spree_users_on_bill_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_users_on_bill_address_id ON public.spree_users USING btree (bill_address_id); + + +-- +-- Name: index_spree_users_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_users_on_deleted_at ON public.spree_users USING btree (deleted_at); + + +-- +-- Name: index_spree_users_on_ship_address_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_users_on_ship_address_id ON public.spree_users USING btree (ship_address_id); + + +-- +-- Name: index_spree_users_on_spree_api_key; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_users_on_spree_api_key ON public.spree_users USING btree (spree_api_key); + + +-- +-- Name: index_spree_variants_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_deleted_at ON public.spree_variants USING btree (deleted_at); + + +-- +-- Name: index_spree_variants_on_discontinue_on; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_discontinue_on ON public.spree_variants USING btree (discontinue_on); + + +-- +-- Name: index_spree_variants_on_is_master; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_is_master ON public.spree_variants USING btree (is_master); + + +-- +-- Name: index_spree_variants_on_position; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_position ON public.spree_variants USING btree ("position"); + + +-- +-- Name: index_spree_variants_on_product_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_product_id ON public.spree_variants USING btree (product_id); + + +-- +-- Name: index_spree_variants_on_sku; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_sku ON public.spree_variants USING btree (sku); + + +-- +-- Name: index_spree_variants_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_tax_category_id ON public.spree_variants USING btree (tax_category_id); + + +-- +-- Name: index_spree_variants_on_track_inventory; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_variants_on_track_inventory ON public.spree_variants USING btree (track_inventory); + + +-- +-- Name: index_spree_webhooks_events_on_response_code; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_webhooks_events_on_response_code ON public.spree_webhooks_events USING btree (response_code); + + +-- +-- Name: index_spree_webhooks_events_on_subscriber_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_webhooks_events_on_subscriber_id ON public.spree_webhooks_events USING btree (subscriber_id); + + +-- +-- Name: index_spree_webhooks_events_on_success; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_webhooks_events_on_success ON public.spree_webhooks_events USING btree (success); + + +-- +-- Name: index_spree_webhooks_subscribers_on_active; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_webhooks_subscribers_on_active ON public.spree_webhooks_subscribers USING btree (active); + + +-- +-- Name: index_spree_wished_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_wished_items_on_variant_id ON public.spree_wished_items USING btree (variant_id); + + +-- +-- Name: index_spree_wished_items_on_variant_id_and_wishlist_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_wished_items_on_variant_id_and_wishlist_id ON public.spree_wished_items USING btree (variant_id, wishlist_id); + + +-- +-- Name: index_spree_wished_items_on_wishlist_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_wished_items_on_wishlist_id ON public.spree_wished_items USING btree (wishlist_id); + + +-- +-- Name: index_spree_wishlists_on_store_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_wishlists_on_store_id ON public.spree_wishlists USING btree (store_id); + + +-- +-- Name: index_spree_wishlists_on_token; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX index_spree_wishlists_on_token ON public.spree_wishlists USING btree (token); + + +-- +-- Name: index_spree_wishlists_on_user_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_wishlists_on_user_id ON public.spree_wishlists USING btree (user_id); + + +-- +-- Name: index_spree_wishlists_on_user_id_and_is_default; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_wishlists_on_user_id_and_is_default ON public.spree_wishlists USING btree (user_id, is_default); + + +-- +-- Name: index_spree_zone_members_on_zone_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_zone_members_on_zone_id ON public.spree_zone_members USING btree (zone_id); + + +-- +-- Name: index_spree_zone_members_on_zoneable_id_and_zoneable_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_zone_members_on_zoneable_id_and_zoneable_type ON public.spree_zone_members USING btree (zoneable_id, zoneable_type); + + +-- +-- Name: index_spree_zones_on_default_tax; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_zones_on_default_tax ON public.spree_zones USING btree (default_tax); + + +-- +-- Name: index_spree_zones_on_kind; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_spree_zones_on_kind ON public.spree_zones USING btree (kind); + + +-- +-- Name: index_stock_movements_on_originator_id_and_originator_type; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_stock_movements_on_originator_id_and_originator_type ON public.spree_stock_movements USING btree (originator_id, originator_type); + + +-- +-- Name: index_taxons_on_parent_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_taxons_on_parent_id ON public.spree_taxons USING btree (parent_id); + + +-- +-- Name: index_taxons_on_permalink; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_taxons_on_permalink ON public.spree_taxons USING btree (permalink); + + +-- +-- Name: index_taxons_on_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX index_taxons_on_taxonomy_id ON public.spree_taxons USING btree (taxonomy_id); + + +-- +-- Name: payment_mentod_id_store_id_unique_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX payment_mentod_id_store_id_unique_index ON public.spree_payment_methods_stores USING btree (payment_method_id, store_id); + + +-- +-- Name: polymorphic_owner_oauth_access_grants; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX polymorphic_owner_oauth_access_grants ON public.spree_oauth_access_grants USING btree (resource_owner_id, resource_owner_type); + + +-- +-- Name: polymorphic_owner_oauth_access_tokens; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX polymorphic_owner_oauth_access_tokens ON public.spree_oauth_access_tokens USING btree (resource_owner_id, resource_owner_type); + + +-- +-- Name: spree_option_type_prototypes_prototype_id_option_type_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX spree_option_type_prototypes_prototype_id_option_type_id ON public.spree_option_type_prototypes USING btree (prototype_id, option_type_id); + + +-- +-- Name: spree_shipping_rates_join_index; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX spree_shipping_rates_join_index ON public.spree_shipping_rates USING btree (shipment_id, shipping_method_id); + + +-- +-- Name: spree_store_credit_events_originator; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX spree_store_credit_events_originator ON public.spree_store_credit_events USING btree (originator_id, originator_type); + + +-- +-- Name: spree_store_credits_originator; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX spree_store_credits_originator ON public.spree_store_credits USING btree (originator_id, originator_type); + + +-- +-- Name: stock_item_by_loc_and_var_id; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX stock_item_by_loc_and_var_id ON public.spree_stock_items USING btree (stock_location_id, variant_id); + + +-- +-- Name: stock_item_by_loc_var_id_deleted_at; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX stock_item_by_loc_var_id_deleted_at ON public.spree_stock_items USING btree (stock_location_id, variant_id, COALESCE(deleted_at, '1970-01-01 00:00:00'::timestamp without time zone)); + + +-- +-- Name: unique_spree_shipping_method_categories; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX unique_spree_shipping_method_categories ON public.spree_shipping_method_categories USING btree (shipping_category_id, shipping_method_id); + + +-- +-- Name: spree_oauth_access_grants fk_rails_8049be136c; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_grants + ADD CONSTRAINT fk_rails_8049be136c FOREIGN KEY (application_id) REFERENCES public.spree_oauth_applications(id); + + +-- +-- Name: active_storage_variant_records fk_rails_993965df05; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_variant_records + ADD CONSTRAINT fk_rails_993965df05 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id); + + +-- +-- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.active_storage_attachments + ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id); + + +-- +-- Name: spree_oauth_access_tokens fk_rails_c9894c7021; Type: FK CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.spree_oauth_access_tokens + ADD CONSTRAINT fk_rails_c9894c7021 FOREIGN KEY (application_id) REFERENCES public.spree_oauth_applications(id); + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/services/backend/db/restore/restore.sql b/services/backend/db/restore/restore.sql deleted file mode 100644 index 50de077e..00000000 --- a/services/backend/db/restore/restore.sql +++ /dev/null @@ -1,12512 +0,0 @@ -create user datadog with password 'datadog'; -grant pg_monitor to datadog; -grant SELECT ON pg_stat_database to datadog; - --- --- PostgreSQL database dump --- - --- Dumped from database version 13.8 --- Dumped by pg_dump version 13.8 - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: spree_starter_development; Type: DATABASE; Schema: -; Owner: postgres --- - -CREATE DATABASE spree_starter_development WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'en_US.utf8'; - - -ALTER DATABASE spree_starter_development OWNER TO postgres; - -\connect spree_starter_development - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- Name: action_mailbox_inbound_emails; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.action_mailbox_inbound_emails ( - id bigint NOT NULL, - status integer DEFAULT 0 NOT NULL, - message_id character varying NOT NULL, - message_checksum character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.action_mailbox_inbound_emails OWNER TO postgres; - --- --- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.action_mailbox_inbound_emails_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.action_mailbox_inbound_emails_id_seq OWNER TO postgres; - --- --- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.action_mailbox_inbound_emails_id_seq OWNED BY public.action_mailbox_inbound_emails.id; - - --- --- Name: action_text_rich_texts; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.action_text_rich_texts ( - id bigint NOT NULL, - name character varying NOT NULL, - body text, - record_type character varying NOT NULL, - record_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.action_text_rich_texts OWNER TO postgres; - --- --- Name: action_text_rich_texts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.action_text_rich_texts_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.action_text_rich_texts_id_seq OWNER TO postgres; - --- --- Name: action_text_rich_texts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.action_text_rich_texts_id_seq OWNED BY public.action_text_rich_texts.id; - - --- --- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.active_storage_attachments ( - id bigint NOT NULL, - name character varying NOT NULL, - record_type character varying NOT NULL, - record_id bigint NOT NULL, - blob_id bigint NOT NULL, - created_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.active_storage_attachments OWNER TO postgres; - --- --- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.active_storage_attachments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.active_storage_attachments_id_seq OWNER TO postgres; - --- --- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id; - - --- --- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.active_storage_blobs ( - id bigint NOT NULL, - key character varying NOT NULL, - filename character varying NOT NULL, - content_type character varying, - metadata text, - service_name character varying NOT NULL, - byte_size bigint NOT NULL, - checksum character varying NOT NULL, - created_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.active_storage_blobs OWNER TO postgres; - --- --- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.active_storage_blobs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.active_storage_blobs_id_seq OWNER TO postgres; - --- --- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id; - - --- --- Name: active_storage_variant_records; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.active_storage_variant_records ( - id bigint NOT NULL, - blob_id bigint NOT NULL, - variation_digest character varying NOT NULL -); - - -ALTER TABLE public.active_storage_variant_records OWNER TO postgres; - --- --- Name: active_storage_variant_records_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.active_storage_variant_records_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.active_storage_variant_records_id_seq OWNER TO postgres; - --- --- Name: active_storage_variant_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.active_storage_variant_records_id_seq OWNED BY public.active_storage_variant_records.id; - - --- --- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.ar_internal_metadata ( - key character varying NOT NULL, - value character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.ar_internal_metadata OWNER TO postgres; - --- --- Name: friendly_id_slugs; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.friendly_id_slugs ( - id bigint NOT NULL, - slug character varying NOT NULL, - sluggable_id bigint NOT NULL, - sluggable_type character varying(50), - scope character varying, - created_at timestamp without time zone, - deleted_at timestamp without time zone -); - - -ALTER TABLE public.friendly_id_slugs OWNER TO postgres; - --- --- Name: friendly_id_slugs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.friendly_id_slugs_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.friendly_id_slugs_id_seq OWNER TO postgres; - --- --- Name: friendly_id_slugs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.friendly_id_slugs_id_seq OWNED BY public.friendly_id_slugs.id; - - --- --- Name: schema_migrations; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.schema_migrations ( - version character varying NOT NULL -); - - -ALTER TABLE public.schema_migrations OWNER TO postgres; - --- --- Name: spree_addresses; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_addresses ( - id bigint NOT NULL, - firstname character varying, - lastname character varying, - address1 character varying, - address2 character varying, - city character varying, - zipcode character varying, - phone character varying, - state_name character varying, - alternative_phone character varying, - company character varying, - state_id bigint, - country_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - user_id bigint, - deleted_at timestamp without time zone, - label character varying, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_addresses OWNER TO postgres; - --- --- Name: spree_addresses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_addresses_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_addresses_id_seq OWNER TO postgres; - --- --- Name: spree_addresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_addresses_id_seq OWNED BY public.spree_addresses.id; - - --- --- Name: spree_adjustments; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_adjustments ( - id bigint NOT NULL, - source_type character varying, - source_id bigint, - adjustable_type character varying, - adjustable_id bigint, - amount numeric(10,2), - label character varying, - mandatory boolean, - eligible boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - state character varying, - order_id bigint NOT NULL, - included boolean DEFAULT false -); - - -ALTER TABLE public.spree_adjustments OWNER TO postgres; - --- --- Name: spree_adjustments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_adjustments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_adjustments_id_seq OWNER TO postgres; - --- --- Name: spree_adjustments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_adjustments_id_seq OWNED BY public.spree_adjustments.id; - - --- --- Name: spree_assets; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_assets ( - id bigint NOT NULL, - viewable_type character varying, - viewable_id bigint, - attachment_width integer, - attachment_height integer, - attachment_file_size integer, - "position" integer, - attachment_content_type character varying, - attachment_file_name character varying, - type character varying(75), - attachment_updated_at timestamp without time zone, - alt text, - created_at timestamp without time zone, - updated_at timestamp without time zone, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_assets OWNER TO postgres; - --- --- Name: spree_assets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_assets_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_assets_id_seq OWNER TO postgres; - --- --- Name: spree_assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_assets_id_seq OWNED BY public.spree_assets.id; - - --- --- Name: spree_calculators; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_calculators ( - id bigint NOT NULL, - type character varying, - calculable_type character varying, - calculable_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - preferences text, - deleted_at timestamp without time zone -); - - -ALTER TABLE public.spree_calculators OWNER TO postgres; - --- --- Name: spree_calculators_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_calculators_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_calculators_id_seq OWNER TO postgres; - --- --- Name: spree_calculators_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_calculators_id_seq OWNED BY public.spree_calculators.id; - - --- --- Name: spree_checks; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_checks ( - id bigint NOT NULL, - payment_method_id bigint, - user_id bigint, - account_holder_name character varying, - account_holder_type character varying, - routing_number character varying, - account_number character varying, - account_type character varying DEFAULT 'checking'::character varying, - status character varying, - last_digits character varying, - gateway_customer_profile_id character varying, - gateway_payment_profile_id character varying, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - deleted_at timestamp without time zone -); - - -ALTER TABLE public.spree_checks OWNER TO postgres; - --- --- Name: spree_checks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_checks_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_checks_id_seq OWNER TO postgres; - --- --- Name: spree_checks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_checks_id_seq OWNED BY public.spree_checks.id; - - --- --- Name: spree_cms_pages; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_cms_pages ( - id bigint NOT NULL, - title character varying NOT NULL, - meta_title character varying, - content text, - meta_description text, - visible boolean DEFAULT true, - slug character varying, - type character varying, - locale character varying, - deleted_at timestamp without time zone, - store_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_cms_pages OWNER TO postgres; - --- --- Name: spree_cms_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_cms_pages_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_cms_pages_id_seq OWNER TO postgres; - --- --- Name: spree_cms_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_cms_pages_id_seq OWNED BY public.spree_cms_pages.id; - - --- --- Name: spree_cms_sections; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_cms_sections ( - id bigint NOT NULL, - name character varying NOT NULL, - content text, - settings text, - fit character varying, - destination character varying, - type character varying, - "position" integer, - linked_resource_type character varying, - linked_resource_id bigint, - cms_page_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_cms_sections OWNER TO postgres; - --- --- Name: spree_cms_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_cms_sections_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_cms_sections_id_seq OWNER TO postgres; - --- --- Name: spree_cms_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_cms_sections_id_seq OWNED BY public.spree_cms_sections.id; - - --- --- Name: spree_countries; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_countries ( - id bigint NOT NULL, - iso_name character varying, - iso character varying NOT NULL, - iso3 character varying NOT NULL, - name character varying, - numcode integer, - states_required boolean DEFAULT false, - updated_at timestamp without time zone, - zipcode_required boolean DEFAULT true, - created_at timestamp without time zone -); - - -ALTER TABLE public.spree_countries OWNER TO postgres; - --- --- Name: spree_countries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_countries_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_countries_id_seq OWNER TO postgres; - --- --- Name: spree_countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_countries_id_seq OWNED BY public.spree_countries.id; - - --- --- Name: spree_credit_cards; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_credit_cards ( - id bigint NOT NULL, - month character varying, - year character varying, - cc_type character varying, - last_digits character varying, - address_id bigint, - gateway_customer_profile_id character varying, - gateway_payment_profile_id character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - name character varying, - user_id bigint, - payment_method_id bigint, - "default" boolean DEFAULT false NOT NULL, - deleted_at timestamp without time zone, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_credit_cards OWNER TO postgres; - --- --- Name: spree_credit_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_credit_cards_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_credit_cards_id_seq OWNER TO postgres; - --- --- Name: spree_credit_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_credit_cards_id_seq OWNED BY public.spree_credit_cards.id; - - --- --- Name: spree_customer_returns; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_customer_returns ( - id bigint NOT NULL, - number character varying, - stock_location_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - store_id bigint, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_customer_returns OWNER TO postgres; - --- --- Name: spree_customer_returns_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_customer_returns_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_customer_returns_id_seq OWNER TO postgres; - --- --- Name: spree_customer_returns_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_customer_returns_id_seq OWNED BY public.spree_customer_returns.id; - - --- --- Name: spree_digital_links; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_digital_links ( - id bigint NOT NULL, - digital_id bigint, - line_item_id bigint, - token character varying, - access_counter integer, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_digital_links OWNER TO postgres; - --- --- Name: spree_digital_links_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_digital_links_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_digital_links_id_seq OWNER TO postgres; - --- --- Name: spree_digital_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_digital_links_id_seq OWNED BY public.spree_digital_links.id; - - --- --- Name: spree_digitals; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_digitals ( - id bigint NOT NULL, - variant_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_digitals OWNER TO postgres; - --- --- Name: spree_digitals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_digitals_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_digitals_id_seq OWNER TO postgres; - --- --- Name: spree_digitals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_digitals_id_seq OWNED BY public.spree_digitals.id; - - --- --- Name: spree_gateways; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_gateways ( - id bigint NOT NULL, - type character varying, - name character varying, - description text, - active boolean DEFAULT true, - environment character varying DEFAULT 'development'::character varying, - server character varying DEFAULT 'test'::character varying, - test_mode boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - preferences text -); - - -ALTER TABLE public.spree_gateways OWNER TO postgres; - --- --- Name: spree_gateways_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_gateways_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_gateways_id_seq OWNER TO postgres; - --- --- Name: spree_gateways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_gateways_id_seq OWNED BY public.spree_gateways.id; - - --- --- Name: spree_inventory_units; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_inventory_units ( - id bigint NOT NULL, - state character varying, - variant_id bigint, - order_id bigint, - shipment_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - pending boolean DEFAULT true, - line_item_id bigint, - quantity integer DEFAULT 1, - original_return_item_id bigint -); - - -ALTER TABLE public.spree_inventory_units OWNER TO postgres; - --- --- Name: spree_inventory_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_inventory_units_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_inventory_units_id_seq OWNER TO postgres; - --- --- Name: spree_inventory_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_inventory_units_id_seq OWNED BY public.spree_inventory_units.id; - - --- --- Name: spree_line_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_line_items ( - id bigint NOT NULL, - variant_id bigint, - order_id bigint, - quantity integer NOT NULL, - price numeric(10,2) NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - currency character varying, - cost_price numeric(10,2), - tax_category_id bigint, - adjustment_total numeric(10,2) DEFAULT 0.0, - additional_tax_total numeric(10,2) DEFAULT 0.0, - promo_total numeric(10,2) DEFAULT 0.0, - included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, - pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, - taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_line_items OWNER TO postgres; - --- --- Name: spree_line_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_line_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_line_items_id_seq OWNER TO postgres; - --- --- Name: spree_line_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_line_items_id_seq OWNED BY public.spree_line_items.id; - - --- --- Name: spree_log_entries; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_log_entries ( - id bigint NOT NULL, - source_type character varying, - source_id bigint, - details text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_log_entries OWNER TO postgres; - --- --- Name: spree_log_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_log_entries_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_log_entries_id_seq OWNER TO postgres; - --- --- Name: spree_log_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_log_entries_id_seq OWNED BY public.spree_log_entries.id; - - --- --- Name: spree_menu_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_menu_items ( - id bigint NOT NULL, - name character varying NOT NULL, - subtitle character varying, - destination character varying, - new_window boolean DEFAULT false, - item_type character varying, - linked_resource_type character varying DEFAULT 'URL'::character varying, - linked_resource_id bigint, - code character varying, - parent_id bigint, - lft bigint NOT NULL, - rgt bigint NOT NULL, - depth integer DEFAULT 0 NOT NULL, - menu_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_menu_items OWNER TO postgres; - --- --- Name: spree_menu_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_menu_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_menu_items_id_seq OWNER TO postgres; - --- --- Name: spree_menu_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_menu_items_id_seq OWNED BY public.spree_menu_items.id; - - --- --- Name: spree_menus; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_menus ( - id bigint NOT NULL, - name character varying, - location character varying, - locale character varying, - store_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_menus OWNER TO postgres; - --- --- Name: spree_menus_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_menus_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_menus_id_seq OWNER TO postgres; - --- --- Name: spree_menus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_menus_id_seq OWNED BY public.spree_menus.id; - - --- --- Name: spree_oauth_access_grants; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_oauth_access_grants ( - id bigint NOT NULL, - resource_owner_id bigint NOT NULL, - application_id bigint NOT NULL, - token character varying NOT NULL, - expires_in integer NOT NULL, - redirect_uri text NOT NULL, - created_at timestamp without time zone NOT NULL, - revoked_at timestamp without time zone, - scopes character varying, - resource_owner_type character varying NOT NULL -); - - -ALTER TABLE public.spree_oauth_access_grants OWNER TO postgres; - --- --- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_oauth_access_grants_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_oauth_access_grants_id_seq OWNER TO postgres; - --- --- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_oauth_access_grants_id_seq OWNED BY public.spree_oauth_access_grants.id; - - --- --- Name: spree_oauth_access_tokens; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_oauth_access_tokens ( - id bigint NOT NULL, - resource_owner_id bigint, - application_id bigint, - token character varying NOT NULL, - refresh_token character varying, - expires_in integer, - revoked_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - scopes character varying, - previous_refresh_token character varying DEFAULT ''::character varying NOT NULL, - resource_owner_type character varying -); - - -ALTER TABLE public.spree_oauth_access_tokens OWNER TO postgres; - --- --- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_oauth_access_tokens_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_oauth_access_tokens_id_seq OWNER TO postgres; - --- --- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_oauth_access_tokens_id_seq OWNED BY public.spree_oauth_access_tokens.id; - - --- --- Name: spree_oauth_applications; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_oauth_applications ( - id bigint NOT NULL, - name character varying NOT NULL, - uid character varying NOT NULL, - secret character varying NOT NULL, - redirect_uri text NOT NULL, - scopes character varying DEFAULT ''::character varying NOT NULL, - confidential boolean DEFAULT true NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_oauth_applications OWNER TO postgres; - --- --- Name: spree_oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_oauth_applications_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_oauth_applications_id_seq OWNER TO postgres; - --- --- Name: spree_oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_oauth_applications_id_seq OWNED BY public.spree_oauth_applications.id; - - --- --- Name: spree_option_type_prototypes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_option_type_prototypes ( - id bigint NOT NULL, - prototype_id bigint, - option_type_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_option_type_prototypes OWNER TO postgres; - --- --- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_option_type_prototypes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_option_type_prototypes_id_seq OWNER TO postgres; - --- --- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_option_type_prototypes_id_seq OWNED BY public.spree_option_type_prototypes.id; - - --- --- Name: spree_option_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_option_types ( - id bigint NOT NULL, - name character varying(100), - presentation character varying(100), - "position" integer DEFAULT 0 NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - filterable boolean DEFAULT true NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_option_types OWNER TO postgres; - --- --- Name: spree_option_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_option_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_option_types_id_seq OWNER TO postgres; - --- --- Name: spree_option_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_option_types_id_seq OWNED BY public.spree_option_types.id; - - --- --- Name: spree_option_value_variants; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_option_value_variants ( - id bigint NOT NULL, - variant_id bigint, - option_value_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_option_value_variants OWNER TO postgres; - --- --- Name: spree_option_value_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_option_value_variants_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_option_value_variants_id_seq OWNER TO postgres; - --- --- Name: spree_option_value_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_option_value_variants_id_seq OWNED BY public.spree_option_value_variants.id; - - --- --- Name: spree_option_values; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_option_values ( - id bigint NOT NULL, - "position" integer, - name character varying, - presentation character varying, - option_type_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_option_values OWNER TO postgres; - --- --- Name: spree_option_values_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_option_values_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_option_values_id_seq OWNER TO postgres; - --- --- Name: spree_option_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_option_values_id_seq OWNED BY public.spree_option_values.id; - - --- --- Name: spree_order_promotions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_order_promotions ( - id bigint NOT NULL, - order_id bigint, - promotion_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_order_promotions OWNER TO postgres; - --- --- Name: spree_order_promotions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_order_promotions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_order_promotions_id_seq OWNER TO postgres; - --- --- Name: spree_order_promotions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_order_promotions_id_seq OWNED BY public.spree_order_promotions.id; - - --- --- Name: spree_orders; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_orders ( - id bigint NOT NULL, - number character varying(32), - item_total numeric(10,2) DEFAULT 0.0 NOT NULL, - total numeric(10,2) DEFAULT 0.0 NOT NULL, - state character varying, - adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - user_id bigint, - completed_at timestamp without time zone, - bill_address_id bigint, - ship_address_id bigint, - payment_total numeric(10,2) DEFAULT 0.0, - shipment_state character varying, - payment_state character varying, - email character varying, - special_instructions text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - currency character varying, - last_ip_address character varying, - created_by_id bigint, - shipment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - additional_tax_total numeric(10,2) DEFAULT 0.0, - promo_total numeric(10,2) DEFAULT 0.0, - channel character varying DEFAULT 'spree'::character varying, - included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, - item_count integer DEFAULT 0, - approver_id bigint, - approved_at timestamp without time zone, - confirmation_delivered boolean DEFAULT false, - considered_risky boolean DEFAULT false, - token character varying, - canceled_at timestamp without time zone, - canceler_id bigint, - store_id bigint, - state_lock_version integer DEFAULT 0 NOT NULL, - taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - store_owner_notification_delivered boolean, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_orders OWNER TO postgres; - --- --- Name: spree_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_orders_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_orders_id_seq OWNER TO postgres; - --- --- Name: spree_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_orders_id_seq OWNED BY public.spree_orders.id; - - --- --- Name: spree_payment_capture_events; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_payment_capture_events ( - id bigint NOT NULL, - amount numeric(10,2) DEFAULT 0.0, - payment_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_payment_capture_events OWNER TO postgres; - --- --- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_payment_capture_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_payment_capture_events_id_seq OWNER TO postgres; - --- --- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_payment_capture_events_id_seq OWNED BY public.spree_payment_capture_events.id; - - --- --- Name: spree_payment_methods; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_payment_methods ( - id bigint NOT NULL, - type character varying, - name character varying, - description text, - active boolean DEFAULT true, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - display_on character varying DEFAULT 'both'::character varying, - auto_capture boolean, - preferences text, - "position" integer DEFAULT 0, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_payment_methods OWNER TO postgres; - --- --- Name: spree_payment_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_payment_methods_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_payment_methods_id_seq OWNER TO postgres; - --- --- Name: spree_payment_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_payment_methods_id_seq OWNED BY public.spree_payment_methods.id; - - --- --- Name: spree_payment_methods_stores; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_payment_methods_stores ( - payment_method_id bigint, - store_id bigint -); - - -ALTER TABLE public.spree_payment_methods_stores OWNER TO postgres; - --- --- Name: spree_payments; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_payments ( - id bigint NOT NULL, - amount numeric(10,2) DEFAULT 0.0 NOT NULL, - order_id bigint, - source_type character varying, - source_id bigint, - payment_method_id bigint, - state character varying, - response_code character varying, - avs_response character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - number character varying, - cvv_response_code character varying, - cvv_response_message character varying, - public_metadata jsonb, - private_metadata jsonb, - intent_client_key character varying -); - - -ALTER TABLE public.spree_payments OWNER TO postgres; - --- --- Name: spree_payments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_payments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_payments_id_seq OWNER TO postgres; - --- --- Name: spree_payments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_payments_id_seq OWNED BY public.spree_payments.id; - - --- --- Name: spree_preferences; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_preferences ( - id bigint NOT NULL, - value text, - key character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_preferences OWNER TO postgres; - --- --- Name: spree_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_preferences_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_preferences_id_seq OWNER TO postgres; - --- --- Name: spree_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_preferences_id_seq OWNED BY public.spree_preferences.id; - - --- --- Name: spree_prices; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_prices ( - id bigint NOT NULL, - variant_id bigint NOT NULL, - amount numeric(10,2), - currency character varying, - deleted_at timestamp without time zone, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - compare_at_amount numeric(10,2) -); - - -ALTER TABLE public.spree_prices OWNER TO postgres; - --- --- Name: spree_prices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_prices_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_prices_id_seq OWNER TO postgres; - --- --- Name: spree_prices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_prices_id_seq OWNED BY public.spree_prices.id; - - --- --- Name: spree_product_option_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_product_option_types ( - id bigint NOT NULL, - "position" integer, - product_id bigint, - option_type_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_product_option_types OWNER TO postgres; - --- --- Name: spree_product_option_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_product_option_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_product_option_types_id_seq OWNER TO postgres; - --- --- Name: spree_product_option_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_product_option_types_id_seq OWNED BY public.spree_product_option_types.id; - - --- --- Name: spree_product_promotion_rules; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_product_promotion_rules ( - id bigint NOT NULL, - product_id bigint, - promotion_rule_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_product_promotion_rules OWNER TO postgres; - --- --- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_product_promotion_rules_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_product_promotion_rules_id_seq OWNER TO postgres; - --- --- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_product_promotion_rules_id_seq OWNED BY public.spree_product_promotion_rules.id; - - --- --- Name: spree_product_properties; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_product_properties ( - id bigint NOT NULL, - value character varying, - product_id bigint, - property_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - "position" integer DEFAULT 0, - show_property boolean DEFAULT true, - filter_param character varying -); - - -ALTER TABLE public.spree_product_properties OWNER TO postgres; - --- --- Name: spree_product_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_product_properties_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_product_properties_id_seq OWNER TO postgres; - --- --- Name: spree_product_properties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_product_properties_id_seq OWNED BY public.spree_product_properties.id; - - --- --- Name: spree_products; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_products ( - id bigint NOT NULL, - name character varying DEFAULT ''::character varying NOT NULL, - description text, - available_on timestamp without time zone, - deleted_at timestamp without time zone, - slug character varying, - meta_description text, - meta_keywords character varying, - tax_category_id bigint, - shipping_category_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - promotionable boolean DEFAULT true, - meta_title character varying, - discontinue_on timestamp without time zone, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_products OWNER TO postgres; - --- --- Name: spree_products_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_products_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_products_id_seq OWNER TO postgres; - --- --- Name: spree_products_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_products_id_seq OWNED BY public.spree_products.id; - - --- --- Name: spree_products_stores; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_products_stores ( - id bigint NOT NULL, - product_id bigint, - store_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_products_stores OWNER TO postgres; - --- --- Name: spree_products_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_products_stores_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_products_stores_id_seq OWNER TO postgres; - --- --- Name: spree_products_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_products_stores_id_seq OWNED BY public.spree_products_stores.id; - - --- --- Name: spree_products_taxons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_products_taxons ( - id bigint NOT NULL, - product_id bigint, - taxon_id bigint, - "position" integer, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_products_taxons OWNER TO postgres; - --- --- Name: spree_products_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_products_taxons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_products_taxons_id_seq OWNER TO postgres; - --- --- Name: spree_products_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_products_taxons_id_seq OWNED BY public.spree_products_taxons.id; - - --- --- Name: spree_promotion_action_line_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_action_line_items ( - id bigint NOT NULL, - promotion_action_id bigint, - variant_id bigint, - quantity integer DEFAULT 1, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_promotion_action_line_items OWNER TO postgres; - --- --- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_action_line_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_action_line_items_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_action_line_items_id_seq OWNED BY public.spree_promotion_action_line_items.id; - - --- --- Name: spree_promotion_actions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_actions ( - id bigint NOT NULL, - promotion_id bigint, - "position" integer, - type character varying, - deleted_at timestamp without time zone, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_promotion_actions OWNER TO postgres; - --- --- Name: spree_promotion_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_actions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_actions_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_actions_id_seq OWNED BY public.spree_promotion_actions.id; - - --- --- Name: spree_promotion_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_categories ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - code character varying -); - - -ALTER TABLE public.spree_promotion_categories OWNER TO postgres; - --- --- Name: spree_promotion_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_categories_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_categories_id_seq OWNED BY public.spree_promotion_categories.id; - - --- --- Name: spree_promotion_rule_taxons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_rule_taxons ( - id bigint NOT NULL, - taxon_id bigint, - promotion_rule_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_promotion_rule_taxons OWNER TO postgres; - --- --- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_rule_taxons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_rule_taxons_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_rule_taxons_id_seq OWNED BY public.spree_promotion_rule_taxons.id; - - --- --- Name: spree_promotion_rule_users; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_rule_users ( - id bigint NOT NULL, - user_id bigint, - promotion_rule_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_promotion_rule_users OWNER TO postgres; - --- --- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_rule_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_rule_users_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_rule_users_id_seq OWNED BY public.spree_promotion_rule_users.id; - - --- --- Name: spree_promotion_rules; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotion_rules ( - id bigint NOT NULL, - promotion_id bigint, - user_id bigint, - product_group_id bigint, - type character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - code character varying, - preferences text -); - - -ALTER TABLE public.spree_promotion_rules OWNER TO postgres; - --- --- Name: spree_promotion_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotion_rules_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotion_rules_id_seq OWNER TO postgres; - --- --- Name: spree_promotion_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotion_rules_id_seq OWNED BY public.spree_promotion_rules.id; - - --- --- Name: spree_promotions; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotions ( - id bigint NOT NULL, - description character varying, - expires_at timestamp without time zone, - starts_at timestamp without time zone, - name character varying, - type character varying, - usage_limit integer, - match_policy character varying DEFAULT 'all'::character varying, - code character varying, - advertise boolean DEFAULT false, - path character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - promotion_category_id bigint, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_promotions OWNER TO postgres; - --- --- Name: spree_promotions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotions_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotions_id_seq OWNER TO postgres; - --- --- Name: spree_promotions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotions_id_seq OWNED BY public.spree_promotions.id; - - --- --- Name: spree_promotions_stores; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_promotions_stores ( - id bigint NOT NULL, - promotion_id bigint, - store_id bigint, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_promotions_stores OWNER TO postgres; - --- --- Name: spree_promotions_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_promotions_stores_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_promotions_stores_id_seq OWNER TO postgres; - --- --- Name: spree_promotions_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_promotions_stores_id_seq OWNED BY public.spree_promotions_stores.id; - - --- --- Name: spree_properties; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_properties ( - id bigint NOT NULL, - name character varying, - presentation character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - filterable boolean DEFAULT false NOT NULL, - filter_param character varying, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_properties OWNER TO postgres; - --- --- Name: spree_properties_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_properties_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_properties_id_seq OWNER TO postgres; - --- --- Name: spree_properties_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_properties_id_seq OWNED BY public.spree_properties.id; - - --- --- Name: spree_property_prototypes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_property_prototypes ( - id bigint NOT NULL, - prototype_id bigint, - property_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_property_prototypes OWNER TO postgres; - --- --- Name: spree_property_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_property_prototypes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_property_prototypes_id_seq OWNER TO postgres; - --- --- Name: spree_property_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_property_prototypes_id_seq OWNED BY public.spree_property_prototypes.id; - - --- --- Name: spree_prototype_taxons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_prototype_taxons ( - id bigint NOT NULL, - taxon_id bigint, - prototype_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_prototype_taxons OWNER TO postgres; - --- --- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_prototype_taxons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_prototype_taxons_id_seq OWNER TO postgres; - --- --- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_prototype_taxons_id_seq OWNED BY public.spree_prototype_taxons.id; - - --- --- Name: spree_prototypes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_prototypes ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_prototypes OWNER TO postgres; - --- --- Name: spree_prototypes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_prototypes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_prototypes_id_seq OWNER TO postgres; - --- --- Name: spree_prototypes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_prototypes_id_seq OWNED BY public.spree_prototypes.id; - - --- --- Name: spree_refund_reasons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_refund_reasons ( - id bigint NOT NULL, - name character varying, - active boolean DEFAULT true, - mutable boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_refund_reasons OWNER TO postgres; - --- --- Name: spree_refund_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_refund_reasons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_refund_reasons_id_seq OWNER TO postgres; - --- --- Name: spree_refund_reasons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_refund_reasons_id_seq OWNED BY public.spree_refund_reasons.id; - - --- --- Name: spree_refunds; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_refunds ( - id bigint NOT NULL, - payment_id bigint, - amount numeric(10,2) DEFAULT 0.0 NOT NULL, - transaction_id character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - refund_reason_id bigint, - reimbursement_id bigint, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_refunds OWNER TO postgres; - --- --- Name: spree_refunds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_refunds_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_refunds_id_seq OWNER TO postgres; - --- --- Name: spree_refunds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_refunds_id_seq OWNED BY public.spree_refunds.id; - - --- --- Name: spree_reimbursement_credits; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_reimbursement_credits ( - id bigint NOT NULL, - amount numeric(10,2) DEFAULT 0.0 NOT NULL, - reimbursement_id bigint, - creditable_id bigint, - creditable_type character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_reimbursement_credits OWNER TO postgres; - --- --- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_reimbursement_credits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_reimbursement_credits_id_seq OWNER TO postgres; - --- --- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_reimbursement_credits_id_seq OWNED BY public.spree_reimbursement_credits.id; - - --- --- Name: spree_reimbursement_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_reimbursement_types ( - id bigint NOT NULL, - name character varying, - active boolean DEFAULT true, - mutable boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - type character varying -); - - -ALTER TABLE public.spree_reimbursement_types OWNER TO postgres; - --- --- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_reimbursement_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_reimbursement_types_id_seq OWNER TO postgres; - --- --- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_reimbursement_types_id_seq OWNED BY public.spree_reimbursement_types.id; - - --- --- Name: spree_reimbursements; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_reimbursements ( - id bigint NOT NULL, - number character varying, - reimbursement_status character varying, - customer_return_id bigint, - order_id bigint, - total numeric(10,2), - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_reimbursements OWNER TO postgres; - --- --- Name: spree_reimbursements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_reimbursements_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_reimbursements_id_seq OWNER TO postgres; - --- --- Name: spree_reimbursements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_reimbursements_id_seq OWNED BY public.spree_reimbursements.id; - - --- --- Name: spree_return_authorization_reasons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_return_authorization_reasons ( - id bigint NOT NULL, - name character varying, - active boolean DEFAULT true, - mutable boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_return_authorization_reasons OWNER TO postgres; - --- --- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_return_authorization_reasons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_return_authorization_reasons_id_seq OWNER TO postgres; - --- --- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_return_authorization_reasons_id_seq OWNED BY public.spree_return_authorization_reasons.id; - - --- --- Name: spree_return_authorizations; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_return_authorizations ( - id bigint NOT NULL, - number character varying, - state character varying, - order_id bigint, - memo text, - created_at timestamp without time zone, - updated_at timestamp without time zone, - stock_location_id bigint, - return_authorization_reason_id bigint -); - - -ALTER TABLE public.spree_return_authorizations OWNER TO postgres; - --- --- Name: spree_return_authorizations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_return_authorizations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_return_authorizations_id_seq OWNER TO postgres; - --- --- Name: spree_return_authorizations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_return_authorizations_id_seq OWNED BY public.spree_return_authorizations.id; - - --- --- Name: spree_return_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_return_items ( - id bigint NOT NULL, - return_authorization_id bigint, - inventory_unit_id bigint, - exchange_variant_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, - included_tax_total numeric(12,4) DEFAULT 0.0 NOT NULL, - additional_tax_total numeric(12,4) DEFAULT 0.0 NOT NULL, - reception_status character varying, - acceptance_status character varying, - customer_return_id bigint, - reimbursement_id bigint, - acceptance_status_errors text, - preferred_reimbursement_type_id bigint, - override_reimbursement_type_id bigint, - resellable boolean DEFAULT true NOT NULL -); - - -ALTER TABLE public.spree_return_items OWNER TO postgres; - --- --- Name: spree_return_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_return_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_return_items_id_seq OWNER TO postgres; - --- --- Name: spree_return_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_return_items_id_seq OWNED BY public.spree_return_items.id; - - --- --- Name: spree_role_users; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_role_users ( - id bigint NOT NULL, - role_id bigint, - user_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_role_users OWNER TO postgres; - --- --- Name: spree_role_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_role_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_role_users_id_seq OWNER TO postgres; - --- --- Name: spree_role_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_role_users_id_seq OWNED BY public.spree_role_users.id; - - --- --- Name: spree_roles; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_roles ( - id bigint NOT NULL, - name character varying, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_roles OWNER TO postgres; - --- --- Name: spree_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_roles_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_roles_id_seq OWNER TO postgres; - --- --- Name: spree_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_roles_id_seq OWNED BY public.spree_roles.id; - - --- --- Name: spree_shipments; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipments ( - id bigint NOT NULL, - tracking character varying, - number character varying, - cost numeric(10,2) DEFAULT 0.0, - shipped_at timestamp without time zone, - order_id bigint, - address_id bigint, - state character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - stock_location_id bigint, - adjustment_total numeric(10,2) DEFAULT 0.0, - additional_tax_total numeric(10,2) DEFAULT 0.0, - promo_total numeric(10,2) DEFAULT 0.0, - included_tax_total numeric(10,2) DEFAULT 0.0 NOT NULL, - pre_tax_amount numeric(12,4) DEFAULT 0.0 NOT NULL, - taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - non_taxable_adjustment_total numeric(10,2) DEFAULT 0.0 NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_shipments OWNER TO postgres; - --- --- Name: spree_shipments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipments_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipments_id_seq OWNER TO postgres; - --- --- Name: spree_shipments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipments_id_seq OWNED BY public.spree_shipments.id; - - --- --- Name: spree_shipping_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipping_categories ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_shipping_categories OWNER TO postgres; - --- --- Name: spree_shipping_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipping_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipping_categories_id_seq OWNER TO postgres; - --- --- Name: spree_shipping_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipping_categories_id_seq OWNED BY public.spree_shipping_categories.id; - - --- --- Name: spree_shipping_method_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipping_method_categories ( - id bigint NOT NULL, - shipping_method_id bigint NOT NULL, - shipping_category_id bigint NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_shipping_method_categories OWNER TO postgres; - --- --- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipping_method_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipping_method_categories_id_seq OWNER TO postgres; - --- --- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipping_method_categories_id_seq OWNED BY public.spree_shipping_method_categories.id; - - --- --- Name: spree_shipping_method_zones; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipping_method_zones ( - id bigint NOT NULL, - shipping_method_id bigint, - zone_id bigint, - created_at timestamp without time zone, - updated_at timestamp without time zone -); - - -ALTER TABLE public.spree_shipping_method_zones OWNER TO postgres; - --- --- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipping_method_zones_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipping_method_zones_id_seq OWNER TO postgres; - --- --- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipping_method_zones_id_seq OWNED BY public.spree_shipping_method_zones.id; - - --- --- Name: spree_shipping_methods; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipping_methods ( - id bigint NOT NULL, - name character varying, - display_on character varying, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - tracking_url character varying, - admin_name character varying, - tax_category_id bigint, - code character varying, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_shipping_methods OWNER TO postgres; - --- --- Name: spree_shipping_methods_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipping_methods_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipping_methods_id_seq OWNER TO postgres; - --- --- Name: spree_shipping_methods_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipping_methods_id_seq OWNED BY public.spree_shipping_methods.id; - - --- --- Name: spree_shipping_rates; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_shipping_rates ( - id bigint NOT NULL, - shipment_id bigint, - shipping_method_id bigint, - selected boolean DEFAULT false, - cost numeric(8,2) DEFAULT 0.0, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - tax_rate_id bigint -); - - -ALTER TABLE public.spree_shipping_rates OWNER TO postgres; - --- --- Name: spree_shipping_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_shipping_rates_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_shipping_rates_id_seq OWNER TO postgres; - --- --- Name: spree_shipping_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_shipping_rates_id_seq OWNED BY public.spree_shipping_rates.id; - - --- --- Name: spree_state_changes; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_state_changes ( - id bigint NOT NULL, - name character varying, - previous_state character varying, - stateful_id bigint, - user_id bigint, - stateful_type character varying, - next_state character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_state_changes OWNER TO postgres; - --- --- Name: spree_state_changes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_state_changes_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_state_changes_id_seq OWNER TO postgres; - --- --- Name: spree_state_changes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_state_changes_id_seq OWNED BY public.spree_state_changes.id; - - --- --- Name: spree_states; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_states ( - id bigint NOT NULL, - name character varying, - abbr character varying, - country_id bigint, - updated_at timestamp without time zone, - created_at timestamp without time zone -); - - -ALTER TABLE public.spree_states OWNER TO postgres; - --- --- Name: spree_states_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_states_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_states_id_seq OWNER TO postgres; - --- --- Name: spree_states_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_states_id_seq OWNED BY public.spree_states.id; - - --- --- Name: spree_stock_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_stock_items ( - id bigint NOT NULL, - stock_location_id bigint, - variant_id bigint, - count_on_hand integer DEFAULT 0 NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - backorderable boolean DEFAULT false, - deleted_at timestamp without time zone -); - - -ALTER TABLE public.spree_stock_items OWNER TO postgres; - --- --- Name: spree_stock_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_stock_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_stock_items_id_seq OWNER TO postgres; - --- --- Name: spree_stock_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_stock_items_id_seq OWNED BY public.spree_stock_items.id; - - --- --- Name: spree_stock_locations; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_stock_locations ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - "default" boolean DEFAULT false NOT NULL, - address1 character varying, - address2 character varying, - city character varying, - state_id bigint, - state_name character varying, - country_id bigint, - zipcode character varying, - phone character varying, - active boolean DEFAULT true, - backorderable_default boolean DEFAULT false, - propagate_all_variants boolean DEFAULT true, - admin_name character varying -); - - -ALTER TABLE public.spree_stock_locations OWNER TO postgres; - --- --- Name: spree_stock_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_stock_locations_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_stock_locations_id_seq OWNER TO postgres; - --- --- Name: spree_stock_locations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_stock_locations_id_seq OWNED BY public.spree_stock_locations.id; - - --- --- Name: spree_stock_movements; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_stock_movements ( - id bigint NOT NULL, - stock_item_id bigint, - quantity integer DEFAULT 0, - action character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - originator_type character varying, - originator_id bigint -); - - -ALTER TABLE public.spree_stock_movements OWNER TO postgres; - --- --- Name: spree_stock_movements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_stock_movements_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_stock_movements_id_seq OWNER TO postgres; - --- --- Name: spree_stock_movements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_stock_movements_id_seq OWNED BY public.spree_stock_movements.id; - - --- --- Name: spree_stock_transfers; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_stock_transfers ( - id bigint NOT NULL, - type character varying, - reference character varying, - source_location_id bigint, - destination_location_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - number character varying, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_stock_transfers OWNER TO postgres; - --- --- Name: spree_stock_transfers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_stock_transfers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_stock_transfers_id_seq OWNER TO postgres; - --- --- Name: spree_stock_transfers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_stock_transfers_id_seq OWNED BY public.spree_stock_transfers.id; - - --- --- Name: spree_store_credit_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_store_credit_categories ( - id bigint NOT NULL, - name character varying, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_store_credit_categories OWNER TO postgres; - --- --- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_store_credit_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_store_credit_categories_id_seq OWNER TO postgres; - --- --- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_store_credit_categories_id_seq OWNED BY public.spree_store_credit_categories.id; - - --- --- Name: spree_store_credit_events; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_store_credit_events ( - id bigint NOT NULL, - store_credit_id bigint NOT NULL, - action character varying NOT NULL, - amount numeric(8,2), - authorization_code character varying NOT NULL, - user_total_amount numeric(8,2) DEFAULT 0.0 NOT NULL, - originator_id bigint, - originator_type character varying, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_store_credit_events OWNER TO postgres; - --- --- Name: spree_store_credit_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_store_credit_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_store_credit_events_id_seq OWNER TO postgres; - --- --- Name: spree_store_credit_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_store_credit_events_id_seq OWNED BY public.spree_store_credit_events.id; - - --- --- Name: spree_store_credit_types; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_store_credit_types ( - id bigint NOT NULL, - name character varying, - priority integer, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_store_credit_types OWNER TO postgres; - --- --- Name: spree_store_credit_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_store_credit_types_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_store_credit_types_id_seq OWNER TO postgres; - --- --- Name: spree_store_credit_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_store_credit_types_id_seq OWNED BY public.spree_store_credit_types.id; - - --- --- Name: spree_store_credits; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_store_credits ( - id bigint NOT NULL, - user_id bigint, - category_id bigint, - created_by_id bigint, - amount numeric(8,2) DEFAULT 0.0 NOT NULL, - amount_used numeric(8,2) DEFAULT 0.0 NOT NULL, - memo text, - deleted_at timestamp without time zone, - currency character varying, - amount_authorized numeric(8,2) DEFAULT 0.0 NOT NULL, - originator_id bigint, - originator_type character varying, - type_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - store_id bigint, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_store_credits OWNER TO postgres; - --- --- Name: spree_store_credits_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_store_credits_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_store_credits_id_seq OWNER TO postgres; - --- --- Name: spree_store_credits_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_store_credits_id_seq OWNED BY public.spree_store_credits.id; - - --- --- Name: spree_stores; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_stores ( - id bigint NOT NULL, - name character varying, - url character varying, - meta_description text, - meta_keywords text, - seo_title character varying, - mail_from_address character varying, - default_currency character varying, - code character varying, - "default" boolean DEFAULT false NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - supported_currencies character varying, - facebook character varying, - twitter character varying, - instagram character varying, - default_locale character varying, - customer_support_email character varying, - default_country_id bigint, - description text, - address text, - contact_phone character varying, - new_order_notifications_email character varying, - checkout_zone_id bigint, - seo_robots character varying, - supported_locales character varying, - deleted_at timestamp without time zone, - settings jsonb -); - - -ALTER TABLE public.spree_stores OWNER TO postgres; - --- --- Name: spree_stores_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_stores_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_stores_id_seq OWNER TO postgres; - --- --- Name: spree_stores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_stores_id_seq OWNED BY public.spree_stores.id; - - --- --- Name: spree_tax_categories; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_tax_categories ( - id bigint NOT NULL, - name character varying, - description character varying, - is_default boolean DEFAULT false, - deleted_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - tax_code character varying -); - - -ALTER TABLE public.spree_tax_categories OWNER TO postgres; - --- --- Name: spree_tax_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_tax_categories_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_tax_categories_id_seq OWNER TO postgres; - --- --- Name: spree_tax_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_tax_categories_id_seq OWNED BY public.spree_tax_categories.id; - - --- --- Name: spree_tax_rates; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_tax_rates ( - id bigint NOT NULL, - amount numeric(8,5), - zone_id bigint, - tax_category_id bigint, - included_in_price boolean DEFAULT false, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - name character varying, - show_rate_in_label boolean DEFAULT true, - deleted_at timestamp without time zone -); - - -ALTER TABLE public.spree_tax_rates OWNER TO postgres; - --- --- Name: spree_tax_rates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_tax_rates_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_tax_rates_id_seq OWNER TO postgres; - --- --- Name: spree_tax_rates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_tax_rates_id_seq OWNED BY public.spree_tax_rates.id; - - --- --- Name: spree_taxonomies; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_taxonomies ( - id bigint NOT NULL, - name character varying NOT NULL, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - "position" integer DEFAULT 0, - store_id bigint, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_taxonomies OWNER TO postgres; - --- --- Name: spree_taxonomies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_taxonomies_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_taxonomies_id_seq OWNER TO postgres; - --- --- Name: spree_taxonomies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_taxonomies_id_seq OWNED BY public.spree_taxonomies.id; - - --- --- Name: spree_taxons; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_taxons ( - id bigint NOT NULL, - parent_id bigint, - "position" integer DEFAULT 0, - name character varying NOT NULL, - permalink character varying, - taxonomy_id bigint, - lft bigint, - rgt bigint, - description text, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - meta_title character varying, - meta_description character varying, - meta_keywords character varying, - depth integer, - hide_from_nav boolean DEFAULT false, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_taxons OWNER TO postgres; - --- --- Name: spree_taxons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_taxons_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_taxons_id_seq OWNER TO postgres; - --- --- Name: spree_taxons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_taxons_id_seq OWNED BY public.spree_taxons.id; - - --- --- Name: spree_trackers; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_trackers ( - id bigint NOT NULL, - analytics_id character varying, - active boolean DEFAULT true, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - engine integer DEFAULT 0 NOT NULL -); - - -ALTER TABLE public.spree_trackers OWNER TO postgres; - --- --- Name: spree_trackers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_trackers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_trackers_id_seq OWNER TO postgres; - --- --- Name: spree_trackers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_trackers_id_seq OWNED BY public.spree_trackers.id; - - --- --- Name: spree_users; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_users ( - id bigint NOT NULL, - encrypted_password character varying(128), - password_salt character varying(128), - email character varying, - remember_token character varying, - persistence_token character varying, - reset_password_token character varying, - perishable_token character varying, - sign_in_count integer DEFAULT 0 NOT NULL, - failed_attempts integer DEFAULT 0 NOT NULL, - last_request_at timestamp without time zone, - current_sign_in_at timestamp without time zone, - last_sign_in_at timestamp without time zone, - current_sign_in_ip character varying, - last_sign_in_ip character varying, - login character varying, - ship_address_id bigint, - bill_address_id bigint, - authentication_token character varying, - unlock_token character varying, - locked_at timestamp without time zone, - reset_password_sent_at timestamp without time zone, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - public_metadata jsonb, - private_metadata jsonb, - spree_api_key character varying(48), - remember_created_at timestamp without time zone, - deleted_at timestamp without time zone, - confirmation_token character varying, - confirmed_at timestamp without time zone, - confirmation_sent_at timestamp without time zone -); - - -ALTER TABLE public.spree_users OWNER TO postgres; - --- --- Name: spree_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_users_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_users_id_seq OWNER TO postgres; - --- --- Name: spree_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_users_id_seq OWNED BY public.spree_users.id; - - --- --- Name: spree_variants; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_variants ( - id bigint NOT NULL, - sku character varying DEFAULT ''::character varying NOT NULL, - weight numeric(8,2) DEFAULT 0.0, - height numeric(8,2), - width numeric(8,2), - depth numeric(8,2), - deleted_at timestamp without time zone, - is_master boolean DEFAULT false, - product_id bigint, - cost_price numeric(10,2), - "position" integer, - cost_currency character varying, - track_inventory boolean DEFAULT true, - tax_category_id bigint, - updated_at timestamp without time zone NOT NULL, - discontinue_on timestamp without time zone, - created_at timestamp without time zone NOT NULL, - public_metadata jsonb, - private_metadata jsonb -); - - -ALTER TABLE public.spree_variants OWNER TO postgres; - --- --- Name: spree_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_variants_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_variants_id_seq OWNER TO postgres; - --- --- Name: spree_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_variants_id_seq OWNED BY public.spree_variants.id; - - --- --- Name: spree_webhooks_events; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_webhooks_events ( - id bigint NOT NULL, - execution_time integer, - name character varying NOT NULL, - request_errors character varying, - response_code character varying, - subscriber_id bigint NOT NULL, - success boolean, - url character varying NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_webhooks_events OWNER TO postgres; - --- --- Name: spree_webhooks_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_webhooks_events_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_webhooks_events_id_seq OWNER TO postgres; - --- --- Name: spree_webhooks_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_webhooks_events_id_seq OWNED BY public.spree_webhooks_events.id; - - --- --- Name: spree_webhooks_subscribers; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_webhooks_subscribers ( - id bigint NOT NULL, - url character varying NOT NULL, - active boolean DEFAULT false, - subscriptions jsonb, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_webhooks_subscribers OWNER TO postgres; - --- --- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_webhooks_subscribers_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_webhooks_subscribers_id_seq OWNER TO postgres; - --- --- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_webhooks_subscribers_id_seq OWNED BY public.spree_webhooks_subscribers.id; - - --- --- Name: spree_wished_items; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_wished_items ( - id bigint NOT NULL, - variant_id bigint, - wishlist_id bigint, - quantity integer DEFAULT 1 NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_wished_items OWNER TO postgres; - --- --- Name: spree_wished_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_wished_items_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_wished_items_id_seq OWNER TO postgres; - --- --- Name: spree_wished_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_wished_items_id_seq OWNED BY public.spree_wished_items.id; - - --- --- Name: spree_wishlists; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_wishlists ( - id bigint NOT NULL, - user_id bigint, - store_id bigint, - name character varying, - token character varying NOT NULL, - is_private boolean DEFAULT true NOT NULL, - is_default boolean DEFAULT false NOT NULL, - created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL -); - - -ALTER TABLE public.spree_wishlists OWNER TO postgres; - --- --- Name: spree_wishlists_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_wishlists_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_wishlists_id_seq OWNER TO postgres; - --- --- Name: spree_wishlists_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_wishlists_id_seq OWNED BY public.spree_wishlists.id; - - --- --- Name: spree_zone_members; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_zone_members ( - id bigint NOT NULL, - zoneable_type character varying, - zoneable_id bigint, - zone_id bigint, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL -); - - -ALTER TABLE public.spree_zone_members OWNER TO postgres; - --- --- Name: spree_zone_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_zone_members_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_zone_members_id_seq OWNER TO postgres; - --- --- Name: spree_zone_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_zone_members_id_seq OWNED BY public.spree_zone_members.id; - - --- --- Name: spree_zones; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.spree_zones ( - id bigint NOT NULL, - name character varying, - description character varying, - default_tax boolean DEFAULT false, - zone_members_count integer DEFAULT 0, - created_at timestamp(6) without time zone NOT NULL, - updated_at timestamp(6) without time zone NOT NULL, - kind character varying DEFAULT 'state'::character varying -); - - -ALTER TABLE public.spree_zones OWNER TO postgres; - --- --- Name: spree_zones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres --- - -CREATE SEQUENCE public.spree_zones_id_seq - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER TABLE public.spree_zones_id_seq OWNER TO postgres; - --- --- Name: spree_zones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres --- - -ALTER SEQUENCE public.spree_zones_id_seq OWNED BY public.spree_zones.id; - - --- --- Name: action_mailbox_inbound_emails id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.action_mailbox_inbound_emails ALTER COLUMN id SET DEFAULT nextval('public.action_mailbox_inbound_emails_id_seq'::regclass); - - --- --- Name: action_text_rich_texts id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.action_text_rich_texts ALTER COLUMN id SET DEFAULT nextval('public.action_text_rich_texts_id_seq'::regclass); - - --- --- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass); - - --- --- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass); - - --- --- Name: active_storage_variant_records id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_variant_records ALTER COLUMN id SET DEFAULT nextval('public.active_storage_variant_records_id_seq'::regclass); - - --- --- Name: friendly_id_slugs id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.friendly_id_slugs ALTER COLUMN id SET DEFAULT nextval('public.friendly_id_slugs_id_seq'::regclass); - - --- --- Name: spree_addresses id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_addresses ALTER COLUMN id SET DEFAULT nextval('public.spree_addresses_id_seq'::regclass); - - --- --- Name: spree_adjustments id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_adjustments ALTER COLUMN id SET DEFAULT nextval('public.spree_adjustments_id_seq'::regclass); - - --- --- Name: spree_assets id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_assets ALTER COLUMN id SET DEFAULT nextval('public.spree_assets_id_seq'::regclass); - - --- --- Name: spree_calculators id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_calculators ALTER COLUMN id SET DEFAULT nextval('public.spree_calculators_id_seq'::regclass); - - --- --- Name: spree_checks id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_checks ALTER COLUMN id SET DEFAULT nextval('public.spree_checks_id_seq'::regclass); - - --- --- Name: spree_cms_pages id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_cms_pages ALTER COLUMN id SET DEFAULT nextval('public.spree_cms_pages_id_seq'::regclass); - - --- --- Name: spree_cms_sections id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_cms_sections ALTER COLUMN id SET DEFAULT nextval('public.spree_cms_sections_id_seq'::regclass); - - --- --- Name: spree_countries id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_countries ALTER COLUMN id SET DEFAULT nextval('public.spree_countries_id_seq'::regclass); - - --- --- Name: spree_credit_cards id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_credit_cards ALTER COLUMN id SET DEFAULT nextval('public.spree_credit_cards_id_seq'::regclass); - - --- --- Name: spree_customer_returns id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_customer_returns ALTER COLUMN id SET DEFAULT nextval('public.spree_customer_returns_id_seq'::regclass); - - --- --- Name: spree_digital_links id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_digital_links ALTER COLUMN id SET DEFAULT nextval('public.spree_digital_links_id_seq'::regclass); - - --- --- Name: spree_digitals id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_digitals ALTER COLUMN id SET DEFAULT nextval('public.spree_digitals_id_seq'::regclass); - - --- --- Name: spree_gateways id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_gateways ALTER COLUMN id SET DEFAULT nextval('public.spree_gateways_id_seq'::regclass); - - --- --- Name: spree_inventory_units id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_inventory_units ALTER COLUMN id SET DEFAULT nextval('public.spree_inventory_units_id_seq'::regclass); - - --- --- Name: spree_line_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_line_items ALTER COLUMN id SET DEFAULT nextval('public.spree_line_items_id_seq'::regclass); - - --- --- Name: spree_log_entries id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_log_entries ALTER COLUMN id SET DEFAULT nextval('public.spree_log_entries_id_seq'::regclass); - - --- --- Name: spree_menu_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_menu_items ALTER COLUMN id SET DEFAULT nextval('public.spree_menu_items_id_seq'::regclass); - - --- --- Name: spree_menus id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_menus ALTER COLUMN id SET DEFAULT nextval('public.spree_menus_id_seq'::regclass); - - --- --- Name: spree_oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_grants ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_access_grants_id_seq'::regclass); - - --- --- Name: spree_oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_access_tokens_id_seq'::regclass); - - --- --- Name: spree_oauth_applications id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_applications ALTER COLUMN id SET DEFAULT nextval('public.spree_oauth_applications_id_seq'::regclass); - - --- --- Name: spree_option_type_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_type_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_option_type_prototypes_id_seq'::regclass); - - --- --- Name: spree_option_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_types ALTER COLUMN id SET DEFAULT nextval('public.spree_option_types_id_seq'::regclass); - - --- --- Name: spree_option_value_variants id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_value_variants ALTER COLUMN id SET DEFAULT nextval('public.spree_option_value_variants_id_seq'::regclass); - - --- --- Name: spree_option_values id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_values ALTER COLUMN id SET DEFAULT nextval('public.spree_option_values_id_seq'::regclass); - - --- --- Name: spree_order_promotions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_order_promotions ALTER COLUMN id SET DEFAULT nextval('public.spree_order_promotions_id_seq'::regclass); - - --- --- Name: spree_orders id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_orders ALTER COLUMN id SET DEFAULT nextval('public.spree_orders_id_seq'::regclass); - - --- --- Name: spree_payment_capture_events id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payment_capture_events ALTER COLUMN id SET DEFAULT nextval('public.spree_payment_capture_events_id_seq'::regclass); - - --- --- Name: spree_payment_methods id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payment_methods ALTER COLUMN id SET DEFAULT nextval('public.spree_payment_methods_id_seq'::regclass); - - --- --- Name: spree_payments id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payments ALTER COLUMN id SET DEFAULT nextval('public.spree_payments_id_seq'::regclass); - - --- --- Name: spree_preferences id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_preferences ALTER COLUMN id SET DEFAULT nextval('public.spree_preferences_id_seq'::regclass); - - --- --- Name: spree_prices id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prices ALTER COLUMN id SET DEFAULT nextval('public.spree_prices_id_seq'::regclass); - - --- --- Name: spree_product_option_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_option_types ALTER COLUMN id SET DEFAULT nextval('public.spree_product_option_types_id_seq'::regclass); - - --- --- Name: spree_product_promotion_rules id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_promotion_rules ALTER COLUMN id SET DEFAULT nextval('public.spree_product_promotion_rules_id_seq'::regclass); - - --- --- Name: spree_product_properties id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_properties ALTER COLUMN id SET DEFAULT nextval('public.spree_product_properties_id_seq'::regclass); - - --- --- Name: spree_products id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products ALTER COLUMN id SET DEFAULT nextval('public.spree_products_id_seq'::regclass); - - --- --- Name: spree_products_stores id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_products_stores_id_seq'::regclass); - - --- --- Name: spree_products_taxons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_products_taxons_id_seq'::regclass); - - --- --- Name: spree_promotion_action_line_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_action_line_items ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_action_line_items_id_seq'::regclass); - - --- --- Name: spree_promotion_actions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_actions ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_actions_id_seq'::regclass); - - --- --- Name: spree_promotion_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_categories_id_seq'::regclass); - - --- --- Name: spree_promotion_rule_taxons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rule_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rule_taxons_id_seq'::regclass); - - --- --- Name: spree_promotion_rule_users id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rule_users ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rule_users_id_seq'::regclass); - - --- --- Name: spree_promotion_rules id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rules ALTER COLUMN id SET DEFAULT nextval('public.spree_promotion_rules_id_seq'::regclass); - - --- --- Name: spree_promotions id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotions ALTER COLUMN id SET DEFAULT nextval('public.spree_promotions_id_seq'::regclass); - - --- --- Name: spree_promotions_stores id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotions_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_promotions_stores_id_seq'::regclass); - - --- --- Name: spree_properties id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_properties ALTER COLUMN id SET DEFAULT nextval('public.spree_properties_id_seq'::regclass); - - --- --- Name: spree_property_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_property_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_property_prototypes_id_seq'::regclass); - - --- --- Name: spree_prototype_taxons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prototype_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_prototype_taxons_id_seq'::regclass); - - --- --- Name: spree_prototypes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prototypes ALTER COLUMN id SET DEFAULT nextval('public.spree_prototypes_id_seq'::regclass); - - --- --- Name: spree_refund_reasons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_refund_reasons ALTER COLUMN id SET DEFAULT nextval('public.spree_refund_reasons_id_seq'::regclass); - - --- --- Name: spree_refunds id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_refunds ALTER COLUMN id SET DEFAULT nextval('public.spree_refunds_id_seq'::regclass); - - --- --- Name: spree_reimbursement_credits id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursement_credits ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursement_credits_id_seq'::regclass); - - --- --- Name: spree_reimbursement_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursement_types ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursement_types_id_seq'::regclass); - - --- --- Name: spree_reimbursements id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursements ALTER COLUMN id SET DEFAULT nextval('public.spree_reimbursements_id_seq'::regclass); - - --- --- Name: spree_return_authorization_reasons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_authorization_reasons ALTER COLUMN id SET DEFAULT nextval('public.spree_return_authorization_reasons_id_seq'::regclass); - - --- --- Name: spree_return_authorizations id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_authorizations ALTER COLUMN id SET DEFAULT nextval('public.spree_return_authorizations_id_seq'::regclass); - - --- --- Name: spree_return_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_items ALTER COLUMN id SET DEFAULT nextval('public.spree_return_items_id_seq'::regclass); - - --- --- Name: spree_role_users id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_role_users ALTER COLUMN id SET DEFAULT nextval('public.spree_role_users_id_seq'::regclass); - - --- --- Name: spree_roles id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_roles ALTER COLUMN id SET DEFAULT nextval('public.spree_roles_id_seq'::regclass); - - --- --- Name: spree_shipments id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipments ALTER COLUMN id SET DEFAULT nextval('public.spree_shipments_id_seq'::regclass); - - --- --- Name: spree_shipping_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_categories_id_seq'::regclass); - - --- --- Name: spree_shipping_method_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_method_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_method_categories_id_seq'::regclass); - - --- --- Name: spree_shipping_method_zones id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_method_zones ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_method_zones_id_seq'::regclass); - - --- --- Name: spree_shipping_methods id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_methods ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_methods_id_seq'::regclass); - - --- --- Name: spree_shipping_rates id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_rates ALTER COLUMN id SET DEFAULT nextval('public.spree_shipping_rates_id_seq'::regclass); - - --- --- Name: spree_state_changes id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_state_changes ALTER COLUMN id SET DEFAULT nextval('public.spree_state_changes_id_seq'::regclass); - - --- --- Name: spree_states id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_states ALTER COLUMN id SET DEFAULT nextval('public.spree_states_id_seq'::regclass); - - --- --- Name: spree_stock_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_items ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_items_id_seq'::regclass); - - --- --- Name: spree_stock_locations id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_locations ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_locations_id_seq'::regclass); - - --- --- Name: spree_stock_movements id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_movements ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_movements_id_seq'::regclass); - - --- --- Name: spree_stock_transfers id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_transfers ALTER COLUMN id SET DEFAULT nextval('public.spree_stock_transfers_id_seq'::regclass); - - --- --- Name: spree_store_credit_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_categories_id_seq'::regclass); - - --- --- Name: spree_store_credit_events id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_events ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_events_id_seq'::regclass); - - --- --- Name: spree_store_credit_types id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_types ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credit_types_id_seq'::regclass); - - --- --- Name: spree_store_credits id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credits ALTER COLUMN id SET DEFAULT nextval('public.spree_store_credits_id_seq'::regclass); - - --- --- Name: spree_stores id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stores ALTER COLUMN id SET DEFAULT nextval('public.spree_stores_id_seq'::regclass); - - --- --- Name: spree_tax_categories id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_tax_categories ALTER COLUMN id SET DEFAULT nextval('public.spree_tax_categories_id_seq'::regclass); - - --- --- Name: spree_tax_rates id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_tax_rates ALTER COLUMN id SET DEFAULT nextval('public.spree_tax_rates_id_seq'::regclass); - - --- --- Name: spree_taxonomies id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_taxonomies ALTER COLUMN id SET DEFAULT nextval('public.spree_taxonomies_id_seq'::regclass); - - --- --- Name: spree_taxons id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_taxons ALTER COLUMN id SET DEFAULT nextval('public.spree_taxons_id_seq'::regclass); - - --- --- Name: spree_trackers id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_trackers ALTER COLUMN id SET DEFAULT nextval('public.spree_trackers_id_seq'::regclass); - - --- --- Name: spree_users id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_users ALTER COLUMN id SET DEFAULT nextval('public.spree_users_id_seq'::regclass); - - --- --- Name: spree_variants id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_variants ALTER COLUMN id SET DEFAULT nextval('public.spree_variants_id_seq'::regclass); - - --- --- Name: spree_webhooks_events id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_webhooks_events ALTER COLUMN id SET DEFAULT nextval('public.spree_webhooks_events_id_seq'::regclass); - - --- --- Name: spree_webhooks_subscribers id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_webhooks_subscribers ALTER COLUMN id SET DEFAULT nextval('public.spree_webhooks_subscribers_id_seq'::regclass); - - --- --- Name: spree_wished_items id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_wished_items ALTER COLUMN id SET DEFAULT nextval('public.spree_wished_items_id_seq'::regclass); - - --- --- Name: spree_wishlists id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_wishlists ALTER COLUMN id SET DEFAULT nextval('public.spree_wishlists_id_seq'::regclass); - - --- --- Name: spree_zone_members id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_zone_members ALTER COLUMN id SET DEFAULT nextval('public.spree_zone_members_id_seq'::regclass); - - --- --- Name: spree_zones id; Type: DEFAULT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_zones ALTER COLUMN id SET DEFAULT nextval('public.spree_zones_id_seq'::regclass); - - --- --- Data for Name: action_mailbox_inbound_emails; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.action_mailbox_inbound_emails (id, status, message_id, message_checksum, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: action_text_rich_texts; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.action_text_rich_texts (id, name, body, record_type, record_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: active_storage_attachments; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.active_storage_attachments (id, name, record_type, record_id, blob_id, created_at) FROM stdin; -9 attachment Spree::Asset 2 9 2022-09-02 17:04:42.618915 -10 image ActiveStorage::VariantRecord 6 10 2022-09-02 17:04:43.834442 -11 image ActiveStorage::VariantRecord 7 11 2022-09-02 17:07:36.677759 -12 attachment Spree::Asset 3 12 2022-09-02 17:12:23.68051 -13 image ActiveStorage::VariantRecord 8 13 2022-09-02 17:12:24.593819 -14 image ActiveStorage::VariantRecord 9 14 2022-09-02 17:12:44.54298 -15 image ActiveStorage::VariantRecord 10 15 2022-09-02 17:13:38.607574 -16 image ActiveStorage::VariantRecord 11 16 2022-09-02 17:13:40.066821 -17 image ActiveStorage::VariantRecord 12 17 2022-09-02 17:18:47.376468 -18 attachment Spree::Asset 4 18 2022-09-02 17:22:59.541988 -19 image ActiveStorage::VariantRecord 13 19 2022-09-02 17:23:00.417303 -20 image ActiveStorage::VariantRecord 14 20 2022-09-02 17:23:10.290435 -21 image ActiveStorage::VariantRecord 15 21 2022-09-02 17:30:07.259923 -22 image ActiveStorage::VariantRecord 16 22 2022-09-02 17:30:58.121756 -23 attachment Spree::Asset 5 23 2022-09-02 17:36:28.631573 -24 image ActiveStorage::VariantRecord 17 24 2022-09-02 17:36:29.62463 -25 image ActiveStorage::VariantRecord 18 25 2022-09-02 17:36:53.437153 -26 image ActiveStorage::VariantRecord 19 26 2022-09-02 17:36:59.863254 -27 image ActiveStorage::VariantRecord 20 27 2022-09-02 17:37:09.951175 -28 attachment Spree::Asset 6 28 2022-09-02 18:30:57.994045 -29 image ActiveStorage::VariantRecord 21 29 2022-09-02 18:30:58.939093 -30 image ActiveStorage::VariantRecord 22 30 2022-09-02 18:31:40.663095 -31 image ActiveStorage::VariantRecord 23 31 2022-09-02 18:33:03.592745 -32 image ActiveStorage::VariantRecord 24 32 2022-09-02 18:33:09.037875 -33 attachment Spree::Asset 7 33 2022-09-02 18:39:42.413766 -34 image ActiveStorage::VariantRecord 25 34 2022-09-02 18:39:43.311487 -35 image ActiveStorage::VariantRecord 26 35 2022-09-02 18:40:17.550299 -36 image ActiveStorage::VariantRecord 27 36 2022-09-02 18:40:36.17104 -49 image ActiveStorage::VariantRecord 37 49 2022-09-02 18:46:54.434274 -77 image ActiveStorage::VariantRecord 60 77 2022-09-13 20:45:20.994954 -78 attachment Spree::Asset 8 78 2022-09-13 20:55:14.204373 -79 image ActiveStorage::VariantRecord 61 79 2022-09-13 20:55:15.559455 -80 image ActiveStorage::VariantRecord 62 80 2022-09-13 20:55:19.220519 -81 image ActiveStorage::VariantRecord 63 81 2022-09-13 20:56:01.27318 -82 attachment Spree::Asset 9 82 2022-09-13 20:56:26.336847 -83 image ActiveStorage::VariantRecord 64 83 2022-09-13 20:56:27.643058 -84 image ActiveStorage::VariantRecord 65 84 2022-09-13 20:57:15.231813 -85 attachment Spree::Asset 10 85 2022-09-13 20:57:51.310359 -86 attachment Spree::Asset 12 86 2022-09-13 20:58:02.736356 -87 attachment Spree::Asset 11 87 2022-09-13 20:58:22.800752 -88 image ActiveStorage::VariantRecord 66 88 2022-09-13 20:58:23.694078 -89 image ActiveStorage::VariantRecord 67 89 2022-09-13 20:58:25.308738 -90 attachment Spree::Asset 14 90 2022-09-13 20:58:36.663073 -91 image ActiveStorage::VariantRecord 68 91 2022-09-13 20:58:38.29224 -92 attachment Spree::Asset 13 92 2022-09-13 20:58:51.555379 -93 image ActiveStorage::VariantRecord 69 93 2022-09-13 20:58:52.720018 -94 image ActiveStorage::VariantRecord 70 94 2022-09-13 20:58:55.871559 -95 image ActiveStorage::VariantRecord 71 95 2022-09-13 20:58:55.886657 -96 image ActiveStorage::VariantRecord 72 96 2022-09-13 20:58:56.006781 -97 image ActiveStorage::VariantRecord 73 97 2022-09-13 20:58:56.226471 -98 image ActiveStorage::VariantRecord 74 98 2022-09-13 20:58:56.321614 -99 image ActiveStorage::VariantRecord 75 99 2022-09-13 20:58:56.390544 -100 attachment Spree::Asset 15 100 2022-09-13 20:59:13.185735 -101 image ActiveStorage::VariantRecord 76 101 2022-09-13 20:59:14.23223 -102 image ActiveStorage::VariantRecord 78 102 2022-09-13 20:59:35.309674 -103 image ActiveStorage::VariantRecord 77 103 2022-09-13 20:59:35.415531 -104 image ActiveStorage::VariantRecord 79 104 2022-09-13 20:59:35.512547 -105 image ActiveStorage::VariantRecord 80 105 2022-09-13 20:59:35.586156 -106 image ActiveStorage::VariantRecord 81 106 2022-09-13 20:59:35.592875 -\. - - --- --- Data for Name: active_storage_blobs; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.active_storage_blobs (id, key, filename, content_type, metadata, service_name, byte_size, checksum, created_at) FROM stdin; -9 2ooru1xgcss6d2qeg4iwmjjgz2c9 cool-bits.jpeg image/jpeg {"identified":true} local 248149 ul8ihFjoVa/dcMgvaiIr1g== 2022-09-02 17:04:42.612189 -10 d7k8l52o2ji9tkor07sqd25wpxdk cool-bits.jpeg image/jpeg {"identified":true} local 47777 k88PNqNP9KalnrRGGGCEWg== 2022-09-02 17:04:43.827676 -11 f5xr4qy5dtulhpe8kgazjo2x7ubz cool-bits.jpeg image/jpeg {"identified":true} local 40109 Ynud5dEmvQR/uQ/7TtWDdQ== 2022-09-02 17:07:36.67155 -12 f1f6rz6nuf57ryix259yxq7j3tje bits-by-dre.jpeg image/jpeg {"identified":true} local 234993 +NqcIyZzTw2n9pWG+kLilw== 2022-09-02 17:12:23.675719 -13 fsipi7gdrjs2mxhgop0etbuwsfu2 bits-by-dre.jpeg image/jpeg {"identified":true} local 49646 i/8OhqiJvH5Tfbhwwxkpmg== 2022-09-02 17:12:24.58817 -14 nx9dapm2zhd2kh991ompea29775m bits-by-dre.jpeg image/jpeg {"identified":true} local 38898 /p3ijEdp9nhaLD1N1/Rydg== 2022-09-02 17:12:44.537643 -15 ltmc7z2yt5ozwpuqmoz2uw98xylf cool-bits.jpeg image/jpeg {"identified":true} local 100545 8Ib3bBPtuwjsKX6ELNQ2Aw== 2022-09-02 17:13:38.598918 -16 b095fsshrfwmoexn8czq2m3aiqbe bits-by-dre.jpeg image/jpeg {"identified":true} local 101081 SSaVHNcWNpYrSUdIJC68UQ== 2022-09-02 17:13:40.059544 -17 6mb7uh60to9dg7fvpjljjmqdnyfw bits-by-dre.jpeg image/jpeg {"identified":true} local 41004 yGcO9plltZhFPqbpBXeUSw== 2022-09-02 17:18:47.370307 -18 p80jyh6ws8gqmfrp8kcjcgctdieh hockey-bits.jpeg image/jpeg {"identified":true} local 210279 7ZrEj+kayH0gSXcBBG/B4Q== 2022-09-02 17:22:59.537118 -19 ir5thn1x7rn9legliqvjh23qg1bl hockey-bits.jpeg image/jpeg {"identified":true} local 44698 HjGe/x67xFTEh5NodOLiaA== 2022-09-02 17:23:00.410808 -20 l81gft3rnuphlp36xw4q33p4r1cs hockey-bits.jpeg image/jpeg {"identified":true} local 87716 n3vIGT//d9+y6zglmVzq/Q== 2022-09-02 17:23:10.283814 -21 un6xvbm6l3ecxwxwuxffc6b6pksy hockey-bits.jpeg image/jpeg {"identified":true} local 35863 Ov4CUgp/5UYrkdaWuqoZkw== 2022-09-02 17:30:07.252332 -22 m6sbj199y5b8id0eg6dvktm1nbyu hockey-bits.jpeg image/jpeg {"identified":true} local 37690 VkJEwpH/dudnAOEkCT4nsQ== 2022-09-02 17:30:58.116025 -23 1ks2veug3cveel5c0eeyaq0m647s learning-bits.jpeg image/jpeg {"identified":true} local 1197149 TgyzBURlYl80yCI+9ouxUg== 2022-09-02 17:36:28.626212 -24 xp7a6l2hhtrp4ow3oo2e8ozqzuz1 learning-bits.jpeg image/jpeg {"identified":true} local 1014802 Fh+PlRSqDZIWIbckSk9UAQ== 2022-09-02 17:36:29.61502 -25 3lsqhzqyca5o90l7ek5lcic5ge8z learning-bits.jpeg image/jpeg {"identified":true} local 1002362 6ObEwVp7EOsRMtv78F5IAw== 2022-09-02 17:36:53.431309 -26 h3ump7vjqudll390ky1rdss0xdb4 learning-bits.jpeg image/jpeg {"identified":true} local 1004850 uaX8QLaSQky4BV0bo0QUdQ== 2022-09-02 17:36:59.857098 -27 kru2kfqkml3mwkuhmc2w0uvtp4x1 learning-bits.jpeg image/jpeg {"identified":true} local 1071981 I09nvy18aBcaVMARVMEBiw== 2022-09-02 17:37:09.944468 -28 14zj5sb9no7mevm8vtzjcym71vy1 money-bits.jpeg image/jpeg {"identified":true} local 1100898 YghoZn3prrKQ5yQtZbDK7Q== 2022-09-02 18:30:57.989354 -29 0k8uufd4279o44gzgz5efagsqteu money-bits.jpeg image/jpeg {"identified":true} local 939468 aNVNfHCzp1R8trPKW0LXiQ== 2022-09-02 18:30:58.93293 -30 vdhfjqfz88rsidepmoygmvmzuory money-bits.jpeg image/jpeg {"identified":true} local 927913 1iDbHbeEqFL5qloXcbnSzg== 2022-09-02 18:31:40.657526 -31 hvlm8gb3nktx69eteqqt7atj9qrs money-bits.jpeg image/jpeg {"identified":true} local 930216 GDQRFyc+9JP2t4jYJHi7EQ== 2022-09-02 18:33:03.586501 -32 bz2awto4gfx6t6udd7k5gjvke8i7 money-bits.jpeg image/jpeg {"identified":true} local 986590 M+ek08qj38Ji7feazaiO8Q== 2022-09-02 18:33:09.031386 -33 0r42dufnbi6rctn4vap71d1urqk9 octo-bits.jpeg image/jpeg {"identified":true} local 241272 NuxNL0YyHeKIF1sASRT97A== 2022-09-02 18:39:42.409353 -34 dbagqumqgq1z6319o338j7bmt5pq octo-bits.jpeg image/jpeg {"identified":true} local 49159 sqkjHyWt2rPAY5q7ruUqgQ== 2022-09-02 18:39:43.304605 -35 msm81dgmxk4ggqiud2bv4j9waoie octo-bits.jpeg image/jpeg {"identified":true} local 38361 oeUTnZsxghMF1aO5O7v+KQ== 2022-09-02 18:40:17.543007 -36 pk18k7l7xvz7fcz9ecz20m01mbg1 octo-bits.jpeg image/jpeg {"identified":true} local 40567 SrFwtDhvXJzhWls05pzdzw== 2022-09-02 18:40:36.165326 -49 77of4hptz6t0rf0gn04v0kqjt4dm octo-bits.jpeg image/jpeg {"identified":true} local 100180 VZ6BkQVMlbvYs4EqLM/Auw== 2022-09-02 18:46:54.428156 -77 tcuywtfa5bo7iswkbmocinkv4obn bits-by-dre.jpeg image/jpeg {"identified":true} local 51236 EfpZWM2xmoj7MQuE71RIyQ== 2022-09-13 20:45:20.984736 -78 tq3q5lsbdzh1hfwfto2ub0dwuuul og-bits.jpeg image/jpeg {"identified":true} local 1151702 0Yuvf2ntSpa0Gb5VGtepzw== 2022-09-13 20:55:14.197795 -79 rcp1c0ffcrahrxl6ddwdj502lrzh og-bits.jpeg image/jpeg {"identified":true} local 972140 /hpLInzJskGPWV9QIVLLQQ== 2022-09-13 20:55:15.55344 -80 vn912gigj022zdj21b018id2vb0h og-bits.jpeg image/jpeg {"identified":true} local 1024852 m8dJdUhVnmZxI7oDBj56eg== 2022-09-13 20:55:19.207845 -81 fk0o9nsutjpswot205kna7pdoj02 og-bits.jpeg image/jpeg {"identified":true} local 962633 zQSTI0DGiSAJC+4llwmG4w== 2022-09-13 20:56:01.257696 -82 ox4iruasiwuftdu71u98l5t4rpgm rainbow-bits.jpeg image/jpeg {"identified":true} local 259193 efsoMAdOKxIbVSCwg2/YFA== 2022-09-13 20:56:26.329573 -83 v2d6kiibpmi2n5wei0zvfmgcrcp6 rainbow-bits.jpeg image/jpeg {"identified":true} local 50906 hzjMyPp7yLnGK08HEKI4+w== 2022-09-13 20:56:27.635727 -84 6f852pkntrw16c0w9wzpdx2rnmud rainbow-bits.jpeg image/jpeg {"identified":true} local 110174 Mr9AnVJZuwi+NMzBR409mQ== 2022-09-13 20:57:15.200353 -85 rp62efuo0c81qrdzczbw9vbu1eih space-bits.jpeg image/jpeg {"identified":true} local 204816 v5mgn8jlxaBVDDh8LeBNyg== 2022-09-13 20:57:51.289216 -86 azwswza6kecyh2bmfnlpr7besvvb stonk-bits.jpeg image/jpeg {"identified":true} local 211078 PB5hl6/YiHQKDvQmpvH8/w== 2022-09-13 20:58:02.72886 -87 l0idqd59oxu5iz00z9m3iep48pjm student-bits.jpeg image/jpeg {"identified":true} local 1092884 wklF2uDWboHOf4qkukL3Gg== 2022-09-13 20:58:22.795426 -88 t2gbiuwefu2cu69nx6ef7mxvlkyf stonk-bits.jpeg image/jpeg {"identified":true} local 47293 Vqnn8/ONG6Qzb1/s1FFEMw== 2022-09-13 20:58:23.685776 -89 1cn3v98qnmqwts7m6l5xkbhzvffn student-bits.jpeg image/jpeg {"identified":true} local 934184 Ur0hmwkICrISUfpSgAVzcw== 2022-09-13 20:58:25.299251 -90 ziae3tzvaen6pm7pdzsya7rv46l3 sunset-bits.jpeg image/jpeg {"identified":true} local 216353 aXoMYGfRJSfhcGrhVRbMnQ== 2022-09-13 20:58:36.655123 -91 oifpdmfenjck5p39s91m8ij5ya5a sunset-bits.jpeg image/jpeg {"identified":true} local 46938 lHVXqqxJgx6PoGGedTHq3A== 2022-09-13 20:58:38.271792 -92 8drwmhakoag0ra8a1myjdr80mt57 summit-denver.jpeg image/jpeg {"identified":true} local 265693 0yTT+jLLPh/PFOEHlfEgcg== 2022-09-13 20:58:51.549532 -93 q869nghoropy7vm31r30cgs85x0d summit-denver.jpeg image/jpeg {"identified":true} local 48059 CXWmqZ1vH06pKaFssa5s8w== 2022-09-13 20:58:52.713025 -94 5beayoc679qsbk1udyydvujp3tuv summit-denver.jpeg image/jpeg {"identified":true} local 38249 KIpZ6xWcIwScorOuJILSVQ== 2022-09-13 20:58:55.863754 -95 j4j2wb67ekv1hle6t5z2aq19gstf space-bits.jpeg image/jpeg {"identified":true} local 8347 AiFsjCezMe9MF+xL73BFvg== 2022-09-13 20:58:55.87748 -96 wpik6q4kgdlnd8zy9vxfayze9bxl stonk-bits.jpeg image/jpeg {"identified":true} local 40088 fdq55rYupPV6x9aLfruPXw== 2022-09-13 20:58:55.995317 -97 osvherjecbdx3ezy3jvar6vvfwrk rainbow-bits.jpeg image/jpeg {"identified":true} local 41520 7VX0r/Epk4dnKEc+Y+7Lbw== 2022-09-13 20:58:56.197497 -98 niywd6phcjdfuxw97lxi1y8t1sya student-bits.jpeg image/jpeg {"identified":true} local 924503 pu5jsJqi/HYNK0LTZ4rcEg== 2022-09-13 20:58:56.312249 -99 bfkgrq99dea00vq7i74ludx4q31l sunset-bits.jpeg image/jpeg {"identified":true} local 39803 VzZgZrPB82opPBFfJq8MOg== 2022-09-13 20:58:56.382249 -100 97xen0j7t6ketkwt4l8vobq14qq9 aapihm-bits.jpeg image/jpeg {"identified":true} local 343741 eZTuAgNrYgfLggtJUa1c/w== 2022-09-13 20:59:13.18072 -101 dqc7t23uxsm5axhesoap039wqjeb aapihm-bits.jpeg image/jpeg {"identified":true} local 54179 N+Kdai0kqbj/tKP/g2CnAw== 2022-09-13 20:59:14.224158 -102 x0j50n6qwk4g0p72hy9h9gmz9l41 summit-denver.jpeg image/jpeg {"identified":true} local 114428 xxurWrUOWSTgyBbYeJTC0w== 2022-09-13 20:59:35.288053 -103 bbxn5vhfqpqdykae8z2cdf5x3dgs space-bits.jpeg image/jpeg {"identified":true} local 76325 C5b9U36Azm+17rksRdyRmw== 2022-09-13 20:59:35.303957 -104 89to0ymiqabe72nctvgrgqzyrk0o student-bits.jpeg image/jpeg {"identified":true} local 979837 s8S7lz63WqubLuwyZkUlvQ== 2022-09-13 20:59:35.466817 -105 z8lp9oe5quoqzkewjtvj14rubeg0 aapihm-bits.jpeg image/jpeg {"identified":true} local 110578 tyOLd68VxrlORI9USR6TnA== 2022-09-13 20:59:35.559995 -106 169tp3memt7id57sh22o8ejtcblg sunset-bits.jpeg image/jpeg {"identified":true} local 91553 l8Bed84NaeR7ZnrBeZ+OMg== 2022-09-13 20:59:35.559872 -\. - - --- --- Data for Name: active_storage_variant_records; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.active_storage_variant_records (id, blob_id, variation_digest) FROM stdin; -6 9 fwVpW23gRniI1V/Mq72agowuN5s= -7 9 d3LOd3YXIQx0J6s9ItQoFa4APBo= -8 12 fwVpW23gRniI1V/Mq72agowuN5s= -9 12 bBI9nAYRWRjVu1pk9y6xAFWlb5I= -10 9 xKmKND+TjDHsG4nik8rAoillPTg= -11 12 xKmKND+TjDHsG4nik8rAoillPTg= -12 12 d3LOd3YXIQx0J6s9ItQoFa4APBo= -13 18 fwVpW23gRniI1V/Mq72agowuN5s= -14 18 xKmKND+TjDHsG4nik8rAoillPTg= -15 18 bBI9nAYRWRjVu1pk9y6xAFWlb5I= -16 18 d3LOd3YXIQx0J6s9ItQoFa4APBo= -17 23 fwVpW23gRniI1V/Mq72agowuN5s= -18 23 bBI9nAYRWRjVu1pk9y6xAFWlb5I= -19 23 d3LOd3YXIQx0J6s9ItQoFa4APBo= -20 23 xKmKND+TjDHsG4nik8rAoillPTg= -21 28 fwVpW23gRniI1V/Mq72agowuN5s= -22 28 bBI9nAYRWRjVu1pk9y6xAFWlb5I= -23 28 d3LOd3YXIQx0J6s9ItQoFa4APBo= -24 28 xKmKND+TjDHsG4nik8rAoillPTg= -25 33 fwVpW23gRniI1V/Mq72agowuN5s= -26 33 bBI9nAYRWRjVu1pk9y6xAFWlb5I= -27 33 d3LOd3YXIQx0J6s9ItQoFa4APBo= -37 33 xKmKND+TjDHsG4nik8rAoillPTg= -60 12 LMY3gm7ksOYX5XlHmCdPt9vS3Xk= -61 78 fwVpW23gRniI1V/Mq72agowuN5s= -62 78 xKmKND+TjDHsG4nik8rAoillPTg= -63 78 d3LOd3YXIQx0J6s9ItQoFa4APBo= -64 82 fwVpW23gRniI1V/Mq72agowuN5s= -65 82 xKmKND+TjDHsG4nik8rAoillPTg= -66 86 fwVpW23gRniI1V/Mq72agowuN5s= -67 87 fwVpW23gRniI1V/Mq72agowuN5s= -68 90 fwVpW23gRniI1V/Mq72agowuN5s= -69 92 fwVpW23gRniI1V/Mq72agowuN5s= -70 92 d3LOd3YXIQx0J6s9ItQoFa4APBo= -71 85 d3LOd3YXIQx0J6s9ItQoFa4APBo= -72 86 d3LOd3YXIQx0J6s9ItQoFa4APBo= -73 82 d3LOd3YXIQx0J6s9ItQoFa4APBo= -74 87 d3LOd3YXIQx0J6s9ItQoFa4APBo= -75 90 d3LOd3YXIQx0J6s9ItQoFa4APBo= -76 100 fwVpW23gRniI1V/Mq72agowuN5s= -77 85 xKmKND+TjDHsG4nik8rAoillPTg= -78 92 xKmKND+TjDHsG4nik8rAoillPTg= -79 87 xKmKND+TjDHsG4nik8rAoillPTg= -80 100 xKmKND+TjDHsG4nik8rAoillPTg= -81 90 xKmKND+TjDHsG4nik8rAoillPTg= -\. - - --- --- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin; -environment development 2022-07-12 18:09:53.552384 2022-07-12 18:09:53.552384 -\. - - --- --- Data for Name: friendly_id_slugs; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.friendly_id_slugs (id, slug, sluggable_id, sluggable_type, scope, created_at, deleted_at) FROM stdin; -1 categories 1 Spree::Taxon \N 2022-07-12 18:13:13.083664 \N -18 categories/new 18 Spree::Taxon \N 2022-07-12 18:13:16.078291 \N -19 categories/bestsellers 19 Spree::Taxon \N 2022-07-12 18:13:16.175428 \N -20 categories/trending 20 Spree::Taxon \N 2022-07-12 18:13:16.278428 \N -63 midi-skirt-with-bottoms 37 Spree::Product \N 2022-07-12 18:13:30.823182 2022-09-02 16:28:29.055025 -71 pleated-skirt-2 45 Spree::Product \N 2022-07-12 18:13:33.741768 2022-09-02 16:28:32.708205 -33 regular-shirt 7 Spree::Product \N 2022-07-12 18:13:19.566485 2022-09-02 16:28:35.26686 -42 raw-edge-t-shirt 16 Spree::Product \N 2022-07-12 18:13:22.637858 2022-09-02 16:28:35.912895 -87 printed-wrapped-blouse 61 Spree::Product \N 2022-07-12 18:13:39.831363 2022-09-02 16:28:36.646095 -32 printed-short-sleeve-shirt 6 Spree::Product \N 2022-07-12 18:13:19.225018 2022-09-02 16:28:39.146282 -78 printed-dress 52 Spree::Product \N 2022-07-12 18:13:36.478442 2022-09-02 16:28:42.251783 -38 polo-t-shirt 12 Spree::Product \N 2022-07-12 18:13:21.257287 2022-09-02 16:28:43.046868 -88 pleated-sleeve-v-neck-shirt 62 Spree::Product \N 2022-07-12 18:13:40.17749 2022-09-02 16:28:44.135869 -65 a-line-suede-skirt 39 Spree::Product \N 2022-07-12 18:13:31.562211 2022-09-02 14:33:31.850158 -56 anorak-with-hood 30 Spree::Product \N 2022-07-12 18:13:28.064217 2022-09-02 14:33:33.896846 -28 checked-shirt 2 Spree::Product \N 2022-07-12 18:13:17.875797 2022-09-02 16:25:46.959859 -34 checked-slim-fit-shirt 8 Spree::Product \N 2022-07-12 18:13:19.902246 2022-09-02 16:25:48.491309 -89 cotton-shirt 63 Spree::Product \N 2022-07-12 18:13:40.519858 2022-09-02 16:25:51.869278 -62 flared-midi-skirt 36 Spree::Product \N 2022-07-12 18:13:30.464192 2022-09-02 16:26:03.119669 -74 flared-dress 48 Spree::Product \N 2022-07-12 18:13:35.007832 2022-09-02 16:26:03.89484 -75 elegant-flared-dress 49 Spree::Product \N 2022-07-12 18:13:35.36242 2022-09-02 16:26:04.827718 -80 dress-with-belt 54 Spree::Product \N 2022-07-12 18:13:37.20395 2022-09-02 16:26:06.075147 -59 down-jacket-with-hood 33 Spree::Product \N 2022-07-12 18:13:29.374519 2022-09-02 16:26:06.827193 -35 dotted-shirt 9 Spree::Product \N 2022-07-12 18:13:20.250901 2022-09-02 16:26:08.712587 -27 denim-shirt 1 Spree::Product \N 2022-07-12 18:13:17.391548 2022-09-02 16:26:09.422832 -57 denim-jacket 31 Spree::Product \N 2022-07-12 18:13:28.498678 2022-09-02 16:26:10.059145 -67 flared-skirt 41 Spree::Product \N 2022-07-12 18:13:32.266387 2022-09-02 16:26:59.6843 -70 floral-flared-skirt 44 Spree::Product \N 2022-07-12 18:13:33.367018 2022-09-02 16:27:01.002974 -82 flounced-dress 56 Spree::Product \N 2022-07-12 18:13:37.942049 2022-09-02 16:27:02.430326 -55 hooded-jacket 29 Spree::Product \N 2022-07-12 18:13:27.656624 2022-09-02 16:27:04.026367 -61 jacket-with-liner 35 Spree::Product \N 2022-07-12 18:13:30.092724 2022-09-02 16:27:05.133601 -36 linen-shirt 10 Spree::Product \N 2022-07-12 18:13:20.597271 2022-09-02 16:27:09.651986 -53 long-sleeve-jumper 27 Spree::Product \N 2022-07-12 18:13:26.796275 2022-09-02 16:27:10.393769 -39 long-sleeve-t-shirt 13 Spree::Product \N 2022-07-12 18:13:21.593241 2022-09-02 16:27:12.682961 -76 long-sleeve-knitted-dress 50 Spree::Product \N 2022-07-12 18:13:35.72999 2022-09-02 16:27:13.786225 -48 long-sleeve-jumper-with-pocket 22 Spree::Product \N 2022-07-12 18:13:24.918844 2022-09-02 16:27:14.593762 -49 jumper 23 Spree::Product \N 2022-07-12 18:13:25.27837 2022-09-02 16:27:18.207794 -51 hoodie 25 Spree::Product \N 2022-07-12 18:13:26.059903 2022-09-02 16:27:21.243482 -46 high-neck-sweater 20 Spree::Product \N 2022-07-12 18:13:24.21039 2022-09-02 16:27:23.108076 -72 floral-wrap-dress 46 Spree::Product \N 2022-07-12 18:13:34.267159 2022-09-02 16:27:23.809729 -37 regular-shirt-with-rolled-up-sleeves 11 Spree::Product \N 2022-07-12 18:13:20.921038 2022-09-02 16:27:31.394288 -69 skater-short-skirt 43 Spree::Product \N 2022-07-12 18:13:33.000338 2022-09-02 16:27:36.455511 -84 semi-sheer-shirt-with-floral-cuffs 58 Spree::Product \N 2022-07-12 18:13:38.637894 2022-09-02 16:27:41.235812 -31 short-sleeve-shirt 5 Spree::Product \N 2022-07-12 18:13:18.886327 2022-09-02 16:27:42.480717 -30 slim-fit-shirt 4 Spree::Product \N 2022-07-12 18:13:18.551534 2022-09-02 16:27:43.070848 -41 t-shirt-with-holes 15 Spree::Product \N 2022-07-12 18:13:22.284972 2022-09-02 16:27:45.27874 -54 suede-biker-jacket 28 Spree::Product \N 2022-07-12 18:13:27.254036 2022-09-02 16:27:45.913157 -47 stripped-jumper 21 Spree::Product \N 2022-07-12 18:13:24.56147 2022-09-02 16:27:46.504259 -85 striped-shirt 59 Spree::Product \N 2022-07-12 18:13:38.984475 2022-09-02 16:27:47.893673 -83 slit-maxi-dress 57 Spree::Product \N 2022-07-12 18:13:38.296968 2022-09-02 16:27:53.239001 -68 skater-skirt 42 Spree::Product \N 2022-07-12 18:13:32.636966 2022-09-02 16:27:53.776979 -52 zipped-high-neck-sweater 26 Spree::Product \N 2022-07-12 18:13:26.437851 2022-09-02 16:28:00.940544 -58 wool-blend-short-coat 32 Spree::Product \N 2022-07-12 18:13:28.998576 2022-09-02 16:28:01.53455 -60 wool-blend-coat 34 Spree::Product \N 2022-07-12 18:13:29.724248 2022-09-02 16:28:02.839935 -86 v-neck-wide-shirt 60 Spree::Product \N 2022-07-12 18:13:39.482443 2022-09-02 16:28:03.493133 -73 v-neck-floral-maxi-dress 47 Spree::Product \N 2022-07-12 18:13:34.648966 2022-09-02 16:28:06.015972 -81 v-neck-floral-dress 55 Spree::Product \N 2022-07-12 18:13:37.588042 2022-09-02 16:28:06.681009 -44 tank-top 18 Spree::Product \N 2022-07-12 18:13:23.476906 2022-09-02 16:28:07.230612 -117 loose-fitted-jacket 91 Spree::Product \N 2022-07-12 18:13:51.85172 2022-09-02 16:28:28.237147 -125 oversize-t-shirt-wrapped-on-back 99 Spree::Product \N 2022-07-12 18:13:54.955027 2022-09-02 16:28:31.060241 -97 oversized-knitted-sweater 71 Spree::Product \N 2022-07-12 18:13:43.435431 2022-09-02 16:28:31.560588 -3 categories/women 3 Spree::Taxon \N 2022-07-12 18:13:14.272231 2022-09-08 15:34:52.819141 -9 categories/women/skirts 9 Spree::Taxon \N 2022-07-12 18:13:15.113846 2022-09-08 15:34:52.835567 -10 categories/women/dresses 10 Spree::Taxon \N 2022-07-12 18:13:15.2217 2022-09-08 15:34:52.907897 -11 categories/women/shirts-and-blouses 11 Spree::Taxon \N 2022-07-12 18:13:15.332583 2022-09-08 15:34:52.939048 -4 categories/sportswear 4 Spree::Taxon \N 2022-07-12 18:13:14.523262 2022-09-08 15:34:54.460201 -15 categories/sportswear/tops 15 Spree::Taxon \N 2022-07-12 18:13:15.759122 2022-09-08 15:34:54.480126 -16 categories/sportswear/sweatshirts 16 Spree::Taxon \N 2022-07-12 18:13:15.872582 2022-09-08 15:34:54.537832 -17 categories/sportswear/pants 17 Spree::Taxon \N 2022-07-12 18:13:15.980192 2022-09-08 15:34:54.567141 -21 categories/streetstyle 21 Spree::Taxon \N 2022-07-12 18:13:16.38138 2022-09-08 15:34:58.105786 -22 categories/summer-sale 22 Spree::Taxon \N 2022-07-12 18:13:16.481395 2022-09-08 15:35:00.062536 -23 categories/new-collection 23 Spree::Taxon \N 2022-07-12 18:13:16.576708 2022-09-08 15:35:01.679377 -24 categories/new-collection/summer-2022 24 Spree::Taxon \N 2022-07-12 18:13:16.677109 2022-09-08 15:35:01.696286 -25 categories/special-offers 25 Spree::Taxon \N 2022-07-12 18:13:16.783992 2022-09-08 15:35:03.037446 -26 categories/special-offers/30-percent-off 26 Spree::Taxon \N 2022-07-12 18:13:16.885386 2022-09-08 15:35:03.054373 -98 oversized-sweatshirt 72 Spree::Product \N 2022-07-12 18:13:43.788205 2022-09-02 16:28:32.150322 -103 printed-t-shirt 77 Spree::Product \N 2022-07-12 18:13:46.039057 2022-09-02 16:28:37.805941 -79 printed-slit-sleeves-dress 53 Spree::Product \N 2022-07-12 18:13:36.843434 2022-09-02 16:28:38.422272 -95 printed-shirt 69 Spree::Product \N 2022-07-12 18:13:42.727813 2022-09-02 16:28:39.83849 -138 printed-pants-with-holes 112 Spree::Product \N 2022-07-12 18:13:59.940315 2022-09-02 16:28:41.009839 -140 printed-pants 114 Spree::Product \N 2022-07-12 18:14:00.781607 2022-09-02 16:28:41.618543 -105 pleated-sleeve-t-shirt 79 Spree::Product \N 2022-07-12 18:13:47.128416 2022-09-02 16:28:44.852538 -139 pants 113 Spree::Product \N 2022-07-12 18:14:00.340149 2022-09-02 16:28:46.728787 -40 3-4-sleeve-t-shirt 14 Spree::Product \N 2022-07-12 18:13:21.937549 2022-09-02 14:33:28.47632 -113 asymmetric-coat 87 Spree::Product \N 2022-07-12 18:13:50.069067 2022-09-02 14:33:39.315698 -96 asymmetric-sweater-with-wide-sleeves 70 Spree::Product \N 2022-07-12 18:13:43.081179 2022-09-02 14:33:48.805744 -110 basic-loose-t-shirt 84 Spree::Product \N 2022-07-12 18:13:48.956844 2022-09-02 16:25:39.662708 -45 basic-t-shirt 19 Spree::Product \N 2022-07-12 18:13:23.840223 2022-09-02 16:25:41.699458 -90 blouse-with-wide-flounced-sleeve 64 Spree::Product \N 2022-07-12 18:13:40.857366 2022-09-02 16:25:43.54228 -122 bomber-jacket 96 Spree::Product \N 2022-07-12 18:13:53.902506 2022-09-02 16:25:45.237334 -111 coat-with-pockets 85 Spree::Product \N 2022-07-12 18:13:49.331533 2022-09-02 16:25:50.229757 -29 covered-placket-shirt 3 Spree::Product \N 2022-07-12 18:13:18.212175 2022-09-02 16:25:53.853856 -107 crop-top 81 Spree::Product \N 2022-07-12 18:13:47.838767 2022-09-02 16:25:55.83698 -102 crop-top-with-tie 76 Spree::Product \N 2022-07-12 18:13:45.515237 2022-09-02 16:25:57.651034 -101 cropped-fitted-sweater 75 Spree::Product \N 2022-07-12 18:13:45.103196 2022-09-02 16:25:59.308128 -121 denim-hooded-jacket 95 Spree::Product \N 2022-07-12 18:13:53.472548 2022-09-02 16:26:01.087577 -64 fitted-skirt 38 Spree::Product \N 2022-07-12 18:13:31.192728 2022-09-02 16:26:04.320074 -91 elegant-blouse-with-chocker 65 Spree::Product \N 2022-07-12 18:13:41.235558 2022-09-02 16:26:05.519245 -115 down-jacket 89 Spree::Product \N 2022-07-12 18:13:50.996822 2022-09-02 16:26:07.319952 -118 double-breasted-jacket 92 Spree::Product \N 2022-07-12 18:13:52.344577 2022-09-02 16:26:07.938081 -92 floral-shirt 66 Spree::Product \N 2022-07-12 18:13:41.583424 2022-09-02 16:27:01.793663 -142 high-waist-pants 116 Spree::Product \N 2022-07-12 18:14:01.470925 2022-09-02 16:27:03.199042 -100 knitted-v-neck-sweater 74 Spree::Product \N 2022-07-12 18:13:44.56209 2022-09-02 16:27:06.983492 -127 laced-crop-top 101 Spree::Product \N 2022-07-12 18:13:55.662217 2022-09-02 16:27:07.853505 -66 leather-skirt-with-lacing 40 Spree::Product \N 2022-07-12 18:13:31.910474 2022-09-02 16:27:08.792747 -50 long-sleeve-sweatshirt 24 Spree::Product \N 2022-07-12 18:13:25.619472 2022-09-02 16:27:13.228068 -114 long-coat-with-belt 88 Spree::Product \N 2022-07-12 18:13:50.457509 2022-09-02 16:27:15.211718 -132 lightweight-running-jacket 106 Spree::Product \N 2022-07-12 18:13:57.718611 2022-09-02 16:27:15.915888 -119 leather-biker-jacket 93 Spree::Product \N 2022-07-12 18:13:52.708819 2022-09-02 16:27:16.727687 -99 knitted-high-neck-sweater 73 Spree::Product \N 2022-07-12 18:13:44.174709 2022-09-02 16:27:17.24782 -141 high-waist-pants-with-pockets 115 Spree::Product \N 2022-07-12 18:14:01.121957 2022-09-02 16:27:22.384356 -131 running-sweatshirt 105 Spree::Product \N 2022-07-12 18:13:57.350003 2022-09-02 16:27:33.456304 -106 scrappy-crop-top-with-tie 80 Spree::Product \N 2022-07-12 18:13:47.481286 2022-09-02 16:27:34.018458 -104 scrappy-top 78 Spree::Product \N 2022-07-12 18:13:46.678373 2022-09-02 16:27:34.551231 -93 semi-sheer-shirt-with-pockets 67 Spree::Product \N 2022-07-12 18:13:41.953205 2022-09-02 16:27:35.237365 -137 short-pants 111 Spree::Product \N 2022-07-12 18:13:59.544369 2022-09-02 16:27:35.727347 -109 sleeveless-loose-top 83 Spree::Product \N 2022-07-12 18:13:48.562812 2022-09-02 16:27:37.929657 -136 shined-pants 110 Spree::Product \N 2022-07-12 18:13:59.195099 2022-09-02 16:27:41.885035 -77 striped-shirt-dress 51 Spree::Product \N 2022-07-12 18:13:36.104067 2022-09-02 16:27:47.226898 -128 sports-bra-medium-support 102 Spree::Product \N 2022-07-12 18:13:56.078907 2022-09-02 16:27:48.452709 -123 sports-bra-low-support 97 Spree::Product \N 2022-07-12 18:13:54.256842 2022-09-02 16:27:49.304381 -129 sports-bra 103 Spree::Product \N 2022-07-12 18:13:56.47307 2022-09-02 16:27:49.783414 -134 sport-windproof-jacket 108 Spree::Product \N 2022-07-12 18:13:58.451411 2022-09-02 16:27:50.496978 -135 sport-waistcoat 109 Spree::Product \N 2022-07-12 18:13:58.844993 2022-09-02 16:27:51.084328 -130 sport-cropp-top 104 Spree::Product \N 2022-07-12 18:13:56.965012 2022-09-02 16:27:52.526309 -116 zipped-jacket 90 Spree::Product \N 2022-07-12 18:13:51.469815 2022-09-02 16:28:00.290683 -120 wool-blend-coat-with-belt 94 Spree::Product \N 2022-07-12 18:13:53.105882 2022-09-02 16:28:02.269597 -43 v-neck-t-shirt 17 Spree::Product \N 2022-07-12 18:13:23.125292 2022-09-02 16:28:04.199333 -94 v-neck-shirt 68 Spree::Product \N 2022-07-12 18:13:42.329942 2022-09-02 16:28:04.769093 -126 long-sleeves-crop-top 100 Spree::Product \N 2022-07-12 18:13:55.308272 2022-09-02 16:28:18.523906 -124 long-sleeves-yoga-crop-top 98 Spree::Product \N 2022-07-12 18:13:54.609189 2022-09-02 16:28:19.075653 -112 long-wool-blend-coat-with-belt 86 Spree::Product \N 2022-07-12 18:13:49.685374 2022-09-02 16:28:19.723758 -108 loose-t-shirt-with-pocket-imitation 82 Spree::Product \N 2022-07-12 18:13:48.187155 2022-09-02 16:28:20.274588 -133 oversize-sweatshirt 107 Spree::Product \N 2022-07-12 18:13:58.092111 2022-09-02 16:28:20.679522 -143 cool-bits 117 Spree::Product \N 2022-09-02 16:33:37.973746 \N -144 bits-by-dre 118 Spree::Product \N 2022-09-02 17:09:21.875584 \N -145 hockey-bits 119 Spree::Product \N 2022-09-02 17:19:14.023568 \N -146 learning-bits 120 Spree::Product \N 2022-09-02 17:31:19.87545 \N -147 money-bits 121 Spree::Product \N 2022-09-02 18:30:31.112102 \N -148 octo-bits 122 Spree::Product \N 2022-09-02 18:38:46.537239 \N -149 og-bits 123 Spree::Product \N 2022-09-02 18:41:05.477631 \N -150 rainbow-bits 124 Spree::Product \N 2022-09-02 18:42:26.69742 \N -151 space-bits 125 Spree::Product \N 2022-09-02 18:44:36.270215 \N -152 student-bits 126 Spree::Product \N 2022-09-02 18:50:49.35208 \N -153 stonk-bits 127 Spree::Product \N 2022-09-02 18:52:56.405091 \N -154 april-2022-summit-denver-sticker 128 Spree::Product \N 2022-09-02 18:57:21.707566 \N -155 sunset-bits 129 Spree::Product \N 2022-09-02 18:59:14.783891 \N -156 asian-american-pacific-islander-heritage-month-bits 130 Spree::Product \N 2022-09-02 19:01:55.426845 \N -2 categories/men 2 Spree::Taxon \N 2022-07-12 18:13:14.080667 2022-09-08 15:34:50.391933 -5 categories/men/shirts 5 Spree::Taxon \N 2022-07-12 18:13:14.68329 2022-09-08 15:34:50.411443 -6 categories/men/t-shirts 6 Spree::Taxon \N 2022-07-12 18:13:14.786199 2022-09-08 15:34:50.468818 -7 categories/men/sweaters 7 Spree::Taxon \N 2022-07-12 18:13:14.896758 2022-09-08 15:34:50.505046 -8 categories/men/jackets-and-coats 8 Spree::Taxon \N 2022-07-12 18:13:15.007581 2022-09-08 15:34:50.530938 -12 categories/women/sweaters 12 Spree::Taxon \N 2022-07-12 18:13:15.440709 2022-09-08 15:34:52.967938 -13 categories/women/tops-and-t-shirts 13 Spree::Taxon \N 2022-07-12 18:13:15.544872 2022-09-08 15:34:52.996035 -14 categories/women/jackets-and-coats 14 Spree::Taxon \N 2022-07-12 18:13:15.653372 2022-09-08 15:34:53.025033 -157 categories/events 20 Spree::Taxon \N 2022-09-08 15:35:17.890243 \N -158 brands 27 Spree::Taxon \N 2022-09-08 15:35:27.741904 \N -159 brands/datadog 28 Spree::Taxon \N 2022-09-08 15:35:34.002604 \N -160 categories/stickers 29 Spree::Taxon \N 2022-09-08 15:37:54.657045 \N -161 aapi-heritage-month-bits 130 Spree::Product \N 2022-09-08 15:40:49.280758 \N -\. - - --- --- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.schema_migrations (version) FROM stdin; -20211203185331 -20211203185340 -20211203185341 -20211203185342 -20211203185343 -20211203185344 -20211203185345 -20211203185346 -20211203185347 -20211203185348 -20211203185349 -20211203185350 -20211203185351 -20211203185352 -20211203185353 -20211203185354 -20211203185355 -20211203185356 -20211203185357 -20211203185358 -20211203185359 -20211203185360 -20211203185361 -20211203185362 -20211203185363 -20211203185364 -20211203185365 -20211203185366 -20211203185367 -20211203185368 -20211203185369 -20211203185370 -20211203185371 -20211203185372 -20211203185373 -20211203185374 -20211203185375 -20211203185376 -20211203185377 -20211203185378 -20211203185379 -20211203185380 -20211203185381 -20211203185382 -20211203185383 -20211203185384 -20211203185385 -20211203185386 -20211203185387 -\. - - --- --- Data for Name: spree_addresses; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_addresses (id, firstname, lastname, address1, address2, city, zipcode, phone, state_name, alternative_phone, company, state_id, country_id, created_at, updated_at, user_id, deleted_at, label, public_metadata, private_metadata) FROM stdin; -1 Adele Satterfield 04245 Earlene Extension Suite 250 West Zadastad 16804 (778)684-6703 x261 \N \N \N 516 224 2022-07-12 18:13:09.456662 2022-07-12 18:13:09.456662 \N \N \N \N \N -2 Darla Kub 214 Dara Fork Apt. 821 Lake Lavinia 16804 922-854-2026 x1611 \N \N \N 516 224 2022-07-12 18:13:09.478497 2022-07-12 18:13:09.478497 \N \N \N \N \N -\. - - --- --- Data for Name: spree_adjustments; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_adjustments (id, source_type, source_id, adjustable_type, adjustable_id, amount, label, mandatory, eligible, created_at, updated_at, state, order_id, included) FROM stdin; -2 Spree::TaxRate 1 Spree::Order 2 0.00 Tax t t 2022-07-12 18:15:53.394824 2022-09-02 16:14:11.43712 open 2 f -\. - - --- --- Data for Name: spree_assets; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_assets (id, viewable_type, viewable_id, attachment_width, attachment_height, attachment_file_size, "position", attachment_content_type, attachment_file_name, type, attachment_updated_at, alt, created_at, updated_at, public_metadata, private_metadata) FROM stdin; -2 Spree::Variant 233 \N \N \N 1 \N \N \N \N Cool Bits sticker 2022-09-02 16:34:35.494874 2022-09-02 17:04:42.62459 \N \N -3 Spree::Variant 234 \N \N \N 1 \N \N \N \N Bits by Dre sticker 2022-09-02 17:12:23.644569 2022-09-02 17:12:23.684878 \N \N -4 Spree::Variant 235 \N \N \N 1 \N \N \N \N Hockey Bits sticker 2022-09-02 17:22:59.508172 2022-09-02 17:22:59.547485 \N \N -5 Spree::Variant 236 \N \N \N 1 \N \N \N \N Learning bits sticker 2022-09-02 17:36:28.595446 2022-09-02 17:36:28.63616 \N \N -6 Spree::Variant 237 \N \N \N 1 \N \N \N \N Money Bits sticker 2022-09-02 18:30:57.959969 2022-09-02 18:30:57.998578 \N \N -7 Spree::Variant 238 \N \N \N 1 \N \N \N \N Octo Bits sticker 2022-09-02 18:39:42.383161 2022-09-02 18:39:42.417844 \N \N -8 Spree::Variant 239 \N \N \N 1 \N \N \N \N OG Bits sticker 2022-09-02 18:41:29.371737 2022-09-13 20:55:14.211482 \N \N -9 Spree::Variant 240 \N \N \N 1 \N \N \N \N Rainbow Bits sticker 2022-09-02 18:43:39.165283 2022-09-13 20:56:26.343792 \N \N -10 Spree::Variant 241 \N \N \N 1 \N \N \N \N Space Bits sticker 2022-09-02 18:45:13.006084 2022-09-13 20:57:51.32745 \N \N -12 Spree::Variant 243 \N \N \N 1 \N \N \N \N Stonk Bits sticker 2022-09-02 18:53:24.824158 2022-09-13 20:58:02.744495 \N \N -11 Spree::Variant 242 \N \N \N 1 \N \N \N \N Student Bits sticker 2022-09-02 18:51:15.601178 2022-09-13 20:58:22.806642 \N \N -14 Spree::Variant 245 \N \N \N 1 \N \N \N \N Sunset Bits sticker 2022-09-02 18:59:30.607167 2022-09-13 20:58:36.669417 \N \N -13 Spree::Variant 244 \N \N \N 1 \N \N \N \N Summit Denver stickers 2022-09-02 18:58:02.91531 2022-09-13 20:58:51.560572 \N \N -15 Spree::Variant 246 \N \N \N 1 \N \N \N \N AAPIHM Bits sticker 2022-09-02 19:02:32.264095 2022-09-13 20:59:13.191025 \N \N -\. - - --- --- Data for Name: spree_calculators; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_calculators (id, type, calculable_type, calculable_id, created_at, updated_at, preferences, deleted_at) FROM stdin; -1 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 1 2022-07-12 18:13:10.104397 2022-07-12 18:13:10.315893 ---\n:amount: 5\n:currency: USD\n \N -4 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 4 2022-07-12 18:13:10.241184 2022-07-12 18:13:10.337498 ---\n:amount: 5\n:currency: USD\n \N -3 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 3 2022-07-12 18:13:10.206767 2022-07-12 18:13:10.369779 ---\n:amount: 15\n:currency: USD\n \N -2 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 2 2022-07-12 18:13:10.17193 2022-07-12 18:13:10.395073 ---\n:amount: 10\n:currency: USD\n \N -5 Spree::Calculator::Shipping::FlatRate Spree::ShippingMethod 5 2022-07-12 18:13:10.276986 2022-07-12 18:13:10.417847 ---\n:amount: 8\n:currency: EUR\n \N -6 Spree::Calculator::DefaultTax Spree::TaxRate 1 2022-07-12 18:13:10.495961 2022-07-12 18:13:10.510239 \N \N -\. - - --- --- Data for Name: spree_checks; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_checks (id, payment_method_id, user_id, account_holder_name, account_holder_type, routing_number, account_number, account_type, status, last_digits, gateway_customer_profile_id, gateway_payment_profile_id, created_at, updated_at, deleted_at) FROM stdin; -\. - - --- --- Data for Name: spree_cms_pages; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_cms_pages (id, title, meta_title, content, meta_description, visible, slug, type, locale, deleted_at, store_id, created_at, updated_at) FROM stdin; -1 About Us \N Numquam cupiditate voluptatum quis excepturi dolorum eos. Officia magnam beatae consequuntur eum nobis dignissimos. In consequuntur assumenda possimus magnam praesentium eveniet blanditiis minus. Cumque quae laudantium tenetur animi rem impedit dolores. Eligendi illum dolorum et repellat. Laudantium vel tempore culpa officiis voluptates adipisci minus repellat. Consequatur voluptatum perferendis saepe dicta reprehenderit suscipit nisi ab. Accusantium facere quibusdam deleniti sint eum corrupti aperiam. Facilis asperiores debitis quis voluptatum aliquid exercitationem. Enim explicabo blanditiis facere dolorum. \N t about-us Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.560263 2022-07-12 18:15:54.560263 -2 Privacy Policy \N Perferendis praesentium reprehenderit veniam consectetur. Animi sequi excepturi eligendi rerum tempora molestiae. Sunt ea optio recusandae ad quam harum quaerat. Asperiores voluptatum inventore consequatur animi amet earum vitae sed. Quos aperiam quia tenetur animi. Possimus consequuntur excepturi vel iste ut atque odio blanditiis. Harum ullam hic animi tenetur molestias. Blanditiis optio cumque cum inventore. Dignissimos vitae eligendi dolor reprehenderit sunt mollitia culpa quod. \N t privacy-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.586117 2022-07-12 18:15:54.586117 -3 Shipping Policy \N Quis suscipit consequatur tempora delectus commodi ipsa velit. Dignissimos laboriosam nam voluptates hic accusamus. Quos unde aperiam iusto illum corrupti. Similique blanditiis fugiat debitis corporis odio quia. Perferendis modi consequatur enim adipisci provident. Omnis eos non facere a nemo ad id praesentium. Blanditiis quaerat aperiam ea aliquid dolore. Quasi minus odit temporibus illum nostrum. Debitis ipsum nisi architecto recusandae. Ipsum delectus reprehenderit exercitationem ipsam officia magnam repellendus doloribus. \N t shipping-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.610922 2022-07-12 18:15:54.610922 -4 Returns Policy \N Excepturi debitis iusto optio quae nemo iure animi repellendus. Aperiam inventore tenetur fuga sunt aut dolores ratione. Eos ullam voluptatum exercitationem excepturi. Eius mollitia quibusdam ipsam aut. Iste esse voluptates totam molestiae velit a labore. Incidunt architecto totam dolores amet laboriosam dignissimos dolorum. Itaque corrupti voluptatum dolore occaecati molestiae excepturi deleniti laborum. Occaecati alias aperiam reiciendis culpa voluptates. \N t returns-policy Spree::Cms::Pages::StandardPage en \N 1 2022-07-12 18:15:54.636864 2022-07-12 18:15:54.636864 -5 À propos de nous \N Ab vero architecto dolorum fugiat. Deleniti quaerat minima doloribus fugit odit voluptatibus recusandae. Modi officiis accusamus mollitia neque illo placeat. Magnam veniam repellat animi quos. Ab laudantium eveniet at harum. Dolorem molestiae quaerat accusantium laboriosam aliquid in nesciunt. Consequatur recusandae optio quibusdam ullam omnis. Aliquid magni sed praesentium nisi. Magnam ad vel nesciunt beatae perferendis dignissimos praesentium ullam. Id nostrum incidunt voluptas repellendus hic culpa soluta veniam. \N t a-propos-de-nous Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.664297 2022-07-12 18:15:54.664297 -6 Politique de confidentialité \N Delectus est consequuntur totam unde. Repellat neque sit eos consequatur. Illo tempore illum ratione ducimus maxime. Repellendus odio suscipit ipsam magni laborum quam. Magni veniam voluptates dolorum illum voluptatibus qui veritatis iure. Laboriosam assumenda debitis repellat vel voluptatibus. Ad eveniet qui in saepe cumque. Nesciunt vitae inventore aspernatur amet distinctio optio quam. \N t politique-de-confidentialite Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.687268 2022-07-12 18:15:54.687268 -7 Politique d'expédition \N Natus sequi mollitia incidunt libero quo neque. Repellat a nulla accusamus maiores dolorum enim. Vero corrupti earum reiciendis iure nesciunt debitis. Magni consectetur quibusdam odio nulla deleniti. In ab tempora excepturi nulla sunt. Vero ipsum placeat omnis nemo esse occaecati unde. Veniam dolores blanditiis suscipit laborum doloribus non quas debitis. Quibusdam doloremque amet impedit recusandae fugiat beatae magni porro. Quos cum dignissimos aliquid quasi nam voluptatem. Labore magni quae dolor dolorem. \N t politique-dexpedition Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.711129 2022-07-12 18:15:54.711129 -8 Politique de retour \N Dolore minus natus delectus eaque. Quam sapiente facilis possimus neque voluptatem ipsa molestias nobis. Deleniti accusantium animi dolor veniam. Sequi libero in dolorem expedita modi iste tenetur. Quam expedita unde dignissimos exercitationem. Architecto accusantium dolorum explicabo vel numquam illum. Earum iusto vero amet doloremque. Illum nobis voluptate maiores ad delectus suscipit quibusdam. Amet consequatur iste asperiores cupiditate. Quisquam atque porro temporibus officia laudantium facere nulla eius. \N t politique-de-retour Spree::Cms::Pages::StandardPage fr \N 1 2022-07-12 18:15:54.734712 2022-07-12 18:15:54.734712 -9 Über uns \N Assumenda fugiat maiores voluptates et ipsa exercitationem inventore provident. Facilis amet a id veritatis repellendus ad nostrum perferendis. Id deserunt fugit tempora delectus reiciendis neque doloribus culpa. Modi ducimus voluptatem eaque doloribus molestiae consequatur error. Vel blanditiis illum quam distinctio aut aperiam. Quia repudiandae totam officiis unde possimus et. Temporibus facere dicta tempore in est ut. Temporibus error velit soluta possimus ratione fugit. Incidunt veniam ipsa error molestiae. \N t uber-uns Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.758315 2022-07-12 18:15:54.758315 -10 Datenschutz-Bestimmungen \N Hic rerum cumque unde cum. Nulla delectus porro nisi tempore laudantium. Asperiores corporis quibusdam praesentium libero. Ea beatae ab blanditiis vitae rem aut consectetur libero. Repellendus odit eos mollitia impedit officiis tempora. Maxime consequatur placeat laborum eum odit voluptates. Rerum a dolor pariatur veritatis neque esse. Libero veniam saepe modi officiis minus odio. \N t datenschutz-bestimmungen Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.780969 2022-07-12 18:15:54.780969 -11 Versandbedingungen \N Est quos illo quas hic natus iure velit animi. Blanditiis aspernatur repudiandae illum necessitatibus quibusdam. Nobis facere quaerat aliquid alias fuga. Voluptas omnis ducimus laboriosam voluptates ex asperiores nam fugit. Officiis illum omnis nesciunt nemo dolorem. Fugiat nesciunt eveniet totam cumque laudantium. Velit modi quaerat laudantium distinctio officia iusto dolores. Necessitatibus earum doloremque sapiente consectetur. \N t versandbedingungen Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.804449 2022-07-12 18:15:54.804449 -12 Rückgaberecht \N Aliquid accusamus sequi explicabo totam error. Facilis maxime eveniet sapiente ipsam nemo tenetur. Iusto porro necessitatibus beatae numquam cumque. Illum nesciunt cupiditate corrupti hic ducimus voluptatum aut odio. Porro id magni ipsam voluptatibus voluptates. Culpa quos beatae aliquam quibusdam corporis rem et. Odit dolorem enim praesentium esse ratione officia. Fugiat maxime alias consectetur placeat doloremque deserunt. Minus harum doloribus id maxime eveniet eius quisquam. Error nostrum veritatis architecto facere voluptatem optio aperiam. \N t ruckgaberecht Spree::Cms::Pages::StandardPage de \N 2 2022-07-12 18:15:54.82804 2022-07-12 18:15:54.82804 -30 Feature Page \N \N \N t feature-page Spree::Cms::Pages::FeaturePage en \N 3 2022-07-12 18:15:55.296624 2022-07-12 18:15:58.584345 -31 Homepage (English) \N \N \N t \N Spree::Cms::Pages::Homepage en \N 1 2022-07-12 18:15:55.337838 2022-07-12 18:15:58.63349 -25 Feature Page \N \N \N t feature-page Spree::Cms::Pages::FeaturePage en \N 1 2022-07-12 18:15:55.17607 2022-07-12 18:15:58.682065 -13 Sobre nosotros \N Tenetur error minima nam tempora sit voluptates nesciunt perferendis. Neque maiores nemo tempora eaque dolore odio fugit impedit. Saepe consectetur aliquam alias nesciunt nostrum quam ratione delectus. Minima veniam placeat explicabo accusamus cum voluptatum officiis. Aspernatur ipsam fugiat impedit placeat error nihil exercitationem pariatur. Recusandae voluptatibus et assumenda modi odit ipsum veniam nam. Magnam laborum iusto dolorem hic veniam magni quod commodi. Vel numquam doloremque soluta aspernatur. Possimus dolor minus inventore architecto. \N t sobre-nosotros Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.850831 2022-07-12 18:15:54.850831 -14 Política de privacidad \N Recusandae perspiciatis a quo occaecati laudantium exercitationem ratione. Quas ipsam assumenda distinctio occaecati. Id sapiente laboriosam libero assumenda unde perferendis. Esse cum error nisi minus officiis. Laborum deleniti necessitatibus ipsam repellat dolorum eaque. Est at vel tempore fugiat adipisci animi. Perferendis totam recusandae voluptas quidem. Odit error quae consequuntur iusto ea itaque. Temporibus voluptatem iusto delectus itaque quia quo. Blanditiis ratione illum quasi ex corrupti officiis libero. \N t politica-de-privacidad Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.889774 2022-07-12 18:15:54.889774 -15 Politica de envios \N Vitae at adipisci quasi provident temporibus odio. Est sapiente suscipit consequuntur optio perferendis. Libero repellat natus eius ducimus amet explicabo. Illo ducimus blanditiis quae quasi eum mollitia provident. Suscipit ipsum inventore consequatur ullam voluptatum unde ducimus. Accusamus adipisci omnis impedit eos. Illum consectetur quo culpa aperiam assumenda ipsum cupiditate. Hic quaerat fugit quia tenetur perferendis rerum perspiciatis. \N t politica-de-envios Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.915987 2022-07-12 18:15:54.915987 -16 Política de devoluciones \N Iste ipsam quaerat corrupti impedit doloremque repellendus itaque fugiat. Quibusdam in quo maxime architecto repudiandae voluptas. Impedit corrupti eius quia tenetur. Culpa magnam cum temporibus ipsa beatae recusandae. Nihil rerum sequi eaque reiciendis repellendus praesentium perspiciatis veritatis. Hic cupiditate libero blanditiis eum aperiam eveniet animi. Nemo quibusdam sapiente consequatur voluptates minus nihil. Cumque quis ex odio iste enim impedit soluta aut. Blanditiis tenetur corporis quod commodi minima. Dolorum suscipit enim saepe quas dolore. \N t politica-de-devoluciones Spree::Cms::Pages::StandardPage es \N 2 2022-07-12 18:15:54.940717 2022-07-12 18:15:54.940717 -17 À propos de nous \N Sit aspernatur expedita amet veritatis quia iure exercitationem unde. Voluptas tempore veniam unde molestiae praesentium eum modi. Voluptatum libero inventore accusamus ipsa in labore vero. Deserunt nobis expedita nihil totam eveniet quia eum. Eveniet deleniti hic rem reprehenderit id. Eveniet tempore commodi consectetur vel autem. Facere at similique doloribus accusantium commodi tenetur nam sunt. Provident consectetur eum dolorem vero non aliquam harum. \N t a-propos-de-nous Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:54.965114 2022-07-12 18:15:54.965114 -18 Politique de confidentialité \N Voluptates inventore molestias magni consequatur temporibus esse. Assumenda maiores beatae numquam nam fugit at. Placeat quidem accusantium error voluptatum fuga blanditiis ab. Perferendis dignissimos magni dolorum laborum facilis aspernatur minus. Perspiciatis fugiat quas iusto id error cumque. Reiciendis repudiandae porro dolore amet aperiam minus repellat mollitia. Ab fugit quia dolor eveniet quidem. Officia eveniet labore aut illo. Ipsa voluptatem dolore ab quo esse assumenda. \N t politique-de-confidentialite Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:54.989845 2022-07-12 18:15:54.989845 -19 Politique d'expédition \N Deleniti qui cupiditate totam hic. Voluptatem voluptas autem praesentium sunt beatae amet. Deserunt ullam delectus totam hic culpa repellat placeat. Laboriosam animi recusandae accusamus commodi. Totam quis et vel incidunt veniam molestiae aliquid. Unde dolore quam sapiente omnis perferendis nulla in. Perferendis maxime quasi ex eum saepe incidunt. Voluptates repellendus aperiam ipsam totam debitis facere. Fugiat quas consectetur exercitationem illum eos cumque dignissimos aspernatur. Perspiciatis ad ipsam est impedit nemo expedita. \N t politique-dexpedition Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:55.013195 2022-07-12 18:15:55.013195 -20 Politique de retour \N Possimus maxime est necessitatibus similique quas temporibus quibusdam pariatur. Quos odio maiores cupiditate labore atque. Aliquam eum vitae ullam quidem fugiat voluptatibus iure. Facilis cupiditate modi pariatur eius reiciendis. Sint cumque maxime sed ullam velit vitae. Tempora commodi fugit velit aspernatur. Repellat cupiditate vel voluptates occaecati. Magnam possimus placeat reiciendis voluptas ea odio consequatur voluptatibus. \N t politique-de-retour Spree::Cms::Pages::StandardPage fr \N 2 2022-07-12 18:15:55.036933 2022-07-12 18:15:55.036933 -21 About Us \N Consequuntur omnis sunt tenetur iusto quia quisquam quaerat cumque. Perspiciatis magnam maiores beatae incidunt quaerat quasi voluptatum. Veritatis exercitationem explicabo rerum eveniet hic soluta eligendi sapiente. Error sint reprehenderit consectetur commodi voluptas mollitia. Repudiandae nisi explicabo ullam voluptates. Minus iusto quas ipsam doloremque amet reiciendis. Rem illum aspernatur animi ex quis. Nisi recusandae quibusdam officia ex animi. \N t about-us Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.060692 2022-07-12 18:15:55.060692 -22 Privacy Policy \N Aliquid eius quaerat tenetur sint optio. Sint labore harum sed minima quas iusto rem. In hic officia corporis enim sapiente. Magni quas at dicta aperiam iusto quam inventore nostrum. Voluptatem minus alias impedit quaerat illum labore ab. Doloribus laboriosam iusto laborum saepe ut voluptatibus. Rem minima itaque quae maiores quis. Sunt ullam praesentium commodi delectus nostrum dolore deserunt. Harum perspiciatis eligendi qui molestias. Qui eaque non id illo inventore aut architecto. \N t privacy-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.084057 2022-07-12 18:15:55.084057 -23 Shipping Policy \N Maxime a velit placeat quidem consequatur veniam. Dolores aut sequi sed doloremque fuga debitis. Vitae nulla ipsa debitis reprehenderit. Qui laborum ad vel soluta ratione quae pariatur. Doloremque cupiditate veritatis sapiente ea amet sit. Blanditiis est sapiente aperiam deserunt. Harum quis perferendis autem quidem cumque ab officiis at. Quam atque rem quo incidunt nulla praesentium dicta ipsam. \N t shipping-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.107639 2022-07-12 18:15:55.107639 -24 Returns Policy \N Nemo quibusdam adipisci ipsam sunt possimus nulla. Distinctio assumenda consequatur ab quam. Facere quo ipsam veniam dignissimos doloremque. Incidunt quod vel hic doloribus magnam mollitia numquam quisquam. Illum vel hic dolor distinctio fugit quibusdam consectetur vitae. At minus fugiat rerum tempora. Corrupti cupiditate dolore adipisci ea quo quae. Id blanditiis harum facere fugiat. \N t returns-policy Spree::Cms::Pages::StandardPage en \N 3 2022-07-12 18:15:55.133015 2022-07-12 18:15:55.133015 -26 Page de fonctionnalité \N \N \N t page-de-fonctionnalite Spree::Cms::Pages::FeaturePage fr \N 1 2022-07-12 18:15:55.202656 2022-07-12 18:15:58.730069 -27 Feature-Seite \N \N \N t feature-seite Spree::Cms::Pages::FeaturePage de \N 2 2022-07-12 18:15:55.22675 2022-07-12 18:15:58.777897 -28 Página de características \N \N \N t pagina-de-caracteristicas Spree::Cms::Pages::FeaturePage es \N 2 2022-07-12 18:15:55.250857 2022-07-12 18:15:58.825561 -29 Page de fonctionnalité \N \N \N t page-de-fonctionnalite Spree::Cms::Pages::FeaturePage fr \N 2 2022-07-12 18:15:55.273745 2022-07-12 18:15:58.537818 -32 Page d'accueil (Français) \N \N \N t \N Spree::Cms::Pages::Homepage fr \N 1 2022-07-12 18:15:55.362441 2022-07-12 18:15:58.870774 -33 Startseite (Deutsche) \N \N \N t \N Spree::Cms::Pages::Homepage de \N 2 2022-07-12 18:15:55.384683 2022-07-12 18:15:58.91885 -34 Página principal (Español) \N \N \N t \N Spree::Cms::Pages::Homepage es \N 2 2022-07-12 18:15:55.407121 2022-07-12 18:15:58.970005 -35 Page d'accueil (Français) \N \N \N t \N Spree::Cms::Pages::Homepage fr \N 2 2022-07-12 18:15:55.428994 2022-07-12 18:15:59.019988 -36 Homepage (English) \N \N \N t \N Spree::Cms::Pages::Homepage en \N 3 2022-07-12 18:15:55.450192 2022-07-12 18:15:59.069959 -\. - - --- --- Data for Name: spree_cms_sections; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_cms_sections (id, name, content, settings, fit, destination, type, "position", linked_resource_type, linked_resource_id, cms_page_id, created_at, updated_at) FROM stdin; -1 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 29 2022-07-12 18:15:55.52107 2022-07-12 18:15:55.545821 -2 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 30 2022-07-12 18:15:55.573302 2022-07-12 18:15:55.595191 -3 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 31 2022-07-12 18:15:55.620585 2022-07-12 18:15:55.642242 -4 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 25 2022-07-12 18:15:55.667202 2022-07-12 18:15:55.689382 -5 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 26 2022-07-12 18:15:55.715811 2022-07-12 18:15:55.737806 -6 Heldenbild {"title":"Sommerkollektion","button_text":"Jetzt einkaufen"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 27 2022-07-12 18:15:55.763014 2022-07-12 18:15:55.78468 -7 Imagen de héroe {"title":"Colección de verano","button_text":"Compra ahora"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 28 2022-07-12 18:15:55.809817 2022-07-12 18:15:55.831323 -8 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 32 2022-07-12 18:15:55.856691 2022-07-12 18:15:55.878194 -9 Heldenbild {"title":"Sommerkollektion","button_text":"Jetzt einkaufen"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 33 2022-07-12 18:15:55.904474 2022-07-12 18:15:55.935383 -10 Imagen de héroe {"title":"Colección de verano","button_text":"Compra ahora"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 34 2022-07-12 18:15:55.962148 2022-07-12 18:15:55.984702 -11 Image de héros {"title":"Collection d'été","button_text":"Achetez maintenant"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 35 2022-07-12 18:15:56.009291 2022-07-12 18:15:56.031215 -12 Hero Image {"title":"Summer Collection","button_text":"Shop Now"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::HeroImage 1 Spree::Taxon 24 36 2022-07-12 18:15:56.056942 2022-07-12 18:15:56.079635 -13 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 29 2022-07-12 18:15:56.117329 2022-07-12 18:15:56.1696 -14 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 30 2022-07-12 18:15:56.194408 2022-07-12 18:15:56.216213 -15 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 31 2022-07-12 18:15:56.240559 2022-07-12 18:15:56.261829 -16 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 25 2022-07-12 18:15:56.285505 2022-07-12 18:15:56.308319 -17 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 26 2022-07-12 18:15:56.333669 2022-07-12 18:15:56.356077 -18 Haupttaxa {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Männer","title_two":"Frauen","title_three":"Sportbekleidung"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 27 2022-07-12 18:15:56.379835 2022-07-12 18:15:56.402265 -19 Taxón principal {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hombres","title_two":"Mujeres","title_three":"Ropa de deporte"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 28 2022-07-12 18:15:56.425491 2022-07-12 18:15:56.447825 -20 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 32 2022-07-12 18:15:56.471758 2022-07-12 18:15:56.494202 -21 Haupttaxa {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Männer","title_two":"Frauen","title_three":"Sportbekleidung"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 33 2022-07-12 18:15:56.518188 2022-07-12 18:15:56.540731 -22 Taxón principal {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hombres","title_two":"Mujeres","title_three":"Ropa de deporte"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 34 2022-07-12 18:15:56.564825 2022-07-12 18:15:56.585697 -23 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Hommes","title_two":"Femmes","title_three":"Tenue de sport"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 35 2022-07-12 18:15:56.60759 2022-07-12 18:15:56.629302 -24 Main Taxons {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","link_type_three":"Spree::Taxon","link_one":"categories/men","link_two":"categories/women","link_three":"categories/sportswear","title_one":"Men","title_two":"Women","title_three":"Sportswear"} {"layout_style":"Default"} Container \N Spree::Cms::Sections::ImageGallery 2 \N \N 36 2022-07-12 18:15:56.65259 2022-07-12 18:15:56.673811 -25 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 29 2022-07-12 18:15:56.711287 2022-07-12 18:15:56.734269 -26 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 30 2022-07-12 18:15:56.758921 2022-07-12 18:15:56.779991 -27 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 31 2022-07-12 18:15:56.804631 2022-07-12 18:15:56.828049 -28 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 25 2022-07-12 18:15:56.853111 2022-07-12 18:15:56.874961 -29 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 26 2022-07-12 18:15:56.89901 2022-07-12 18:15:56.920741 -30 Bestseller Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 27 2022-07-12 18:15:56.944375 2022-07-12 18:15:56.966003 -31 Carrusel de los más vendidos \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 28 2022-07-12 18:15:56.990451 2022-07-12 18:15:57.020058 -32 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 32 2022-07-12 18:15:57.046935 2022-07-12 18:15:57.069233 -33 Bestseller Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 33 2022-07-12 18:15:57.093448 2022-07-12 18:15:57.114807 -34 Carrusel de los más vendidos \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 34 2022-07-12 18:15:57.139868 2022-07-12 18:15:57.16093 -35 Carrousel des meilleures ventes \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 35 2022-07-12 18:15:57.18608 2022-07-12 18:15:57.209135 -36 Best Sellers Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 3 Spree::Taxon 19 36 2022-07-12 18:15:57.233276 2022-07-12 18:15:57.255589 -37 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"Bits got some dope cans for his fat beats! Show the world that you like dogs that like hip hop with this tasteful vinyl sticker.
2022-09-01 05:00:00 \N bits-by-dre \N 1 2022-09-02 17:09:21.541099 2022-09-08 15:41:32.978583 t \N \N \N -117 Cool BitsSlap this onto your favorite water bottle and be as cool as Bits.
2022-09-01 05:00:00 \N cool-bits \N 1 2022-09-02 16:33:37.715722 2022-09-08 15:42:11.755393 t \N \N \N -119 Hockey BitsJust as iconic as Gritty.
2022-09-01 05:00:00 \N hockey-bits \N 1 2022-09-02 17:19:13.882198 2022-09-08 15:42:47.62901 t \N \N \N -120 Learning BitsShow that you're the head of the class.
2022-09-01 05:00:00 \N learning-bits \N 1 2022-09-02 17:31:19.71234 2022-09-08 15:43:22.645298 t \N \N \N -121 Money BitsWith good breeding and a little bit of luck, a good dog can rise to the top. Show your admiration for the top 1% with this fancy vinyl sticker.
2022-09-01 05:00:00 \N money-bits \N 1 2022-09-02 18:30:30.895575 2022-09-08 15:45:34.868417 t \N \N \N -122 Octo BitsLast we saw Bits, he was snorkeling in the Cayman Islands. Not sure who this octopus is...
2022-09-01 05:00:00 \N octo-bits \N 1 2022-09-02 18:38:46.408336 2022-09-08 15:47:28.939313 t \N \N \N -123 OG BitsIt's hard to beat a classic. The original Datadog logo on a durable vinyl sticker.
2022-09-01 05:00:00 \N og-bits \N 1 2022-09-02 18:41:05.372097 2022-09-13 20:55:14.22708 t \N \N \N -124 Rainbow BitsBe as proud as Bits with this colorful vinyl sticker.
2022-09-01 05:00:00 \N rainbow-bits \N 1 2022-09-02 18:42:26.495532 2022-09-13 20:56:26.359845 t \N \N \N -125 Space BitsEverybody Laikas this vinyl sticker! (We would never send Bits into space alone without having a safe recovery plan.)
2022-09-01 05:00:00 \N space-bits \N 1 2022-09-02 18:44:36.118532 2022-09-13 20:57:51.366054 t \N \N \N -127 Stonk BitsThis sticker is so hot we're legally not allowed to sell it.
\N \N stonk-bits \N 1 2022-09-02 18:52:56.259081 2022-09-13 20:58:02.761831 t \N \N \N -126 Student BitsShow the folks at the cafe that you're as smart (and obedient) as Bits! Lifelong vinyl sticker.
2022-09-01 05:00:00 \N student-bits \N 1 2022-09-02 18:50:49.226403 2022-09-13 20:58:22.820602 t \N \N \N -129 Sunset BitsRemember the amazing Miami sunsets of the 80s? Bits sure does. Slap this everlasting vinly sticker on your jet ski and hit the waves!
2022-09-01 05:00:00 \N sunset-bits \N 1 2022-09-02 18:59:14.653772 2022-09-13 20:58:36.687058 t \N \N \N -128 April 2022 Summit Denver StickerThe year was 2022 and hundreds of observability folks converged on Denver to talk metrics, logs, and events. This is the commemorative vinyl sticker.
2022-09-01 05:00:00 \N april-2022-summit-denver-sticker \N 1 2022-09-02 18:57:21.587803 2022-09-13 20:58:51.572416 t \N \N \N -130 AAPI Heritage Month BitsCelebrate Asian American Pacific Islander Heritage Month with Bits!
2022-09-01 05:00:00 \N aapi-heritage-month-bits \N 1 2022-09-02 19:01:55.285004 2022-09-13 20:59:13.204277 t \N \N \N -\. - - --- --- Data for Name: spree_products_stores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_products_stores (id, product_id, store_id, created_at, updated_at) FROM stdin; -1 1 1 2022-07-12 18:13:17.310316 2022-07-12 18:13:17.310316 -2 1 2 2022-07-12 18:13:17.316702 2022-07-12 18:13:17.316702 -3 1 3 2022-07-12 18:13:17.322354 2022-07-12 18:13:17.322354 -4 2 1 2022-07-12 18:13:17.784646 2022-07-12 18:13:17.784646 -5 2 2 2022-07-12 18:13:17.790959 2022-07-12 18:13:17.790959 -6 2 3 2022-07-12 18:13:17.796506 2022-07-12 18:13:17.796506 -7 3 1 2022-07-12 18:13:18.128786 2022-07-12 18:13:18.128786 -8 3 2 2022-07-12 18:13:18.135631 2022-07-12 18:13:18.135631 -9 3 3 2022-07-12 18:13:18.141454 2022-07-12 18:13:18.141454 -10 4 1 2022-07-12 18:13:18.46825 2022-07-12 18:13:18.46825 -11 4 2 2022-07-12 18:13:18.473954 2022-07-12 18:13:18.473954 -12 4 3 2022-07-12 18:13:18.479651 2022-07-12 18:13:18.479651 -13 5 1 2022-07-12 18:13:18.796834 2022-07-12 18:13:18.796834 -14 5 2 2022-07-12 18:13:18.802695 2022-07-12 18:13:18.802695 -15 5 3 2022-07-12 18:13:18.808737 2022-07-12 18:13:18.808737 -16 6 1 2022-07-12 18:13:19.142255 2022-07-12 18:13:19.142255 -17 6 2 2022-07-12 18:13:19.148573 2022-07-12 18:13:19.148573 -18 6 3 2022-07-12 18:13:19.154427 2022-07-12 18:13:19.154427 -19 7 1 2022-07-12 18:13:19.48072 2022-07-12 18:13:19.48072 -20 7 2 2022-07-12 18:13:19.48687 2022-07-12 18:13:19.48687 -21 7 3 2022-07-12 18:13:19.493185 2022-07-12 18:13:19.493185 -22 8 1 2022-07-12 18:13:19.81796 2022-07-12 18:13:19.81796 -23 8 2 2022-07-12 18:13:19.823828 2022-07-12 18:13:19.823828 -24 8 3 2022-07-12 18:13:19.829981 2022-07-12 18:13:19.829981 -25 9 1 2022-07-12 18:13:20.165516 2022-07-12 18:13:20.165516 -26 9 2 2022-07-12 18:13:20.171644 2022-07-12 18:13:20.171644 -27 9 3 2022-07-12 18:13:20.177652 2022-07-12 18:13:20.177652 -28 10 1 2022-07-12 18:13:20.511997 2022-07-12 18:13:20.511997 -29 10 2 2022-07-12 18:13:20.518128 2022-07-12 18:13:20.518128 -30 10 3 2022-07-12 18:13:20.524043 2022-07-12 18:13:20.524043 -31 11 1 2022-07-12 18:13:20.839969 2022-07-12 18:13:20.839969 -32 11 2 2022-07-12 18:13:20.845785 2022-07-12 18:13:20.845785 -33 11 3 2022-07-12 18:13:20.851819 2022-07-12 18:13:20.851819 -34 12 1 2022-07-12 18:13:21.174726 2022-07-12 18:13:21.174726 -35 12 2 2022-07-12 18:13:21.180923 2022-07-12 18:13:21.180923 -36 12 3 2022-07-12 18:13:21.186399 2022-07-12 18:13:21.186399 -37 13 1 2022-07-12 18:13:21.510996 2022-07-12 18:13:21.510996 -38 13 2 2022-07-12 18:13:21.517176 2022-07-12 18:13:21.517176 -39 13 3 2022-07-12 18:13:21.522711 2022-07-12 18:13:21.522711 -40 14 1 2022-07-12 18:13:21.841853 2022-07-12 18:13:21.841853 -41 14 2 2022-07-12 18:13:21.84833 2022-07-12 18:13:21.84833 -42 14 3 2022-07-12 18:13:21.860431 2022-07-12 18:13:21.860431 -43 15 1 2022-07-12 18:13:22.198649 2022-07-12 18:13:22.198649 -44 15 2 2022-07-12 18:13:22.204852 2022-07-12 18:13:22.204852 -45 15 3 2022-07-12 18:13:22.210877 2022-07-12 18:13:22.210877 -46 16 1 2022-07-12 18:13:22.55177 2022-07-12 18:13:22.55177 -47 16 2 2022-07-12 18:13:22.557306 2022-07-12 18:13:22.557306 -48 16 3 2022-07-12 18:13:22.563251 2022-07-12 18:13:22.563251 -49 17 1 2022-07-12 18:13:23.040633 2022-07-12 18:13:23.040633 -50 17 2 2022-07-12 18:13:23.046415 2022-07-12 18:13:23.046415 -51 17 3 2022-07-12 18:13:23.052106 2022-07-12 18:13:23.052106 -52 18 1 2022-07-12 18:13:23.387824 2022-07-12 18:13:23.387824 -53 18 2 2022-07-12 18:13:23.393434 2022-07-12 18:13:23.393434 -54 18 3 2022-07-12 18:13:23.399913 2022-07-12 18:13:23.399913 -55 19 1 2022-07-12 18:13:23.745681 2022-07-12 18:13:23.745681 -56 19 2 2022-07-12 18:13:23.752195 2022-07-12 18:13:23.752195 -57 19 3 2022-07-12 18:13:23.75834 2022-07-12 18:13:23.75834 -58 20 1 2022-07-12 18:13:24.121642 2022-07-12 18:13:24.121642 -59 20 2 2022-07-12 18:13:24.127981 2022-07-12 18:13:24.127981 -60 20 3 2022-07-12 18:13:24.135404 2022-07-12 18:13:24.135404 -61 21 1 2022-07-12 18:13:24.474733 2022-07-12 18:13:24.474733 -62 21 2 2022-07-12 18:13:24.481447 2022-07-12 18:13:24.481447 -63 21 3 2022-07-12 18:13:24.487858 2022-07-12 18:13:24.487858 -64 22 1 2022-07-12 18:13:24.833991 2022-07-12 18:13:24.833991 -65 22 2 2022-07-12 18:13:24.839888 2022-07-12 18:13:24.839888 -66 22 3 2022-07-12 18:13:24.846406 2022-07-12 18:13:24.846406 -67 23 1 2022-07-12 18:13:25.181981 2022-07-12 18:13:25.181981 -68 23 2 2022-07-12 18:13:25.188229 2022-07-12 18:13:25.188229 -69 23 3 2022-07-12 18:13:25.193859 2022-07-12 18:13:25.193859 -70 24 1 2022-07-12 18:13:25.534579 2022-07-12 18:13:25.534579 -71 24 2 2022-07-12 18:13:25.539993 2022-07-12 18:13:25.539993 -72 24 3 2022-07-12 18:13:25.546235 2022-07-12 18:13:25.546235 -73 25 1 2022-07-12 18:13:25.899947 2022-07-12 18:13:25.899947 -74 25 2 2022-07-12 18:13:25.906612 2022-07-12 18:13:25.906612 -75 25 3 2022-07-12 18:13:25.913536 2022-07-12 18:13:25.913536 -76 26 1 2022-07-12 18:13:26.347235 2022-07-12 18:13:26.347235 -77 26 2 2022-07-12 18:13:26.353899 2022-07-12 18:13:26.353899 -78 26 3 2022-07-12 18:13:26.361376 2022-07-12 18:13:26.361376 -79 27 1 2022-07-12 18:13:26.706026 2022-07-12 18:13:26.706026 -80 27 2 2022-07-12 18:13:26.712252 2022-07-12 18:13:26.712252 -81 27 3 2022-07-12 18:13:26.718644 2022-07-12 18:13:26.718644 -82 28 1 2022-07-12 18:13:27.143972 2022-07-12 18:13:27.143972 -83 28 2 2022-07-12 18:13:27.151014 2022-07-12 18:13:27.151014 -84 28 3 2022-07-12 18:13:27.1587 2022-07-12 18:13:27.1587 -85 29 1 2022-07-12 18:13:27.563502 2022-07-12 18:13:27.563502 -86 29 2 2022-07-12 18:13:27.570298 2022-07-12 18:13:27.570298 -87 29 3 2022-07-12 18:13:27.576575 2022-07-12 18:13:27.576575 -88 30 1 2022-07-12 18:13:27.932548 2022-07-12 18:13:27.932548 -89 30 2 2022-07-12 18:13:27.940794 2022-07-12 18:13:27.940794 -90 30 3 2022-07-12 18:13:27.952595 2022-07-12 18:13:27.952595 -91 31 1 2022-07-12 18:13:28.395544 2022-07-12 18:13:28.395544 -92 31 2 2022-07-12 18:13:28.40198 2022-07-12 18:13:28.40198 -93 31 3 2022-07-12 18:13:28.407804 2022-07-12 18:13:28.407804 -94 32 1 2022-07-12 18:13:28.907919 2022-07-12 18:13:28.907919 -95 32 2 2022-07-12 18:13:28.91444 2022-07-12 18:13:28.91444 -96 32 3 2022-07-12 18:13:28.920461 2022-07-12 18:13:28.920461 -97 33 1 2022-07-12 18:13:29.277752 2022-07-12 18:13:29.277752 -98 33 2 2022-07-12 18:13:29.290271 2022-07-12 18:13:29.290271 -99 33 3 2022-07-12 18:13:29.296626 2022-07-12 18:13:29.296626 -100 34 1 2022-07-12 18:13:29.635609 2022-07-12 18:13:29.635609 -101 34 2 2022-07-12 18:13:29.641978 2022-07-12 18:13:29.641978 -102 34 3 2022-07-12 18:13:29.648659 2022-07-12 18:13:29.648659 -103 35 1 2022-07-12 18:13:30.005009 2022-07-12 18:13:30.005009 -104 35 2 2022-07-12 18:13:30.01119 2022-07-12 18:13:30.01119 -105 35 3 2022-07-12 18:13:30.017514 2022-07-12 18:13:30.017514 -106 36 1 2022-07-12 18:13:30.36826 2022-07-12 18:13:30.36826 -107 36 2 2022-07-12 18:13:30.374248 2022-07-12 18:13:30.374248 -108 36 3 2022-07-12 18:13:30.379926 2022-07-12 18:13:30.379926 -109 37 1 2022-07-12 18:13:30.73493 2022-07-12 18:13:30.73493 -110 37 2 2022-07-12 18:13:30.741859 2022-07-12 18:13:30.741859 -111 37 3 2022-07-12 18:13:30.748063 2022-07-12 18:13:30.748063 -112 38 1 2022-07-12 18:13:31.104296 2022-07-12 18:13:31.104296 -113 38 2 2022-07-12 18:13:31.110312 2022-07-12 18:13:31.110312 -114 38 3 2022-07-12 18:13:31.117477 2022-07-12 18:13:31.117477 -115 39 1 2022-07-12 18:13:31.468574 2022-07-12 18:13:31.468574 -116 39 2 2022-07-12 18:13:31.474373 2022-07-12 18:13:31.474373 -117 39 3 2022-07-12 18:13:31.486526 2022-07-12 18:13:31.486526 -118 40 1 2022-07-12 18:13:31.826322 2022-07-12 18:13:31.826322 -119 40 2 2022-07-12 18:13:31.83229 2022-07-12 18:13:31.83229 -120 40 3 2022-07-12 18:13:31.838119 2022-07-12 18:13:31.838119 -121 41 1 2022-07-12 18:13:32.18286 2022-07-12 18:13:32.18286 -122 41 2 2022-07-12 18:13:32.188826 2022-07-12 18:13:32.188826 -123 41 3 2022-07-12 18:13:32.194539 2022-07-12 18:13:32.194539 -124 42 1 2022-07-12 18:13:32.54752 2022-07-12 18:13:32.54752 -125 42 2 2022-07-12 18:13:32.554003 2022-07-12 18:13:32.554003 -126 42 3 2022-07-12 18:13:32.560238 2022-07-12 18:13:32.560238 -127 43 1 2022-07-12 18:13:32.905748 2022-07-12 18:13:32.905748 -128 43 2 2022-07-12 18:13:32.911224 2022-07-12 18:13:32.911224 -129 43 3 2022-07-12 18:13:32.917356 2022-07-12 18:13:32.917356 -130 44 1 2022-07-12 18:13:33.279924 2022-07-12 18:13:33.279924 -131 44 2 2022-07-12 18:13:33.285991 2022-07-12 18:13:33.285991 -132 44 3 2022-07-12 18:13:33.291941 2022-07-12 18:13:33.291941 -133 45 1 2022-07-12 18:13:33.651669 2022-07-12 18:13:33.651669 -134 45 2 2022-07-12 18:13:33.658273 2022-07-12 18:13:33.658273 -135 45 3 2022-07-12 18:13:33.664388 2022-07-12 18:13:33.664388 -136 46 1 2022-07-12 18:13:34.174354 2022-07-12 18:13:34.174354 -137 46 2 2022-07-12 18:13:34.181103 2022-07-12 18:13:34.181103 -138 46 3 2022-07-12 18:13:34.188291 2022-07-12 18:13:34.188291 -139 47 1 2022-07-12 18:13:34.553389 2022-07-12 18:13:34.553389 -140 47 2 2022-07-12 18:13:34.559641 2022-07-12 18:13:34.559641 -141 47 3 2022-07-12 18:13:34.566073 2022-07-12 18:13:34.566073 -142 48 1 2022-07-12 18:13:34.923528 2022-07-12 18:13:34.923528 -143 48 2 2022-07-12 18:13:34.929431 2022-07-12 18:13:34.929431 -144 48 3 2022-07-12 18:13:34.935364 2022-07-12 18:13:34.935364 -145 49 1 2022-07-12 18:13:35.277249 2022-07-12 18:13:35.277249 -146 49 2 2022-07-12 18:13:35.28385 2022-07-12 18:13:35.28385 -147 49 3 2022-07-12 18:13:35.289078 2022-07-12 18:13:35.289078 -148 50 1 2022-07-12 18:13:35.635883 2022-07-12 18:13:35.635883 -149 50 2 2022-07-12 18:13:35.64191 2022-07-12 18:13:35.64191 -150 50 3 2022-07-12 18:13:35.649261 2022-07-12 18:13:35.649261 -151 51 1 2022-07-12 18:13:36.016609 2022-07-12 18:13:36.016609 -152 51 2 2022-07-12 18:13:36.022392 2022-07-12 18:13:36.022392 -153 51 3 2022-07-12 18:13:36.027959 2022-07-12 18:13:36.027959 -154 52 1 2022-07-12 18:13:36.385707 2022-07-12 18:13:36.385707 -155 52 2 2022-07-12 18:13:36.392364 2022-07-12 18:13:36.392364 -156 52 3 2022-07-12 18:13:36.398539 2022-07-12 18:13:36.398539 -157 53 1 2022-07-12 18:13:36.749183 2022-07-12 18:13:36.749183 -158 53 2 2022-07-12 18:13:36.754907 2022-07-12 18:13:36.754907 -159 53 3 2022-07-12 18:13:36.760849 2022-07-12 18:13:36.760849 -160 54 1 2022-07-12 18:13:37.118572 2022-07-12 18:13:37.118572 -161 54 2 2022-07-12 18:13:37.123918 2022-07-12 18:13:37.123918 -162 54 3 2022-07-12 18:13:37.13026 2022-07-12 18:13:37.13026 -163 55 1 2022-07-12 18:13:37.476278 2022-07-12 18:13:37.476278 -164 55 2 2022-07-12 18:13:37.482588 2022-07-12 18:13:37.482588 -165 55 3 2022-07-12 18:13:37.488379 2022-07-12 18:13:37.488379 -166 56 1 2022-07-12 18:13:37.855999 2022-07-12 18:13:37.855999 -167 56 2 2022-07-12 18:13:37.862453 2022-07-12 18:13:37.862453 -168 56 3 2022-07-12 18:13:37.868283 2022-07-12 18:13:37.868283 -169 57 1 2022-07-12 18:13:38.207653 2022-07-12 18:13:38.207653 -170 57 2 2022-07-12 18:13:38.213908 2022-07-12 18:13:38.213908 -171 57 3 2022-07-12 18:13:38.219795 2022-07-12 18:13:38.219795 -172 58 1 2022-07-12 18:13:38.552998 2022-07-12 18:13:38.552998 -173 58 2 2022-07-12 18:13:38.558748 2022-07-12 18:13:38.558748 -174 58 3 2022-07-12 18:13:38.564558 2022-07-12 18:13:38.564558 -175 59 1 2022-07-12 18:13:38.89942 2022-07-12 18:13:38.89942 -176 59 2 2022-07-12 18:13:38.904859 2022-07-12 18:13:38.904859 -177 59 3 2022-07-12 18:13:38.910263 2022-07-12 18:13:38.910263 -178 60 1 2022-07-12 18:13:39.389195 2022-07-12 18:13:39.389195 -179 60 2 2022-07-12 18:13:39.396007 2022-07-12 18:13:39.396007 -180 60 3 2022-07-12 18:13:39.401944 2022-07-12 18:13:39.401944 -181 61 1 2022-07-12 18:13:39.744162 2022-07-12 18:13:39.744162 -182 61 2 2022-07-12 18:13:39.750402 2022-07-12 18:13:39.750402 -183 61 3 2022-07-12 18:13:39.75649 2022-07-12 18:13:39.75649 -184 62 1 2022-07-12 18:13:40.093875 2022-07-12 18:13:40.093875 -185 62 2 2022-07-12 18:13:40.099758 2022-07-12 18:13:40.099758 -186 62 3 2022-07-12 18:13:40.105523 2022-07-12 18:13:40.105523 -187 63 1 2022-07-12 18:13:40.426786 2022-07-12 18:13:40.426786 -188 63 2 2022-07-12 18:13:40.432778 2022-07-12 18:13:40.432778 -189 63 3 2022-07-12 18:13:40.438503 2022-07-12 18:13:40.438503 -190 64 1 2022-07-12 18:13:40.775212 2022-07-12 18:13:40.775212 -191 64 2 2022-07-12 18:13:40.78123 2022-07-12 18:13:40.78123 -192 64 3 2022-07-12 18:13:40.786738 2022-07-12 18:13:40.786738 -193 65 1 2022-07-12 18:13:41.11639 2022-07-12 18:13:41.11639 -194 65 2 2022-07-12 18:13:41.123019 2022-07-12 18:13:41.123019 -195 65 3 2022-07-12 18:13:41.129483 2022-07-12 18:13:41.129483 -196 66 1 2022-07-12 18:13:41.489595 2022-07-12 18:13:41.489595 -197 66 2 2022-07-12 18:13:41.495558 2022-07-12 18:13:41.495558 -198 66 3 2022-07-12 18:13:41.501378 2022-07-12 18:13:41.501378 -199 67 1 2022-07-12 18:13:41.854588 2022-07-12 18:13:41.854588 -200 67 2 2022-07-12 18:13:41.862916 2022-07-12 18:13:41.862916 -201 67 3 2022-07-12 18:13:41.869994 2022-07-12 18:13:41.869994 -202 68 1 2022-07-12 18:13:42.237211 2022-07-12 18:13:42.237211 -203 68 2 2022-07-12 18:13:42.243654 2022-07-12 18:13:42.243654 -204 68 3 2022-07-12 18:13:42.250544 2022-07-12 18:13:42.250544 -205 69 1 2022-07-12 18:13:42.621994 2022-07-12 18:13:42.621994 -206 69 2 2022-07-12 18:13:42.627875 2022-07-12 18:13:42.627875 -207 69 3 2022-07-12 18:13:42.635078 2022-07-12 18:13:42.635078 -208 70 1 2022-07-12 18:13:42.993477 2022-07-12 18:13:42.993477 -209 70 2 2022-07-12 18:13:42.999431 2022-07-12 18:13:42.999431 -210 70 3 2022-07-12 18:13:43.005463 2022-07-12 18:13:43.005463 -211 71 1 2022-07-12 18:13:43.349304 2022-07-12 18:13:43.349304 -212 71 2 2022-07-12 18:13:43.35562 2022-07-12 18:13:43.35562 -213 71 3 2022-07-12 18:13:43.361399 2022-07-12 18:13:43.361399 -214 72 1 2022-07-12 18:13:43.701202 2022-07-12 18:13:43.701202 -215 72 2 2022-07-12 18:13:43.707166 2022-07-12 18:13:43.707166 -216 72 3 2022-07-12 18:13:43.713174 2022-07-12 18:13:43.713174 -217 73 1 2022-07-12 18:13:44.074126 2022-07-12 18:13:44.074126 -218 73 2 2022-07-12 18:13:44.080298 2022-07-12 18:13:44.080298 -219 73 3 2022-07-12 18:13:44.086991 2022-07-12 18:13:44.086991 -220 74 1 2022-07-12 18:13:44.464662 2022-07-12 18:13:44.464662 -221 74 2 2022-07-12 18:13:44.471287 2022-07-12 18:13:44.471287 -222 74 3 2022-07-12 18:13:44.478285 2022-07-12 18:13:44.478285 -223 75 1 2022-07-12 18:13:45.011185 2022-07-12 18:13:45.011185 -224 75 2 2022-07-12 18:13:45.017849 2022-07-12 18:13:45.017849 -225 75 3 2022-07-12 18:13:45.023604 2022-07-12 18:13:45.023604 -226 76 1 2022-07-12 18:13:45.412766 2022-07-12 18:13:45.412766 -227 76 2 2022-07-12 18:13:45.421853 2022-07-12 18:13:45.421853 -228 76 3 2022-07-12 18:13:45.428221 2022-07-12 18:13:45.428221 -229 77 1 2022-07-12 18:13:45.832101 2022-07-12 18:13:45.832101 -230 77 2 2022-07-12 18:13:45.849066 2022-07-12 18:13:45.849066 -231 77 3 2022-07-12 18:13:45.861508 2022-07-12 18:13:45.861508 -232 78 1 2022-07-12 18:13:46.561117 2022-07-12 18:13:46.561117 -233 78 2 2022-07-12 18:13:46.568557 2022-07-12 18:13:46.568557 -234 78 3 2022-07-12 18:13:46.575232 2022-07-12 18:13:46.575232 -235 79 1 2022-07-12 18:13:47.002271 2022-07-12 18:13:47.002271 -236 79 2 2022-07-12 18:13:47.008452 2022-07-12 18:13:47.008452 -237 79 3 2022-07-12 18:13:47.014169 2022-07-12 18:13:47.014169 -238 80 1 2022-07-12 18:13:47.395905 2022-07-12 18:13:47.395905 -239 80 2 2022-07-12 18:13:47.401666 2022-07-12 18:13:47.401666 -240 80 3 2022-07-12 18:13:47.40741 2022-07-12 18:13:47.40741 -241 81 1 2022-07-12 18:13:47.749234 2022-07-12 18:13:47.749234 -242 81 2 2022-07-12 18:13:47.755112 2022-07-12 18:13:47.755112 -243 81 3 2022-07-12 18:13:47.761728 2022-07-12 18:13:47.761728 -244 82 1 2022-07-12 18:13:48.096119 2022-07-12 18:13:48.096119 -245 82 2 2022-07-12 18:13:48.101897 2022-07-12 18:13:48.101897 -246 82 3 2022-07-12 18:13:48.107904 2022-07-12 18:13:48.107904 -247 83 1 2022-07-12 18:13:48.470157 2022-07-12 18:13:48.470157 -248 83 2 2022-07-12 18:13:48.47659 2022-07-12 18:13:48.47659 -249 83 3 2022-07-12 18:13:48.482593 2022-07-12 18:13:48.482593 -250 84 1 2022-07-12 18:13:48.863986 2022-07-12 18:13:48.863986 -251 84 2 2022-07-12 18:13:48.870058 2022-07-12 18:13:48.870058 -252 84 3 2022-07-12 18:13:48.877139 2022-07-12 18:13:48.877139 -253 85 1 2022-07-12 18:13:49.238018 2022-07-12 18:13:49.238018 -254 85 2 2022-07-12 18:13:49.244722 2022-07-12 18:13:49.244722 -255 85 3 2022-07-12 18:13:49.251091 2022-07-12 18:13:49.251091 -256 86 1 2022-07-12 18:13:49.592752 2022-07-12 18:13:49.592752 -257 86 2 2022-07-12 18:13:49.598487 2022-07-12 18:13:49.598487 -258 86 3 2022-07-12 18:13:49.605455 2022-07-12 18:13:49.605455 -259 87 1 2022-07-12 18:13:49.974723 2022-07-12 18:13:49.974723 -260 87 2 2022-07-12 18:13:49.981019 2022-07-12 18:13:49.981019 -261 87 3 2022-07-12 18:13:49.987121 2022-07-12 18:13:49.987121 -262 88 1 2022-07-12 18:13:50.340927 2022-07-12 18:13:50.340927 -263 88 2 2022-07-12 18:13:50.349408 2022-07-12 18:13:50.349408 -264 88 3 2022-07-12 18:13:50.358928 2022-07-12 18:13:50.358928 -265 89 1 2022-07-12 18:13:50.892306 2022-07-12 18:13:50.892306 -266 89 2 2022-07-12 18:13:50.899689 2022-07-12 18:13:50.899689 -267 89 3 2022-07-12 18:13:50.906085 2022-07-12 18:13:50.906085 -268 90 1 2022-07-12 18:13:51.312594 2022-07-12 18:13:51.312594 -269 90 2 2022-07-12 18:13:51.342594 2022-07-12 18:13:51.342594 -270 90 3 2022-07-12 18:13:51.352469 2022-07-12 18:13:51.352469 -271 91 1 2022-07-12 18:13:51.758865 2022-07-12 18:13:51.758865 -272 91 2 2022-07-12 18:13:51.764915 2022-07-12 18:13:51.764915 -273 91 3 2022-07-12 18:13:51.770894 2022-07-12 18:13:51.770894 -274 92 1 2022-07-12 18:13:52.245528 2022-07-12 18:13:52.245528 -275 92 2 2022-07-12 18:13:52.252501 2022-07-12 18:13:52.252501 -276 92 3 2022-07-12 18:13:52.259511 2022-07-12 18:13:52.259511 -277 93 1 2022-07-12 18:13:52.620424 2022-07-12 18:13:52.620424 -278 93 2 2022-07-12 18:13:52.627298 2022-07-12 18:13:52.627298 -279 93 3 2022-07-12 18:13:52.633608 2022-07-12 18:13:52.633608 -280 94 1 2022-07-12 18:13:53.011419 2022-07-12 18:13:53.011419 -281 94 2 2022-07-12 18:13:53.017638 2022-07-12 18:13:53.017638 -282 94 3 2022-07-12 18:13:53.024088 2022-07-12 18:13:53.024088 -283 95 1 2022-07-12 18:13:53.3759 2022-07-12 18:13:53.3759 -284 95 2 2022-07-12 18:13:53.381545 2022-07-12 18:13:53.381545 -285 95 3 2022-07-12 18:13:53.388302 2022-07-12 18:13:53.388302 -286 96 1 2022-07-12 18:13:53.80834 2022-07-12 18:13:53.80834 -287 96 2 2022-07-12 18:13:53.814148 2022-07-12 18:13:53.814148 -288 96 3 2022-07-12 18:13:53.819829 2022-07-12 18:13:53.819829 -289 97 1 2022-07-12 18:13:54.168998 2022-07-12 18:13:54.168998 -290 97 2 2022-07-12 18:13:54.17527 2022-07-12 18:13:54.17527 -291 97 3 2022-07-12 18:13:54.181654 2022-07-12 18:13:54.181654 -292 98 1 2022-07-12 18:13:54.514447 2022-07-12 18:13:54.514447 -293 98 2 2022-07-12 18:13:54.520814 2022-07-12 18:13:54.520814 -294 98 3 2022-07-12 18:13:54.527043 2022-07-12 18:13:54.527043 -295 99 1 2022-07-12 18:13:54.869499 2022-07-12 18:13:54.869499 -296 99 2 2022-07-12 18:13:54.875422 2022-07-12 18:13:54.875422 -297 99 3 2022-07-12 18:13:54.881126 2022-07-12 18:13:54.881126 -298 100 1 2022-07-12 18:13:55.224584 2022-07-12 18:13:55.224584 -299 100 2 2022-07-12 18:13:55.230587 2022-07-12 18:13:55.230587 -300 100 3 2022-07-12 18:13:55.236193 2022-07-12 18:13:55.236193 -301 101 1 2022-07-12 18:13:55.578684 2022-07-12 18:13:55.578684 -302 101 2 2022-07-12 18:13:55.584385 2022-07-12 18:13:55.584385 -303 101 3 2022-07-12 18:13:55.590576 2022-07-12 18:13:55.590576 -304 102 1 2022-07-12 18:13:55.964783 2022-07-12 18:13:55.964783 -305 102 2 2022-07-12 18:13:55.970627 2022-07-12 18:13:55.970627 -306 102 3 2022-07-12 18:13:55.976264 2022-07-12 18:13:55.976264 -307 103 1 2022-07-12 18:13:56.388267 2022-07-12 18:13:56.388267 -308 103 2 2022-07-12 18:13:56.394559 2022-07-12 18:13:56.394559 -309 103 3 2022-07-12 18:13:56.400372 2022-07-12 18:13:56.400372 -310 104 1 2022-07-12 18:13:56.88211 2022-07-12 18:13:56.88211 -311 104 2 2022-07-12 18:13:56.887848 2022-07-12 18:13:56.887848 -312 104 3 2022-07-12 18:13:56.893422 2022-07-12 18:13:56.893422 -313 105 1 2022-07-12 18:13:57.241316 2022-07-12 18:13:57.241316 -314 105 2 2022-07-12 18:13:57.249216 2022-07-12 18:13:57.249216 -315 105 3 2022-07-12 18:13:57.256902 2022-07-12 18:13:57.256902 -316 106 1 2022-07-12 18:13:57.626869 2022-07-12 18:13:57.626869 -317 106 2 2022-07-12 18:13:57.633398 2022-07-12 18:13:57.633398 -318 106 3 2022-07-12 18:13:57.640037 2022-07-12 18:13:57.640037 -319 107 1 2022-07-12 18:13:58.00104 2022-07-12 18:13:58.00104 -320 107 2 2022-07-12 18:13:58.007403 2022-07-12 18:13:58.007403 -321 107 3 2022-07-12 18:13:58.01348 2022-07-12 18:13:58.01348 -322 108 1 2022-07-12 18:13:58.359361 2022-07-12 18:13:58.359361 -323 108 2 2022-07-12 18:13:58.365092 2022-07-12 18:13:58.365092 -324 108 3 2022-07-12 18:13:58.370907 2022-07-12 18:13:58.370907 -325 109 1 2022-07-12 18:13:58.757657 2022-07-12 18:13:58.757657 -326 109 2 2022-07-12 18:13:58.763909 2022-07-12 18:13:58.763909 -327 109 3 2022-07-12 18:13:58.769494 2022-07-12 18:13:58.769494 -328 110 1 2022-07-12 18:13:59.105033 2022-07-12 18:13:59.105033 -329 110 2 2022-07-12 18:13:59.111092 2022-07-12 18:13:59.111092 -330 110 3 2022-07-12 18:13:59.117467 2022-07-12 18:13:59.117467 -331 111 1 2022-07-12 18:13:59.457691 2022-07-12 18:13:59.457691 -332 111 2 2022-07-12 18:13:59.463591 2022-07-12 18:13:59.463591 -333 111 3 2022-07-12 18:13:59.469908 2022-07-12 18:13:59.469908 -334 112 1 2022-07-12 18:13:59.808853 2022-07-12 18:13:59.808853 -335 112 2 2022-07-12 18:13:59.81516 2022-07-12 18:13:59.81516 -336 112 3 2022-07-12 18:13:59.821428 2022-07-12 18:13:59.821428 -337 113 1 2022-07-12 18:14:00.244009 2022-07-12 18:14:00.244009 -338 113 2 2022-07-12 18:14:00.251509 2022-07-12 18:14:00.251509 -339 113 3 2022-07-12 18:14:00.257647 2022-07-12 18:14:00.257647 -340 114 1 2022-07-12 18:14:00.685835 2022-07-12 18:14:00.685835 -341 114 2 2022-07-12 18:14:00.691449 2022-07-12 18:14:00.691449 -342 114 3 2022-07-12 18:14:00.698193 2022-07-12 18:14:00.698193 -343 115 1 2022-07-12 18:14:01.039502 2022-07-12 18:14:01.039502 -344 115 2 2022-07-12 18:14:01.04508 2022-07-12 18:14:01.04508 -345 115 3 2022-07-12 18:14:01.05082 2022-07-12 18:14:01.05082 -346 116 1 2022-07-12 18:14:01.388872 2022-07-12 18:14:01.388872 -347 116 2 2022-07-12 18:14:01.394901 2022-07-12 18:14:01.394901 -348 116 3 2022-07-12 18:14:01.40089 2022-07-12 18:14:01.40089 -349 117 1 2022-09-02 16:33:37.773767 2022-09-02 16:33:37.773767 -350 118 1 2022-09-02 17:09:21.608572 2022-09-02 17:09:21.608572 -351 119 1 2022-09-02 17:19:13.924526 2022-09-02 17:19:13.924526 -352 120 1 2022-09-02 17:31:19.763415 2022-09-02 17:31:19.763415 -353 121 1 2022-09-02 18:30:30.943849 2022-09-02 18:30:30.943849 -354 122 1 2022-09-02 18:38:46.473805 2022-09-02 18:38:46.473805 -355 123 1 2022-09-02 18:41:05.420086 2022-09-02 18:41:05.420086 -356 124 1 2022-09-02 18:42:26.534284 2022-09-02 18:42:26.534284 -357 125 1 2022-09-02 18:44:36.161054 2022-09-02 18:44:36.161054 -358 126 1 2022-09-02 18:50:49.264648 2022-09-02 18:50:49.264648 -359 127 1 2022-09-02 18:52:56.31228 2022-09-02 18:52:56.31228 -360 128 1 2022-09-02 18:57:21.624564 2022-09-02 18:57:21.624564 -361 129 1 2022-09-02 18:59:14.692689 2022-09-02 18:59:14.692689 -362 130 1 2022-09-02 19:01:55.325934 2022-09-02 19:01:55.325934 -\. - - --- --- Data for Name: spree_products_taxons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_products_taxons (id, product_id, taxon_id, "position", created_at, updated_at) FROM stdin; -443 128 20 1 2022-09-08 15:37:36.94075 2022-09-08 15:37:36.94075 -444 128 28 1 2022-09-08 15:37:36.960267 2022-09-08 15:37:36.960267 -445 128 29 1 2022-09-08 15:38:03.559114 2022-09-08 15:38:03.559114 -446 130 29 2 2022-09-08 15:40:49.166807 2022-09-08 15:40:49.166807 -447 130 20 2 2022-09-08 15:40:49.183751 2022-09-08 15:40:49.183751 -448 130 19 1 2022-09-08 15:40:49.197238 2022-09-08 15:40:49.197238 -449 130 28 2 2022-09-08 15:40:49.212418 2022-09-08 15:40:49.212418 -450 118 29 3 2022-09-08 15:41:32.876813 2022-09-08 15:41:32.876813 -451 118 28 3 2022-09-08 15:41:32.893066 2022-09-08 15:41:32.893066 -452 118 18 1 2022-09-08 15:41:32.907083 2022-09-08 15:41:32.907083 -453 117 29 4 2022-09-08 15:42:11.641904 2022-09-08 15:42:11.641904 -454 117 28 4 2022-09-08 15:42:11.659588 2022-09-08 15:42:11.659588 -455 119 29 5 2022-09-08 15:42:47.535023 2022-09-08 15:42:47.535023 -456 119 19 2 2022-09-08 15:42:47.550984 2022-09-08 15:42:47.550984 -457 119 28 5 2022-09-08 15:42:47.5661 2022-09-08 15:42:47.5661 -458 120 28 6 2022-09-08 15:43:22.546437 2022-09-08 15:43:22.546437 -459 120 29 6 2022-09-08 15:43:22.561934 2022-09-08 15:43:22.561934 -460 120 19 3 2022-09-08 15:43:22.576769 2022-09-08 15:43:22.576769 -461 121 29 7 2022-09-08 15:45:34.769867 2022-09-08 15:45:34.769867 -462 121 28 7 2022-09-08 15:45:34.785124 2022-09-08 15:45:34.785124 -463 123 29 8 2022-09-08 15:46:12.569638 2022-09-08 15:46:12.569638 -464 123 28 8 2022-09-08 15:46:12.585329 2022-09-08 15:46:12.585329 -465 123 19 4 2022-09-08 15:46:12.601459 2022-09-08 15:46:12.601459 -466 122 28 9 2022-09-08 15:47:28.832643 2022-09-08 15:47:28.832643 -467 122 29 9 2022-09-08 15:47:28.850399 2022-09-08 15:47:28.850399 -468 124 29 10 2022-09-08 15:48:04.694272 2022-09-08 15:48:04.694272 -469 124 28 10 2022-09-08 15:48:04.714955 2022-09-08 15:48:04.714955 -470 124 19 5 2022-09-08 15:48:04.732727 2022-09-08 15:48:04.732727 -471 125 29 11 2022-09-08 15:50:11.593253 2022-09-08 15:50:11.593253 -472 125 18 2 2022-09-08 15:50:11.618906 2022-09-08 15:50:11.618906 -473 125 28 11 2022-09-08 15:50:11.636523 2022-09-08 15:50:11.636523 -474 127 29 12 2022-09-08 15:50:36.842369 2022-09-08 15:50:36.842369 -475 127 28 12 2022-09-08 15:50:36.858573 2022-09-08 15:50:36.858573 -476 126 28 13 2022-09-08 15:51:12.200937 2022-09-08 15:51:12.200937 -477 126 29 13 2022-09-08 15:51:12.216067 2022-09-08 15:51:12.216067 -478 126 18 3 2022-09-08 15:51:12.231002 2022-09-08 15:51:12.231002 -479 129 18 4 2022-09-08 15:52:54.916087 2022-09-08 15:52:54.916087 -480 129 29 14 2022-09-08 15:52:54.933648 2022-09-08 15:52:54.933648 -481 129 28 14 2022-09-08 15:52:54.954857 2022-09-08 15:52:54.954857 -\. - - --- --- Data for Name: spree_promotion_action_line_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_action_line_items (id, promotion_action_id, variant_id, quantity, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_promotion_actions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_actions (id, promotion_id, "position", type, deleted_at, created_at, updated_at) FROM stdin; -1 1 \N Spree::Promotion::Actions::FreeShipping \N 2022-07-12 18:14:10.844503 2022-07-12 18:14:10.844503 -\. - - --- --- Data for Name: spree_promotion_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_categories (id, name, created_at, updated_at, code) FROM stdin; -\. - - --- --- Data for Name: spree_promotion_rule_taxons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_rule_taxons (id, taxon_id, promotion_rule_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_promotion_rule_users; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_rule_users (id, user_id, promotion_rule_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_promotion_rules; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotion_rules (id, promotion_id, user_id, product_group_id, type, created_at, updated_at, code, preferences) FROM stdin; -1 1 \N \N Spree::Promotion::Rules::OptionValue 2022-07-12 18:14:10.81453 2022-07-12 18:14:10.81453 \N ---\n:eligible_values:\n '1': '23,3'\n:match_policy: any\n -\. - - --- --- Data for Name: spree_promotions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotions (id, description, expires_at, starts_at, name, type, usage_limit, match_policy, code, advertise, path, created_at, updated_at, promotion_category_id, public_metadata, private_metadata) FROM stdin; -1 \N \N free shipping \N \N any \N f \N 2022-07-12 18:14:10.64848 2022-07-12 18:14:10.678912 \N \N \N -\. - - --- --- Data for Name: spree_promotions_stores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_promotions_stores (id, promotion_id, store_id, created_at, updated_at) FROM stdin; -1 1 1 2022-07-12 18:14:10.657425 2022-07-12 18:14:10.657425 -2 1 2 2022-07-12 18:14:10.668288 2022-07-12 18:14:10.668288 -3 1 3 2022-07-12 18:14:10.675654 2022-07-12 18:14:10.675654 -\. - - --- --- Data for Name: spree_properties; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_properties (id, name, presentation, created_at, updated_at, filterable, filter_param, public_metadata, private_metadata) FROM stdin; -11 made_from Made from 2022-07-12 18:15:12.434047 2022-07-12 18:15:12.434047 f made_from \N \N -12 type Type 2022-07-12 18:15:12.449715 2022-07-12 18:15:12.449715 f type \N \N -13 size Size 2022-07-12 18:15:12.461444 2022-07-12 18:15:12.461444 f size \N \N -14 length Lenght 2022-07-12 18:15:12.474625 2022-07-12 18:15:12.474625 f length \N \N -15 color Color 2022-07-12 18:15:12.486094 2022-07-12 18:15:12.486094 f color \N \N -16 collection Collection 2022-07-12 18:15:12.49772 2022-07-12 18:15:12.49772 f collection \N \N -9 type type 2022-07-12 18:14:18.692257 2022-09-02 16:28:46.765699 f type \N \N -10 collection collection 2022-07-12 18:14:18.741137 2022-09-02 16:28:46.774382 f collection \N \N -1 manufacturer Manufacturer 2022-07-12 18:14:10.879153 2022-09-02 16:28:46.78273 t manufacturer \N \N -6 material Material 2022-07-12 18:14:11.131286 2022-09-02 16:28:46.799385 f material \N \N -7 fit Fit 2022-07-12 18:14:11.177046 2022-09-02 16:28:46.807727 f fit \N \N -8 gender Gender 2022-07-12 18:14:11.220511 2022-09-02 16:28:46.81619 f gender \N \N -3 model Model 2022-07-12 18:14:10.990963 2022-09-02 16:28:46.824642 f model \N \N -4 shirt_type Shirt type 2022-07-12 18:14:11.035921 2022-09-02 16:28:44.922294 f shirt_type \N \N -5 sleeve_type Sleeve type 2022-07-12 18:14:11.08378 2022-09-02 16:28:44.930706 f sleeve_type \N \N -2 brand Brand 2022-07-12 18:14:10.947028 2022-09-02 19:03:22.795257 t brand \N \N -\. - - --- --- Data for Name: spree_property_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_property_prototypes (id, prototype_id, property_id, created_at, updated_at) FROM stdin; -1 1 1 2022-07-12 18:15:12.586831 2022-07-12 18:15:12.586831 -2 1 2 2022-07-12 18:15:12.601081 2022-07-12 18:15:12.601081 -3 1 3 2022-07-12 18:15:12.614942 2022-07-12 18:15:12.614942 -4 1 14 2022-07-12 18:15:12.628837 2022-07-12 18:15:12.628837 -5 1 11 2022-07-12 18:15:12.64238 2022-07-12 18:15:12.64238 -6 1 6 2022-07-12 18:15:12.655098 2022-07-12 18:15:12.655098 -7 1 7 2022-07-12 18:15:12.669658 2022-07-12 18:15:12.669658 -8 1 8 2022-07-12 18:15:12.684844 2022-07-12 18:15:12.684844 -9 2 12 2022-07-12 18:15:12.710267 2022-07-12 18:15:12.710267 -10 2 13 2022-07-12 18:15:12.723704 2022-07-12 18:15:12.723704 -11 2 6 2022-07-12 18:15:12.736991 2022-07-12 18:15:12.736991 -12 3 13 2022-07-12 18:15:12.765498 2022-07-12 18:15:12.765498 -13 3 12 2022-07-12 18:15:12.779121 2022-07-12 18:15:12.779121 -14 4 2 2022-09-02 16:33:05.851131 2022-09-02 16:33:05.851131 -\. - - --- --- Data for Name: spree_prototype_taxons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_prototype_taxons (id, taxon_id, prototype_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_prototypes (id, name, created_at, updated_at, public_metadata, private_metadata) FROM stdin; -1 Shirt 2022-07-12 18:15:12.550256 2022-07-12 18:15:12.550256 \N \N -2 Bag 2022-07-12 18:15:12.691724 2022-07-12 18:15:12.691724 \N \N -3 Mugs 2022-07-12 18:15:12.744761 2022-07-12 18:15:12.744761 \N \N -4 Stickers 2022-09-02 16:33:05.840431 2022-09-02 16:33:05.840431 \N \N -\. - - --- --- Data for Name: spree_refund_reasons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_refund_reasons (id, name, active, mutable, created_at, updated_at) FROM stdin; -1 Return processing t f 2022-07-12 18:10:12.374693 2022-07-12 18:10:12.374693 -\. - - --- --- Data for Name: spree_refunds; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_refunds (id, payment_id, amount, transaction_id, created_at, updated_at, refund_reason_id, reimbursement_id, public_metadata, private_metadata) FROM stdin; -\. - - --- --- Data for Name: spree_reimbursement_credits; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_reimbursement_credits (id, amount, reimbursement_id, creditable_id, creditable_type, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_reimbursement_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_reimbursement_types (id, name, active, mutable, created_at, updated_at, type) FROM stdin; -\. - - --- --- Data for Name: spree_reimbursements; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_reimbursements (id, number, reimbursement_status, customer_return_id, order_id, total, created_at, updated_at) FROM stdin; -1 RI109591719 pending \N 1 \N 2022-07-12 18:15:54.389019 2022-07-12 18:15:54.389019 -\. - - --- --- Data for Name: spree_return_authorization_reasons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_return_authorization_reasons (id, name, active, mutable, created_at, updated_at) FROM stdin; -1 Better price available t t 2022-07-12 18:15:54.422179 2022-07-12 18:15:54.422179 -2 Missed estimated delivery date t t 2022-07-12 18:15:54.43343 2022-07-12 18:15:54.43343 -3 Missing parts or accessories t t 2022-07-12 18:15:54.44452 2022-07-12 18:15:54.44452 -4 Damaged/Defective t t 2022-07-12 18:15:54.456162 2022-07-12 18:15:54.456162 -5 Different from what was ordered t t 2022-07-12 18:15:54.467092 2022-07-12 18:15:54.467092 -6 Different from description t t 2022-07-12 18:15:54.477401 2022-07-12 18:15:54.477401 -7 No longer needed/wanted t t 2022-07-12 18:15:54.488238 2022-07-12 18:15:54.488238 -8 Accidental order t t 2022-07-12 18:15:54.498187 2022-07-12 18:15:54.498187 -9 Unauthorized purchase t t 2022-07-12 18:15:54.508012 2022-07-12 18:15:54.508012 -\. - - --- --- Data for Name: spree_return_authorizations; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_return_authorizations (id, number, state, order_id, memo, created_at, updated_at, stock_location_id, return_authorization_reason_id) FROM stdin; -\. - - --- --- Data for Name: spree_return_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_return_items (id, return_authorization_id, inventory_unit_id, exchange_variant_id, created_at, updated_at, pre_tax_amount, included_tax_total, additional_tax_total, reception_status, acceptance_status, customer_return_id, reimbursement_id, acceptance_status_errors, preferred_reimbursement_type_id, override_reimbursement_type_id, resellable) FROM stdin; -\. - - --- --- Data for Name: spree_role_users; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_role_users (id, role_id, user_id, created_at, updated_at) FROM stdin; -1 1 1 2022-07-12 18:10:57.986839 2022-07-12 18:10:57.986839 -2 1 2 2022-09-02 14:43:42.067732 2022-09-02 14:43:42.067732 -\. - - --- --- Data for Name: spree_roles; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_roles (id, name, created_at, updated_at) FROM stdin; -1 admin 2022-07-12 18:10:12.358597 2022-07-12 18:10:12.358597 -\. - - --- --- Data for Name: spree_shipments; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipments (id, tracking, number, cost, shipped_at, order_id, address_id, state, created_at, updated_at, stock_location_id, adjustment_total, additional_tax_total, promo_total, included_tax_total, pre_tax_amount, taxable_adjustment_total, non_taxable_adjustment_total, public_metadata, private_metadata) FROM stdin; -\. - - --- --- Data for Name: spree_shipping_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipping_categories (id, name, created_at, updated_at) FROM stdin; -1 Default 2022-07-12 18:10:15.09237 2022-07-12 18:10:15.09237 -2 Digital 2022-07-12 18:10:15.103953 2022-07-12 18:10:15.103953 -\. - - --- --- Data for Name: spree_shipping_method_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipping_method_categories (id, shipping_method_id, shipping_category_id, created_at, updated_at) FROM stdin; -1 1 1 2022-07-12 18:13:10.15444 2022-07-12 18:13:10.15444 -2 2 1 2022-07-12 18:13:10.191973 2022-07-12 18:13:10.191973 -3 3 1 2022-07-12 18:13:10.226458 2022-07-12 18:13:10.226458 -4 4 1 2022-07-12 18:13:10.262018 2022-07-12 18:13:10.262018 -5 5 1 2022-07-12 18:13:10.297927 2022-07-12 18:13:10.297927 -\. - - --- --- Data for Name: spree_shipping_method_zones; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipping_method_zones (id, shipping_method_id, zone_id, created_at, updated_at) FROM stdin; -1 1 3 2022-07-12 18:13:10.157988 2022-07-12 18:13:10.157988 -2 2 3 2022-07-12 18:13:10.194789 2022-07-12 18:13:10.194789 -3 3 3 2022-07-12 18:13:10.22893 2022-07-12 18:13:10.22893 -4 4 1 2022-07-12 18:13:10.26488 2022-07-12 18:13:10.26488 -5 5 1 2022-07-12 18:13:10.300373 2022-07-12 18:13:10.300373 -\. - - --- --- Data for Name: spree_shipping_methods; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipping_methods (id, name, display_on, deleted_at, created_at, updated_at, tracking_url, admin_name, tax_category_id, code, public_metadata, private_metadata) FROM stdin; -1 UPS Ground (USD) both \N 2022-07-12 18:13:10.148512 2022-07-12 18:13:10.148512 \N \N \N \N \N \N -2 UPS Two Day (USD) both \N 2022-07-12 18:13:10.186897 2022-07-12 18:13:10.186897 \N \N \N \N \N \N -3 UPS One Day (USD) both \N 2022-07-12 18:13:10.221522 2022-07-12 18:13:10.221522 \N \N \N \N \N \N -4 UPS Ground (EU) both \N 2022-07-12 18:13:10.256766 2022-07-12 18:13:10.256766 \N \N \N \N \N \N -5 UPS Ground (EUR) both \N 2022-07-12 18:13:10.29214 2022-07-12 18:13:10.29214 \N \N \N \N \N \N -\. - - --- --- Data for Name: spree_shipping_rates; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_shipping_rates (id, shipment_id, shipping_method_id, selected, cost, created_at, updated_at, tax_rate_id) FROM stdin; -\. - - --- --- Data for Name: spree_state_changes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_state_changes (id, name, previous_state, stateful_id, user_id, stateful_type, next_state, created_at, updated_at) FROM stdin; -1 payment \N 1 \N Spree::Order balance_due 2022-07-12 18:15:53.658515 2022-07-12 18:15:53.658515 -2 shipment \N 1 \N Spree::Order pending 2022-07-12 18:15:53.685851 2022-07-12 18:15:53.685851 -3 payment \N 2 \N Spree::Order balance_due 2022-07-12 18:15:53.868839 2022-07-12 18:15:53.868839 -4 shipment \N 2 \N Spree::Order pending 2022-07-12 18:15:54.099286 2022-07-12 18:15:54.099286 -5 payment balance_due 2 \N Spree::Order paid 2022-09-02 16:12:47.175572 2022-09-02 16:12:47.175572 -6 shipment pending 2 \N Spree::Order \N 2022-09-02 16:12:47.18535 2022-09-02 16:12:47.18535 -7 order complete 2 \N Spree::Order canceled 2022-09-02 16:14:11.102811 2022-09-02 16:14:11.102811 -8 payment paid 2 \N Spree::Order void 2022-09-02 16:14:11.339501 2022-09-02 16:14:11.339501 -9 payment balance_due 1 \N Spree::Order paid 2022-09-02 16:14:58.400409 2022-09-02 16:14:58.400409 -10 order complete 1 \N Spree::Order canceled 2022-09-02 16:15:04.62049 2022-09-02 16:15:04.62049 -11 payment paid 1 \N Spree::Order void 2022-09-02 16:15:04.791969 2022-09-02 16:15:04.791969 -12 shipment pending 1 \N Spree::Order \N 2022-09-02 16:15:04.797297 2022-09-02 16:15:04.797297 -\. - - --- --- Data for Name: spree_states; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_states (id, name, abbr, country_id, updated_at, created_at) FROM stdin; -1 Australian Capital Territory ACT 12 2022-07-12 18:10:03.904685 2022-07-12 18:10:03.904685 -2 New South Wales NSW 12 2022-07-12 18:10:03.91859 2022-07-12 18:10:03.91859 -3 Northern Territory NT 12 2022-07-12 18:10:03.933122 2022-07-12 18:10:03.933122 -4 Queensland QLD 12 2022-07-12 18:10:03.946611 2022-07-12 18:10:03.946611 -5 South Australia SA 12 2022-07-12 18:10:03.960084 2022-07-12 18:10:03.960084 -6 Tasmania TAS 12 2022-07-12 18:10:03.974088 2022-07-12 18:10:03.974088 -7 Victoria VIC 12 2022-07-12 18:10:03.987587 2022-07-12 18:10:03.987587 -8 Western Australia WA 12 2022-07-12 18:10:04.003262 2022-07-12 18:10:04.003262 -9 Acre AC 29 2022-07-12 18:10:04.021072 2022-07-12 18:10:04.021072 -10 Alagoas AL 29 2022-07-12 18:10:04.033647 2022-07-12 18:10:04.033647 -11 Amazonas AM 29 2022-07-12 18:10:04.046443 2022-07-12 18:10:04.046443 -12 Amapá AP 29 2022-07-12 18:10:04.059442 2022-07-12 18:10:04.059442 -13 Bahia BA 29 2022-07-12 18:10:04.073319 2022-07-12 18:10:04.073319 -14 Ceará CE 29 2022-07-12 18:10:04.086624 2022-07-12 18:10:04.086624 -15 Distrito Federal DF 29 2022-07-12 18:10:04.100519 2022-07-12 18:10:04.100519 -16 Espírito Santo ES 29 2022-07-12 18:10:04.127679 2022-07-12 18:10:04.127679 -17 Goiás GO 29 2022-07-12 18:10:04.142972 2022-07-12 18:10:04.142972 -18 Maranhão MA 29 2022-07-12 18:10:04.157073 2022-07-12 18:10:04.157073 -19 Minas Gerais MG 29 2022-07-12 18:10:04.170175 2022-07-12 18:10:04.170175 -20 Mato Grosso do Sul MS 29 2022-07-12 18:10:04.183469 2022-07-12 18:10:04.183469 -21 Mato Grosso MT 29 2022-07-12 18:10:04.197014 2022-07-12 18:10:04.197014 -22 Pará PA 29 2022-07-12 18:10:04.211094 2022-07-12 18:10:04.211094 -23 Paraíba PB 29 2022-07-12 18:10:04.225311 2022-07-12 18:10:04.225311 -24 Pernambuco PE 29 2022-07-12 18:10:04.239088 2022-07-12 18:10:04.239088 -25 Piauí PI 29 2022-07-12 18:10:04.254286 2022-07-12 18:10:04.254286 -26 Paraná PR 29 2022-07-12 18:10:04.268099 2022-07-12 18:10:04.268099 -27 Rio de Janeiro RJ 29 2022-07-12 18:10:04.281361 2022-07-12 18:10:04.281361 -28 Rio Grande do Norte RN 29 2022-07-12 18:10:04.295464 2022-07-12 18:10:04.295464 -29 Rondônia RO 29 2022-07-12 18:10:04.309521 2022-07-12 18:10:04.309521 -30 Roraima RR 29 2022-07-12 18:10:04.323295 2022-07-12 18:10:04.323295 -31 Rio Grande do Sul RS 29 2022-07-12 18:10:04.337416 2022-07-12 18:10:04.337416 -32 Santa Catarina SC 29 2022-07-12 18:10:04.353147 2022-07-12 18:10:04.353147 -33 Sergipe SE 29 2022-07-12 18:10:04.366881 2022-07-12 18:10:04.366881 -34 São Paulo SP 29 2022-07-12 18:10:04.380504 2022-07-12 18:10:04.380504 -35 Tocantins TO 29 2022-07-12 18:10:04.394767 2022-07-12 18:10:04.394767 -36 Alberta AB 35 2022-07-12 18:10:04.411696 2022-07-12 18:10:04.411696 -37 British Columbia BC 35 2022-07-12 18:10:04.425031 2022-07-12 18:10:04.425031 -38 Manitoba MB 35 2022-07-12 18:10:04.438458 2022-07-12 18:10:04.438458 -39 New Brunswick NB 35 2022-07-12 18:10:04.453485 2022-07-12 18:10:04.453485 -40 Newfoundland and Labrador NL 35 2022-07-12 18:10:04.467574 2022-07-12 18:10:04.467574 -41 Nova Scotia NS 35 2022-07-12 18:10:04.485195 2022-07-12 18:10:04.485195 -42 Northwest Territories NT 35 2022-07-12 18:10:04.50051 2022-07-12 18:10:04.50051 -43 Nunavut NU 35 2022-07-12 18:10:04.515089 2022-07-12 18:10:04.515089 -44 Ontario ON 35 2022-07-12 18:10:04.528423 2022-07-12 18:10:04.528423 -45 Prince Edward Island PE 35 2022-07-12 18:10:04.542179 2022-07-12 18:10:04.542179 -46 Quebec QC 35 2022-07-12 18:10:04.555858 2022-07-12 18:10:04.555858 -47 Saskatchewan SK 35 2022-07-12 18:10:04.569233 2022-07-12 18:10:04.569233 -48 Yukon Territory YT 35 2022-07-12 18:10:04.585037 2022-07-12 18:10:04.585037 -49 Anhui Sheng AH 45 2022-07-12 18:10:04.603327 2022-07-12 18:10:04.603327 -50 Beijing Shi BJ 45 2022-07-12 18:10:04.61654 2022-07-12 18:10:04.61654 -51 Chongqing Shi CQ 45 2022-07-12 18:10:04.629567 2022-07-12 18:10:04.629567 -52 Fujian Sheng FJ 45 2022-07-12 18:10:04.642945 2022-07-12 18:10:04.642945 -53 Guangdong Sheng GD 45 2022-07-12 18:10:04.656237 2022-07-12 18:10:04.656237 -54 Gansu Sheng GS 45 2022-07-12 18:10:04.669703 2022-07-12 18:10:04.669703 -55 Guangxi Zhuangzu Zizhiqu GX 45 2022-07-12 18:10:04.684004 2022-07-12 18:10:04.684004 -56 Guizhou Sheng GZ 45 2022-07-12 18:10:04.697871 2022-07-12 18:10:04.697871 -57 Henan Sheng HA 45 2022-07-12 18:10:04.712288 2022-07-12 18:10:04.712288 -58 Hubei Sheng HB 45 2022-07-12 18:10:04.726045 2022-07-12 18:10:04.726045 -59 Hebei Sheng HE 45 2022-07-12 18:10:04.739409 2022-07-12 18:10:04.739409 -60 Hainan Sheng HI 45 2022-07-12 18:10:04.75225 2022-07-12 18:10:04.75225 -61 Heilongjiang Sheng HL 45 2022-07-12 18:10:04.766103 2022-07-12 18:10:04.766103 -62 Hunan Sheng HN 45 2022-07-12 18:10:04.779252 2022-07-12 18:10:04.779252 -63 Jilin Sheng JL 45 2022-07-12 18:10:04.793026 2022-07-12 18:10:04.793026 -64 Jiangsu Sheng JS 45 2022-07-12 18:10:04.807831 2022-07-12 18:10:04.807831 -65 Jiangxi Sheng JX 45 2022-07-12 18:10:04.821212 2022-07-12 18:10:04.821212 -66 Liaoning Sheng LN 45 2022-07-12 18:10:04.83938 2022-07-12 18:10:04.83938 -67 Nei Mongol Zizhiqu NM 45 2022-07-12 18:10:04.854167 2022-07-12 18:10:04.854167 -68 Ningxia Huizi Zizhiqu NX 45 2022-07-12 18:10:04.867548 2022-07-12 18:10:04.867548 -69 Qinghai Sheng QH 45 2022-07-12 18:10:04.881493 2022-07-12 18:10:04.881493 -70 Sichuan Sheng SC 45 2022-07-12 18:10:04.895447 2022-07-12 18:10:04.895447 -71 Shandong Sheng SD 45 2022-07-12 18:10:04.90959 2022-07-12 18:10:04.90959 -72 Shanghai Shi SH 45 2022-07-12 18:10:04.924074 2022-07-12 18:10:04.924074 -73 Shaanxi Sheng SN 45 2022-07-12 18:10:04.937861 2022-07-12 18:10:04.937861 -74 Shanxi Sheng SX 45 2022-07-12 18:10:04.953914 2022-07-12 18:10:04.953914 -75 Tianjin Shi TJ 45 2022-07-12 18:10:04.968547 2022-07-12 18:10:04.968547 -76 Xinjiang Uygur Zizhiqu XJ 45 2022-07-12 18:10:04.982603 2022-07-12 18:10:04.982603 -77 Xizang Zizhiqu XZ 45 2022-07-12 18:10:04.996923 2022-07-12 18:10:04.996923 -78 Yunnan Sheng YN 45 2022-07-12 18:10:05.010423 2022-07-12 18:10:05.010423 -79 Zhejiang Sheng ZJ 45 2022-07-12 18:10:05.025392 2022-07-12 18:10:05.025392 -80 Almería AL 64 \N \N -81 Cádiz CA 64 \N \N -82 Córdoba CO 64 \N \N -83 Granada GR 64 \N \N -84 Huelva H 64 \N \N -85 Jaén J 64 \N \N -86 Málaga MA 64 \N \N -87 Sevilla SE 64 \N \N -88 Huesca HU 64 \N \N -89 Teruel TE 64 \N \N -90 Zaragoza Z 64 \N \N -91 Asturias O 64 \N \N -92 Cantabria S 64 \N \N -93 Ceuta CE 64 2022-07-12 18:10:05.058286 2022-07-12 18:10:05.058286 -94 Ávila AV 64 \N \N -95 Burgos BU 64 \N \N -96 León LE 64 \N \N -97 Palencia P 64 \N \N -98 Salamanca SA 64 \N \N -99 Segovia SG 64 \N \N -100 Soria SO 64 \N \N -101 Valladolid VA 64 \N \N -102 Zamora ZA 64 \N \N -103 Albacete AB 64 \N \N -104 Ciudad Real CR 64 \N \N -105 Cuenca CU 64 \N \N -106 Guadalajara GU 64 \N \N -107 Toledo TO 64 \N \N -108 Las Palmas GC 64 \N \N -109 Santa Cruz de Tenerife TF 64 \N \N -110 Barcelona B 64 \N \N -111 Girona GI 64 \N \N -112 Lleida L 64 \N \N -113 Tarragona T 64 \N \N -114 Badajoz BA 64 \N \N -115 Cáceres CC 64 \N \N -116 A Coruña C 64 \N \N -117 Lugo LU 64 \N \N -118 Ourense OR 64 \N \N -119 Pontevedra PO 64 \N \N -120 Balears PM 64 \N \N -121 Murcia MU 64 \N \N -122 Madrid M 64 \N \N -123 Melilla ML 64 2022-07-12 18:10:05.098759 2022-07-12 18:10:05.098759 -124 Navarra / Nafarroa NA 64 \N \N -125 Vizcaya / Bizkaia BI 64 \N \N -126 Gipuzkoa SS 64 \N \N -127 Álava VI 64 \N \N -128 La Rioja LO 64 \N \N -129 Alicante A 64 \N \N -130 Castellón CS 64 \N \N -131 Valencia / València V 64 \N \N -132 Andaman and Nicobar Islands AN 99 2022-07-12 18:10:05.129774 2022-07-12 18:10:05.129774 -133 Andhra Pradesh AP 99 2022-07-12 18:10:05.143513 2022-07-12 18:10:05.143513 -134 Arunachal Pradesh AR 99 2022-07-12 18:10:05.158031 2022-07-12 18:10:05.158031 -135 Assam AS 99 2022-07-12 18:10:05.17159 2022-07-12 18:10:05.17159 -136 Bihar BR 99 2022-07-12 18:10:05.185612 2022-07-12 18:10:05.185612 -137 Chandigarh CH 99 2022-07-12 18:10:05.203263 2022-07-12 18:10:05.203263 -138 Chhattisgarh CT 99 2022-07-12 18:10:05.218259 2022-07-12 18:10:05.218259 -139 Daman and Diu DD 99 2022-07-12 18:10:05.232146 2022-07-12 18:10:05.232146 -140 Delhi DL 99 2022-07-12 18:10:05.246379 2022-07-12 18:10:05.246379 -141 Dadra and Nagar Haveli DN 99 2022-07-12 18:10:05.261562 2022-07-12 18:10:05.261562 -142 Goa GA 99 2022-07-12 18:10:05.276627 2022-07-12 18:10:05.276627 -143 Gujarat GJ 99 2022-07-12 18:10:05.290679 2022-07-12 18:10:05.290679 -144 Himachal Pradesh HP 99 2022-07-12 18:10:05.305942 2022-07-12 18:10:05.305942 -145 Haryana HR 99 2022-07-12 18:10:05.320601 2022-07-12 18:10:05.320601 -146 Jharkhand JH 99 2022-07-12 18:10:05.334009 2022-07-12 18:10:05.334009 -147 Jammu and Kashmir JK 99 2022-07-12 18:10:05.349443 2022-07-12 18:10:05.349443 -148 Karnataka KA 99 2022-07-12 18:10:05.363588 2022-07-12 18:10:05.363588 -149 Kerala KL 99 2022-07-12 18:10:05.377625 2022-07-12 18:10:05.377625 -150 Lakshadweep LD 99 2022-07-12 18:10:05.393469 2022-07-12 18:10:05.393469 -151 Maharashtra MH 99 2022-07-12 18:10:05.435441 2022-07-12 18:10:05.435441 -152 Meghalaya ML 99 2022-07-12 18:10:05.450909 2022-07-12 18:10:05.450909 -153 Manipur MN 99 2022-07-12 18:10:05.464955 2022-07-12 18:10:05.464955 -154 Madhya Pradesh MP 99 2022-07-12 18:10:05.47949 2022-07-12 18:10:05.47949 -155 Mizoram MZ 99 2022-07-12 18:10:05.493322 2022-07-12 18:10:05.493322 -156 Nagaland NL 99 2022-07-12 18:10:05.507782 2022-07-12 18:10:05.507782 -157 Odisha OR 99 2022-07-12 18:10:05.524004 2022-07-12 18:10:05.524004 -158 Punjab PB 99 2022-07-12 18:10:05.538522 2022-07-12 18:10:05.538522 -159 Puducherry PY 99 2022-07-12 18:10:05.552303 2022-07-12 18:10:05.552303 -160 Rajasthan RJ 99 2022-07-12 18:10:05.566016 2022-07-12 18:10:05.566016 -161 Sikkim SK 99 2022-07-12 18:10:05.585255 2022-07-12 18:10:05.585255 -162 Telangana TG 99 2022-07-12 18:10:05.599573 2022-07-12 18:10:05.599573 -163 Tamil Nadu TN 99 2022-07-12 18:10:05.613692 2022-07-12 18:10:05.613692 -164 Tripura TR 99 2022-07-12 18:10:05.629824 2022-07-12 18:10:05.629824 -165 Uttar Pradesh UP 99 2022-07-12 18:10:05.646442 2022-07-12 18:10:05.646442 -166 Uttarakhand UT 99 2022-07-12 18:10:05.662855 2022-07-12 18:10:05.662855 -167 West Bengal WB 99 2022-07-12 18:10:05.677754 2022-07-12 18:10:05.677754 -168 Alessandria AL 103 \N \N -169 Asti AT 103 \N \N -170 Biella BI 103 \N \N -171 Cuneo CN 103 \N \N -172 Novara NO 103 \N \N -173 Torino TO 103 \N \N -174 Verbano-Cusio-Ossola VB 103 \N \N -175 Vercelli VC 103 \N \N -176 Aosta AO 103 \N \N -177 Bergamo BG 103 \N \N -178 Brescia BS 103 \N \N -179 Como CO 103 \N \N -180 Cremona CR 103 \N \N -181 Lecco LC 103 \N \N -182 Lodi LO 103 \N \N -183 Monza e Brianza MB 103 \N \N -184 Milano MI 103 \N \N -185 Mantova MN 103 \N \N -186 Pavia PV 103 \N \N -187 Sondrio SO 103 \N \N -188 Varese VA 103 \N \N -189 Bolzano BZ 103 \N \N -190 Trento TN 103 \N \N -191 Belluno BL 103 \N \N -192 Padova PD 103 \N \N -193 Rovigo RO 103 \N \N -194 Treviso TV 103 \N \N -195 Venezia VE 103 \N \N -196 Vicenza VI 103 \N \N -197 Verona VR 103 \N \N -198 Gorizia GO 103 \N \N -199 Pordenone PN 103 \N \N -200 Trieste TS 103 \N \N -201 Udine UD 103 \N \N -202 Genova GE 103 \N \N -203 Imperia IM 103 \N \N -204 La Spezia SP 103 \N \N -205 Savona SV 103 \N \N -206 Bologna BO 103 \N \N -207 Forlì-Cesena FC 103 \N \N -208 Ferrara FE 103 \N \N -209 Modena MO 103 \N \N -210 Piacenza PC 103 \N \N -211 Parma PR 103 \N \N -212 Ravenna RA 103 \N \N -213 Reggio Emilia RE 103 \N \N -214 Rimini RN 103 \N \N -215 Arezzo AR 103 \N \N -216 Firenze FI 103 \N \N -217 Grosseto GR 103 \N \N -218 Livorno LI 103 \N \N -219 Lucca LU 103 \N \N -220 Massa-Carrara MS 103 \N \N -221 Pisa PI 103 \N \N -222 Prato PO 103 \N \N -223 Pistoia PT 103 \N \N -224 Siena SI 103 \N \N -225 Perugia PG 103 \N \N -226 Terni TR 103 \N \N -227 Ancona AN 103 \N \N -228 Ascoli Piceno AP 103 \N \N -229 Fermo FM 103 \N \N -230 Macerata MC 103 \N \N -231 Pesaro e Urbino PU 103 \N \N -232 Frosinone FR 103 \N \N -233 Latina LT 103 \N \N -234 Rieti RI 103 \N \N -235 Roma RM 103 \N \N -236 Viterbo VT 103 \N \N -237 L'Aquila AQ 103 \N \N -238 Chieti CH 103 \N \N -239 Pescara PE 103 \N \N -240 Teramo TE 103 \N \N -241 Campobasso CB 103 \N \N -242 Isernia IS 103 \N \N -243 Avellino AV 103 \N \N -244 Benevento BN 103 \N \N -245 Caserta CE 103 \N \N -246 Napoli NA 103 \N \N -247 Salerno SA 103 \N \N -248 Bari BA 103 \N \N -249 Brindisi BR 103 \N \N -250 Barletta-Andria-Trani BT 103 \N \N -251 Foggia FG 103 \N \N -252 Lecce LE 103 \N \N -253 Taranto TA 103 \N \N -254 Matera MT 103 \N \N -255 Potenza PZ 103 \N \N -256 Cosenza CS 103 \N \N -257 Catanzaro CZ 103 \N \N -258 Crotone KR 103 \N \N -259 Reggio Calabria RC 103 \N \N -260 Vibo Valentia VV 103 \N \N -261 Agrigento AG 103 \N \N -262 Caltanissetta CL 103 \N \N -263 Catania CT 103 \N \N -264 Enna EN 103 \N \N -265 Messina ME 103 \N \N -266 Palermo PA 103 \N \N -267 Ragusa RG 103 \N \N -268 Siracusa SR 103 \N \N -269 Trapani TP 103 \N \N -270 Cagliari CA 103 \N \N -271 Carbonia-Iglesias CI 103 \N \N -272 Nuoro NU 103 \N \N -273 Ogliastra OG 103 \N \N -274 Oristano OR 103 \N \N -275 Olbia-Tempio OT 103 \N \N -276 Sassari SS 103 \N \N -277 Medio Campidano VS 103 \N \N -278 Aguascalientes AGU 150 2022-07-12 18:10:05.775277 2022-07-12 18:10:05.775277 -279 Baja California BCN 150 2022-07-12 18:10:05.793828 2022-07-12 18:10:05.793828 -280 Baja California Sur BCS 150 2022-07-12 18:10:05.810978 2022-07-12 18:10:05.810978 -281 Campeche CAM 150 2022-07-12 18:10:05.827399 2022-07-12 18:10:05.827399 -282 Chihuahua CHH 150 2022-07-12 18:10:05.841179 2022-07-12 18:10:05.841179 -283 Chiapas CHP 150 2022-07-12 18:10:05.85536 2022-07-12 18:10:05.85536 -284 Ciudad de México CMX 150 2022-07-12 18:10:05.87104 2022-07-12 18:10:05.87104 -285 Coahuila de Zaragoza COA 150 2022-07-12 18:10:05.885181 2022-07-12 18:10:05.885181 -286 Colima COL 150 2022-07-12 18:10:05.898432 2022-07-12 18:10:05.898432 -287 Durango DUR 150 2022-07-12 18:10:05.919403 2022-07-12 18:10:05.919403 -288 Guerrero GRO 150 2022-07-12 18:10:05.990347 2022-07-12 18:10:05.990347 -289 Guanajuato GUA 150 2022-07-12 18:10:06.064438 2022-07-12 18:10:06.064438 -290 Hidalgo HID 150 2022-07-12 18:10:06.081417 2022-07-12 18:10:06.081417 -291 Jalisco JAL 150 2022-07-12 18:10:06.095447 2022-07-12 18:10:06.095447 -292 México MEX 150 2022-07-12 18:10:06.108846 2022-07-12 18:10:06.108846 -293 Michoacán de Ocampo MIC 150 2022-07-12 18:10:06.122676 2022-07-12 18:10:06.122676 -294 Morelos MOR 150 2022-07-12 18:10:06.136426 2022-07-12 18:10:06.136426 -295 Nayarit NAY 150 2022-07-12 18:10:06.150191 2022-07-12 18:10:06.150191 -296 Nuevo León NLE 150 2022-07-12 18:10:06.163944 2022-07-12 18:10:06.163944 -297 Oaxaca OAX 150 2022-07-12 18:10:06.177165 2022-07-12 18:10:06.177165 -298 Puebla PUE 150 2022-07-12 18:10:06.190432 2022-07-12 18:10:06.190432 -299 Querétaro QUE 150 2022-07-12 18:10:06.205061 2022-07-12 18:10:06.205061 -300 Quintana Roo ROO 150 2022-07-12 18:10:06.218516 2022-07-12 18:10:06.218516 -301 Sinaloa SIN 150 2022-07-12 18:10:06.232398 2022-07-12 18:10:06.232398 -302 San Luis Potosí SLP 150 2022-07-12 18:10:06.246599 2022-07-12 18:10:06.246599 -303 Sonora SON 150 2022-07-12 18:10:06.261213 2022-07-12 18:10:06.261213 -304 Tabasco TAB 150 2022-07-12 18:10:06.275176 2022-07-12 18:10:06.275176 -305 Tamaulipas TAM 150 2022-07-12 18:10:06.28863 2022-07-12 18:10:06.28863 -306 Tlaxcala TLA 150 2022-07-12 18:10:06.303553 2022-07-12 18:10:06.303553 -307 Veracruz de Ignacio de la Llave VER 150 2022-07-12 18:10:06.318206 2022-07-12 18:10:06.318206 -308 Yucatán YUC 150 2022-07-12 18:10:06.333143 2022-07-12 18:10:06.333143 -309 Zacatecas ZAC 150 2022-07-12 18:10:06.34679 2022-07-12 18:10:06.34679 -310 Johor 01 151 2022-07-12 18:10:06.367272 2022-07-12 18:10:06.367272 -311 Kedah 02 151 2022-07-12 18:10:06.380866 2022-07-12 18:10:06.380866 -312 Kelantan 03 151 2022-07-12 18:10:06.39535 2022-07-12 18:10:06.39535 -313 Melaka 04 151 2022-07-12 18:10:06.408702 2022-07-12 18:10:06.408702 -314 Negeri Sembilan 05 151 2022-07-12 18:10:06.422618 2022-07-12 18:10:06.422618 -315 Pahang 06 151 2022-07-12 18:10:06.436106 2022-07-12 18:10:06.436106 -316 Pulau Pinang 07 151 2022-07-12 18:10:06.449697 2022-07-12 18:10:06.449697 -317 Perak 08 151 2022-07-12 18:10:06.46611 2022-07-12 18:10:06.46611 -318 Perlis 09 151 2022-07-12 18:10:06.481639 2022-07-12 18:10:06.481639 -319 Selangor 10 151 2022-07-12 18:10:06.495321 2022-07-12 18:10:06.495321 -320 Terengganu 11 151 2022-07-12 18:10:06.509103 2022-07-12 18:10:06.509103 -321 Sabah 12 151 2022-07-12 18:10:06.52285 2022-07-12 18:10:06.52285 -322 Sarawak 13 151 2022-07-12 18:10:06.536318 2022-07-12 18:10:06.536318 -323 Wilayah Persekutuan Kuala Lumpur 14 151 2022-07-12 18:10:06.551022 2022-07-12 18:10:06.551022 -324 Wilayah Persekutuan Labuan 15 151 2022-07-12 18:10:06.569528 2022-07-12 18:10:06.569528 -325 Wilayah Persekutuan Putrajaya 16 151 2022-07-12 18:10:06.583933 2022-07-12 18:10:06.583933 -326 Chatham Islands Territory CIT 164 2022-07-12 18:10:06.604669 2022-07-12 18:10:06.604669 -327 Auckland AUK 164 2022-07-12 18:10:06.619074 2022-07-12 18:10:06.619074 -328 Bay of Plenty BOP 164 2022-07-12 18:10:06.633085 2022-07-12 18:10:06.633085 -329 Canterbury CAN 164 2022-07-12 18:10:06.646906 2022-07-12 18:10:06.646906 -330 Gisborne GIS 164 2022-07-12 18:10:06.660677 2022-07-12 18:10:06.660677 -331 Hawke's Bay HKB 164 2022-07-12 18:10:06.674674 2022-07-12 18:10:06.674674 -332 Manawatu-Wanganui MWT 164 2022-07-12 18:10:06.6888 2022-07-12 18:10:06.6888 -333 Marlborough MBH 164 2022-07-12 18:10:06.702509 2022-07-12 18:10:06.702509 -334 Nelson NSN 164 2022-07-12 18:10:06.716712 2022-07-12 18:10:06.716712 -335 Northland NTL 164 2022-07-12 18:10:06.7306 2022-07-12 18:10:06.7306 -336 Otago OTA 164 2022-07-12 18:10:06.744946 2022-07-12 18:10:06.744946 -337 Southland STL 164 2022-07-12 18:10:06.759457 2022-07-12 18:10:06.759457 -338 Taranaki TKI 164 2022-07-12 18:10:06.773515 2022-07-12 18:10:06.773515 -339 Tasman TAS 164 2022-07-12 18:10:06.787532 2022-07-12 18:10:06.787532 -340 Wellington WGN 164 2022-07-12 18:10:06.802228 2022-07-12 18:10:06.802228 -341 Waikato WKO 164 2022-07-12 18:10:06.818391 2022-07-12 18:10:06.818391 -342 West Coast WTC 164 2022-07-12 18:10:06.833076 2022-07-12 18:10:06.833076 -343 Aveiro 01 177 2022-07-12 18:10:06.898811 2022-07-12 18:10:06.898811 -344 Beja 02 177 2022-07-12 18:10:06.977882 2022-07-12 18:10:06.977882 -345 Braga 03 177 2022-07-12 18:10:06.992981 2022-07-12 18:10:06.992981 -346 Bragança 04 177 2022-07-12 18:10:07.00729 2022-07-12 18:10:07.00729 -347 Castelo Branco 05 177 2022-07-12 18:10:07.021685 2022-07-12 18:10:07.021685 -348 Coimbra 06 177 2022-07-12 18:10:07.036322 2022-07-12 18:10:07.036322 -349 Évora 07 177 2022-07-12 18:10:07.050368 2022-07-12 18:10:07.050368 -350 Faro 08 177 2022-07-12 18:10:07.064855 2022-07-12 18:10:07.064855 -351 Guarda 09 177 2022-07-12 18:10:07.080037 2022-07-12 18:10:07.080037 -352 Leiria 10 177 2022-07-12 18:10:07.094777 2022-07-12 18:10:07.094777 -353 Lisboa 11 177 2022-07-12 18:10:07.109113 2022-07-12 18:10:07.109113 -354 Portalegre 12 177 2022-07-12 18:10:07.126296 2022-07-12 18:10:07.126296 -355 Porto 13 177 2022-07-12 18:10:07.142265 2022-07-12 18:10:07.142265 -356 Santarém 14 177 2022-07-12 18:10:07.162551 2022-07-12 18:10:07.162551 -357 Setúbal 15 177 2022-07-12 18:10:07.180853 2022-07-12 18:10:07.180853 -358 Viana do Castelo 16 177 2022-07-12 18:10:07.196399 2022-07-12 18:10:07.196399 -359 Vila Real 17 177 2022-07-12 18:10:07.210847 2022-07-12 18:10:07.210847 -360 Viseu 18 177 2022-07-12 18:10:07.225331 2022-07-12 18:10:07.225331 -361 Região Autónoma dos Açores 20 177 2022-07-12 18:10:07.23937 2022-07-12 18:10:07.23937 -362 Região Autónoma da Madeira 30 177 2022-07-12 18:10:07.253599 2022-07-12 18:10:07.253599 -363 Alba AB 182 2022-07-12 18:10:07.277944 2022-07-12 18:10:07.277944 -364 Argeș AG 182 2022-07-12 18:10:07.292157 2022-07-12 18:10:07.292157 -365 Arad AR 182 2022-07-12 18:10:07.306174 2022-07-12 18:10:07.306174 -366 București B 182 2022-07-12 18:10:07.322188 2022-07-12 18:10:07.322188 -367 Bacău BC 182 2022-07-12 18:10:07.339028 2022-07-12 18:10:07.339028 -368 Bihor BH 182 2022-07-12 18:10:07.35405 2022-07-12 18:10:07.35405 -369 Bistrița-Năsăud BN 182 2022-07-12 18:10:07.369176 2022-07-12 18:10:07.369176 -370 Brăila BR 182 2022-07-12 18:10:07.383138 2022-07-12 18:10:07.383138 -371 Botoșani BT 182 2022-07-12 18:10:07.39775 2022-07-12 18:10:07.39775 -372 Brașov BV 182 2022-07-12 18:10:07.412716 2022-07-12 18:10:07.412716 -373 Buzău BZ 182 2022-07-12 18:10:07.427272 2022-07-12 18:10:07.427272 -374 Cluj CJ 182 2022-07-12 18:10:07.44375 2022-07-12 18:10:07.44375 -375 Călărași CL 182 2022-07-12 18:10:07.457599 2022-07-12 18:10:07.457599 -376 Caraș-Severin CS 182 2022-07-12 18:10:07.473173 2022-07-12 18:10:07.473173 -377 Constanța CT 182 2022-07-12 18:10:07.487762 2022-07-12 18:10:07.487762 -378 Covasna CV 182 2022-07-12 18:10:07.502629 2022-07-12 18:10:07.502629 -379 Dâmbovița DB 182 2022-07-12 18:10:07.517913 2022-07-12 18:10:07.517913 -380 Dolj DJ 182 2022-07-12 18:10:07.533878 2022-07-12 18:10:07.533878 -381 Gorj GJ 182 2022-07-12 18:10:07.549893 2022-07-12 18:10:07.549893 -382 Galați GL 182 2022-07-12 18:10:07.5654 2022-07-12 18:10:07.5654 -383 Giurgiu GR 182 2022-07-12 18:10:07.57956 2022-07-12 18:10:07.57956 -384 Hunedoara HD 182 2022-07-12 18:10:07.593777 2022-07-12 18:10:07.593777 -385 Harghita HR 182 2022-07-12 18:10:07.607812 2022-07-12 18:10:07.607812 -386 Ilfov IF 182 2022-07-12 18:10:07.622286 2022-07-12 18:10:07.622286 -387 Ialomița IL 182 2022-07-12 18:10:07.636895 2022-07-12 18:10:07.636895 -388 Iași IS 182 2022-07-12 18:10:07.656272 2022-07-12 18:10:07.656272 -389 Mehedinți MH 182 2022-07-12 18:10:07.67252 2022-07-12 18:10:07.67252 -390 Maramureș MM 182 2022-07-12 18:10:07.687468 2022-07-12 18:10:07.687468 -391 Mureș MS 182 2022-07-12 18:10:07.701554 2022-07-12 18:10:07.701554 -392 Neamț NT 182 2022-07-12 18:10:07.715889 2022-07-12 18:10:07.715889 -393 Olt OT 182 2022-07-12 18:10:07.754266 2022-07-12 18:10:07.754266 -394 Prahova PH 182 2022-07-12 18:10:07.776318 2022-07-12 18:10:07.776318 -395 Sibiu SB 182 2022-07-12 18:10:07.791669 2022-07-12 18:10:07.791669 -396 Sălaj SJ 182 2022-07-12 18:10:07.807378 2022-07-12 18:10:07.807378 -397 Satu Mare SM 182 2022-07-12 18:10:07.82202 2022-07-12 18:10:07.82202 -398 Suceava SV 182 2022-07-12 18:10:07.836996 2022-07-12 18:10:07.836996 -399 Tulcea TL 182 2022-07-12 18:10:07.851595 2022-07-12 18:10:07.851595 -400 Timiș TM 182 2022-07-12 18:10:07.86724 2022-07-12 18:10:07.86724 -401 Teleorman TR 182 2022-07-12 18:10:07.881656 2022-07-12 18:10:07.881656 -402 Vâlcea VL 182 2022-07-12 18:10:07.89627 2022-07-12 18:10:07.89627 -403 Vrancea VN 182 2022-07-12 18:10:07.909675 2022-07-12 18:10:07.909675 -404 Vaslui VS 182 2022-07-12 18:10:07.924387 2022-07-12 18:10:07.924387 -405 Krung Thep Maha Nakhon Bangkok 10 210 2022-07-12 18:10:07.947162 2022-07-12 18:10:07.947162 -406 Samut Prakan 11 210 2022-07-12 18:10:07.962069 2022-07-12 18:10:07.962069 -407 Nonthaburi 12 210 2022-07-12 18:10:07.977378 2022-07-12 18:10:07.977378 -408 Pathum Thani 13 210 2022-07-12 18:10:07.992449 2022-07-12 18:10:07.992449 -409 Phra Nakhon Si Ayutthaya 14 210 2022-07-12 18:10:08.006902 2022-07-12 18:10:08.006902 -410 Ang Thong 15 210 2022-07-12 18:10:08.021257 2022-07-12 18:10:08.021257 -411 Lop Buri 16 210 2022-07-12 18:10:08.035913 2022-07-12 18:10:08.035913 -412 Sing Buri 17 210 2022-07-12 18:10:08.051449 2022-07-12 18:10:08.051449 -413 Chai Nat 18 210 2022-07-12 18:10:08.06635 2022-07-12 18:10:08.06635 -414 Saraburi 19 210 2022-07-12 18:10:08.080565 2022-07-12 18:10:08.080565 -415 Chon Buri 20 210 2022-07-12 18:10:08.094596 2022-07-12 18:10:08.094596 -416 Rayong 21 210 2022-07-12 18:10:08.109141 2022-07-12 18:10:08.109141 -417 Chanthaburi 22 210 2022-07-12 18:10:08.12394 2022-07-12 18:10:08.12394 -418 Trat 23 210 2022-07-12 18:10:08.139066 2022-07-12 18:10:08.139066 -419 Chachoengsao 24 210 2022-07-12 18:10:08.154058 2022-07-12 18:10:08.154058 -420 Prachin Buri 25 210 2022-07-12 18:10:08.172927 2022-07-12 18:10:08.172927 -421 Nakhon Nayok 26 210 2022-07-12 18:10:08.188729 2022-07-12 18:10:08.188729 -422 Sa Kaeo 27 210 2022-07-12 18:10:08.203404 2022-07-12 18:10:08.203404 -423 Nakhon Ratchasima 30 210 2022-07-12 18:10:08.217868 2022-07-12 18:10:08.217868 -424 Buri Ram 31 210 2022-07-12 18:10:08.232519 2022-07-12 18:10:08.232519 -425 Surin 32 210 2022-07-12 18:10:08.247549 2022-07-12 18:10:08.247549 -426 Si Sa Ket 33 210 2022-07-12 18:10:08.261721 2022-07-12 18:10:08.261721 -427 Ubon Ratchathani 34 210 2022-07-12 18:10:08.276608 2022-07-12 18:10:08.276608 -428 Yasothon 35 210 2022-07-12 18:10:08.291538 2022-07-12 18:10:08.291538 -429 Chaiyaphum 36 210 2022-07-12 18:10:08.306034 2022-07-12 18:10:08.306034 -430 Amnat Charoen 37 210 2022-07-12 18:10:08.320345 2022-07-12 18:10:08.320345 -431 Nong Bua Lam Phu 39 210 2022-07-12 18:10:08.33657 2022-07-12 18:10:08.33657 -432 Khon Kaen 40 210 2022-07-12 18:10:08.351916 2022-07-12 18:10:08.351916 -433 Udon Thani 41 210 2022-07-12 18:10:08.367785 2022-07-12 18:10:08.367785 -434 Loei 42 210 2022-07-12 18:10:08.382571 2022-07-12 18:10:08.382571 -435 Nong Khai 43 210 2022-07-12 18:10:08.397089 2022-07-12 18:10:08.397089 -436 Maha Sarakham 44 210 2022-07-12 18:10:08.410631 2022-07-12 18:10:08.410631 -437 Roi Et 45 210 2022-07-12 18:10:08.424148 2022-07-12 18:10:08.424148 -438 Kalasin 46 210 2022-07-12 18:10:08.438864 2022-07-12 18:10:08.438864 -439 Sakon Nakhon 47 210 2022-07-12 18:10:08.453805 2022-07-12 18:10:08.453805 -440 Nakhon Phanom 48 210 2022-07-12 18:10:08.468596 2022-07-12 18:10:08.468596 -441 Mukdahan 49 210 2022-07-12 18:10:08.484423 2022-07-12 18:10:08.484423 -442 Chiang Mai 50 210 2022-07-12 18:10:08.498929 2022-07-12 18:10:08.498929 -443 Lamphun 51 210 2022-07-12 18:10:08.513223 2022-07-12 18:10:08.513223 -444 Lampang 52 210 2022-07-12 18:10:08.527944 2022-07-12 18:10:08.527944 -445 Uttaradit 53 210 2022-07-12 18:10:08.543373 2022-07-12 18:10:08.543373 -446 Phrae 54 210 2022-07-12 18:10:08.558362 2022-07-12 18:10:08.558362 -447 Nan 55 210 2022-07-12 18:10:08.573518 2022-07-12 18:10:08.573518 -448 Phayao 56 210 2022-07-12 18:10:08.587945 2022-07-12 18:10:08.587945 -449 Chiang Rai 57 210 2022-07-12 18:10:08.602146 2022-07-12 18:10:08.602146 -450 Mae Hong Son 58 210 2022-07-12 18:10:08.616701 2022-07-12 18:10:08.616701 -451 Nakhon Sawan 60 210 2022-07-12 18:10:08.630886 2022-07-12 18:10:08.630886 -452 Uthai Thani 61 210 2022-07-12 18:10:08.645548 2022-07-12 18:10:08.645548 -453 Kamphaeng Phet 62 210 2022-07-12 18:10:08.664898 2022-07-12 18:10:08.664898 -454 Tak 63 210 2022-07-12 18:10:08.704983 2022-07-12 18:10:08.704983 -455 Sukhothai 64 210 2022-07-12 18:10:08.72299 2022-07-12 18:10:08.72299 -456 Phitsanulok 65 210 2022-07-12 18:10:08.738124 2022-07-12 18:10:08.738124 -457 Phichit 66 210 2022-07-12 18:10:08.753163 2022-07-12 18:10:08.753163 -458 Phetchabun 67 210 2022-07-12 18:10:08.793689 2022-07-12 18:10:08.793689 -459 Ratchaburi 70 210 2022-07-12 18:10:08.811155 2022-07-12 18:10:08.811155 -460 Kanchanaburi 71 210 2022-07-12 18:10:08.826186 2022-07-12 18:10:08.826186 -461 Suphan Buri 72 210 2022-07-12 18:10:08.840721 2022-07-12 18:10:08.840721 -462 Nakhon Pathom 73 210 2022-07-12 18:10:08.855385 2022-07-12 18:10:08.855385 -463 Samut Sakhon 74 210 2022-07-12 18:10:08.870701 2022-07-12 18:10:08.870701 -464 Samut Songkhram 75 210 2022-07-12 18:10:08.885202 2022-07-12 18:10:08.885202 -465 Phetchaburi 76 210 2022-07-12 18:10:08.899504 2022-07-12 18:10:08.899504 -466 Prachuap Khiri Khan 77 210 2022-07-12 18:10:08.914396 2022-07-12 18:10:08.914396 -467 Nakhon Si Thammarat 80 210 2022-07-12 18:10:08.929413 2022-07-12 18:10:08.929413 -468 Krabi 81 210 2022-07-12 18:10:08.943739 2022-07-12 18:10:08.943739 -469 Phangnga 82 210 2022-07-12 18:10:08.957316 2022-07-12 18:10:08.957316 -470 Phuket 83 210 2022-07-12 18:10:08.973162 2022-07-12 18:10:08.973162 -471 Surat Thani 84 210 2022-07-12 18:10:08.988864 2022-07-12 18:10:08.988864 -472 Ranong 85 210 2022-07-12 18:10:09.002909 2022-07-12 18:10:09.002909 -473 Chumphon 86 210 2022-07-12 18:10:09.018925 2022-07-12 18:10:09.018925 -474 Songkhla 90 210 2022-07-12 18:10:09.034273 2022-07-12 18:10:09.034273 -475 Satun 91 210 2022-07-12 18:10:09.049538 2022-07-12 18:10:09.049538 -476 Trang 92 210 2022-07-12 18:10:09.064582 2022-07-12 18:10:09.064582 -477 Phatthalung 93 210 2022-07-12 18:10:09.079405 2022-07-12 18:10:09.079405 -478 Pattani 94 210 2022-07-12 18:10:09.0939 2022-07-12 18:10:09.0939 -479 Yala 95 210 2022-07-12 18:10:09.108865 2022-07-12 18:10:09.108865 -480 Narathiwat 96 210 2022-07-12 18:10:09.123847 2022-07-12 18:10:09.123847 -481 Phatthaya S 210 2022-07-12 18:10:09.140443 2022-07-12 18:10:09.140443 -482 Alaska AK 224 2022-07-12 18:10:09.165609 2022-07-12 18:10:09.165609 -483 Alabama AL 224 2022-07-12 18:10:09.184919 2022-07-12 18:10:09.184919 -484 Arkansas AR 224 2022-07-12 18:10:09.200547 2022-07-12 18:10:09.200547 -485 Arizona AZ 224 2022-07-12 18:10:09.215196 2022-07-12 18:10:09.215196 -486 California CA 224 2022-07-12 18:10:09.229755 2022-07-12 18:10:09.229755 -487 Colorado CO 224 2022-07-12 18:10:09.244909 2022-07-12 18:10:09.244909 -488 Connecticut CT 224 2022-07-12 18:10:09.259566 2022-07-12 18:10:09.259566 -489 District of Columbia DC 224 2022-07-12 18:10:09.274316 2022-07-12 18:10:09.274316 -490 Delaware DE 224 2022-07-12 18:10:09.290813 2022-07-12 18:10:09.290813 -491 Florida FL 224 2022-07-12 18:10:09.305614 2022-07-12 18:10:09.305614 -492 Georgia GA 224 2022-07-12 18:10:09.319583 2022-07-12 18:10:09.319583 -493 Hawaii HI 224 2022-07-12 18:10:09.334949 2022-07-12 18:10:09.334949 -494 Iowa IA 224 2022-07-12 18:10:09.351446 2022-07-12 18:10:09.351446 -495 Idaho ID 224 2022-07-12 18:10:09.367303 2022-07-12 18:10:09.367303 -496 Illinois IL 224 2022-07-12 18:10:09.383765 2022-07-12 18:10:09.383765 -497 Indiana IN 224 2022-07-12 18:10:09.397745 2022-07-12 18:10:09.397745 -498 Kansas KS 224 2022-07-12 18:10:09.411381 2022-07-12 18:10:09.411381 -499 Kentucky KY 224 2022-07-12 18:10:09.42602 2022-07-12 18:10:09.42602 -500 Louisiana LA 224 2022-07-12 18:10:09.441 2022-07-12 18:10:09.441 -501 Massachusetts MA 224 2022-07-12 18:10:09.458652 2022-07-12 18:10:09.458652 -502 Maryland MD 224 2022-07-12 18:10:09.474617 2022-07-12 18:10:09.474617 -503 Maine ME 224 2022-07-12 18:10:09.489904 2022-07-12 18:10:09.489904 -504 Michigan MI 224 2022-07-12 18:10:09.505136 2022-07-12 18:10:09.505136 -505 Minnesota MN 224 2022-07-12 18:10:09.520337 2022-07-12 18:10:09.520337 -506 Missouri MO 224 2022-07-12 18:10:09.535348 2022-07-12 18:10:09.535348 -507 Mississippi MS 224 2022-07-12 18:10:09.550675 2022-07-12 18:10:09.550675 -508 Montana MT 224 2022-07-12 18:10:09.565884 2022-07-12 18:10:09.565884 -509 North Carolina NC 224 2022-07-12 18:10:09.580547 2022-07-12 18:10:09.580547 -510 North Dakota ND 224 2022-07-12 18:10:09.595176 2022-07-12 18:10:09.595176 -511 Nebraska NE 224 2022-07-12 18:10:09.609534 2022-07-12 18:10:09.609534 -512 New Hampshire NH 224 2022-07-12 18:10:09.624308 2022-07-12 18:10:09.624308 -513 New Jersey NJ 224 2022-07-12 18:10:09.639837 2022-07-12 18:10:09.639837 -514 New Mexico NM 224 2022-07-12 18:10:09.65476 2022-07-12 18:10:09.65476 -515 Nevada NV 224 2022-07-12 18:10:09.675048 2022-07-12 18:10:09.675048 -516 New York NY 224 2022-07-12 18:10:09.690932 2022-07-12 18:10:09.690932 -517 Ohio OH 224 2022-07-12 18:10:09.706785 2022-07-12 18:10:09.706785 -518 Oklahoma OK 224 2022-07-12 18:10:09.721983 2022-07-12 18:10:09.721983 -519 Oregon OR 224 2022-07-12 18:10:09.737499 2022-07-12 18:10:09.737499 -520 Pennsylvania PA 224 2022-07-12 18:10:09.752398 2022-07-12 18:10:09.752398 -521 Rhode Island RI 224 2022-07-12 18:10:09.76725 2022-07-12 18:10:09.76725 -522 South Carolina SC 224 2022-07-12 18:10:09.782617 2022-07-12 18:10:09.782617 -523 South Dakota SD 224 2022-07-12 18:10:09.799005 2022-07-12 18:10:09.799005 -524 Tennessee TN 224 2022-07-12 18:10:09.814399 2022-07-12 18:10:09.814399 -525 Texas TX 224 2022-07-12 18:10:09.829366 2022-07-12 18:10:09.829366 -526 Utah UT 224 2022-07-12 18:10:09.84456 2022-07-12 18:10:09.84456 -527 Virginia VA 224 2022-07-12 18:10:09.859161 2022-07-12 18:10:09.859161 -528 Vermont VT 224 2022-07-12 18:10:09.874098 2022-07-12 18:10:09.874098 -529 Washington WA 224 2022-07-12 18:10:09.889942 2022-07-12 18:10:09.889942 -530 Wisconsin WI 224 2022-07-12 18:10:09.904896 2022-07-12 18:10:09.904896 -531 West Virginia WV 224 2022-07-12 18:10:09.919346 2022-07-12 18:10:09.919346 -532 Wyoming WY 224 2022-07-12 18:10:09.934197 2022-07-12 18:10:09.934197 -533 Armed Forces Americas (except Canada) AA 224 2022-07-12 18:10:09.949376 2022-07-12 18:10:09.949376 -534 Armed Forces Africa, Canada, Europe, Middle East AE 224 2022-07-12 18:10:09.969382 2022-07-12 18:10:09.969382 -535 Armed Forces Pacific AP 224 2022-07-12 18:10:09.986894 2022-07-12 18:10:09.986894 -536 Eastern Cape EC 238 2022-07-12 18:10:10.012803 2022-07-12 18:10:10.012803 -537 Free State FS 238 2022-07-12 18:10:10.028703 2022-07-12 18:10:10.028703 -538 Gauteng GT 238 2022-07-12 18:10:10.044343 2022-07-12 18:10:10.044343 -539 Limpopo LP 238 2022-07-12 18:10:10.059304 2022-07-12 18:10:10.059304 -540 Mpumalanga MP 238 2022-07-12 18:10:10.074378 2022-07-12 18:10:10.074378 -541 Northern Cape NC 238 2022-07-12 18:10:10.088888 2022-07-12 18:10:10.088888 -542 Kwazulu-Natal NL 238 2022-07-12 18:10:10.103215 2022-07-12 18:10:10.103215 -543 North-West (South Africa) NW 238 2022-07-12 18:10:10.117966 2022-07-12 18:10:10.117966 -544 Western Cape WC 238 2022-07-12 18:10:10.139932 2022-07-12 18:10:10.139932 -545 'Ajmān AJ 2 2022-07-12 18:10:10.159187 2022-07-12 18:10:10.159187 -546 Abū Ȥaby [Abu Dhabi] AZ 2 2022-07-12 18:10:10.175334 2022-07-12 18:10:10.175334 -547 Dubayy DU 2 2022-07-12 18:10:10.190722 2022-07-12 18:10:10.190722 -548 Al Fujayrah FU 2 2022-07-12 18:10:10.205592 2022-07-12 18:10:10.205592 -549 Ra’s al Khaymah RK 2 2022-07-12 18:10:10.219706 2022-07-12 18:10:10.219706 -550 Ash Shāriqah SH 2 2022-07-12 18:10:10.234974 2022-07-12 18:10:10.234974 -551 Umm al Qaywayn UQ 2 2022-07-12 18:10:10.249657 2022-07-12 18:10:10.249657 -552 Galway G 96 \N \N -553 Leitrim LM 96 \N \N -554 Mayo MO 96 \N \N -555 Roscommon RN 96 \N \N -556 Sligo SO 96 \N \N -557 Carlow CW 96 \N \N -558 Dublin D 96 \N \N -559 Kildare KE 96 \N \N -560 Kilkenny KK 96 \N \N -561 Longford LD 96 \N \N -562 Louth LH 96 \N \N -563 Laois LS 96 \N \N -564 Meath MH 96 \N \N -565 Offaly OY 96 \N \N -566 Westmeath WH 96 \N \N -567 Wicklow WW 96 \N \N -568 Wexford WX 96 \N \N -569 Clare CE 96 \N \N -570 Cork CO 96 \N \N -571 Kerry KY 96 \N \N -572 Limerick LK 96 \N \N -573 Tipperary TA 96 \N \N -574 Waterford WD 96 \N \N -575 Cavan CN 96 \N \N -576 Donegal DL 96 \N \N -577 Monaghan MN 96 \N \N -\. - - --- --- Data for Name: spree_stock_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_stock_items (id, stock_location_id, variant_id, count_on_hand, created_at, updated_at, backorderable, deleted_at) FROM stdin; -46 1 46 0 2022-07-12 18:15:32.454253 2022-09-02 16:27:24.019961 f 2022-09-02 16:27:24.019947 -11 1 11 0 2022-07-12 18:15:32.453139 2022-09-02 16:27:31.570566 f 2022-09-02 16:27:31.570553 -78 1 78 0 2022-07-12 18:15:32.455286 2022-09-02 16:27:34.737893 f 2022-09-02 16:27:34.737879 -67 1 67 0 2022-07-12 18:15:32.454951 2022-09-02 16:27:35.441065 f 2022-09-02 16:27:35.441052 -43 1 43 0 2022-07-12 18:15:32.454162 2022-09-02 16:27:36.619025 f 2022-09-02 16:27:36.619013 -83 1 83 0 2022-07-12 18:15:32.455436 2022-09-02 16:27:38.105099 f 2022-09-02 16:27:38.105086 -58 1 58 0 2022-07-12 18:15:32.454618 2022-09-02 16:27:41.39703 f 2022-09-02 16:27:41.397018 -5 1 5 0 2022-07-12 18:15:32.452852 2022-09-02 16:27:42.675794 f 2022-09-02 16:27:42.675778 -4 1 4 0 2022-07-12 18:15:32.452822 2022-09-02 16:27:43.251754 f 2022-09-02 16:27:43.251741 -15 1 15 0 2022-07-12 18:15:32.45326 2022-09-02 16:27:45.464357 f 2022-09-02 16:27:45.464345 -28 1 28 0 2022-07-12 18:15:32.453654 2022-09-02 16:27:46.073716 f 2022-09-02 16:27:46.073704 -21 1 21 0 2022-07-12 18:15:32.453442 2022-09-02 16:27:46.653112 f 2022-09-02 16:27:46.653101 -59 1 59 0 2022-07-12 18:15:32.454648 2022-09-02 16:27:48.058503 f 2022-09-02 16:27:48.058491 -97 1 97 0 2022-07-12 18:15:32.45625 2022-09-02 16:27:49.450415 f 2022-09-02 16:27:49.450378 -57 1 57 0 2022-07-12 18:15:32.454588 2022-09-02 16:27:53.420272 f 2022-09-02 16:27:53.420258 -42 1 42 0 2022-07-12 18:15:32.454132 2022-09-02 16:27:53.938835 f 2022-09-02 16:27:53.93882 -90 1 90 0 2022-07-12 18:15:32.456044 2022-09-02 16:28:00.453606 f 2022-09-02 16:28:00.453592 -26 1 26 0 2022-07-12 18:15:32.453595 2022-09-02 16:28:01.088267 f 2022-09-02 16:28:01.088253 -32 1 32 0 2022-07-12 18:15:32.453775 2022-09-02 16:28:01.703674 f 2022-09-02 16:28:01.703661 -94 1 94 0 2022-07-12 18:15:32.456162 2022-09-02 16:28:02.429425 f 2022-09-02 16:28:02.429412 -34 1 34 0 2022-07-12 18:15:32.453834 2022-09-02 16:28:03.011075 f 2022-09-02 16:28:03.01106 -60 1 60 0 2022-07-12 18:15:32.454677 2022-09-02 16:28:03.695084 f 2022-09-02 16:28:03.69507 -68 1 68 0 2022-07-12 18:15:32.454982 2022-09-02 16:28:04.928122 f 2022-09-02 16:28:04.928103 -47 1 47 0 2022-07-12 18:15:32.454283 2022-09-02 16:28:06.168054 f 2022-09-02 16:28:06.168042 -55 1 55 0 2022-07-12 18:15:32.454527 2022-09-02 16:28:06.864281 f 2022-09-02 16:28:06.864267 -18 1 18 0 2022-07-12 18:15:32.453351 2022-09-02 16:28:07.402119 f 2022-09-02 16:28:07.402107 -98 1 98 0 2022-07-12 18:15:32.45628 2022-09-02 16:28:19.235717 f 2022-09-02 16:28:19.235705 -86 1 86 0 2022-07-12 18:15:32.455526 2022-09-02 16:28:19.868778 f 2022-09-02 16:28:19.868767 -82 1 82 0 2022-07-12 18:15:32.455406 2022-09-02 16:28:20.459351 f 2022-09-02 16:28:20.459338 -91 1 91 0 2022-07-12 18:15:32.456074 2022-09-02 16:28:28.380636 f 2022-09-02 16:28:28.380624 -37 1 37 0 2022-07-12 18:15:32.453983 2022-09-02 16:28:29.203297 f 2022-09-02 16:28:29.203277 -99 1 99 0 2022-07-12 18:15:32.456309 2022-09-02 16:28:31.200246 f 2022-09-02 16:28:31.200235 -72 1 72 0 2022-07-12 18:15:32.455103 2022-09-02 16:28:32.304546 f 2022-09-02 16:28:32.304534 -45 1 45 0 2022-07-12 18:15:32.454223 2022-09-02 16:28:32.926192 f 2022-09-02 16:28:32.926178 -7 1 7 0 2022-07-12 18:15:32.453017 2022-09-02 16:28:35.411778 f 2022-09-02 16:28:35.411765 -16 1 16 0 2022-07-12 18:15:32.45329 2022-09-02 16:28:36.092967 f 2022-09-02 16:28:36.092953 -61 1 61 0 2022-07-12 18:15:32.454707 2022-09-02 16:28:36.779542 f 2022-09-02 16:28:36.77953 -77 1 77 0 2022-07-12 18:15:32.455255 2022-09-02 16:28:37.981238 f 2022-09-02 16:28:37.981226 -53 1 53 0 2022-07-12 18:15:32.454466 2022-09-02 16:28:38.594511 f 2022-09-02 16:28:38.59449 -6 1 6 0 2022-07-12 18:15:32.452989 2022-09-02 16:28:39.289226 f 2022-09-02 16:28:39.289214 -69 1 69 0 2022-07-12 18:15:32.455012 2022-09-02 16:28:40.011749 f 2022-09-02 16:28:40.011736 -52 1 52 0 2022-07-12 18:15:32.454436 2022-09-02 16:28:42.428028 f 2022-09-02 16:28:42.428015 -62 1 62 0 2022-07-12 18:15:32.454738 2022-09-02 16:28:44.308146 f 2022-09-02 16:28:44.308133 -79 1 79 0 2022-07-12 18:15:32.455316 2022-09-02 16:28:45.028216 f 2022-09-02 16:28:45.028204 -39 1 39 0 2022-07-12 18:15:32.454043 2022-09-02 14:33:31.99561 f 2022-09-02 14:33:31.995591 -87 1 87 0 2022-07-12 18:15:32.455956 2022-09-02 14:33:39.461703 f 2022-09-02 14:33:39.46169 -70 1 70 0 2022-07-12 18:15:32.455042 2022-09-02 14:33:48.948322 f 2022-09-02 14:33:48.948309 -84 1 84 0 2022-07-12 18:15:32.455466 2022-09-02 16:25:39.96182 f 2022-09-02 16:25:39.961782 -19 1 19 0 2022-07-12 18:15:32.453381 2022-09-02 16:25:41.924709 f 2022-09-02 16:25:41.924695 -64 1 64 0 2022-07-12 18:15:32.454798 2022-09-02 16:25:43.728361 f 2022-09-02 16:25:43.728337 -96 1 96 0 2022-07-12 18:15:32.456221 2022-09-02 16:25:45.396645 f 2022-09-02 16:25:45.396631 -8 1 8 0 2022-07-12 18:15:32.453049 2022-09-02 16:25:48.644336 f 2022-09-02 16:25:48.644323 -85 1 85 0 2022-07-12 18:15:32.455496 2022-09-02 16:25:50.375818 f 2022-09-02 16:25:50.375805 -3 1 3 0 2022-07-12 18:15:32.452792 2022-09-02 16:25:54.036291 f 2022-09-02 16:25:54.036277 -81 1 81 0 2022-07-12 18:15:32.455376 2022-09-02 16:25:56.000464 f 2022-09-02 16:25:56.00045 -76 1 76 0 2022-07-12 18:15:32.455224 2022-09-02 16:25:57.825866 f 2022-09-02 16:25:57.825853 -75 1 75 0 2022-07-12 18:15:32.455194 2022-09-02 16:25:59.467136 f 2022-09-02 16:25:59.46712 -95 1 95 0 2022-07-12 18:15:32.456192 2022-09-02 16:26:01.235231 f 2022-09-02 16:26:01.235218 -36 1 36 0 2022-07-12 18:15:32.453953 2022-09-02 16:26:03.313513 f 2022-09-02 16:26:03.313495 -48 1 48 0 2022-07-12 18:15:32.454313 2022-09-02 16:26:04.090663 f 2022-09-02 16:26:04.090649 -65 1 65 0 2022-07-12 18:15:32.454828 2022-09-02 16:26:05.717331 f 2022-09-02 16:26:05.717316 -54 1 54 0 2022-07-12 18:15:32.454497 2022-09-02 16:26:06.323312 f 2022-09-02 16:26:06.323299 -33 1 33 0 2022-07-12 18:15:32.453804 2022-09-02 16:26:06.999386 f 2022-09-02 16:26:06.999374 -89 1 89 0 2022-07-12 18:15:32.456015 2022-09-02 16:26:07.49175 f 2022-09-02 16:26:07.491737 -92 1 92 0 2022-07-12 18:15:32.456103 2022-09-02 16:26:08.112682 f 2022-09-02 16:26:08.11267 -9 1 9 0 2022-07-12 18:15:32.453079 2022-09-02 16:26:08.883414 f 2022-09-02 16:26:08.8834 -31 1 31 0 2022-07-12 18:15:32.453744 2022-09-02 16:26:10.248965 f 2022-09-02 16:26:10.248951 -41 1 41 0 2022-07-12 18:15:32.454102 2022-09-02 16:26:59.850938 f 2022-09-02 16:26:59.850924 -44 1 44 0 2022-07-12 18:15:32.454192 2022-09-02 16:27:01.168211 f 2022-09-02 16:27:01.168198 -66 1 66 0 2022-07-12 18:15:32.454921 2022-09-02 16:27:01.940992 f 2022-09-02 16:27:01.940979 -56 1 56 0 2022-07-12 18:15:32.454558 2022-09-02 16:27:02.613292 f 2022-09-02 16:27:02.613274 -29 1 29 0 2022-07-12 18:15:32.453685 2022-09-02 16:27:04.200624 f 2022-09-02 16:27:04.20061 -35 1 35 0 2022-07-12 18:15:32.453922 2022-09-02 16:27:05.2923 f 2022-09-02 16:27:05.292284 -40 1 40 0 2022-07-12 18:15:32.454073 2022-09-02 16:27:08.97791 f 2022-09-02 16:27:08.977896 -10 1 10 0 2022-07-12 18:15:32.453109 2022-09-02 16:27:09.815233 f 2022-09-02 16:27:09.81522 -27 1 27 0 2022-07-12 18:15:32.453624 2022-09-02 16:27:10.550866 f 2022-09-02 16:27:10.550852 -13 1 13 0 2022-07-12 18:15:32.453199 2022-09-02 16:27:12.88554 f 2022-09-02 16:27:12.885526 -24 1 24 0 2022-07-12 18:15:32.453533 2022-09-02 16:27:13.430246 f 2022-09-02 16:27:13.430232 -50 1 50 0 2022-07-12 18:15:32.454375 2022-09-02 16:27:14.105792 f 2022-09-02 16:27:14.105779 -22 1 22 0 2022-07-12 18:15:32.453472 2022-09-02 16:27:14.773079 f 2022-09-02 16:27:14.773053 -93 1 93 0 2022-07-12 18:15:32.456133 2022-09-02 16:27:16.889691 f 2022-09-02 16:27:16.889679 -73 1 73 0 2022-07-12 18:15:32.455133 2022-09-02 16:27:17.392204 f 2022-09-02 16:27:17.392191 -23 1 23 0 2022-07-12 18:15:32.453503 2022-09-02 16:27:18.369271 f 2022-09-02 16:27:18.369259 -25 1 25 0 2022-07-12 18:15:32.453564 2022-09-02 16:27:21.394012 f 2022-09-02 16:27:21.394 -20 1 20 0 2022-07-12 18:15:32.453412 2022-09-02 16:27:23.266981 f 2022-09-02 16:27:23.266966 -162 1 162 23 2022-07-12 18:15:32.458222 2022-09-02 16:27:24.09138 f 2022-09-02 16:27:24.091368 -127 1 127 49 2022-07-12 18:15:32.457145 2022-09-02 16:27:31.636924 f 2022-09-02 16:27:31.636911 -105 1 105 0 2022-07-12 18:15:32.456484 2022-09-02 16:27:33.629577 f 2022-09-02 16:27:33.629564 -80 1 80 0 2022-07-12 18:15:32.455346 2022-09-02 16:27:34.239865 f 2022-09-02 16:27:34.239842 -183 1 183 41 2022-07-12 18:15:32.4589 2022-09-02 16:27:35.511428 f 2022-09-02 16:27:35.511415 -111 1 111 0 2022-07-12 18:15:32.456661 2022-09-02 16:27:35.902273 f 2022-09-02 16:27:35.902259 -159 1 159 20 2022-07-12 18:15:32.458133 2022-09-02 16:27:36.691491 f 2022-09-02 16:27:36.69148 -174 1 174 40 2022-07-12 18:15:32.458583 2022-09-02 16:27:41.489032 f 2022-09-02 16:27:41.489018 -121 1 121 32 2022-07-12 18:15:32.456975 2022-09-02 16:27:42.76013 f 2022-09-02 16:27:42.760115 -120 1 120 38 2022-07-12 18:15:32.456948 2022-09-02 16:27:43.322495 f 2022-09-02 16:27:43.322479 -131 1 131 41 2022-07-12 18:15:32.457264 2022-09-02 16:27:45.536154 f 2022-09-02 16:27:45.536141 -144 1 144 20 2022-07-12 18:15:32.45765 2022-09-02 16:27:46.14154 f 2022-09-02 16:27:46.141528 -137 1 137 40 2022-07-12 18:15:32.457442 2022-09-02 16:27:46.718825 f 2022-09-02 16:27:46.718813 -51 1 51 0 2022-07-12 18:15:32.454406 2022-09-02 16:27:47.375107 f 2022-09-02 16:27:47.375093 -175 1 175 38 2022-07-12 18:15:32.458612 2022-09-02 16:27:48.125685 f 2022-09-02 16:27:48.125672 -102 1 102 0 2022-07-12 18:15:32.456397 2022-09-02 16:27:48.612009 f 2022-09-02 16:27:48.611996 -103 1 103 0 2022-07-12 18:15:32.456426 2022-09-02 16:27:49.941615 f 2022-09-02 16:27:49.941603 -108 1 108 0 2022-07-12 18:15:32.456573 2022-09-02 16:27:50.650999 f 2022-09-02 16:27:50.650986 -104 1 104 0 2022-07-12 18:15:32.456455 2022-09-02 16:27:52.709013 f 2022-09-02 16:27:52.709 -173 1 173 30 2022-07-12 18:15:32.458552 2022-09-02 16:27:53.497345 f 2022-09-02 16:27:53.497332 -158 1 158 24 2022-07-12 18:15:32.458103 2022-09-02 16:27:54.024454 f 2022-09-02 16:27:54.024436 -142 1 142 46 2022-07-12 18:15:32.457591 2022-09-02 16:28:01.156866 f 2022-09-02 16:28:01.156853 -148 1 148 23 2022-07-12 18:15:32.457768 2022-09-02 16:28:01.780678 f 2022-09-02 16:28:01.780657 -150 1 150 45 2022-07-12 18:15:32.457877 2022-09-02 16:28:03.084249 f 2022-09-02 16:28:03.084229 -176 1 176 35 2022-07-12 18:15:32.458643 2022-09-02 16:28:03.776437 f 2022-09-02 16:28:03.776423 -133 1 133 35 2022-07-12 18:15:32.457324 2022-09-02 16:28:04.458122 f 2022-09-02 16:28:04.45811 -184 1 184 39 2022-07-12 18:15:32.45893 2022-09-02 16:28:05.0246 f 2022-09-02 16:28:05.024585 -163 1 163 36 2022-07-12 18:15:32.458252 2022-09-02 16:28:06.264294 f 2022-09-02 16:28:06.264281 -134 1 134 44 2022-07-12 18:15:32.457353 2022-09-02 16:28:07.472912 f 2022-09-02 16:28:07.472892 -100 1 100 0 2022-07-12 18:15:32.456338 2022-09-02 16:28:18.655444 f 2022-09-02 16:28:18.655431 -107 1 107 0 2022-07-12 18:15:32.456543 2022-09-02 16:28:20.83485 f 2022-09-02 16:28:20.834835 -153 1 153 35 2022-07-12 18:15:32.457953 2022-09-02 16:28:29.268802 f 2022-09-02 16:28:29.26879 -187 1 187 27 2022-07-12 18:15:32.45902 2022-09-02 16:28:31.815192 f 2022-09-02 16:28:31.81518 -188 1 188 33 2022-07-12 18:15:32.45905 2022-09-02 16:28:32.370093 f 2022-09-02 16:28:32.37008 -161 1 161 21 2022-07-12 18:15:32.458192 2022-09-02 16:28:33.012565 f 2022-09-02 16:28:33.012551 -123 1 123 30 2022-07-12 18:15:32.457026 2022-09-02 16:28:35.504211 f 2022-09-02 16:28:35.504198 -132 1 132 50 2022-07-12 18:15:32.457294 2022-09-02 16:28:36.159615 f 2022-09-02 16:28:36.1596 -177 1 177 39 2022-07-12 18:15:32.458672 2022-09-02 16:28:36.848575 f 2022-09-02 16:28:36.848564 -169 1 169 40 2022-07-12 18:15:32.458431 2022-09-02 16:28:38.665538 f 2022-09-02 16:28:38.665524 -122 1 122 21 2022-07-12 18:15:32.457004 2022-09-02 16:28:39.350933 f 2022-09-02 16:28:39.350913 -155 1 155 26 2022-07-12 18:15:32.458013 2022-09-02 14:33:32.06254 f 2022-09-02 14:33:32.062524 -185 1 185 25 2022-07-12 18:15:32.45896 2022-09-02 16:28:40.077434 f 2022-09-02 16:28:40.077423 -112 1 112 0 2022-07-12 18:15:32.45669 2022-09-02 16:28:41.163238 f 2022-09-02 16:28:41.163225 -135 1 135 47 2022-07-12 18:15:32.457382 2022-09-02 16:25:42.010711 f 2022-09-02 16:25:42.010697 -118 1 118 43 2022-07-12 18:15:32.45691 2022-09-02 16:25:47.169893 f 2022-09-02 16:25:47.16988 -124 1 124 20 2022-07-12 18:15:32.457056 2022-09-02 16:25:48.711847 f 2022-09-02 16:25:48.711832 -179 1 179 24 2022-07-12 18:15:32.458731 2022-09-02 16:25:52.088405 f 2022-09-02 16:25:52.08839 -119 1 119 42 2022-07-12 18:15:32.456928 2022-09-02 16:25:54.105451 f 2022-09-02 16:25:54.105437 -192 1 192 47 2022-07-12 18:15:32.45917 2022-09-02 16:25:57.89224 f 2022-09-02 16:25:57.892227 -191 1 191 39 2022-07-12 18:15:32.45914 2022-09-02 16:25:59.534834 f 2022-09-02 16:25:59.53482 -164 1 164 34 2022-07-12 18:15:32.458282 2022-09-02 16:26:04.186057 f 2022-09-02 16:26:04.186043 -154 1 154 38 2022-07-12 18:15:32.457983 2022-09-02 16:26:04.785415 f 2022-09-02 16:26:04.785402 -165 1 165 26 2022-07-12 18:15:32.458312 2022-09-02 16:26:05.151722 f 2022-09-02 16:26:05.151708 -181 1 181 50 2022-07-12 18:15:32.45884 2022-09-02 16:26:05.789458 f 2022-09-02 16:26:05.789443 -170 1 170 39 2022-07-12 18:15:32.458461 2022-09-02 16:26:06.532684 f 2022-09-02 16:26:06.532671 -149 1 149 20 2022-07-12 18:15:32.457846 2022-09-02 16:26:07.080935 f 2022-09-02 16:26:07.080921 -125 1 125 22 2022-07-12 18:15:32.457086 2022-09-02 16:26:08.955984 f 2022-09-02 16:26:08.955972 -147 1 147 41 2022-07-12 18:15:32.457739 2022-09-02 16:26:10.352314 f 2022-09-02 16:26:10.352298 -157 1 157 45 2022-07-12 18:15:32.458074 2022-09-02 16:26:59.944185 f 2022-09-02 16:26:59.944172 -160 1 160 28 2022-07-12 18:15:32.458162 2022-09-02 16:27:01.239847 f 2022-09-02 16:27:01.239834 -182 1 182 47 2022-07-12 18:15:32.45887 2022-09-02 16:27:02.04214 f 2022-09-02 16:27:02.042126 -172 1 172 42 2022-07-12 18:15:32.458522 2022-09-02 16:27:02.693605 f 2022-09-02 16:27:02.69359 -116 1 116 0 2022-07-12 18:15:32.456807 2022-09-02 16:27:03.412793 f 2022-09-02 16:27:03.412778 -145 1 145 40 2022-07-12 18:15:32.457679 2022-09-02 16:27:04.27149 f 2022-09-02 16:27:04.271478 -190 1 190 33 2022-07-12 18:15:32.45911 2022-09-02 16:27:07.218789 f 2022-09-02 16:27:07.218775 -101 1 101 0 2022-07-12 18:15:32.456368 2022-09-02 16:27:08.009728 f 2022-09-02 16:27:08.009715 -156 1 156 42 2022-07-12 18:15:32.458044 2022-09-02 16:27:09.055651 f 2022-09-02 16:27:09.055639 -126 1 126 32 2022-07-12 18:15:32.457115 2022-09-02 16:27:09.883679 f 2022-09-02 16:27:09.883664 -143 1 143 44 2022-07-12 18:15:32.45762 2022-09-02 16:27:10.623313 f 2022-09-02 16:27:10.623299 -129 1 129 47 2022-07-12 18:15:32.457204 2022-09-02 16:27:12.964416 f 2022-09-02 16:27:12.964401 -166 1 166 29 2022-07-12 18:15:32.458342 2022-09-02 16:27:14.185729 f 2022-09-02 16:27:14.185717 -138 1 138 36 2022-07-12 18:15:32.457471 2022-09-02 16:27:14.848803 f 2022-09-02 16:27:14.848791 -106 1 106 0 2022-07-12 18:15:32.456514 2022-09-02 16:27:16.093855 f 2022-09-02 16:27:16.093841 -189 1 189 27 2022-07-12 18:15:32.45908 2022-09-02 16:27:17.476829 f 2022-09-02 16:27:17.476815 -139 1 139 22 2022-07-12 18:15:32.457501 2022-09-02 16:27:18.4375 f 2022-09-02 16:27:18.437489 -141 1 141 24 2022-07-12 18:15:32.457561 2022-09-02 16:27:21.455429 f 2022-09-02 16:27:21.455418 -115 1 115 0 2022-07-12 18:15:32.456778 2022-09-02 16:27:22.559326 f 2022-09-02 16:27:22.559312 -136 1 136 34 2022-07-12 18:15:32.457412 2022-09-02 16:27:23.334851 f 2022-09-02 16:27:23.334838 -114 1 114 0 2022-07-12 18:15:32.456748 2022-09-02 16:28:41.783177 f 2022-09-02 16:28:41.783165 -230 1 230 30 2022-07-12 18:15:32.460385 2022-09-02 16:28:41.849 f 2022-09-02 16:28:41.848988 -168 1 168 21 2022-07-12 18:15:32.458401 2022-09-02 16:28:42.50307 f 2022-09-02 16:28:42.503057 -128 1 128 46 2022-07-12 18:15:32.457175 2022-09-02 16:28:43.315766 f 2022-09-02 16:28:43.31575 -178 1 178 47 2022-07-12 18:15:32.458702 2022-09-02 16:28:44.401619 f 2022-09-02 16:28:44.401607 -113 1 113 0 2022-07-12 18:15:32.456719 2022-09-02 16:28:46.867569 f 2022-09-02 16:28:46.867559 -221 1 221 20 2022-07-12 18:15:32.460117 2022-09-02 16:27:33.728148 f 2022-09-02 16:27:33.728134 -196 1 196 33 2022-07-12 18:15:32.45929 2022-09-02 16:27:34.32223 f 2022-09-02 16:27:34.322217 -194 1 194 47 2022-07-12 18:15:32.459231 2022-09-02 16:27:34.818535 f 2022-09-02 16:27:34.818521 -227 1 227 29 2022-07-12 18:15:32.460295 2022-09-02 16:27:35.985601 f 2022-09-02 16:27:35.985587 -199 1 199 36 2022-07-12 18:15:32.45938 2022-09-02 16:27:38.171306 f 2022-09-02 16:27:38.171294 -110 1 110 0 2022-07-12 18:15:32.456632 2022-09-02 16:27:42.051143 f 2022-09-02 16:27:42.05113 -226 1 226 27 2022-07-12 18:15:32.460266 2022-09-02 16:27:42.121961 f 2022-09-02 16:27:42.121949 -167 1 167 43 2022-07-12 18:15:32.458372 2022-09-02 16:27:47.447553 f 2022-09-02 16:27:47.44754 -218 1 218 40 2022-07-12 18:15:32.460028 2022-09-02 16:27:48.69017 f 2022-09-02 16:27:48.690156 -213 1 213 46 2022-07-12 18:15:32.459882 2022-09-02 16:27:49.515355 f 2022-09-02 16:27:49.515343 -219 1 219 21 2022-07-12 18:15:32.460058 2022-09-02 16:27:50.005738 f 2022-09-02 16:27:50.005726 -224 1 224 22 2022-07-12 18:15:32.460206 2022-09-02 16:27:50.727244 f 2022-09-02 16:27:50.727231 -14 1 14 0 2022-07-12 18:15:32.45323 2022-09-02 14:33:28.802781 f 2022-09-02 14:33:28.802756 -130 1 130 34 2022-07-12 18:15:32.457234 2022-09-02 14:33:28.937655 f 2022-09-02 14:33:28.937633 -30 1 30 0 2022-07-12 18:15:32.453714 2022-09-02 14:33:34.238782 f 2022-09-02 14:33:34.238759 -146 1 146 21 2022-07-12 18:15:32.457709 2022-09-02 14:33:34.348566 f 2022-09-02 14:33:34.348552 -203 1 203 29 2022-07-12 18:15:32.459499 2022-09-02 14:33:39.524752 f 2022-09-02 14:33:39.52474 -186 1 186 27 2022-07-12 18:15:32.45899 2022-09-02 14:33:49.018458 f 2022-09-02 14:33:49.018444 -109 1 109 0 2022-07-12 18:15:32.456602 2022-09-02 16:27:51.236699 f 2022-09-02 16:27:51.236687 -225 1 225 29 2022-07-12 18:15:32.460236 2022-09-02 16:27:51.300871 f 2022-09-02 16:27:51.30086 -220 1 220 29 2022-07-12 18:15:32.460088 2022-09-02 16:27:52.804628 f 2022-09-02 16:27:52.804614 -206 1 206 32 2022-07-12 18:15:32.459589 2022-09-02 16:28:00.524532 f 2022-09-02 16:28:00.524518 -200 1 200 20 2022-07-12 18:15:32.45941 2022-09-02 16:25:40.048808 f 2022-09-02 16:25:40.048788 -180 1 180 45 2022-07-12 18:15:32.458761 2022-09-02 16:25:43.822316 f 2022-09-02 16:25:43.82229 -212 1 212 35 2022-07-12 18:15:32.459856 2022-09-02 16:25:45.465198 f 2022-09-02 16:25:45.465184 -2 1 2 2 2022-07-12 18:15:32.452762 2022-09-02 16:25:47.106959 f 2022-09-02 16:25:47.106946 -201 1 201 43 2022-07-12 18:15:32.459439 2022-09-02 16:25:50.444739 f 2022-09-02 16:25:50.444725 -63 1 63 0 2022-07-12 18:15:32.454768 2022-09-02 16:25:52.019705 f 2022-09-02 16:25:52.019692 -197 1 197 23 2022-07-12 18:15:32.45932 2022-09-02 16:25:56.091295 f 2022-09-02 16:25:56.091282 -211 1 211 47 2022-07-12 18:15:32.459738 2022-09-02 16:26:01.319181 f 2022-09-02 16:26:01.319168 -152 1 152 32 2022-07-12 18:15:32.457923 2022-09-02 16:26:03.411905 f 2022-09-02 16:26:03.411885 -38 1 38 0 2022-07-12 18:15:32.454013 2022-09-02 16:26:04.639243 f 2022-09-02 16:26:04.63923 -49 1 49 0 2022-07-12 18:15:32.454344 2022-09-02 16:26:05.03036 f 2022-09-02 16:26:05.030342 -205 1 205 47 2022-07-12 18:15:32.459558 2022-09-02 16:26:07.566824 f 2022-09-02 16:26:07.56681 -208 1 208 23 2022-07-12 18:15:32.459648 2022-09-02 16:26:08.18241 f 2022-09-02 16:26:08.182375 -1 1 1 2 2022-07-12 18:15:32.45271 2022-09-02 16:26:09.592784 f 2022-09-02 16:26:09.592771 -117 1 117 42 2022-07-12 18:15:32.456889 2022-09-02 16:26:09.660558 f 2022-09-02 16:26:09.660545 -232 1 232 50 2022-07-12 18:15:32.460445 2022-09-02 16:27:03.496286 f 2022-09-02 16:27:03.496272 -151 1 151 45 2022-07-12 18:15:32.457898 2022-09-02 16:27:05.364886 f 2022-09-02 16:27:05.364873 -74 1 74 0 2022-07-12 18:15:32.455164 2022-09-02 16:27:07.150518 f 2022-09-02 16:27:07.150504 -217 1 217 21 2022-07-12 18:15:32.459998 2022-09-02 16:27:08.089518 f 2022-09-02 16:27:08.089505 -140 1 140 32 2022-07-12 18:15:32.457531 2022-09-02 16:27:13.524712 f 2022-09-02 16:27:13.524698 -88 1 88 0 2022-07-12 18:15:32.455986 2022-09-02 16:27:15.366388 f 2022-09-02 16:27:15.366374 -204 1 204 46 2022-07-12 18:15:32.459529 2022-09-02 16:27:15.432868 f 2022-09-02 16:27:15.432854 -222 1 222 47 2022-07-12 18:15:32.460147 2022-09-02 16:27:16.166907 f 2022-09-02 16:27:16.166895 -209 1 209 50 2022-07-12 18:15:32.459678 2022-09-02 16:27:16.954073 f 2022-09-02 16:27:16.954061 -231 1 231 20 2022-07-12 18:15:32.460415 2022-09-02 16:27:22.633749 f 2022-09-02 16:27:22.633735 -210 1 210 37 2022-07-12 18:15:32.459708 2022-09-02 16:28:02.505692 f 2022-09-02 16:28:02.505679 -17 1 17 0 2022-07-12 18:15:32.453321 2022-09-02 16:28:04.391108 f 2022-09-02 16:28:04.391095 -171 1 171 40 2022-07-12 18:15:32.458492 2022-09-02 16:28:06.927793 f 2022-09-02 16:28:06.92778 -216 1 216 38 2022-07-12 18:15:32.459968 2022-09-02 16:28:18.719992 f 2022-09-02 16:28:18.719979 -214 1 214 48 2022-07-12 18:15:32.459908 2022-09-02 16:28:19.302187 f 2022-09-02 16:28:19.302175 -202 1 202 20 2022-07-12 18:15:32.45947 2022-09-02 16:28:19.933248 f 2022-09-02 16:28:19.933227 -198 1 198 38 2022-07-12 18:15:32.45935 2022-09-02 16:28:20.52437 f 2022-09-02 16:28:20.524357 -223 1 223 43 2022-07-12 18:15:32.460177 2022-09-02 16:28:20.906553 f 2022-09-02 16:28:20.906538 -207 1 207 41 2022-07-12 18:15:32.459618 2022-09-02 16:28:28.443834 f 2022-09-02 16:28:28.443823 -215 1 215 26 2022-07-12 18:15:32.459938 2022-09-02 16:28:31.260586 f 2022-09-02 16:28:31.260575 -71 1 71 0 2022-07-12 18:15:32.455073 2022-09-02 16:28:31.745062 f 2022-09-02 16:28:31.745049 -193 1 193 28 2022-07-12 18:15:32.4592 2022-09-02 16:28:38.047228 f 2022-09-02 16:28:38.047216 -228 1 228 29 2022-07-12 18:15:32.460325 2022-09-02 16:28:41.235068 f 2022-09-02 16:28:41.235055 -12 1 12 0 2022-07-12 18:15:32.453169 2022-09-02 16:28:43.230766 f 2022-09-02 16:28:43.230752 -195 1 195 42 2022-07-12 18:15:32.45926 2022-09-02 16:28:45.093339 f 2022-09-02 16:28:45.093327 -229 1 229 25 2022-07-12 18:15:32.460355 2022-09-02 16:28:46.935995 f 2022-09-02 16:28:46.935984 -233 1 233 30 2022-09-02 16:34:50.883227 2022-09-02 16:34:51.101388 f \N -234 1 234 40 2022-09-02 17:12:43.404498 2022-09-02 17:12:43.581191 f \N -235 1 235 100 2022-09-02 17:30:06.037723 2022-09-02 17:30:06.207863 f \N -236 1 236 300 2022-09-02 17:36:52.276273 2022-09-02 17:36:52.441014 f \N -237 1 237 65 2022-09-02 18:31:39.554729 2022-09-02 18:31:39.701076 f \N -238 1 238 58 2022-09-02 18:40:15.84499 2022-09-02 18:40:16.077402 f \N -239 1 239 500 2022-09-02 18:41:55.921383 2022-09-02 18:41:56.081309 f \N -240 1 240 250 2022-09-02 18:43:51.861678 2022-09-02 18:43:52.059694 f \N -241 1 241 67 2022-09-02 18:46:23.913179 2022-09-02 18:46:24.073674 f \N -242 1 242 125 2022-09-02 18:51:38.685733 2022-09-02 18:51:38.842586 f \N -243 1 243 1000 2022-09-02 18:54:26.562147 2022-09-02 18:54:26.699 f \N -244 1 244 89 2022-09-02 18:58:24.14416 2022-09-02 18:58:24.384185 f \N -245 1 245 300 2022-09-02 19:00:46.078642 2022-09-02 19:00:46.239815 f \N -246 1 246 1992 2022-09-02 19:03:48.978648 2022-09-02 19:03:49.129972 f \N -\. - - --- --- Data for Name: spree_stock_locations; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_stock_locations (id, name, created_at, updated_at, "default", address1, address2, city, state_id, state_name, country_id, zipcode, phone, active, backorderable_default, propagate_all_variants, admin_name) FROM stdin; -1 default 2022-07-12 18:10:15.24519 2022-07-12 18:15:32.438735 t Example Street \N City 483 \N 224 12345 \N t f f \N -\. - - --- --- Data for Name: spree_stock_movements; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_stock_movements (id, stock_item_id, quantity, action, created_at, updated_at, originator_type, originator_id) FROM stdin; -1 127 49 \N 2022-07-12 18:15:32.78468 2022-07-12 18:15:32.78468 \N \N -2 178 47 \N 2022-07-12 18:15:32.961873 2022-07-12 18:15:32.961873 \N \N -3 228 29 \N 2022-07-12 18:15:33.45479 2022-07-12 18:15:33.45479 \N \N -4 229 25 \N 2022-07-12 18:15:33.623155 2022-07-12 18:15:33.623155 \N \N -5 230 30 \N 2022-07-12 18:15:33.76863 2022-07-12 18:15:33.76863 \N \N -6 231 20 \N 2022-07-12 18:15:33.943098 2022-07-12 18:15:33.943098 \N \N -7 117 42 \N 2022-07-12 18:15:34.446092 2022-07-12 18:15:34.446092 \N \N -8 118 43 \N 2022-07-12 18:15:34.584035 2022-07-12 18:15:34.584035 \N \N -9 119 42 \N 2022-07-12 18:15:34.72435 2022-07-12 18:15:34.72435 \N \N -10 120 38 \N 2022-07-12 18:15:34.872651 2022-07-12 18:15:34.872651 \N \N -11 121 32 \N 2022-07-12 18:15:35.014509 2022-07-12 18:15:35.014509 \N \N -12 122 21 \N 2022-07-12 18:15:35.162963 2022-07-12 18:15:35.162963 \N \N -13 123 30 \N 2022-07-12 18:15:35.310181 2022-07-12 18:15:35.310181 \N \N -14 124 20 \N 2022-07-12 18:15:35.452645 2022-07-12 18:15:35.452645 \N \N -15 125 22 \N 2022-07-12 18:15:35.598628 2022-07-12 18:15:35.598628 \N \N -16 126 32 \N 2022-07-12 18:15:35.744559 2022-07-12 18:15:35.744559 \N \N -17 128 46 \N 2022-07-12 18:15:35.890488 2022-07-12 18:15:35.890488 \N \N -18 129 47 \N 2022-07-12 18:15:36.04426 2022-07-12 18:15:36.04426 \N \N -19 130 34 \N 2022-07-12 18:15:36.219543 2022-07-12 18:15:36.219543 \N \N -20 131 41 \N 2022-07-12 18:15:36.377124 2022-07-12 18:15:36.377124 \N \N -21 132 50 \N 2022-07-12 18:15:36.526468 2022-07-12 18:15:36.526468 \N \N -22 133 35 \N 2022-07-12 18:15:36.666197 2022-07-12 18:15:36.666197 \N \N -23 134 44 \N 2022-07-12 18:15:36.801753 2022-07-12 18:15:36.801753 \N \N -24 135 47 \N 2022-07-12 18:15:36.941088 2022-07-12 18:15:36.941088 \N \N -25 136 34 \N 2022-07-12 18:15:37.078876 2022-07-12 18:15:37.078876 \N \N -26 137 40 \N 2022-07-12 18:15:37.223224 2022-07-12 18:15:37.223224 \N \N -27 138 36 \N 2022-07-12 18:15:37.364593 2022-07-12 18:15:37.364593 \N \N -28 139 22 \N 2022-07-12 18:15:37.507117 2022-07-12 18:15:37.507117 \N \N -29 140 32 \N 2022-07-12 18:15:37.645676 2022-07-12 18:15:37.645676 \N \N -30 141 24 \N 2022-07-12 18:15:37.782272 2022-07-12 18:15:37.782272 \N \N -31 142 46 \N 2022-07-12 18:15:37.924352 2022-07-12 18:15:37.924352 \N \N -32 143 44 \N 2022-07-12 18:15:38.07368 2022-07-12 18:15:38.07368 \N \N -33 144 20 \N 2022-07-12 18:15:38.238498 2022-07-12 18:15:38.238498 \N \N -34 145 40 \N 2022-07-12 18:15:38.409506 2022-07-12 18:15:38.409506 \N \N -35 146 21 \N 2022-07-12 18:15:38.644275 2022-07-12 18:15:38.644275 \N \N -36 147 41 \N 2022-07-12 18:15:38.926899 2022-07-12 18:15:38.926899 \N \N -37 148 23 \N 2022-07-12 18:15:39.101712 2022-07-12 18:15:39.101712 \N \N -38 149 20 \N 2022-07-12 18:15:39.25904 2022-07-12 18:15:39.25904 \N \N -39 150 45 \N 2022-07-12 18:15:39.495104 2022-07-12 18:15:39.495104 \N \N -40 151 45 \N 2022-07-12 18:15:39.711703 2022-07-12 18:15:39.711703 \N \N -41 152 32 \N 2022-07-12 18:15:39.86765 2022-07-12 18:15:39.86765 \N \N -42 153 35 \N 2022-07-12 18:15:40.034215 2022-07-12 18:15:40.034215 \N \N -43 154 38 \N 2022-07-12 18:15:40.194405 2022-07-12 18:15:40.194405 \N \N -44 155 26 \N 2022-07-12 18:15:40.36491 2022-07-12 18:15:40.36491 \N \N -45 156 42 \N 2022-07-12 18:15:40.533343 2022-07-12 18:15:40.533343 \N \N -46 157 45 \N 2022-07-12 18:15:40.705553 2022-07-12 18:15:40.705553 \N \N -47 158 24 \N 2022-07-12 18:15:40.862601 2022-07-12 18:15:40.862601 \N \N -48 159 20 \N 2022-07-12 18:15:41.009363 2022-07-12 18:15:41.009363 \N \N -49 160 28 \N 2022-07-12 18:15:41.153885 2022-07-12 18:15:41.153885 \N \N -50 161 21 \N 2022-07-12 18:15:41.310699 2022-07-12 18:15:41.310699 \N \N -51 162 23 \N 2022-07-12 18:15:41.465721 2022-07-12 18:15:41.465721 \N \N -52 163 36 \N 2022-07-12 18:15:41.645505 2022-07-12 18:15:41.645505 \N \N -53 164 34 \N 2022-07-12 18:15:41.806174 2022-07-12 18:15:41.806174 \N \N -54 165 26 \N 2022-07-12 18:15:41.963567 2022-07-12 18:15:41.963567 \N \N -55 166 29 \N 2022-07-12 18:15:42.146353 2022-07-12 18:15:42.146353 \N \N -56 167 43 \N 2022-07-12 18:15:42.324971 2022-07-12 18:15:42.324971 \N \N -57 168 21 \N 2022-07-12 18:15:42.479828 2022-07-12 18:15:42.479828 \N \N -58 169 40 \N 2022-07-12 18:15:42.634016 2022-07-12 18:15:42.634016 \N \N -59 170 39 \N 2022-07-12 18:15:42.79729 2022-07-12 18:15:42.79729 \N \N -60 171 40 \N 2022-07-12 18:15:42.954282 2022-07-12 18:15:42.954282 \N \N -61 172 42 \N 2022-07-12 18:15:43.152692 2022-07-12 18:15:43.152692 \N \N -62 173 30 \N 2022-07-12 18:15:43.329116 2022-07-12 18:15:43.329116 \N \N -63 174 40 \N 2022-07-12 18:15:43.495986 2022-07-12 18:15:43.495986 \N \N -64 175 38 \N 2022-07-12 18:15:43.90417 2022-07-12 18:15:43.90417 \N \N -65 176 35 \N 2022-07-12 18:15:44.119478 2022-07-12 18:15:44.119478 \N \N -66 177 39 \N 2022-07-12 18:15:44.302259 2022-07-12 18:15:44.302259 \N \N -67 179 24 \N 2022-07-12 18:15:44.443082 2022-07-12 18:15:44.443082 \N \N -68 180 45 \N 2022-07-12 18:15:44.600243 2022-07-12 18:15:44.600243 \N \N -69 181 50 \N 2022-07-12 18:15:44.756806 2022-07-12 18:15:44.756806 \N \N -70 182 47 \N 2022-07-12 18:15:44.92136 2022-07-12 18:15:44.92136 \N \N -71 183 41 \N 2022-07-12 18:15:45.076232 2022-07-12 18:15:45.076232 \N \N -72 184 39 \N 2022-07-12 18:15:45.224247 2022-07-12 18:15:45.224247 \N \N -73 185 25 \N 2022-07-12 18:15:45.374344 2022-07-12 18:15:45.374344 \N \N -74 186 27 \N 2022-07-12 18:15:45.53047 2022-07-12 18:15:45.53047 \N \N -75 187 27 \N 2022-07-12 18:15:45.74501 2022-07-12 18:15:45.74501 \N \N -76 188 33 \N 2022-07-12 18:15:45.939103 2022-07-12 18:15:45.939103 \N \N -77 189 27 \N 2022-07-12 18:15:46.140331 2022-07-12 18:15:46.140331 \N \N -78 190 33 \N 2022-07-12 18:15:46.312799 2022-07-12 18:15:46.312799 \N \N -79 191 39 \N 2022-07-12 18:15:46.527592 2022-07-12 18:15:46.527592 \N \N -80 192 47 \N 2022-07-12 18:15:46.757245 2022-07-12 18:15:46.757245 \N \N -81 193 28 \N 2022-07-12 18:15:46.925407 2022-07-12 18:15:46.925407 \N \N -82 194 47 \N 2022-07-12 18:15:47.130335 2022-07-12 18:15:47.130335 \N \N -83 195 42 \N 2022-07-12 18:15:47.286958 2022-07-12 18:15:47.286958 \N \N -84 196 33 \N 2022-07-12 18:15:47.448134 2022-07-12 18:15:47.448134 \N \N -85 197 23 \N 2022-07-12 18:15:47.607419 2022-07-12 18:15:47.607419 \N \N -86 198 38 \N 2022-07-12 18:15:47.759305 2022-07-12 18:15:47.759305 \N \N -87 199 36 \N 2022-07-12 18:15:47.912039 2022-07-12 18:15:47.912039 \N \N -88 200 20 \N 2022-07-12 18:15:48.072396 2022-07-12 18:15:48.072396 \N \N -89 201 43 \N 2022-07-12 18:15:48.223719 2022-07-12 18:15:48.223719 \N \N -90 202 20 \N 2022-07-12 18:15:48.37827 2022-07-12 18:15:48.37827 \N \N -91 203 29 \N 2022-07-12 18:15:48.526301 2022-07-12 18:15:48.526301 \N \N -92 204 46 \N 2022-07-12 18:15:48.704397 2022-07-12 18:15:48.704397 \N \N -93 205 47 \N 2022-07-12 18:15:48.849804 2022-07-12 18:15:48.849804 \N \N -94 206 32 \N 2022-07-12 18:15:49.007179 2022-07-12 18:15:49.007179 \N \N -95 207 41 \N 2022-07-12 18:15:49.170408 2022-07-12 18:15:49.170408 \N \N -96 208 23 \N 2022-07-12 18:15:49.325291 2022-07-12 18:15:49.325291 \N \N -97 209 50 \N 2022-07-12 18:15:49.480825 2022-07-12 18:15:49.480825 \N \N -98 210 37 \N 2022-07-12 18:15:49.63403 2022-07-12 18:15:49.63403 \N \N -99 211 47 \N 2022-07-12 18:15:49.780696 2022-07-12 18:15:49.780696 \N \N -100 212 35 \N 2022-07-12 18:15:49.935922 2022-07-12 18:15:49.935922 \N \N -101 213 46 \N 2022-07-12 18:15:50.0808 2022-07-12 18:15:50.0808 \N \N -102 214 48 \N 2022-07-12 18:15:50.246208 2022-07-12 18:15:50.246208 \N \N -103 215 26 \N 2022-07-12 18:15:50.402103 2022-07-12 18:15:50.402103 \N \N -104 216 38 \N 2022-07-12 18:15:50.550703 2022-07-12 18:15:50.550703 \N \N -105 217 21 \N 2022-07-12 18:15:50.715301 2022-07-12 18:15:50.715301 \N \N -106 218 40 \N 2022-07-12 18:15:50.874821 2022-07-12 18:15:50.874821 \N \N -107 219 21 \N 2022-07-12 18:15:51.028671 2022-07-12 18:15:51.028671 \N \N -108 220 29 \N 2022-07-12 18:15:51.172972 2022-07-12 18:15:51.172972 \N \N -109 221 20 \N 2022-07-12 18:15:51.321074 2022-07-12 18:15:51.321074 \N \N -110 222 47 \N 2022-07-12 18:15:51.478665 2022-07-12 18:15:51.478665 \N \N -111 223 43 \N 2022-07-12 18:15:51.63819 2022-07-12 18:15:51.63819 \N \N -112 224 22 \N 2022-07-12 18:15:51.789091 2022-07-12 18:15:51.789091 \N \N -113 225 29 \N 2022-07-12 18:15:51.938729 2022-07-12 18:15:51.938729 \N \N -114 226 27 \N 2022-07-12 18:15:52.086709 2022-07-12 18:15:52.086709 \N \N -115 227 29 \N 2022-07-12 18:15:52.241894 2022-07-12 18:15:52.241894 \N \N -116 232 50 \N 2022-07-12 18:15:52.39771 2022-07-12 18:15:52.39771 \N \N -117 2 1 \N 2022-09-02 16:12:46.848476 2022-09-02 16:12:46.848476 Spree::Shipment 2 -118 1 1 \N 2022-09-02 16:14:58.106673 2022-09-02 16:14:58.106673 Spree::Shipment 1 -119 233 30 \N 2022-09-02 16:34:50.973374 2022-09-02 16:34:50.973374 \N \N -120 234 40 \N 2022-09-02 17:12:43.482311 2022-09-02 17:12:43.482311 \N \N -121 235 100 \N 2022-09-02 17:30:06.118911 2022-09-02 17:30:06.118911 \N \N -122 236 300 \N 2022-09-02 17:36:52.365209 2022-09-02 17:36:52.365209 \N \N -123 237 65 \N 2022-09-02 18:31:39.625706 2022-09-02 18:31:39.625706 \N \N -124 238 58 \N 2022-09-02 18:40:15.962931 2022-09-02 18:40:15.962931 \N \N -125 239 500 \N 2022-09-02 18:41:56.002909 2022-09-02 18:41:56.002909 \N \N -126 240 250 \N 2022-09-02 18:43:51.957096 2022-09-02 18:43:51.957096 \N \N -127 241 67 \N 2022-09-02 18:46:23.995711 2022-09-02 18:46:23.995711 \N \N -128 242 125 \N 2022-09-02 18:51:38.762738 2022-09-02 18:51:38.762738 \N \N -129 243 1000 \N 2022-09-02 18:54:26.634775 2022-09-02 18:54:26.634775 \N \N -130 244 89 \N 2022-09-02 18:58:24.294859 2022-09-02 18:58:24.294859 \N \N -131 245 300 \N 2022-09-02 19:00:46.164707 2022-09-02 19:00:46.164707 \N \N -132 246 1992 \N 2022-09-02 19:03:49.054546 2022-09-02 19:03:49.054546 \N \N -\. - - --- --- Data for Name: spree_stock_transfers; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_stock_transfers (id, type, reference, source_location_id, destination_location_id, created_at, updated_at, number, public_metadata, private_metadata) FROM stdin; -\. - - --- --- Data for Name: spree_store_credit_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_store_credit_categories (id, name, created_at, updated_at) FROM stdin; -1 Default 2022-07-12 18:10:15.124218 2022-07-12 18:10:15.124218 -2 Non-expiring 2022-07-12 18:10:15.132929 2022-07-12 18:10:15.132929 -3 Expiring 2022-07-12 18:10:15.141368 2022-07-12 18:10:15.141368 -\. - - --- --- Data for Name: spree_store_credit_events; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_store_credit_events (id, store_credit_id, action, amount, authorization_code, user_total_amount, originator_id, originator_type, deleted_at, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_store_credit_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_store_credit_types (id, name, priority, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_store_credits; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_store_credits (id, user_id, category_id, created_by_id, amount, amount_used, memo, deleted_at, currency, amount_authorized, originator_id, originator_type, type_id, created_at, updated_at, store_id, public_metadata, private_metadata) FROM stdin; -\. - - --- --- Data for Name: spree_stores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_stores (id, name, url, meta_description, meta_keywords, seo_title, mail_from_address, default_currency, code, "default", created_at, updated_at, supported_currencies, facebook, twitter, instagram, default_locale, customer_support_email, default_country_id, description, address, contact_phone, new_order_notifications_email, checkout_zone_id, seo_robots, supported_locales, deleted_at, settings) FROM stdin; -2 EU Store eu.lvh.me:3000 \N \N \N eustore@example.com EUR eustore f 2022-07-12 18:13:09.659503 2022-07-12 18:16:24.666541 EUR \N \N \N de \N 54 \N \N \N \N 1 \N de,fr,es \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} -3 UK Store uk.lvh.me:3000 \N \N \N ukstore@example.com GBP ukstore f 2022-07-12 18:13:09.683842 2022-07-12 18:16:30.922302 GBP \N \N \N en \N 73 \N \N \N \N 2 \N en \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} -1 Spree Demo Site localhost:3000 This is the new Spree UX DEMO | OVERVIEW: http://bit.ly/new-spree-ux | DOCS: http://bit.ly/spree-ux-customization-docs | CONTACT: https://spreecommerce.org/contact/ \N Spree Commerce Demo Shop no-reply@example.com USD spree t 2022-07-12 18:10:15.205657 2022-09-02 19:01:55.33074 CAD,USD spreecommerce spreecommerce spreecommerce en support@example.com 224 \N \N \N \N 3 \N en,fr \N {"limit_digital_download_days": true, "limit_digital_download_count": true, "digital_asset_authorized_days": 7, "digital_asset_link_expire_time": 300, "digital_asset_authorized_clicks": 5} -\. - - --- --- Data for Name: spree_tax_categories; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_tax_categories (id, name, description, is_default, deleted_at, created_at, updated_at, tax_code) FROM stdin; -1 Clothing \N f \N 2022-07-12 18:13:10.454216 2022-07-12 18:13:10.454216 \N -\. - - --- --- Data for Name: spree_tax_rates; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_tax_rates (id, amount, zone_id, tax_category_id, included_in_price, created_at, updated_at, name, show_rate_in_label, deleted_at) FROM stdin; -1 0.10000 7 1 f 2022-07-12 18:13:10.50718 2022-07-12 18:13:10.50718 California t \N -\. - - --- --- Data for Name: spree_taxonomies; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_taxonomies (id, name, created_at, updated_at, "position", store_id, public_metadata, private_metadata) FROM stdin; -1 Categories 2022-07-12 18:13:13.006568 2022-09-13 20:59:13.239792 1 1 \N \N -2 Brands 2022-09-08 15:35:27.672175 2022-09-13 20:59:13.239792 2 1 \N \N -\. - - --- --- Data for Name: spree_taxons; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_taxons (id, parent_id, "position", name, permalink, taxonomy_id, lft, rgt, description, created_at, updated_at, meta_title, meta_description, meta_keywords, depth, hide_from_nav, public_metadata, private_metadata) FROM stdin; -18 1 0 New categories/new 1 2 3 \N 2022-07-12 18:13:16.06433 2022-09-13 20:58:36.728265 \N \N \N 1 f \N \N -19 1 0 Bestsellers categories/bestsellers 1 4 5 \N 2022-07-12 18:13:16.160785 2022-09-13 20:59:13.235444 \N \N \N 1 f \N \N -20 1 0 Events categories/events 1 6 7 2022-07-12 18:13:16.262337 2022-09-13 20:59:13.235444 1 f \N \N -29 1 0 Stickers categories/stickers 1 8 9 \N 2022-09-08 15:37:54.624775 2022-09-13 20:59:13.235444 \N \N \N 1 f \N \N -1 \N 0 Categories categories 1 1 10 \N 2022-07-12 18:13:13.056398 2022-09-13 20:59:13.235444 \N \N \N 0 f \N \N -28 27 0 Datadog brands/datadog 2 12 13 2022-09-08 15:35:33.979137 2022-09-13 20:59:13.235444 1 f \N \N -27 \N 0 Brands brands 2 11 14 \N 2022-09-08 15:35:27.70656 2022-09-13 20:59:13.235444 \N \N \N 0 f \N \N -\. - - --- --- Data for Name: spree_trackers; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_trackers (id, analytics_id, active, created_at, updated_at, engine) FROM stdin; -\. - - --- --- Data for Name: spree_users; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_users (id, encrypted_password, password_salt, email, remember_token, persistence_token, reset_password_token, perishable_token, sign_in_count, failed_attempts, last_request_at, current_sign_in_at, last_sign_in_at, current_sign_in_ip, last_sign_in_ip, login, ship_address_id, bill_address_id, authentication_token, unlock_token, locked_at, reset_password_sent_at, created_at, updated_at, public_metadata, private_metadata, spree_api_key, remember_created_at, deleted_at, confirmation_token, confirmed_at, confirmation_sent_at) FROM stdin; -1 017c17daa9432dadaa5e366efec930442e224fa0bce40875d2abbb4c646ad49634b75e54e463d7d8eb7b5589f34f4bb441eb23a93c9595fea90f77ccbc0187db Z_xHp1AnU2Pym9r9i6Eo spree@example.com \N \N \N \N 2 0 \N 2022-09-02 18:32:11.429383 2022-07-12 18:19:30.851865 130.211.45.14 192.168.112.1 spree@example.com \N \N \N \N \N \N 2022-07-12 18:10:57.963932 2022-09-02 18:32:11.42984 \N \N f1482a3e59937d82768703f510481ce883ee7a147ecee0f7 \N \N \N \N \N -2 1cf82576bc3b69691fbb42eb91c9aef961eeb2a387aa8a095c7fc4f2899a85ccd9ce35e69c06ef5db597d08b48a4fc341183b9fc647acd1c5491247ffe9dc007 gu9U4KcwmLgNf1y3ySZ6 admin@storedog.com \N \N \N \N 3 0 \N 2022-09-13 20:48:56.222491 2022-09-02 18:25:40.435296 130.211.45.14 130.211.45.14 admin@storedog.com \N \N \N \N \N \N 2022-09-02 14:43:42.061842 2022-09-13 20:48:56.223394 \N \N \N \N \N \N \N \N -\. - - --- --- Data for Name: spree_variants; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_variants (id, sku, weight, height, width, depth, deleted_at, is_master, product_id, cost_price, "position", cost_currency, track_inventory, tax_category_id, updated_at, discontinue_on, created_at, public_metadata, private_metadata) FROM stdin; -46 Dresses_floralwrapdress_14.99 0.00 \N \N \N 2022-09-02 16:27:24.051667 t 46 \N 1 USD t \N 2022-09-02 16:27:24.005391 \N 2022-07-12 18:13:34.149084 \N \N -37 Skirts_midiskirtwithbottoms_40.99 0.00 \N \N \N 2022-09-02 16:28:29.23276 t 37 \N 1 USD t \N 2022-09-02 16:28:29.17789 \N 2022-07-12 18:13:30.711966 \N \N -45 Skirts_pleatedskirt2_17.99 0.00 \N \N \N 2022-09-02 16:28:32.968005 t 45 \N 1 USD t \N 2022-09-02 16:28:32.909776 \N 2022-07-12 18:13:33.627405 \N \N -43 Skirts_skatershortskirt_67.99 0.00 \N \N \N 2022-09-02 16:27:36.645343 t 43 \N 1 USD t \N 2022-09-02 16:27:36.60744 \N 2022-07-12 18:13:32.882839 \N \N -58 ShirtsandBlouses_semi-sheershirtwithfloralcuffs_91.99 0.00 \N \N \N 2022-09-02 16:27:41.438657 t 58 \N 1 USD t \N 2022-09-02 16:27:41.38346 \N 2022-07-12 18:13:38.530682 \N \N -7 Shirts_regularshirt_94.99 0.00 \N \N \N 2022-09-02 16:28:35.445368 t 7 \N 1 USD t \N 2022-09-02 16:28:35.39854 \N 2022-07-12 18:13:19.457637 \N \N -16 T-shirts_raw-edget-shirt_84.99 0.00 \N \N \N 2022-09-02 16:28:36.121348 t 16 \N 1 USD t \N 2022-09-02 16:28:36.079628 \N 2022-07-12 18:13:22.528645 \N \N -5 Shirts_shortsleeveshirt_55.99 0.00 \N \N \N 2022-09-02 16:27:42.714303 t 5 \N 1 USD t \N 2022-09-02 16:27:42.657976 \N 2022-07-12 18:13:18.775253 \N \N -4 Shirts_slimfitshirt_17.99 0.00 \N \N \N 2022-09-02 16:27:43.281653 t 4 \N 1 USD t \N 2022-09-02 16:27:43.238032 \N 2022-07-12 18:13:18.445029 \N \N -15 T-shirts_t-shirtwithholes_34.99 0.00 \N \N \N 2022-09-02 16:27:45.493878 t 15 \N 1 USD t \N 2022-09-02 16:27:45.451147 \N 2022-07-12 18:13:22.174284 \N \N -53 Dresses_printedslit-sleevesdress_76.99 0.00 \N \N \N 2022-09-02 16:28:38.625874 t 53 \N 1 USD t \N 2022-09-02 16:28:38.581324 \N 2022-07-12 18:13:36.725263 \N \N -28 JacketsandCoats_suedebikerjacket_33.99 0.00 \N \N \N 2022-09-02 16:27:46.100771 t 28 \N 1 USD t \N 2022-09-02 16:27:46.061841 \N 2022-07-12 18:13:27.111087 \N \N -6 Shirts_printedshortsleeveshirt_74.99 0.00 \N \N \N 2022-09-02 16:28:39.314498 t 6 \N 1 USD t \N 2022-09-02 16:28:39.277684 \N 2022-07-12 18:13:19.118316 \N \N -21 Sweaters_strippedjumper_88.99 0.00 \N \N \N 2022-09-02 16:27:46.680785 t 21 \N 1 USD t \N 2022-09-02 16:27:46.641971 \N 2022-07-12 18:13:24.451456 \N \N -51 Dresses_stripedshirtdress_87.99 0.00 \N \N \N 2022-09-02 16:27:47.404072 t 51 \N 1 USD t \N 2022-09-02 16:27:47.362162 \N 2022-07-12 18:13:35.993896 \N \N -59 ShirtsandBlouses_stripedshirt_60.99 0.00 \N \N \N 2022-09-02 16:27:48.087057 t 59 \N 1 USD t \N 2022-09-02 16:27:48.046063 \N 2022-07-12 18:13:38.87686 \N \N -230 Pants_printedpants_45.99_grey_xs 0.00 \N \N \N 2022-09-02 16:28:41.890146 f 114 45.99 2 USD t 1 2022-09-02 16:28:41.837277 \N 2022-07-12 18:15:32.033717 \N \N -57 Dresses_slitmaxidress_26.99 0.00 \N \N \N 2022-09-02 16:27:53.451263 t 57 \N 1 USD t \N 2022-09-02 16:27:53.405892 \N 2022-07-12 18:13:38.185924 \N \N -52 Dresses_printeddress_83.99 0.00 \N \N \N 2022-09-02 16:28:42.460959 t 52 \N 1 USD t \N 2022-09-02 16:28:42.41562 \N 2022-07-12 18:13:36.361534 \N \N -42 Skirts_skaterskirt_17.99 0.00 \N \N \N 2022-09-02 16:27:53.98248 t 42 \N 1 USD t \N 2022-09-02 16:27:53.92359 \N 2022-07-12 18:13:32.524376 \N \N -26 Sweaters_zippedhighnecksweater_67.99 0.00 \N \N \N 2022-09-02 16:28:01.115989 t 26 \N 1 USD t \N 2022-09-02 16:28:01.075717 \N 2022-07-12 18:13:26.314655 \N \N -12 T-shirts_polot-shirt_52.99 0.00 \N \N \N 2022-09-02 16:28:43.263043 t 12 \N 1 USD t \N 2022-09-02 16:28:43.218479 \N 2022-07-12 18:13:21.153267 \N \N -32 JacketsandCoats_wool-blendshortcoat_27.99 0.00 \N \N \N 2022-09-02 16:28:01.733546 t 32 \N 1 USD t \N 2022-09-02 16:28:01.690755 \N 2022-07-12 18:13:28.883618 \N \N -178 ShirtsandBlouses_pleatedsleevev-neckshirt_28.99_orange_xs 0.00 \N \N \N 2022-09-02 16:28:44.447988 f 62 28.99 2 USD t 1 2022-09-02 16:28:44.388545 \N 2022-07-12 18:15:24.188046 \N \N -229 Pants_pants_50.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:46.977167 f 113 50.99 2 USD t 1 2022-09-02 16:28:46.924925 \N 2022-07-12 18:15:31.905511 \N \N -34 JacketsandCoats_wool-blendcoat_35.99 0.00 \N \N \N 2022-09-02 16:28:03.039371 t 34 \N 1 USD t \N 2022-09-02 16:28:02.997621 \N 2022-07-12 18:13:29.611553 \N \N -3 Shirts_coveredplacketshirt_99.99 0.00 \N \N \N 2022-09-02 16:25:54.065104 t 3 \N 1 USD t \N 2022-09-02 16:25:54.02392 \N 2022-07-12 18:13:18.106026 \N \N -36 Skirts_flaredmidiskirt_21.99 0.00 \N \N \N 2022-09-02 16:26:03.353912 t 36 \N 1 USD t \N 2022-09-02 16:26:03.297544 \N 2022-07-12 18:13:30.344098 \N \N -48 Dresses_flareddress_81.99 0.00 \N \N \N 2022-09-02 16:26:04.139052 t 48 \N 1 USD t \N 2022-09-02 16:26:04.07464 \N 2022-07-12 18:13:34.899604 \N \N -60 ShirtsandBlouses_v-neckwideshirt_68.99 0.00 \N \N \N 2022-09-02 16:28:03.732031 t 60 \N 1 USD t \N 2022-09-02 16:28:03.680404 \N 2022-07-12 18:13:39.3651 \N \N -49 Dresses_elegantflareddress_55.99 0.00 \N \N \N 2022-09-02 16:26:05.072422 t 49 \N 1 USD t \N 2022-09-02 16:26:05.014675 \N 2022-07-12 18:13:35.255036 \N \N -54 Dresses_dresswithbelt_36.99 0.00 \N \N \N 2022-09-02 16:26:06.355821 t 54 \N 1 USD t \N 2022-09-02 16:26:06.308444 \N 2022-07-12 18:13:37.096464 \N \N -33 JacketsandCoats_downjacketwithhood_64.99 0.00 \N \N \N 2022-09-02 16:26:07.037549 t 33 \N 1 USD t \N 2022-09-02 16:26:06.981809 \N 2022-07-12 18:13:29.251612 \N \N -9 Shirts_dottedshirt_33.99 0.00 \N \N \N 2022-09-02 16:26:08.915185 t 9 \N 1 USD t \N 2022-09-02 16:26:08.869418 \N 2022-07-12 18:13:20.142839 \N \N -1 Shirts_denimshirt_24.99 0.00 \N \N \N 2022-09-02 16:26:09.621482 t 1 \N 1 USD t \N 2022-09-02 16:26:09.580526 \N 2022-07-12 18:13:17.278307 \N \N -41 Skirts_flaredskirt_74.99 0.00 \N \N \N 2022-09-02 16:26:59.899398 t 41 \N 1 USD t \N 2022-09-02 16:26:59.837831 \N 2022-07-12 18:13:32.160666 \N \N -44 Skirts_floralflaredskirt_10.99 0.00 \N \N \N 2022-09-02 16:27:01.199664 t 44 \N 1 USD t \N 2022-09-02 16:27:01.154861 \N 2022-07-12 18:13:33.256328 \N \N -66 ShirtsandBlouses_floralshirt_72.99 0.00 \N \N \N 2022-09-02 16:27:01.996118 t 66 \N 1 USD t \N 2022-09-02 16:27:01.928484 \N 2022-07-12 18:13:41.464928 \N \N -56 Dresses_flounceddress_32.99 0.00 \N \N \N 2022-09-02 16:27:02.64798 t 56 \N 1 USD t \N 2022-09-02 16:27:02.59889 \N 2022-07-12 18:13:37.833355 \N \N -17 T-shirts_v-neckt-shirt_47.99 0.00 \N \N \N 2022-09-02 16:28:04.419913 t 17 \N 1 USD t \N 2022-09-02 16:28:04.378221 \N 2022-07-12 18:13:23.018076 \N \N -35 JacketsandCoats_jacketwithliner_73.99 0.00 \N \N \N 2022-09-02 16:27:05.323416 t 35 \N 1 USD t \N 2022-09-02 16:27:05.279356 \N 2022-07-12 18:13:29.981032 \N \N -40 Skirts_leatherskirtwithlacing_46.99 0.00 \N \N \N 2022-09-02 16:27:09.011798 t 40 \N 1 USD t \N 2022-09-02 16:27:08.963317 \N 2022-07-12 18:13:31.803298 \N \N -10 Shirts_linenshirt_87.99 0.00 \N \N \N 2022-09-02 16:27:09.843474 t 10 \N 1 USD t \N 2022-09-02 16:27:09.8027 \N 2022-07-12 18:13:20.488531 \N \N -27 Sweaters_longsleevejumper_64.99 0.00 \N \N \N 2022-09-02 16:27:10.582728 t 27 \N 1 USD t \N 2022-09-02 16:27:10.538459 \N 2022-07-12 18:13:26.680535 \N \N -13 T-shirts_longsleevet-shirt_28.99 0.00 \N \N \N 2022-09-02 16:27:12.917893 t 13 \N 1 USD t \N 2022-09-02 16:27:12.873076 \N 2022-07-12 18:13:21.489469 \N \N -50 Dresses_longsleeveknitteddress_23.99 0.00 \N \N \N 2022-09-02 16:27:14.139573 t 50 \N 1 USD t \N 2022-09-02 16:27:14.087941 \N 2022-07-12 18:13:35.611949 \N \N -22 Sweaters_longsleevejumperwithpocket_93.99 0.00 \N \N \N 2022-09-02 16:27:14.803899 t 22 \N 1 USD t \N 2022-09-02 16:27:14.75998 \N 2022-07-12 18:13:24.81014 \N \N -23 Sweaters_jumper_61.99 0.00 \N \N \N 2022-09-02 16:27:18.400015 t 23 \N 1 USD t \N 2022-09-02 16:27:18.355994 \N 2022-07-12 18:13:25.155502 \N \N -25 Sweaters_hoodie_24.99 0.00 \N \N \N 2022-09-02 16:27:21.420616 t 25 \N 1 USD t \N 2022-09-02 16:27:21.381553 \N 2022-07-12 18:13:25.873591 \N \N -47 Dresses_v-neckfloralmaxidress_31.99 0.00 \N \N \N 2022-09-02 16:28:06.212788 t 47 \N 1 USD t \N 2022-09-02 16:28:06.155188 \N 2022-07-12 18:13:34.52817 \N \N -20 Sweaters_highnecksweater_45.99 0.00 \N \N \N 2022-09-02 16:27:23.296418 t 20 \N 1 USD t \N 2022-09-02 16:27:23.252862 \N 2022-07-12 18:13:24.097249 \N \N -55 Dresses_v-neckfloraldress_73.99 0.00 \N \N \N 2022-09-02 16:28:06.891602 t 55 \N 1 USD t \N 2022-09-02 16:28:06.852374 \N 2022-07-12 18:13:37.452035 \N \N -18 T-shirts_tanktop_10.99 0.00 \N \N \N 2022-09-02 16:28:07.431801 t 18 \N 1 USD t \N 2022-09-02 16:28:07.389363 \N 2022-07-12 18:13:23.365655 \N \N -162 Dresses_floralwrapdress_14.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:27:24.14378 f 46 14.99 2 USD t 1 2022-09-02 16:27:24.078791 \N 2022-07-12 18:15:20.424697 \N \N -91 JacketsandCoats_loose-fittedjacket_43.99 0.00 \N \N \N 2022-09-02 16:28:28.408865 t 91 \N 1 USD t \N 2022-09-02 16:28:28.367695 \N 2022-07-12 18:13:51.733944 \N \N -80 TopsandT-shirts_scrappycroptopwithtie_46.99 0.00 \N \N \N 2022-09-02 16:27:34.280149 t 80 \N 1 USD t \N 2022-09-02 16:27:34.221845 \N 2022-07-12 18:13:47.372456 \N \N -78 TopsandT-shirts_scrappytop_40.99 0.00 \N \N \N 2022-09-02 16:27:34.774698 t 78 \N 1 USD t \N 2022-09-02 16:27:34.724551 \N 2022-07-12 18:13:46.53476 \N \N -99 Tops_oversizet-shirtwrappedonback_76.99 0.00 \N \N \N 2022-09-02 16:28:31.22779 t 99 \N 1 USD t \N 2022-09-02 16:28:31.189501 \N 2022-07-12 18:13:54.846809 \N \N -71 Sweaters_oversizedknittedsweater_24.99 0.00 \N \N \N 2022-09-02 16:28:31.774534 t 71 \N 1 USD t \N 2022-09-02 16:28:31.725479 \N 2022-07-12 18:13:43.3256 \N \N -72 Sweaters_oversizedsweatshirt_86.99 0.00 \N \N \N 2022-09-02 16:28:32.333955 t 72 \N 1 USD t \N 2022-09-02 16:28:32.29144 \N 2022-07-12 18:13:43.676766 \N \N -111 Pants_shortpants_14.99 0.00 \N \N \N 2022-09-02 16:27:35.933236 t 111 \N 1 USD t \N 2022-09-02 16:27:35.888896 \N 2022-07-12 18:13:59.435193 \N \N -227 Pants_shortpants_14.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:36.029665 f 111 14.99 2 USD t 1 2022-09-02 16:27:35.971936 \N 2022-07-12 18:15:31.61544 \N \N -123 Shirts_regularshirt_94.99_blue_xs 0.00 \N \N \N 2022-09-02 16:28:35.552512 f 7 94.99 2 USD t 1 2022-09-02 16:28:35.489896 \N 2022-07-12 18:15:13.927919 \N \N -110 Pants_shinedpants_73.99 0.00 \N \N \N 2022-09-02 16:27:42.082222 t 110 \N 1 USD t \N 2022-09-02 16:27:42.035375 \N 2022-07-12 18:13:59.082328 \N \N -61 ShirtsandBlouses_printedwrappedblouse_15.99 0.00 \N \N \N 2022-09-02 16:28:36.810688 t 61 \N 1 USD t \N 2022-09-02 16:28:36.767736 \N 2022-07-12 18:13:39.721106 \N \N -102 Tops_sportsbramediumsupport_29.99 0.00 \N \N \N 2022-09-02 16:27:48.643156 t 102 \N 1 USD t \N 2022-09-02 16:27:48.598303 \N 2022-07-12 18:13:55.941681 \N \N -77 TopsandT-shirts_printedt-shirt_30.99 0.00 \N \N \N 2022-09-02 16:28:38.011934 t 77 \N 1 USD t \N 2022-09-02 16:28:37.967601 \N 2022-07-12 18:13:45.768345 \N \N -69 ShirtsandBlouses_printedshirt_46.99 0.00 \N \N \N 2022-09-02 16:28:40.039826 t 69 \N 1 USD t \N 2022-09-02 16:28:39.998653 \N 2022-07-12 18:13:42.598927 \N \N -112 Pants_printedpantswithholes_45.99 0.00 \N \N \N 2022-09-02 16:28:41.194112 t 112 \N 1 USD t \N 2022-09-02 16:28:41.150016 \N 2022-07-12 18:13:59.786966 \N \N -97 Tops_sportsbralowsupport_41.99 0.00 \N \N \N 2022-09-02 16:27:49.476773 t 97 \N 1 USD t \N 2022-09-02 16:27:49.437841 \N 2022-07-12 18:13:54.146383 \N \N -114 Pants_printedpants_45.99 0.00 \N \N \N 2022-09-02 16:28:41.811248 t 114 \N 1 USD t \N 2022-09-02 16:28:41.770356 \N 2022-07-12 18:14:00.662845 \N \N -128 T-shirts_polot-shirt_52.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:28:43.364421 f 12 52.99 2 USD t 1 2022-09-02 16:28:43.299573 \N 2022-07-12 18:15:14.629967 \N \N -103 Tops_sportsbra_79.99 0.00 \N \N \N 2022-09-02 16:27:49.967555 t 103 \N 1 USD t \N 2022-09-02 16:27:49.929603 \N 2022-07-12 18:13:56.364974 \N \N -108 Sweatshirts_sportwindproofjacket_54.99 0.00 \N \N \N 2022-09-02 16:27:50.68162 t 108 \N 1 USD t \N 2022-09-02 16:27:50.638146 \N 2022-07-12 18:13:58.33504 \N \N -109 Sweatshirts_sportwaistcoat_71.99 0.00 \N \N \N 2022-09-02 16:27:51.264163 t 109 \N 1 USD t \N 2022-09-02 16:27:51.22469 \N 2022-07-12 18:13:58.734436 \N \N -104 Tops_sportcropptop_47.99 0.00 \N \N \N 2022-09-02 16:27:52.750756 t 104 \N 1 USD t \N 2022-09-02 16:27:52.69484 \N 2022-07-12 18:13:56.85845 \N \N -90 JacketsandCoats_zippedjacket_28.99 0.00 \N \N \N 2022-09-02 16:28:00.482561 t 90 \N 1 USD t \N 2022-09-02 16:28:00.441982 \N 2022-07-12 18:13:51.278269 \N \N -62 ShirtsandBlouses_pleatedsleevev-neckshirt_28.99 0.00 \N \N \N 2022-09-02 16:28:44.353569 t 62 \N 1 USD t \N 2022-09-02 16:28:44.296019 \N 2022-07-12 18:13:40.07126 \N \N -124 Shirts_checkedslimfitshirt_27.99_black_xs 0.00 \N \N \N 2022-09-02 16:25:48.76213 f 8 27.99 2 USD t 1 2022-09-02 16:25:48.699256 \N 2022-07-12 18:15:14.059946 \N \N -85 JacketsandCoats_coatwithpockets_27.99 0.00 \N \N \N 2022-09-02 16:25:50.404762 t 85 \N 1 USD t \N 2022-09-02 16:25:50.363476 \N 2022-07-12 18:13:49.209388 \N \N -63 ShirtsandBlouses_cottonshirt_17.99 0.00 \N \N \N 2022-09-02 16:25:52.048839 t 63 \N 1 USD t \N 2022-09-02 16:25:52.006234 \N 2022-07-12 18:13:40.404525 \N \N -119 Shirts_coveredplacketshirt_99.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:25:54.15683 f 3 99.99 2 USD t 1 2022-09-02 16:25:54.092854 \N 2022-07-12 18:15:13.339516 \N \N -81 TopsandT-shirts_croptop_60.99 0.00 \N \N \N 2022-09-02 16:25:56.046161 t 81 \N 1 USD t \N 2022-09-02 16:25:55.98781 \N 2022-07-12 18:13:47.726298 \N \N -76 TopsandT-shirts_croptopwithtie_96.99 0.00 \N \N \N 2022-09-02 16:25:57.854051 t 76 \N 1 USD t \N 2022-09-02 16:25:57.810885 \N 2022-07-12 18:13:45.362221 \N \N -75 Sweaters_croppedfittedsweater_92.99 0.00 \N \N \N 2022-09-02 16:25:59.495627 t 75 \N 1 USD t \N 2022-09-02 16:25:59.455168 \N 2022-07-12 18:13:44.985947 \N \N -65 ShirtsandBlouses_elegantblousewithchocker_19.99 0.00 \N \N \N 2022-09-02 16:26:05.74851 t 65 \N 1 USD t \N 2022-09-02 16:26:05.703803 \N 2022-07-12 18:13:41.093327 \N \N -89 JacketsandCoats_downjacket_59.99 0.00 \N \N \N 2022-09-02 16:26:07.523043 t 89 \N 1 USD t \N 2022-09-02 16:26:07.47837 \N 2022-07-12 18:13:50.867977 \N \N -92 JacketsandCoats_double-breastedjacket_50.99 0.00 \N \N \N 2022-09-02 16:26:08.142966 t 92 \N 1 USD t \N 2022-09-02 16:26:08.099574 \N 2022-07-12 18:13:52.214767 \N \N -125 Shirts_dottedshirt_33.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:09.002988 f 9 33.99 2 USD t 1 2022-09-02 16:26:08.944393 \N 2022-07-12 18:15:14.198049 \N \N -116 Pants_highwaistpants_20.99 0.00 \N \N \N 2022-09-02 16:27:03.450137 t 116 \N 1 USD t \N 2022-09-02 16:27:03.399484 \N 2022-07-12 18:14:01.365089 \N \N -74 Sweaters_knittedv-necksweater_17.99 0.00 \N \N \N 2022-09-02 16:27:07.179876 t 74 \N 1 USD t \N 2022-09-02 16:27:07.138688 \N 2022-07-12 18:13:44.438445 \N \N -101 Tops_lacedcroptop_11.99 0.00 \N \N \N 2022-09-02 16:27:08.048753 t 101 \N 1 USD t \N 2022-09-02 16:27:07.996964 \N 2022-07-12 18:13:55.55447 \N \N -68 ShirtsandBlouses_v-neckshirt_87.99 0.00 \N \N \N 2022-09-02 16:28:04.977989 t 68 \N 1 USD t \N 2022-09-02 16:28:04.905895 \N 2022-07-12 18:13:42.212788 \N \N -129 T-shirts_longsleevet-shirt_28.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:13.020644 f 13 28.99 2 USD t 1 2022-09-02 16:27:12.95165 \N 2022-07-12 18:15:14.819033 \N \N -88 JacketsandCoats_longcoatwithbelt_47.99 0.00 \N \N \N 2022-09-02 16:27:15.39564 t 88 \N 1 USD t \N 2022-09-02 16:27:15.353977 \N 2022-07-12 18:13:50.318911 \N \N -106 Sweatshirts_lightweightrunningjacket_52.99 0.00 \N \N \N 2022-09-02 16:27:16.124865 t 106 \N 1 USD t \N 2022-09-02 16:27:16.079378 \N 2022-07-12 18:13:57.602507 \N \N -93 JacketsandCoats_leatherbikerjacket_26.99 0.00 \N \N \N 2022-09-02 16:27:16.91678 t 93 \N 1 USD t \N 2022-09-02 16:27:16.877391 \N 2022-07-12 18:13:52.596401 \N \N -115 Pants_highwaistpantswithpockets_92.99 0.00 \N \N \N 2022-09-02 16:27:22.589577 t 115 \N 1 USD t \N 2022-09-02 16:27:22.545781 \N 2022-07-12 18:14:01.016981 \N \N -100 Tops_longsleevescroptop_34.99 0.00 \N \N \N 2022-09-02 16:28:18.683841 t 100 \N 1 USD t \N 2022-09-02 16:28:18.644172 \N 2022-07-12 18:13:55.201393 \N \N -98 Tops_longsleevesyogacroptop_37.99 0.00 \N \N \N 2022-09-02 16:28:19.262344 t 98 \N 1 USD t \N 2022-09-02 16:28:19.223875 \N 2022-07-12 18:13:54.491579 \N \N -86 JacketsandCoats_longwool-blendcoatwithbelt_43.99 0.00 \N \N \N 2022-09-02 16:28:19.895498 t 86 \N 1 USD t \N 2022-09-02 16:28:19.857404 \N 2022-07-12 18:13:49.570722 \N \N -107 Sweatshirts_oversizesweatshirt_67.99 0.00 \N \N \N 2022-09-02 16:28:20.863512 t 107 \N 1 USD t \N 2022-09-02 16:28:20.822905 \N 2022-07-12 18:13:57.977045 \N \N -79 TopsandT-shirts_pleatedsleevet-shirt_83.99 0.00 \N \N \N 2022-09-02 16:28:45.056474 t 79 \N 1 USD t \N 2022-09-02 16:28:45.015383 \N 2022-07-12 18:13:46.976331 \N \N -113 Pants_pants_50.99 0.00 \N \N \N 2022-09-02 16:28:46.897303 t 113 \N 1 USD t \N 2022-09-02 16:28:46.856165 \N 2022-07-12 18:14:00.22087 \N \N -228 Pants_printedpantswithholes_45.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:41.286039 f 112 45.99 2 USD t 1 2022-09-02 16:28:41.220897 \N 2022-07-12 18:15:31.757608 \N \N -187 Sweaters_oversizedknittedsweater_24.99_red_xs 0.00 \N \N \N 2022-09-02 16:28:31.858241 f 71 24.99 2 USD t 1 2022-09-02 16:28:31.800983 \N 2022-07-12 18:15:25.582655 \N \N -11 Shirts_regularshirtwithrolledupsleeves_98.99 0.00 \N \N \N 2022-09-02 16:27:31.599052 t 11 \N 1 USD t \N 2022-09-02 16:27:31.556833 \N 2022-07-12 18:13:20.818637 \N \N -127 Shirts_regularshirtwithrolledupsleeves_98.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:31.679903 f 11 98.99 2 USD t 1 2022-09-02 16:27:31.625013 \N 2022-07-12 18:15:14.492009 \N \N -105 Sweatshirts_runningsweatshirt_17.99 0.00 \N \N \N 2022-09-02 16:27:33.662114 t 105 \N 1 USD t \N 2022-09-02 16:27:33.615893 \N 2022-07-12 18:13:57.216205 \N \N -224 Sweatshirts_sportwindproofjacket_54.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:50.772401 f 108 54.99 2 USD t 1 2022-09-02 16:27:50.713407 \N 2022-07-12 18:15:31.15113 \N \N -188 Sweaters_oversizedsweatshirt_86.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:32.412223 f 72 86.99 2 USD t 1 2022-09-02 16:28:32.35847 \N 2022-07-12 18:15:25.720664 \N \N -161 Skirts_pleatedskirt2_17.99_green_mini_xs 0.00 \N \N \N 2022-09-02 16:28:33.068674 f 45 17.99 2 USD t 1 2022-09-02 16:28:32.998685 \N 2022-07-12 18:15:20.036528 \N \N -144 JacketsandCoats_suedebikerjacket_33.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:46.194178 f 28 33.99 2 USD t 1 2022-09-02 16:27:46.130439 \N 2022-07-12 18:15:17.027655 \N \N -132 T-shirts_raw-edget-shirt_84.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:36.205487 f 16 84.99 2 USD t 1 2022-09-02 16:28:36.147856 \N 2022-07-12 18:15:15.226759 \N \N -137 Sweaters_strippedjumper_88.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:46.763092 f 21 88.99 2 USD t 1 2022-09-02 16:27:46.707109 \N 2022-07-12 18:15:16.011332 \N \N -167 Dresses_stripedshirtdress_87.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:27:47.495932 f 51 87.99 2 USD t 1 2022-09-02 16:27:47.433788 \N 2022-07-12 18:15:21.503862 \N \N -94 JacketsandCoats_wool-blendcoatwithbelt_13.99 0.00 \N \N \N 2022-09-02 16:28:02.464498 t 94 \N 1 USD t \N 2022-09-02 16:28:02.416184 \N 2022-07-12 18:13:52.987407 \N \N -185 ShirtsandBlouses_printedshirt_46.99_green_xs 0.00 \N \N \N 2022-09-02 16:28:40.118126 f 69 46.99 2 USD t 1 2022-09-02 16:28:40.066667 \N 2022-07-12 18:15:25.217615 \N \N -158 Skirts_skaterskirt_17.99_brown_mini_xs 0.00 \N \N \N 2022-09-02 16:27:54.073185 f 42 17.99 2 USD t 1 2022-09-02 16:27:54.011765 \N 2022-07-12 18:15:19.469858 \N \N -142 Sweaters_zippedhighnecksweater_67.99_green_xs 0.00 \N \N \N 2022-09-02 16:28:01.222573 f 26 67.99 2 USD t 1 2022-09-02 16:28:01.144397 \N 2022-07-12 18:15:16.73958 \N \N -148 JacketsandCoats_wool-blendshortcoat_27.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:01.829392 f 32 27.99 2 USD t 1 2022-09-02 16:28:01.766574 \N 2022-07-12 18:15:17.656374 \N \N -202 JacketsandCoats_longwool-blendcoatwithbelt_43.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:28:19.978618 f 86 43.99 2 USD t 1 2022-09-02 16:28:19.920506 \N 2022-07-12 18:15:27.992448 \N \N -176 ShirtsandBlouses_v-neckwideshirt_68.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:28:03.829578 f 60 68.99 2 USD t 1 2022-09-02 16:28:03.763336 \N 2022-07-12 18:15:23.86542 \N \N -133 T-shirts_v-neckt-shirt_47.99_grey_xs 0.00 \N \N \N 2022-09-02 16:28:04.507918 f 17 47.99 2 USD t 1 2022-09-02 16:28:04.446266 \N 2022-07-12 18:15:15.402611 \N \N -184 ShirtsandBlouses_v-neckshirt_87.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:05.07162 f 68 87.99 2 USD t 1 2022-09-02 16:28:05.011298 \N 2022-07-12 18:15:25.057849 \N \N -152 Skirts_flaredmidiskirt_21.99_burgundy_mini_xs 0.00 \N \N \N 2022-09-02 16:26:03.473466 f 36 21.99 2 USD t 1 2022-09-02 16:26:03.396119 \N 2022-07-12 18:15:18.302424 \N \N -164 Dresses_flareddress_81.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:26:04.253403 f 48 81.99 2 USD t 1 2022-09-02 16:26:04.173309 \N 2022-07-12 18:15:20.838618 \N \N -165 Dresses_elegantflareddress_55.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:26:05.217296 f 49 55.99 2 USD t 1 2022-09-02 16:26:05.136073 \N 2022-07-12 18:15:21.047071 \N \N -181 ShirtsandBlouses_elegantblousewithchocker_19.99_mint_xs 0.00 \N \N \N 2022-09-02 16:26:05.835473 f 65 19.99 2 USD t 1 2022-09-02 16:26:05.776838 \N 2022-07-12 18:15:24.582466 \N \N -170 Dresses_dresswithbelt_36.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:26:06.715579 f 54 36.99 2 USD t 1 2022-09-02 16:26:06.471029 \N 2022-07-12 18:15:22.197143 \N \N -149 JacketsandCoats_downjacketwithhood_64.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:26:07.127135 f 33 64.99 2 USD t 1 2022-09-02 16:26:07.068328 \N 2022-07-12 18:15:17.792208 \N \N -147 JacketsandCoats_denimjacket_76.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:26:10.408016 f 31 76.99 2 USD t 1 2022-09-02 16:26:10.338523 \N 2022-07-12 18:15:17.519267 \N \N -157 Skirts_flaredskirt_74.99_orange_mini_xs 0.00 \N \N \N 2022-09-02 16:27:00.000501 f 41 74.99 2 USD t 1 2022-09-02 16:26:59.930591 \N 2022-07-12 18:15:19.291507 \N \N -182 ShirtsandBlouses_floralshirt_72.99_pink_xs 0.00 \N \N \N 2022-09-02 16:27:02.092458 f 66 72.99 2 USD t 1 2022-09-02 16:27:02.027517 \N 2022-07-12 18:15:24.754232 \N \N -172 Dresses_flounceddress_32.99_beige_mini_xs 0.00 \N \N \N 2022-09-02 16:27:02.752623 f 56 32.99 2 USD t 1 2022-09-02 16:27:02.678681 \N 2022-07-12 18:15:23.201184 \N \N -145 JacketsandCoats_hoodedjacket_11.99_beige_xs 0.00 \N \N \N 2022-09-02 16:27:04.317928 f 29 11.99 2 USD t 1 2022-09-02 16:27:04.259871 \N 2022-07-12 18:15:17.233116 \N \N -151 JacketsandCoats_jacketwithliner_73.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:05.409868 f 35 73.99 2 USD t 1 2022-09-02 16:27:05.35208 \N 2022-07-12 18:15:18.155236 \N \N -190 Sweaters_knittedv-necksweater_17.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:07.262829 f 74 17.99 2 USD t 1 2022-09-02 16:27:07.207052 \N 2022-07-12 18:15:26.03684 \N \N -171 Dresses_v-neckfloraldress_73.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:06.975571 f 55 73.99 2 USD t 1 2022-09-02 16:28:06.915753 \N 2022-07-12 18:15:22.625338 \N \N -143 Sweaters_longsleevejumper_64.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:27:10.668359 f 27 64.99 2 USD t 1 2022-09-02 16:27:10.610874 \N 2022-07-12 18:15:16.86765 \N \N -140 Sweaters_longsleevesweatshirt_73.99_mint_xs 0.00 \N \N \N 2022-09-02 16:27:13.594964 f 24 73.99 2 USD t 1 2022-09-02 16:27:13.509798 \N 2022-07-12 18:15:16.42043 \N \N -166 Dresses_longsleeveknitteddress_23.99_grey_mini_xs 0.00 \N \N \N 2022-09-02 16:27:14.23831 f 50 23.99 2 USD t 1 2022-09-02 16:27:14.172502 \N 2022-07-12 18:15:21.246726 \N \N -138 Sweaters_longsleevejumperwithpocket_93.99_ecru_xs 0.00 \N \N \N 2022-09-02 16:27:14.894952 f 22 93.99 2 USD t 1 2022-09-02 16:27:14.8367 \N 2022-07-12 18:15:16.14429 \N \N -189 Sweaters_knittedhighnecksweater_86.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:17.522917 f 73 86.99 2 USD t 1 2022-09-02 16:27:17.46347 \N 2022-07-12 18:15:25.850981 \N \N -139 Sweaters_jumper_61.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:18.480182 f 23 61.99 2 USD t 1 2022-09-02 16:27:18.425627 \N 2022-07-12 18:15:16.278994 \N \N -141 Sweaters_hoodie_24.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:21.495281 f 25 24.99 2 USD t 1 2022-09-02 16:27:21.444867 \N 2022-07-12 18:15:16.61067 \N \N -136 Sweaters_highnecksweater_45.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:23.380948 f 20 45.99 2 USD t 1 2022-09-02 16:27:23.321559 \N 2022-07-12 18:15:15.868786 \N \N -134 T-shirts_tanktop_10.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:07.522773 f 18 10.99 2 USD t 1 2022-09-02 16:28:07.457783 \N 2022-07-12 18:15:15.552987 \N \N -207 JacketsandCoats_loose-fittedjacket_43.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:28:28.49236 f 91 43.99 2 USD t 1 2022-09-02 16:28:28.433109 \N 2022-07-12 18:15:28.666324 \N \N -221 Sweatshirts_runningsweatshirt_17.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:33.778162 f 105 17.99 2 USD t 1 2022-09-02 16:27:33.697093 \N 2022-07-12 18:15:30.763151 \N \N -215 Tops_oversizet-shirtwrappedonback_76.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:31.300318 f 99 76.99 2 USD t 1 2022-09-02 16:28:31.250523 \N 2022-07-12 18:15:29.852532 \N \N -196 TopsandT-shirts_scrappycroptopwithtie_46.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:34.370142 f 80 46.99 2 USD t 1 2022-09-02 16:27:34.309639 \N 2022-07-12 18:15:26.986256 \N \N -194 TopsandT-shirts_scrappytop_40.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:34.861676 f 78 40.99 2 USD t 1 2022-09-02 16:27:34.806622 \N 2022-07-12 18:15:26.713421 \N \N -177 ShirtsandBlouses_printedwrappedblouse_15.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:36.892985 f 61 15.99 2 USD t 1 2022-09-02 16:28:36.83716 \N 2022-07-12 18:15:24.041195 \N \N -67 ShirtsandBlouses_semi-sheershirtwithpockets_36.99 0.00 \N \N \N 2022-09-02 16:27:35.471903 t 67 \N 1 USD t \N 2022-09-02 16:27:35.425615 \N 2022-07-12 18:13:41.825593 \N \N -193 TopsandT-shirts_printedt-shirt_30.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:38.088413 f 77 30.99 2 USD t 1 2022-09-02 16:28:38.036415 \N 2022-07-12 18:15:26.551833 \N \N -195 TopsandT-shirts_pleatedsleevet-shirt_83.99_beige_xs 0.00 \N \N \N 2022-09-02 16:28:45.135444 f 79 83.99 2 USD t 1 2022-09-02 16:28:45.081557 \N 2022-07-12 18:15:26.839638 \N \N -159 Skirts_skatershortskirt_67.99_white_mini_xs 0.00 \N \N \N 2022-09-02 16:27:36.74416 f 43 67.99 2 USD t 1 2022-09-02 16:27:36.679284 \N 2022-07-12 18:15:19.637771 \N \N -14 T-shirts_3_4sleevet-shirt_18.99 0.00 \N \N \N 2022-09-02 14:33:28.898515 t 14 \N 1 USD t \N 2022-09-02 14:33:28.772603 \N 2022-07-12 18:13:21.818352 \N \N -130 T-shirts_3_4sleevet-shirt_18.99_white_xs 0.00 \N \N \N 2022-09-02 14:33:29.005907 f 14 18.99 2 USD t 1 2022-09-02 14:33:28.925684 \N 2022-07-12 18:15:14.952579 \N \N -39 Skirts_a-linesuedeskirt_30.99 0.00 \N \N \N 2022-09-02 14:33:32.024959 t 39 \N 1 USD t \N 2022-09-02 14:33:31.984026 \N 2022-07-12 18:13:31.445057 \N \N -155 Skirts_a-linesuedeskirt_30.99_dark_blue_mini_xs 0.00 \N \N \N 2022-09-02 14:33:32.141078 f 39 30.99 2 USD t 1 2022-09-02 14:33:32.050632 \N 2022-07-12 18:15:18.907441 \N \N -30 JacketsandCoats_anorakwithhood_44.99 0.00 \N \N \N 2022-09-02 14:33:34.310546 t 30 \N 1 USD t \N 2022-09-02 14:33:34.206932 \N 2022-07-12 18:13:27.9051 \N \N -146 JacketsandCoats_anorakwithhood_44.99_yellow_xs 0.00 \N \N \N 2022-09-02 14:33:34.462213 f 30 44.99 2 USD t 1 2022-09-02 14:33:34.336567 \N 2022-07-12 18:15:17.35957 \N \N -87 JacketsandCoats_asymmetriccoat_19.99 0.00 \N \N \N 2022-09-02 14:33:39.48791 t 87 \N 1 USD t \N 2022-09-02 14:33:39.450141 \N 2022-07-12 18:13:49.948975 \N \N -203 JacketsandCoats_asymmetriccoat_19.99_white_xs 0.00 \N \N \N 2022-09-02 14:33:39.575761 f 87 19.99 2 USD t 1 2022-09-02 14:33:39.512639 \N 2022-07-12 18:15:28.155011 \N \N -70 Sweaters_asymmetricsweaterwithwidesleeves_34.99 0.00 \N \N \N 2022-09-02 14:33:48.981418 t 70 \N 1 USD t \N 2022-09-02 14:33:48.93574 \N 2022-07-12 18:13:42.970167 \N \N -186 Sweaters_asymmetricsweaterwithwidesleeves_34.99_blue_xs 0.00 \N \N \N 2022-09-02 14:33:49.061903 f 70 34.99 2 USD t 1 2022-09-02 14:33:49.006784 \N 2022-07-12 18:15:25.364416 \N \N -226 Pants_shinedpants_73.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:42.184394 f 110 73.99 2 USD t 1 2022-09-02 16:27:42.109367 \N 2022-07-12 18:15:31.432742 \N \N -197 TopsandT-shirts_croptop_60.99_black_xs 0.00 \N \N \N 2022-09-02 16:25:56.139756 f 81 60.99 2 USD t 1 2022-09-02 16:25:56.076108 \N 2022-07-12 18:15:27.113257 \N \N -121 Shirts_shortsleeveshirt_55.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:27:42.807222 f 5 55.99 2 USD t 1 2022-09-02 16:27:42.747101 \N 2022-07-12 18:15:13.6705 \N \N -191 Sweaters_croppedfittedsweater_92.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:59.581124 f 75 92.99 2 USD t 1 2022-09-02 16:25:59.522251 \N 2022-07-12 18:15:26.27123 \N \N -211 JacketsandCoats_denimhoodedjacket_88.99_blue_xs 0.00 \N \N \N 2022-09-02 16:26:01.371345 f 95 88.99 2 USD t 1 2022-09-02 16:26:01.302463 \N 2022-07-12 18:15:29.250644 \N \N -205 JacketsandCoats_downjacket_59.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:07.619489 f 89 59.99 2 USD t 1 2022-09-02 16:26:07.552574 \N 2022-07-12 18:15:28.409217 \N \N -208 JacketsandCoats_double-breastedjacket_50.99_white_xs 0.00 \N \N \N 2022-09-02 16:26:08.229462 f 92 50.99 2 USD t 1 2022-09-02 16:26:08.169198 \N 2022-07-12 18:15:28.813987 \N \N -117 Shirts_denimshirt_24.99_blue_xs 0.00 \N \N \N 2022-09-02 16:26:09.715666 f 1 24.99 2 USD t 1 2022-09-02 16:26:09.648484 \N 2022-07-12 18:15:12.939404 \N \N -232 Pants_highwaistpants_20.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:03.549862 f 116 20.99 2 USD t 1 2022-09-02 16:27:03.482606 \N 2022-07-12 18:15:32.316211 \N \N -217 Tops_lacedcroptop_11.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:08.13341 f 101 11.99 2 USD t 1 2022-09-02 16:27:08.076538 \N 2022-07-12 18:15:30.159613 \N \N -222 Sweatshirts_lightweightrunningjacket_52.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:16.21087 f 106 52.99 2 USD t 1 2022-09-02 16:27:16.153781 \N 2022-07-12 18:15:30.890381 \N \N -209 JacketsandCoats_leatherbikerjacket_26.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:17.014767 f 93 26.99 2 USD t 1 2022-09-02 16:27:16.942628 \N 2022-07-12 18:15:28.952222 \N \N -120 Shirts_slimfitshirt_17.99_dark_blue_xs 0.00 \N \N \N 2022-09-02 16:27:43.368734 f 4 17.99 2 USD t 1 2022-09-02 16:27:43.308535 \N 2022-07-12 18:15:13.500055 \N \N -175 ShirtsandBlouses_stripedshirt_60.99_blue_xs 0.00 \N \N \N 2022-09-02 16:27:48.168551 f 59 60.99 2 USD t 1 2022-09-02 16:27:48.113535 \N 2022-07-12 18:15:23.708805 \N \N -218 Tops_sportsbramediumsupport_29.99_black_xs 0.00 \N \N \N 2022-09-02 16:27:48.735519 f 102 29.99 2 USD t 1 2022-09-02 16:27:48.677137 \N 2022-07-12 18:15:30.289117 \N \N -213 Tops_sportsbralowsupport_41.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:49.555999 f 97 41.99 2 USD t 1 2022-09-02 16:27:49.503108 \N 2022-07-12 18:15:29.519133 \N \N -219 Tops_sportsbra_79.99_green_xs 0.00 \N \N \N 2022-09-02 16:27:50.047501 f 103 79.99 2 USD t 1 2022-09-02 16:27:49.994521 \N 2022-07-12 18:15:30.42087 \N \N -225 Sweatshirts_sportwaistcoat_71.99_purple_xs 0.00 \N \N \N 2022-09-02 16:27:51.34261 f 109 71.99 2 USD t 1 2022-09-02 16:27:51.290019 \N 2022-07-12 18:15:31.299067 \N \N -220 Tops_sportcropptop_47.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:27:52.859754 f 104 47.99 2 USD t 1 2022-09-02 16:27:52.789695 \N 2022-07-12 18:15:30.598815 \N \N -206 JacketsandCoats_zippedjacket_28.99_blue_xs 0.00 \N \N \N 2022-09-02 16:28:00.572621 f 90 28.99 2 USD t 1 2022-09-02 16:28:00.512441 \N 2022-07-12 18:15:28.53186 \N \N -210 JacketsandCoats_wool-blendcoatwithbelt_13.99_burgundy_xs 0.00 \N \N \N 2022-09-02 16:28:02.554324 f 94 13.99 2 USD t 1 2022-09-02 16:28:02.493165 \N 2022-07-12 18:15:29.084726 \N \N -216 Tops_longsleevescroptop_34.99_black_xs 0.00 \N \N \N 2022-09-02 16:28:18.773442 f 100 34.99 2 USD t 1 2022-09-02 16:28:18.708649 \N 2022-07-12 18:15:30.018305 \N \N -214 Tops_longsleevesyogacroptop_37.99_mint_xs 0.00 \N \N \N 2022-09-02 16:28:19.351743 f 98 37.99 2 USD t 1 2022-09-02 16:28:19.290562 \N 2022-07-12 18:15:29.679163 \N \N -198 TopsandT-shirts_looset-shirtwithpocketimitation_37.99_white_xs 0.00 \N \N \N 2022-09-02 16:28:20.565687 f 82 37.99 2 USD t 1 2022-09-02 16:28:20.51303 \N 2022-07-12 18:15:27.265611 \N \N -223 Sweatshirts_oversizesweatshirt_67.99_pink_xs 0.00 \N \N \N 2022-09-02 16:28:20.951534 f 107 67.99 2 USD t 1 2022-09-02 16:28:20.893354 \N 2022-07-12 18:15:31.019412 \N \N -183 ShirtsandBlouses_semi-sheershirtwithpockets_36.99_white_xs 0.00 \N \N \N 2022-09-02 16:27:35.555549 f 67 36.99 2 USD t 1 2022-09-02 16:27:35.498337 \N 2022-07-12 18:15:24.923064 \N \N -83 TopsandT-shirts_sleevelessloosetop_58.99 0.00 \N \N \N 2022-09-02 16:27:38.13385 t 83 \N 1 USD t \N 2022-09-02 16:27:38.092844 \N 2022-07-12 18:13:48.448016 \N \N -199 TopsandT-shirts_sleevelessloosetop_58.99_white_xs 0.00 \N \N \N 2022-09-02 16:27:38.21357 f 83 58.99 2 USD t 1 2022-09-02 16:27:38.160546 \N 2022-07-12 18:15:27.41567 \N \N -84 TopsandT-shirts_basiclooset-shirt_25.99 0.00 \N \N \N 2022-09-02 16:25:40.005269 t 84 \N 1 USD t \N 2022-09-02 16:25:39.93034 \N 2022-07-12 18:13:48.839371 \N \N -200 TopsandT-shirts_basiclooset-shirt_25.99_green_xs 0.00 \N \N \N 2022-09-02 16:25:40.111976 f 84 25.99 2 USD t 1 2022-09-02 16:25:40.035731 \N 2022-07-12 18:15:27.543138 \N \N -19 T-shirts_basict-shirt_23.99 0.00 \N \N \N 2022-09-02 16:25:41.966985 t 19 \N 1 USD t \N 2022-09-02 16:25:41.908098 \N 2022-07-12 18:13:23.722793 \N \N -135 T-shirts_basict-shirt_23.99_grey_xs 0.00 \N \N \N 2022-09-02 16:25:42.057416 f 19 23.99 2 USD t 1 2022-09-02 16:25:41.99729 \N 2022-07-12 18:15:15.685832 \N \N -64 ShirtsandBlouses_blousewithwideflouncedsleeve_90.99 0.00 \N \N \N 2022-09-02 16:25:43.768924 t 64 \N 1 USD t \N 2022-09-02 16:25:43.71097 \N 2022-07-12 18:13:40.75357 \N \N -180 ShirtsandBlouses_blousewithwideflouncedsleeve_90.99_pink_xs 0.00 \N \N \N 2022-09-02 16:25:43.876697 f 64 90.99 2 USD t 1 2022-09-02 16:25:43.806219 \N 2022-07-12 18:15:24.447025 \N \N -96 JacketsandCoats_bomberjacket_30.99 0.00 \N \N \N 2022-09-02 16:25:45.426838 t 96 \N 1 USD t \N 2022-09-02 16:25:45.384073 \N 2022-07-12 18:13:53.785087 \N \N -212 JacketsandCoats_bomberjacket_30.99_khaki_xs 0.00 \N \N \N 2022-09-02 16:25:45.511489 f 96 30.99 2 USD t 1 2022-09-02 16:25:45.452976 \N 2022-07-12 18:15:29.390578 \N \N -174 ShirtsandBlouses_semi-sheershirtwithfloralcuffs_91.99_brown_xs 0.00 \N \N \N 2022-09-02 16:27:41.537355 f 58 91.99 2 USD t 1 2022-09-02 16:27:41.475488 \N 2022-07-12 18:15:23.560416 \N \N -2 Shirts_checkedshirt_65.99 0.00 \N \N \N 2022-09-02 16:25:47.133408 t 2 \N 1 USD t \N 2022-09-02 16:25:47.095883 \N 2022-07-12 18:13:17.702715 \N \N -118 Shirts_checkedshirt_65.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:47.213706 f 2 65.99 2 USD t 1 2022-09-02 16:25:47.158292 \N 2022-07-12 18:15:13.177339 \N \N -8 Shirts_checkedslimfitshirt_27.99 0.00 \N \N \N 2022-09-02 16:25:48.671876 t 8 \N 1 USD t \N 2022-09-02 16:25:48.631983 \N 2022-07-12 18:13:19.795682 \N \N -201 JacketsandCoats_coatwithpockets_27.99_pink_xs 0.00 \N \N \N 2022-09-02 16:25:50.49159 f 85 27.99 2 USD t 1 2022-09-02 16:25:50.431949 \N 2022-07-12 18:15:27.805748 \N \N -179 ShirtsandBlouses_cottonshirt_17.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:25:52.13818 f 63 17.99 2 USD t 1 2022-09-02 16:25:52.075004 \N 2022-07-12 18:15:24.320987 \N \N -192 TopsandT-shirts_croptopwithtie_96.99_red_xs 0.00 \N \N \N 2022-09-02 16:25:57.93975 f 76 96.99 2 USD t 1 2022-09-02 16:25:57.880278 \N 2022-07-12 18:15:26.423508 \N \N -95 JacketsandCoats_denimhoodedjacket_88.99 0.00 \N \N \N 2022-09-02 16:26:01.265264 t 95 \N 1 USD t \N 2022-09-02 16:26:01.222311 \N 2022-07-12 18:13:53.349777 \N \N -38 Skirts_fittedskirt_62.99 0.00 \N \N \N 2022-09-02 16:26:04.73456 t 38 \N 1 USD t \N 2022-09-02 16:26:04.61839 \N 2022-07-12 18:13:31.079813 \N \N -154 Skirts_fittedskirt_62.99_orange_mini_xs 0.00 \N \N \N 2022-09-02 16:26:04.84182 f 38 62.99 2 USD t 1 2022-09-02 16:26:04.772042 \N 2022-07-12 18:15:18.730967 \N \N -31 JacketsandCoats_denimjacket_76.99 0.00 \N \N \N 2022-09-02 16:26:10.286488 t 31 \N 1 USD t \N 2022-09-02 16:26:10.233395 \N 2022-07-12 18:13:28.368403 \N \N -160 Skirts_floralflaredskirt_10.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:27:01.291461 f 44 10.99 2 USD t 1 2022-09-02 16:27:01.227411 \N 2022-07-12 18:15:19.830645 \N \N -29 JacketsandCoats_hoodedjacket_11.99 0.00 \N \N \N 2022-09-02 16:27:04.231108 t 29 \N 1 USD t \N 2022-09-02 16:27:04.187959 \N 2022-07-12 18:13:27.519287 \N \N -156 Skirts_leatherskirtwithlacing_46.99_black_mini_xs 0.00 \N \N \N 2022-09-02 16:27:09.104723 f 40 46.99 2 USD t 1 2022-09-02 16:27:09.042237 \N 2022-07-12 18:15:19.12211 \N \N -126 Shirts_linenshirt_87.99_light_blue_xs 0.00 \N \N \N 2022-09-02 16:27:09.926999 f 10 87.99 2 USD t 1 2022-09-02 16:27:09.871383 \N 2022-07-12 18:15:14.338667 \N \N -24 Sweaters_longsleevesweatshirt_73.99 0.00 \N \N \N 2022-09-02 16:27:13.47202 t 24 \N 1 USD t \N 2022-09-02 16:27:13.411378 \N 2022-07-12 18:13:25.511834 \N \N -204 JacketsandCoats_longcoatwithbelt_47.99_beige_xs 0.00 \N \N \N 2022-09-02 16:27:15.479352 f 88 47.99 2 USD t 1 2022-09-02 16:27:15.420583 \N 2022-07-12 18:15:28.284299 \N \N -73 Sweaters_knittedhighnecksweater_86.99 0.00 \N \N \N 2022-09-02 16:27:17.421617 t 73 \N 1 USD t \N 2022-09-02 16:27:17.37991 \N 2022-07-12 18:13:44.049227 \N \N -231 Pants_highwaistpantswithpockets_92.99_pink_xs 0.00 \N \N \N 2022-09-02 16:27:22.680055 f 115 92.99 2 USD t 1 2022-09-02 16:27:22.620303 \N 2022-07-12 18:15:32.161467 \N \N -131 T-shirts_t-shirtwithholes_34.99_grey_xs 0.00 \N \N \N 2022-09-02 16:27:45.584417 f 15 34.99 2 USD t 1 2022-09-02 16:27:45.522075 \N 2022-07-12 18:15:15.088686 \N \N -173 Dresses_slitmaxidress_26.99_red_mini_xs 0.00 \N \N \N 2022-09-02 16:27:53.548333 f 57 26.99 2 USD t 1 2022-09-02 16:27:53.483332 \N 2022-07-12 18:15:23.391595 \N \N -150 JacketsandCoats_wool-blendcoat_35.99_beige_xs 0.00 \N \N \N 2022-09-02 16:28:03.136773 f 34 35.99 2 USD t 1 2022-09-02 16:28:03.068998 \N 2022-07-12 18:15:18.022671 \N \N -163 Dresses_v-neckfloralmaxidress_31.99_pink_mini_xs 0.00 \N \N \N 2022-09-02 16:28:06.31637 f 47 31.99 2 USD t 1 2022-09-02 16:28:06.249263 \N 2022-07-12 18:15:20.59315 \N \N -82 TopsandT-shirts_looset-shirtwithpocketimitation_37.99 0.00 \N \N \N 2022-09-02 16:28:20.487671 t 82 \N 1 USD t \N 2022-09-02 16:28:20.445797 \N 2022-07-12 18:13:48.073782 \N \N -153 Skirts_midiskirtwithbottoms_40.99_green_mini_xs 0.00 \N \N \N 2022-09-02 16:28:29.313947 f 37 40.99 2 USD t 1 2022-09-02 16:28:29.257813 \N 2022-07-12 18:15:18.46425 \N \N -169 Dresses_printedslit-sleevesdress_76.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:38.713672 f 53 76.99 2 USD t 1 2022-09-02 16:28:38.652981 \N 2022-07-12 18:15:21.921309 \N \N -122 Shirts_printedshortsleeveshirt_74.99_brown_xs 0.00 \N \N \N 2022-09-02 16:28:39.410274 f 6 74.99 2 USD t 1 2022-09-02 16:28:39.340227 \N 2022-07-12 18:15:13.800204 \N \N -168 Dresses_printeddress_83.99_light_blue_mini_xs 0.00 \N \N \N 2022-09-02 16:28:42.561033 f 52 83.99 2 USD t 1 2022-09-02 16:28:42.490251 \N 2022-07-12 18:15:21.714444 \N \N -234 dd_100_03 0.00 \N \N \N \N t 118 1.14 1 USD t \N 2022-09-08 15:41:32.974036 \N 2022-09-02 17:09:21.55014 \N \N -233 dd_100_04 0.00 \N \N \N \N t 117 2.75 1 USD t \N 2022-09-08 15:42:11.748562 \N 2022-09-02 16:33:37.722029 \N \N -235 dd_100_05 0.00 \N \N \N \N t 119 0.99 1 USD t \N 2022-09-08 15:42:47.623985 \N 2022-09-02 17:19:13.887876 \N \N -236 dd_100_06 0.00 \N \N \N \N t 120 1.10 1 USD t \N 2022-09-08 15:43:22.640705 \N 2022-09-02 17:31:19.718131 \N \N -237 dd_100_07 0.00 \N \N \N \N t 121 1.60 1 USD t \N 2022-09-08 15:45:34.863362 \N 2022-09-02 18:30:30.901574 \N \N -238 dd_100_09 0.00 \N \N \N \N t 122 1.99 1 USD t \N 2022-09-08 15:47:28.932664 \N 2022-09-02 18:38:46.417233 \N \N -239 dd_100_08 0.00 \N \N \N \N t 123 0.49 1 USD t \N 2022-09-13 20:55:14.219926 \N 2022-09-02 18:41:05.37736 \N \N -240 dd_100_10 0.00 \N \N \N \N t 124 0.99 1 USD t \N 2022-09-13 20:56:26.354157 \N 2022-09-02 18:42:26.500871 \N \N -241 dd_100_11 0.00 \N \N \N \N t 125 1.30 1 USD t \N 2022-09-13 20:57:51.359577 \N 2022-09-02 18:44:36.12419 \N \N -243 dd_100_12 0.00 \N \N \N \N t 127 3.10 1 USD t \N 2022-09-13 20:58:02.754162 \N 2022-09-02 18:52:56.264637 \N \N -242 dd_100_13 0.00 \N \N \N \N t 126 1.22 1 USD t \N 2022-09-13 20:58:22.814647 \N 2022-09-02 18:50:49.231267 \N \N -245 dd_100_14 0.00 \N \N \N \N t 129 0.99 1 USD t \N 2022-09-13 20:58:36.680604 \N 2022-09-02 18:59:14.658464 \N \N -244 dd_100_01 0.00 \N \N \N \N t 128 1.10 1 USD t \N 2022-09-13 20:58:51.567057 \N 2022-09-02 18:57:21.592453 \N \N -246 dd_100_02 0.00 \N \N \N \N t 130 1.36 1 USD t \N 2022-09-13 20:59:13.198541 \N 2022-09-02 19:01:55.290267 \N \N -\. - - --- --- Data for Name: spree_webhooks_events; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_webhooks_events (id, execution_time, name, request_errors, response_code, subscriber_id, success, url, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_webhooks_subscribers; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_webhooks_subscribers (id, url, active, subscriptions, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_wished_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_wished_items (id, variant_id, wishlist_id, quantity, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_wishlists; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_wishlists (id, user_id, store_id, name, token, is_private, is_default, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_zone_members; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_zone_members (id, zoneable_type, zoneable_id, zone_id, created_at, updated_at) FROM stdin; -1 Spree::Country 172 1 2022-07-12 18:10:10.405063 2022-07-12 18:10:10.405063 -2 Spree::Country 66 1 2022-07-12 18:10:10.423231 2022-07-12 18:10:10.423231 -3 Spree::Country 177 1 2022-07-12 18:10:10.440269 2022-07-12 18:10:10.440269 -4 Spree::Country 182 1 2022-07-12 18:10:10.45837 2022-07-12 18:10:10.45837 -5 Spree::Country 54 1 2022-07-12 18:10:10.475381 2022-07-12 18:10:10.475381 -6 Spree::Country 71 1 2022-07-12 18:10:10.492976 2022-07-12 18:10:10.492976 -7 Spree::Country 195 1 2022-07-12 18:10:10.5104 2022-07-12 18:10:10.5104 -8 Spree::Country 94 1 2022-07-12 18:10:10.527591 2022-07-12 18:10:10.527591 -9 Spree::Country 193 1 2022-07-12 18:10:10.544283 2022-07-12 18:10:10.544283 -10 Spree::Country 96 1 2022-07-12 18:10:10.562074 2022-07-12 18:10:10.562074 -11 Spree::Country 11 1 2022-07-12 18:10:10.578268 2022-07-12 18:10:10.578268 -12 Spree::Country 64 1 2022-07-12 18:10:10.59627 2022-07-12 18:10:10.59627 -13 Spree::Country 103 1 2022-07-12 18:10:10.614534 2022-07-12 18:10:10.614534 -14 Spree::Country 18 1 2022-07-12 18:10:10.638549 2022-07-12 18:10:10.638549 -15 Spree::Country 190 1 2022-07-12 18:10:10.657556 2022-07-12 18:10:10.657556 -16 Spree::Country 128 1 2022-07-12 18:10:10.674166 2022-07-12 18:10:10.674166 -17 Spree::Country 20 1 2022-07-12 18:10:10.691149 2022-07-12 18:10:10.691149 -18 Spree::Country 126 1 2022-07-12 18:10:10.708295 2022-07-12 18:10:10.708295 -19 Spree::Country 52 1 2022-07-12 18:10:10.726777 2022-07-12 18:10:10.726777 -20 Spree::Country 127 1 2022-07-12 18:10:10.743693 2022-07-12 18:10:10.743693 -21 Spree::Country 146 1 2022-07-12 18:10:10.760072 2022-07-12 18:10:10.760072 -22 Spree::Country 56 1 2022-07-12 18:10:10.777237 2022-07-12 18:10:10.777237 -23 Spree::Country 159 1 2022-07-12 18:10:10.795046 2022-07-12 18:10:10.795046 -24 Spree::Country 61 1 2022-07-12 18:10:10.81281 2022-07-12 18:10:10.81281 -25 Spree::Country 92 1 2022-07-12 18:10:10.829662 2022-07-12 18:10:10.829662 -26 Spree::Country 53 1 2022-07-12 18:10:10.84629 2022-07-12 18:10:10.84629 -27 Spree::Country 85 1 2022-07-12 18:10:10.863738 2022-07-12 18:10:10.863738 -28 Spree::Country 73 2 2022-07-12 18:10:10.880336 2022-07-12 18:10:10.880336 -29 Spree::Country 224 3 2022-07-12 18:10:10.896747 2022-07-12 18:10:10.896747 -30 Spree::Country 35 3 2022-07-12 18:10:10.916171 2022-07-12 18:10:10.916171 -31 Spree::Country 21 5 2022-07-12 18:10:10.933092 2022-07-12 18:10:10.933092 -32 Spree::Country 52 5 2022-07-12 18:10:10.9515 2022-07-12 18:10:10.9515 -33 Spree::Country 62 5 2022-07-12 18:10:10.96885 2022-07-12 18:10:10.96885 -34 Spree::Country 101 5 2022-07-12 18:10:10.985735 2022-07-12 18:10:10.985735 -35 Spree::Country 100 5 2022-07-12 18:10:11.002632 2022-07-12 18:10:11.002632 -36 Spree::Country 97 5 2022-07-12 18:10:11.01869 2022-07-12 18:10:11.01869 -37 Spree::Country 106 5 2022-07-12 18:10:11.035597 2022-07-12 18:10:11.035597 -38 Spree::Country 116 5 2022-07-12 18:10:11.05289 2022-07-12 18:10:11.05289 -39 Spree::Country 120 5 2022-07-12 18:10:11.068983 2022-07-12 18:10:11.068983 -40 Spree::Country 165 5 2022-07-12 18:10:11.089914 2022-07-12 18:10:11.089914 -41 Spree::Country 180 5 2022-07-12 18:10:11.113329 2022-07-12 18:10:11.113329 -42 Spree::Country 186 5 2022-07-12 18:10:11.131276 2022-07-12 18:10:11.131276 -43 Spree::Country 205 5 2022-07-12 18:10:11.147987 2022-07-12 18:10:11.147987 -44 Spree::Country 217 5 2022-07-12 18:10:11.164353 2022-07-12 18:10:11.164353 -45 Spree::Country 2 5 2022-07-12 18:10:11.180786 2022-07-12 18:10:11.180786 -46 Spree::Country 236 5 2022-07-12 18:10:11.198545 2022-07-12 18:10:11.198545 -47 Spree::Country 3 6 2022-07-12 18:10:11.214402 2022-07-12 18:10:11.214402 -48 Spree::Country 7 6 2022-07-12 18:10:11.229682 2022-07-12 18:10:11.229682 -49 Spree::Country 14 6 2022-07-12 18:10:11.245826 2022-07-12 18:10:11.245826 -50 Spree::Country 21 6 2022-07-12 18:10:11.262439 2022-07-12 18:10:11.262439 -51 Spree::Country 17 6 2022-07-12 18:10:11.281424 2022-07-12 18:10:11.281424 -52 Spree::Country 31 6 2022-07-12 18:10:11.298955 2022-07-12 18:10:11.298955 -53 Spree::Country 26 6 2022-07-12 18:10:11.315405 2022-07-12 18:10:11.315405 -54 Spree::Country 110 6 2022-07-12 18:10:11.332458 2022-07-12 18:10:11.332458 -55 Spree::Country 45 6 2022-07-12 18:10:11.351137 2022-07-12 18:10:11.351137 -56 Spree::Country 51 6 2022-07-12 18:10:11.369967 2022-07-12 18:10:11.369967 -57 Spree::Country 36 6 2022-07-12 18:10:11.387533 2022-07-12 18:10:11.387533 -58 Spree::Country 75 6 2022-07-12 18:10:11.403646 2022-07-12 18:10:11.403646 -59 Spree::Country 90 6 2022-07-12 18:10:11.419559 2022-07-12 18:10:11.419559 -60 Spree::Country 99 6 2022-07-12 18:10:11.436056 2022-07-12 18:10:11.436056 -61 Spree::Country 95 6 2022-07-12 18:10:11.452783 2022-07-12 18:10:11.452783 -62 Spree::Country 101 6 2022-07-12 18:10:11.471894 2022-07-12 18:10:11.471894 -63 Spree::Country 100 6 2022-07-12 18:10:11.490219 2022-07-12 18:10:11.490219 -64 Spree::Country 97 6 2022-07-12 18:10:11.506642 2022-07-12 18:10:11.506642 -65 Spree::Country 107 6 2022-07-12 18:10:11.524877 2022-07-12 18:10:11.524877 -66 Spree::Country 106 6 2022-07-12 18:10:11.543176 2022-07-12 18:10:11.543176 -67 Spree::Country 118 6 2022-07-12 18:10:11.56433 2022-07-12 18:10:11.56433 -68 Spree::Country 116 6 2022-07-12 18:10:11.583863 2022-07-12 18:10:11.583863 -69 Spree::Country 109 6 2022-07-12 18:10:11.601527 2022-07-12 18:10:11.601527 -70 Spree::Country 119 6 2022-07-12 18:10:11.618043 2022-07-12 18:10:11.618043 -71 Spree::Country 120 6 2022-07-12 18:10:11.638824 2022-07-12 18:10:11.638824 -72 Spree::Country 141 6 2022-07-12 18:10:11.657621 2022-07-12 18:10:11.657621 -73 Spree::Country 151 6 2022-07-12 18:10:11.676009 2022-07-12 18:10:11.676009 -74 Spree::Country 148 6 2022-07-12 18:10:11.692075 2022-07-12 18:10:11.692075 -75 Spree::Country 140 6 2022-07-12 18:10:11.707685 2022-07-12 18:10:11.707685 -76 Spree::Country 139 6 2022-07-12 18:10:11.725046 2022-07-12 18:10:11.725046 -77 Spree::Country 161 6 2022-07-12 18:10:11.743281 2022-07-12 18:10:11.743281 -78 Spree::Country 114 6 2022-07-12 18:10:11.760208 2022-07-12 18:10:11.760208 -79 Spree::Country 165 6 2022-07-12 18:10:11.776952 2022-07-12 18:10:11.776952 -80 Spree::Country 171 6 2022-07-12 18:10:11.794199 2022-07-12 18:10:11.794199 -81 Spree::Country 176 6 2022-07-12 18:10:11.810439 2022-07-12 18:10:11.810439 -82 Spree::Country 170 6 2022-07-12 18:10:11.827316 2022-07-12 18:10:11.827316 -83 Spree::Country 180 6 2022-07-12 18:10:11.843967 2022-07-12 18:10:11.843967 -84 Spree::Country 186 6 2022-07-12 18:10:11.86304 2022-07-12 18:10:11.86304 -85 Spree::Country 191 6 2022-07-12 18:10:11.879281 2022-07-12 18:10:11.879281 -86 Spree::Country 115 6 2022-07-12 18:10:11.896992 2022-07-12 18:10:11.896992 -87 Spree::Country 123 6 2022-07-12 18:10:11.913096 2022-07-12 18:10:11.913096 -88 Spree::Country 205 6 2022-07-12 18:10:11.929124 2022-07-12 18:10:11.929124 -89 Spree::Country 220 6 2022-07-12 18:10:11.946046 2022-07-12 18:10:11.946046 -90 Spree::Country 211 6 2022-07-12 18:10:11.962519 2022-07-12 18:10:11.962519 -91 Spree::Country 210 6 2022-07-12 18:10:11.978922 2022-07-12 18:10:11.978922 -92 Spree::Country 217 6 2022-07-12 18:10:11.99946 2022-07-12 18:10:11.99946 -93 Spree::Country 214 6 2022-07-12 18:10:12.017611 2022-07-12 18:10:12.017611 -94 Spree::Country 2 6 2022-07-12 18:10:12.034187 2022-07-12 18:10:12.034187 -95 Spree::Country 226 6 2022-07-12 18:10:12.05072 2022-07-12 18:10:12.05072 -96 Spree::Country 232 6 2022-07-12 18:10:12.069239 2022-07-12 18:10:12.069239 -97 Spree::Country 236 6 2022-07-12 18:10:12.086379 2022-07-12 18:10:12.086379 -98 Spree::Country 9 4 2022-07-12 18:10:12.102346 2022-07-12 18:10:12.102346 -99 Spree::Country 27 4 2022-07-12 18:10:12.119038 2022-07-12 18:10:12.119038 -100 Spree::Country 29 4 2022-07-12 18:10:12.135968 2022-07-12 18:10:12.135968 -101 Spree::Country 43 4 2022-07-12 18:10:12.153681 2022-07-12 18:10:12.153681 -102 Spree::Country 46 4 2022-07-12 18:10:12.171475 2022-07-12 18:10:12.171475 -103 Spree::Country 60 4 2022-07-12 18:10:12.189273 2022-07-12 18:10:12.189273 -104 Spree::Country 68 4 2022-07-12 18:10:12.205847 2022-07-12 18:10:12.205847 -105 Spree::Country 76 4 2022-07-12 18:10:12.222604 2022-07-12 18:10:12.222604 -106 Spree::Country 89 4 2022-07-12 18:10:12.240487 2022-07-12 18:10:12.240487 -107 Spree::Country 179 4 2022-07-12 18:10:12.257107 2022-07-12 18:10:12.257107 -108 Spree::Country 167 4 2022-07-12 18:10:12.27388 2022-07-12 18:10:12.27388 -109 Spree::Country 200 4 2022-07-12 18:10:12.291607 2022-07-12 18:10:12.291607 -110 Spree::Country 225 4 2022-07-12 18:10:12.311388 2022-07-12 18:10:12.311388 -111 Spree::Country 229 4 2022-07-12 18:10:12.32979 2022-07-12 18:10:12.32979 -112 Spree::State 486 7 2022-07-12 18:13:09.542943 2022-07-12 18:13:09.542943 -\. - - --- --- Data for Name: spree_zones; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_zones (id, name, description, default_tax, zone_members_count, created_at, updated_at, kind) FROM stdin; -6 Asia Asia f 51 2022-07-12 18:10:10.376548 2022-07-12 18:10:10.376548 country -1 EU_VAT Countries that make up the EU VAT zone. f 27 2022-07-12 18:10:10.305345 2022-07-12 18:10:10.305345 country -2 UK_VAT \N f 1 2022-07-12 18:10:10.325113 2022-07-12 18:10:10.325113 country -3 North America USA + Canada f 2 2022-07-12 18:10:10.338281 2022-07-12 18:10:10.338281 country -4 South America South America f 14 2022-07-12 18:10:10.3516 2022-07-12 18:10:10.3516 country -7 California Tax California tax zone f 1 2022-07-12 18:13:09.507712 2022-07-12 18:13:09.507712 state -5 Middle East Middle East f 16 2022-07-12 18:10:10.364145 2022-07-12 18:10:10.364145 country -\. - - --- --- Name: action_mailbox_inbound_emails_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.action_mailbox_inbound_emails_id_seq', 1, false); - - --- --- Name: action_text_rich_texts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.action_text_rich_texts_id_seq', 1, false); - - --- --- Name: active_storage_attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.active_storage_attachments_id_seq', 106, true); - - --- --- Name: active_storage_blobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.active_storage_blobs_id_seq', 106, true); - - --- --- Name: active_storage_variant_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.active_storage_variant_records_id_seq', 81, true); - - --- --- Name: friendly_id_slugs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.friendly_id_slugs_id_seq', 161, true); - - --- --- Name: spree_addresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_addresses_id_seq', 2, true); - - --- --- Name: spree_adjustments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_adjustments_id_seq', 2, true); - - --- --- Name: spree_assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_assets_id_seq', 15, true); - - --- --- Name: spree_calculators_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_calculators_id_seq', 6, true); - - --- --- Name: spree_checks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_checks_id_seq', 1, false); - - --- --- Name: spree_cms_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_cms_pages_id_seq', 36, true); - - --- --- Name: spree_cms_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_cms_sections_id_seq', 72, true); - - --- --- Name: spree_countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_countries_id_seq', 240, true); - - --- --- Name: spree_credit_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_credit_cards_id_seq', 1, true); - - --- --- Name: spree_customer_returns_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_customer_returns_id_seq', 1, false); - - --- --- Name: spree_digital_links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_digital_links_id_seq', 1, false); - - --- --- Name: spree_digitals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_digitals_id_seq', 1, false); - - --- --- Name: spree_gateways_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_gateways_id_seq', 1, false); - - --- --- Name: spree_inventory_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_inventory_units_id_seq', 2, true); - - --- --- Name: spree_line_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_line_items_id_seq', 85, true); - - --- --- Name: spree_log_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_log_entries_id_seq', 1, false); - - --- --- Name: spree_menu_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_menu_items_id_seq', 276, true); - - --- --- Name: spree_menus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_menus_id_seq', 12, true); - - --- --- Name: spree_oauth_access_grants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_oauth_access_grants_id_seq', 1, false); - - --- --- Name: spree_oauth_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_oauth_access_tokens_id_seq', 2, true); - - --- --- Name: spree_oauth_applications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_oauth_applications_id_seq', 1, true); - - --- --- Name: spree_option_type_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_option_type_prototypes_id_seq', 1, false); - - --- --- Name: spree_option_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_option_types_id_seq', 3, true); - - --- --- Name: spree_option_value_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_option_value_variants_id_seq', 254, true); - - --- --- Name: spree_option_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_option_values_id_seq', 27, true); - - --- --- Name: spree_order_promotions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_order_promotions_id_seq', 1, false); - - --- --- Name: spree_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_orders_id_seq', 62, true); - - --- --- Name: spree_payment_capture_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_payment_capture_events_id_seq', 1, false); - - --- --- Name: spree_payment_methods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_payment_methods_id_seq', 2, true); - - --- --- Name: spree_payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_payments_id_seq', 2, true); - - --- --- Name: spree_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_preferences_id_seq', 1, true); - - --- --- Name: spree_prices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_prices_id_seq', 246, true); - - --- --- Name: spree_product_option_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_product_option_types_id_seq', 254, true); - - --- --- Name: spree_product_promotion_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_product_promotion_rules_id_seq', 1, false); - - --- --- Name: spree_product_properties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_product_properties_id_seq', 974, true); - - --- --- Name: spree_products_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_products_id_seq', 130, true); - - --- --- Name: spree_products_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_products_stores_id_seq', 362, true); - - --- --- Name: spree_products_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_products_taxons_id_seq', 481, true); - - --- --- Name: spree_promotion_action_line_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_action_line_items_id_seq', 1, false); - - --- --- Name: spree_promotion_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_actions_id_seq', 1, true); - - --- --- Name: spree_promotion_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_categories_id_seq', 1, false); - - --- --- Name: spree_promotion_rule_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_rule_taxons_id_seq', 1, false); - - --- --- Name: spree_promotion_rule_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_rule_users_id_seq', 1, false); - - --- --- Name: spree_promotion_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotion_rules_id_seq', 1, true); - - --- --- Name: spree_promotions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotions_id_seq', 1, true); - - --- --- Name: spree_promotions_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_promotions_stores_id_seq', 3, true); - - --- --- Name: spree_properties_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_properties_id_seq', 16, true); - - --- --- Name: spree_property_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_property_prototypes_id_seq', 14, true); - - --- --- Name: spree_prototype_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_prototype_taxons_id_seq', 1, false); - - --- --- Name: spree_prototypes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_prototypes_id_seq', 4, true); - - --- --- Name: spree_refund_reasons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_refund_reasons_id_seq', 1, true); - - --- --- Name: spree_refunds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_refunds_id_seq', 1, false); - - --- --- Name: spree_reimbursement_credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_reimbursement_credits_id_seq', 1, false); - - --- --- Name: spree_reimbursement_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_reimbursement_types_id_seq', 1, false); - - --- --- Name: spree_reimbursements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_reimbursements_id_seq', 1, true); - - --- --- Name: spree_return_authorization_reasons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_return_authorization_reasons_id_seq', 9, true); - - --- --- Name: spree_return_authorizations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_return_authorizations_id_seq', 1, false); - - --- --- Name: spree_return_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_return_items_id_seq', 1, false); - - --- --- Name: spree_role_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_role_users_id_seq', 2, true); - - --- --- Name: spree_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_roles_id_seq', 1, true); - - --- --- Name: spree_shipments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipments_id_seq', 2, true); - - --- --- Name: spree_shipping_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipping_categories_id_seq', 2, true); - - --- --- Name: spree_shipping_method_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipping_method_categories_id_seq', 5, true); - - --- --- Name: spree_shipping_method_zones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipping_method_zones_id_seq', 5, true); - - --- --- Name: spree_shipping_methods_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipping_methods_id_seq', 5, true); - - --- --- Name: spree_shipping_rates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_shipping_rates_id_seq', 9, true); - - --- --- Name: spree_state_changes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_state_changes_id_seq', 12, true); - - --- --- Name: spree_states_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_states_id_seq', 577, true); - - --- --- Name: spree_stock_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_stock_items_id_seq', 246, true); - - --- --- Name: spree_stock_locations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_stock_locations_id_seq', 1, true); - - --- --- Name: spree_stock_movements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_stock_movements_id_seq', 132, true); - - --- --- Name: spree_stock_transfers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_stock_transfers_id_seq', 1, false); - - --- --- Name: spree_store_credit_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_store_credit_categories_id_seq', 3, true); - - --- --- Name: spree_store_credit_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_store_credit_events_id_seq', 1, false); - - --- --- Name: spree_store_credit_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_store_credit_types_id_seq', 1, false); - - --- --- Name: spree_store_credits_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_store_credits_id_seq', 1, false); - - --- --- Name: spree_stores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_stores_id_seq', 3, true); - - --- --- Name: spree_tax_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_tax_categories_id_seq', 1, true); - - --- --- Name: spree_tax_rates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_tax_rates_id_seq', 1, true); - - --- --- Name: spree_taxonomies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_taxonomies_id_seq', 2, true); - - --- --- Name: spree_taxons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_taxons_id_seq', 29, true); - - --- --- Name: spree_trackers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_trackers_id_seq', 1, false); - - --- --- Name: spree_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_users_id_seq', 2, true); - - --- --- Name: spree_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_variants_id_seq', 246, true); - - --- --- Name: spree_webhooks_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_webhooks_events_id_seq', 1, false); - - --- --- Name: spree_webhooks_subscribers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_webhooks_subscribers_id_seq', 1, false); - - --- --- Name: spree_wished_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_wished_items_id_seq', 1, false); - - --- --- Name: spree_wishlists_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_wishlists_id_seq', 1, false); - - --- --- Name: spree_zone_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_zone_members_id_seq', 112, true); - - --- --- Name: spree_zones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres --- - -SELECT pg_catalog.setval('public.spree_zones_id_seq', 7, true); - - --- --- Name: action_mailbox_inbound_emails action_mailbox_inbound_emails_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.action_mailbox_inbound_emails - ADD CONSTRAINT action_mailbox_inbound_emails_pkey PRIMARY KEY (id); - - --- --- Name: action_text_rich_texts action_text_rich_texts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.action_text_rich_texts - ADD CONSTRAINT action_text_rich_texts_pkey PRIMARY KEY (id); - - --- --- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_attachments - ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id); - - --- --- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_blobs - ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id); - - --- --- Name: active_storage_variant_records active_storage_variant_records_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_variant_records - ADD CONSTRAINT active_storage_variant_records_pkey PRIMARY KEY (id); - - --- --- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.ar_internal_metadata - ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key); - - --- --- Name: friendly_id_slugs friendly_id_slugs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.friendly_id_slugs - ADD CONSTRAINT friendly_id_slugs_pkey PRIMARY KEY (id); - - --- --- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.schema_migrations - ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); - - --- --- Name: spree_addresses spree_addresses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_addresses - ADD CONSTRAINT spree_addresses_pkey PRIMARY KEY (id); - - --- --- Name: spree_adjustments spree_adjustments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_adjustments - ADD CONSTRAINT spree_adjustments_pkey PRIMARY KEY (id); - - --- --- Name: spree_assets spree_assets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_assets - ADD CONSTRAINT spree_assets_pkey PRIMARY KEY (id); - - --- --- Name: spree_calculators spree_calculators_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_calculators - ADD CONSTRAINT spree_calculators_pkey PRIMARY KEY (id); - - --- --- Name: spree_checks spree_checks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_checks - ADD CONSTRAINT spree_checks_pkey PRIMARY KEY (id); - - --- --- Name: spree_cms_pages spree_cms_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_cms_pages - ADD CONSTRAINT spree_cms_pages_pkey PRIMARY KEY (id); - - --- --- Name: spree_cms_sections spree_cms_sections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_cms_sections - ADD CONSTRAINT spree_cms_sections_pkey PRIMARY KEY (id); - - --- --- Name: spree_countries spree_countries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_countries - ADD CONSTRAINT spree_countries_pkey PRIMARY KEY (id); - - --- --- Name: spree_credit_cards spree_credit_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_credit_cards - ADD CONSTRAINT spree_credit_cards_pkey PRIMARY KEY (id); - - --- --- Name: spree_customer_returns spree_customer_returns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_customer_returns - ADD CONSTRAINT spree_customer_returns_pkey PRIMARY KEY (id); - - --- --- Name: spree_digital_links spree_digital_links_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_digital_links - ADD CONSTRAINT spree_digital_links_pkey PRIMARY KEY (id); - - --- --- Name: spree_digitals spree_digitals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_digitals - ADD CONSTRAINT spree_digitals_pkey PRIMARY KEY (id); - - --- --- Name: spree_gateways spree_gateways_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_gateways - ADD CONSTRAINT spree_gateways_pkey PRIMARY KEY (id); - - --- --- Name: spree_inventory_units spree_inventory_units_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_inventory_units - ADD CONSTRAINT spree_inventory_units_pkey PRIMARY KEY (id); - - --- --- Name: spree_line_items spree_line_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_line_items - ADD CONSTRAINT spree_line_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_log_entries spree_log_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_log_entries - ADD CONSTRAINT spree_log_entries_pkey PRIMARY KEY (id); - - --- --- Name: spree_menu_items spree_menu_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_menu_items - ADD CONSTRAINT spree_menu_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_menus spree_menus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_menus - ADD CONSTRAINT spree_menus_pkey PRIMARY KEY (id); - - --- --- Name: spree_oauth_access_grants spree_oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_grants - ADD CONSTRAINT spree_oauth_access_grants_pkey PRIMARY KEY (id); - - --- --- Name: spree_oauth_access_tokens spree_oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_tokens - ADD CONSTRAINT spree_oauth_access_tokens_pkey PRIMARY KEY (id); - - --- --- Name: spree_oauth_applications spree_oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_applications - ADD CONSTRAINT spree_oauth_applications_pkey PRIMARY KEY (id); - - --- --- Name: spree_option_type_prototypes spree_option_type_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_type_prototypes - ADD CONSTRAINT spree_option_type_prototypes_pkey PRIMARY KEY (id); - - --- --- Name: spree_option_types spree_option_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_types - ADD CONSTRAINT spree_option_types_pkey PRIMARY KEY (id); - - --- --- Name: spree_option_value_variants spree_option_value_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_value_variants - ADD CONSTRAINT spree_option_value_variants_pkey PRIMARY KEY (id); - - --- --- Name: spree_option_values spree_option_values_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_option_values - ADD CONSTRAINT spree_option_values_pkey PRIMARY KEY (id); - - --- --- Name: spree_order_promotions spree_order_promotions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_order_promotions - ADD CONSTRAINT spree_order_promotions_pkey PRIMARY KEY (id); - - --- --- Name: spree_orders spree_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_orders - ADD CONSTRAINT spree_orders_pkey PRIMARY KEY (id); - - --- --- Name: spree_payment_capture_events spree_payment_capture_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payment_capture_events - ADD CONSTRAINT spree_payment_capture_events_pkey PRIMARY KEY (id); - - --- --- Name: spree_payment_methods spree_payment_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payment_methods - ADD CONSTRAINT spree_payment_methods_pkey PRIMARY KEY (id); - - --- --- Name: spree_payments spree_payments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_payments - ADD CONSTRAINT spree_payments_pkey PRIMARY KEY (id); - - --- --- Name: spree_preferences spree_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_preferences - ADD CONSTRAINT spree_preferences_pkey PRIMARY KEY (id); - - --- --- Name: spree_prices spree_prices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prices - ADD CONSTRAINT spree_prices_pkey PRIMARY KEY (id); - - --- --- Name: spree_product_option_types spree_product_option_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_option_types - ADD CONSTRAINT spree_product_option_types_pkey PRIMARY KEY (id); - - --- --- Name: spree_product_promotion_rules spree_product_promotion_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_promotion_rules - ADD CONSTRAINT spree_product_promotion_rules_pkey PRIMARY KEY (id); - - --- --- Name: spree_product_properties spree_product_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_product_properties - ADD CONSTRAINT spree_product_properties_pkey PRIMARY KEY (id); - - --- --- Name: spree_products spree_products_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products - ADD CONSTRAINT spree_products_pkey PRIMARY KEY (id); - - --- --- Name: spree_products_stores spree_products_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products_stores - ADD CONSTRAINT spree_products_stores_pkey PRIMARY KEY (id); - - --- --- Name: spree_products_taxons spree_products_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_products_taxons - ADD CONSTRAINT spree_products_taxons_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_action_line_items spree_promotion_action_line_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_action_line_items - ADD CONSTRAINT spree_promotion_action_line_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_actions spree_promotion_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_actions - ADD CONSTRAINT spree_promotion_actions_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_categories spree_promotion_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_categories - ADD CONSTRAINT spree_promotion_categories_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_rule_taxons spree_promotion_rule_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rule_taxons - ADD CONSTRAINT spree_promotion_rule_taxons_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_rule_users spree_promotion_rule_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rule_users - ADD CONSTRAINT spree_promotion_rule_users_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotion_rules spree_promotion_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotion_rules - ADD CONSTRAINT spree_promotion_rules_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotions spree_promotions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotions - ADD CONSTRAINT spree_promotions_pkey PRIMARY KEY (id); - - --- --- Name: spree_promotions_stores spree_promotions_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_promotions_stores - ADD CONSTRAINT spree_promotions_stores_pkey PRIMARY KEY (id); - - --- --- Name: spree_properties spree_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_properties - ADD CONSTRAINT spree_properties_pkey PRIMARY KEY (id); - - --- --- Name: spree_property_prototypes spree_property_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_property_prototypes - ADD CONSTRAINT spree_property_prototypes_pkey PRIMARY KEY (id); - - --- --- Name: spree_prototype_taxons spree_prototype_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prototype_taxons - ADD CONSTRAINT spree_prototype_taxons_pkey PRIMARY KEY (id); - - --- --- Name: spree_prototypes spree_prototypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_prototypes - ADD CONSTRAINT spree_prototypes_pkey PRIMARY KEY (id); - - --- --- Name: spree_refund_reasons spree_refund_reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_refund_reasons - ADD CONSTRAINT spree_refund_reasons_pkey PRIMARY KEY (id); - - --- --- Name: spree_refunds spree_refunds_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_refunds - ADD CONSTRAINT spree_refunds_pkey PRIMARY KEY (id); - - --- --- Name: spree_reimbursement_credits spree_reimbursement_credits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursement_credits - ADD CONSTRAINT spree_reimbursement_credits_pkey PRIMARY KEY (id); - - --- --- Name: spree_reimbursement_types spree_reimbursement_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursement_types - ADD CONSTRAINT spree_reimbursement_types_pkey PRIMARY KEY (id); - - --- --- Name: spree_reimbursements spree_reimbursements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_reimbursements - ADD CONSTRAINT spree_reimbursements_pkey PRIMARY KEY (id); - - --- --- Name: spree_return_authorization_reasons spree_return_authorization_reasons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_authorization_reasons - ADD CONSTRAINT spree_return_authorization_reasons_pkey PRIMARY KEY (id); - - --- --- Name: spree_return_authorizations spree_return_authorizations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_authorizations - ADD CONSTRAINT spree_return_authorizations_pkey PRIMARY KEY (id); - - --- --- Name: spree_return_items spree_return_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_return_items - ADD CONSTRAINT spree_return_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_role_users spree_role_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_role_users - ADD CONSTRAINT spree_role_users_pkey PRIMARY KEY (id); - - --- --- Name: spree_roles spree_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_roles - ADD CONSTRAINT spree_roles_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipments spree_shipments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipments - ADD CONSTRAINT spree_shipments_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipping_categories spree_shipping_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_categories - ADD CONSTRAINT spree_shipping_categories_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipping_method_categories spree_shipping_method_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_method_categories - ADD CONSTRAINT spree_shipping_method_categories_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipping_method_zones spree_shipping_method_zones_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_method_zones - ADD CONSTRAINT spree_shipping_method_zones_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipping_methods spree_shipping_methods_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_methods - ADD CONSTRAINT spree_shipping_methods_pkey PRIMARY KEY (id); - - --- --- Name: spree_shipping_rates spree_shipping_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_shipping_rates - ADD CONSTRAINT spree_shipping_rates_pkey PRIMARY KEY (id); - - --- --- Name: spree_state_changes spree_state_changes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_state_changes - ADD CONSTRAINT spree_state_changes_pkey PRIMARY KEY (id); - - --- --- Name: spree_states spree_states_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_states - ADD CONSTRAINT spree_states_pkey PRIMARY KEY (id); - - --- --- Name: spree_stock_items spree_stock_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_items - ADD CONSTRAINT spree_stock_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_stock_locations spree_stock_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_locations - ADD CONSTRAINT spree_stock_locations_pkey PRIMARY KEY (id); - - --- --- Name: spree_stock_movements spree_stock_movements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_movements - ADD CONSTRAINT spree_stock_movements_pkey PRIMARY KEY (id); - - --- --- Name: spree_stock_transfers spree_stock_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stock_transfers - ADD CONSTRAINT spree_stock_transfers_pkey PRIMARY KEY (id); - - --- --- Name: spree_store_credit_categories spree_store_credit_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_categories - ADD CONSTRAINT spree_store_credit_categories_pkey PRIMARY KEY (id); - - --- --- Name: spree_store_credit_events spree_store_credit_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_events - ADD CONSTRAINT spree_store_credit_events_pkey PRIMARY KEY (id); - - --- --- Name: spree_store_credit_types spree_store_credit_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credit_types - ADD CONSTRAINT spree_store_credit_types_pkey PRIMARY KEY (id); - - --- --- Name: spree_store_credits spree_store_credits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_store_credits - ADD CONSTRAINT spree_store_credits_pkey PRIMARY KEY (id); - - --- --- Name: spree_stores spree_stores_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_stores - ADD CONSTRAINT spree_stores_pkey PRIMARY KEY (id); - - --- --- Name: spree_tax_categories spree_tax_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_tax_categories - ADD CONSTRAINT spree_tax_categories_pkey PRIMARY KEY (id); - - --- --- Name: spree_tax_rates spree_tax_rates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_tax_rates - ADD CONSTRAINT spree_tax_rates_pkey PRIMARY KEY (id); - - --- --- Name: spree_taxonomies spree_taxonomies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_taxonomies - ADD CONSTRAINT spree_taxonomies_pkey PRIMARY KEY (id); - - --- --- Name: spree_taxons spree_taxons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_taxons - ADD CONSTRAINT spree_taxons_pkey PRIMARY KEY (id); - - --- --- Name: spree_trackers spree_trackers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_trackers - ADD CONSTRAINT spree_trackers_pkey PRIMARY KEY (id); - - --- --- Name: spree_users spree_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_users - ADD CONSTRAINT spree_users_pkey PRIMARY KEY (id); - - --- --- Name: spree_variants spree_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_variants - ADD CONSTRAINT spree_variants_pkey PRIMARY KEY (id); - - --- --- Name: spree_webhooks_events spree_webhooks_events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_webhooks_events - ADD CONSTRAINT spree_webhooks_events_pkey PRIMARY KEY (id); - - --- --- Name: spree_webhooks_subscribers spree_webhooks_subscribers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_webhooks_subscribers - ADD CONSTRAINT spree_webhooks_subscribers_pkey PRIMARY KEY (id); - - --- --- Name: spree_wished_items spree_wished_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_wished_items - ADD CONSTRAINT spree_wished_items_pkey PRIMARY KEY (id); - - --- --- Name: spree_wishlists spree_wishlists_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_wishlists - ADD CONSTRAINT spree_wishlists_pkey PRIMARY KEY (id); - - --- --- Name: spree_zone_members spree_zone_members_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_zone_members - ADD CONSTRAINT spree_zone_members_pkey PRIMARY KEY (id); - - --- --- Name: spree_zones spree_zones_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_zones - ADD CONSTRAINT spree_zones_pkey PRIMARY KEY (id); - - --- --- Name: email_idx_unique; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX email_idx_unique ON public.spree_users USING btree (email); - - --- --- Name: index_action_mailbox_inbound_emails_uniqueness; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_action_mailbox_inbound_emails_uniqueness ON public.action_mailbox_inbound_emails USING btree (message_id, message_checksum); - - --- --- Name: index_action_text_rich_texts_uniqueness; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_action_text_rich_texts_uniqueness ON public.action_text_rich_texts USING btree (record_type, record_id, name); - - --- --- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id); - - --- --- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id); - - --- --- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key); - - --- --- Name: index_active_storage_variant_records_uniqueness; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_active_storage_variant_records_uniqueness ON public.active_storage_variant_records USING btree (blob_id, variation_digest); - - --- --- Name: index_addresses_on_firstname; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_addresses_on_firstname ON public.spree_addresses USING btree (firstname); - - --- --- Name: index_addresses_on_lastname; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_addresses_on_lastname ON public.spree_addresses USING btree (lastname); - - --- --- Name: index_assets_on_viewable_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_assets_on_viewable_id ON public.spree_assets USING btree (viewable_id); - - --- --- Name: index_assets_on_viewable_type_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_assets_on_viewable_type_and_type ON public.spree_assets USING btree (viewable_type, type); - - --- --- Name: index_friendly_id_slugs_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_friendly_id_slugs_on_deleted_at ON public.friendly_id_slugs USING btree (deleted_at); - - --- --- Name: index_friendly_id_slugs_on_slug_and_sluggable_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type ON public.friendly_id_slugs USING btree (slug, sluggable_type); - - --- --- Name: index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope ON public.friendly_id_slugs USING btree (slug, sluggable_type, scope); - - --- --- Name: index_friendly_id_slugs_on_sluggable_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_friendly_id_slugs_on_sluggable_id ON public.friendly_id_slugs USING btree (sluggable_id); - - --- --- Name: index_friendly_id_slugs_on_sluggable_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_friendly_id_slugs_on_sluggable_type ON public.friendly_id_slugs USING btree (sluggable_type); - - --- --- Name: index_inventory_units_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_inventory_units_on_order_id ON public.spree_inventory_units USING btree (order_id); - - --- --- Name: index_inventory_units_on_shipment_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_inventory_units_on_shipment_id ON public.spree_inventory_units USING btree (shipment_id); - - --- --- Name: index_inventory_units_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_inventory_units_on_variant_id ON public.spree_inventory_units USING btree (variant_id); - - --- --- Name: index_option_values_variants_on_variant_id_and_option_value_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_option_values_variants_on_variant_id_and_option_value_id ON public.spree_option_value_variants USING btree (variant_id, option_value_id); - - --- --- Name: index_product_properties_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_product_properties_on_product_id ON public.spree_product_properties USING btree (product_id); - - --- --- Name: index_products_promotion_rules_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_products_promotion_rules_on_product_id ON public.spree_product_promotion_rules USING btree (product_id); - - --- --- Name: index_products_promotion_rules_on_promotion_rule_and_product; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_products_promotion_rules_on_promotion_rule_and_product ON public.spree_product_promotion_rules USING btree (promotion_rule_id, product_id); - - --- --- Name: index_promotion_rules_on_product_group_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_promotion_rules_on_product_group_id ON public.spree_promotion_rules USING btree (product_group_id); - - --- --- Name: index_promotion_rules_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_promotion_rules_on_user_id ON public.spree_promotion_rules USING btree (user_id); - - --- --- Name: index_promotion_rules_users_on_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_promotion_rules_users_on_promotion_rule_id ON public.spree_promotion_rule_users USING btree (promotion_rule_id); - - --- --- Name: index_promotion_rules_users_on_user_id_and_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_promotion_rules_users_on_user_id_and_promotion_rule_id ON public.spree_promotion_rule_users USING btree (user_id, promotion_rule_id); - - --- --- Name: index_property_prototypes_on_prototype_id_and_property_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_property_prototypes_on_prototype_id_and_property_id ON public.spree_property_prototypes USING btree (prototype_id, property_id); - - --- --- Name: index_refunds_on_refund_reason_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_refunds_on_refund_reason_id ON public.spree_refunds USING btree (refund_reason_id); - - --- --- Name: index_reimbursement_credits_on_creditable_id_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_reimbursement_credits_on_creditable_id_and_type ON public.spree_reimbursement_credits USING btree (creditable_id, creditable_type); - - --- --- Name: index_return_authorizations_on_return_authorization_reason_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_return_authorizations_on_return_authorization_reason_id ON public.spree_return_authorizations USING btree (return_authorization_reason_id); - - --- --- Name: index_return_items_on_customer_return_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_return_items_on_customer_return_id ON public.spree_return_items USING btree (customer_return_id); - - --- --- Name: index_spree_addresses_on_country_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_addresses_on_country_id ON public.spree_addresses USING btree (country_id); - - --- --- Name: index_spree_addresses_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_addresses_on_deleted_at ON public.spree_addresses USING btree (deleted_at); - - --- --- Name: index_spree_addresses_on_state_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_addresses_on_state_id ON public.spree_addresses USING btree (state_id); - - --- --- Name: index_spree_addresses_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_addresses_on_user_id ON public.spree_addresses USING btree (user_id); - - --- --- Name: index_spree_adjustments_on_adjustable_id_and_adjustable_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_adjustments_on_adjustable_id_and_adjustable_type ON public.spree_adjustments USING btree (adjustable_id, adjustable_type); - - --- --- Name: index_spree_adjustments_on_eligible; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_adjustments_on_eligible ON public.spree_adjustments USING btree (eligible); - - --- --- Name: index_spree_adjustments_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_adjustments_on_order_id ON public.spree_adjustments USING btree (order_id); - - --- --- Name: index_spree_adjustments_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_adjustments_on_source_id_and_source_type ON public.spree_adjustments USING btree (source_id, source_type); - - --- --- Name: index_spree_assets_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_assets_on_position ON public.spree_assets USING btree ("position"); - - --- --- Name: index_spree_calculators_on_calculable_id_and_calculable_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_calculators_on_calculable_id_and_calculable_type ON public.spree_calculators USING btree (calculable_id, calculable_type); - - --- --- Name: index_spree_calculators_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_calculators_on_deleted_at ON public.spree_calculators USING btree (deleted_at); - - --- --- Name: index_spree_calculators_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_calculators_on_id_and_type ON public.spree_calculators USING btree (id, type); - - --- --- Name: index_spree_checks_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_checks_on_payment_method_id ON public.spree_checks USING btree (payment_method_id); - - --- --- Name: index_spree_checks_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_checks_on_user_id ON public.spree_checks USING btree (user_id); - - --- --- Name: index_spree_cms_pages_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_deleted_at ON public.spree_cms_pages USING btree (deleted_at); - - --- --- Name: index_spree_cms_pages_on_slug_and_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_cms_pages_on_slug_and_store_id ON public.spree_cms_pages USING btree (slug, store_id); - - --- --- Name: index_spree_cms_pages_on_slug_and_store_id_and_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_slug_and_store_id_and_deleted_at ON public.spree_cms_pages USING btree (slug, store_id, deleted_at); - - --- --- Name: index_spree_cms_pages_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_store_id ON public.spree_cms_pages USING btree (store_id); - - --- --- Name: index_spree_cms_pages_on_store_id_and_locale_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_store_id_and_locale_and_type ON public.spree_cms_pages USING btree (store_id, locale, type); - - --- --- Name: index_spree_cms_pages_on_title_and_type_and_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_title_and_type_and_store_id ON public.spree_cms_pages USING btree (title, type, store_id); - - --- --- Name: index_spree_cms_pages_on_visible; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_pages_on_visible ON public.spree_cms_pages USING btree (visible); - - --- --- Name: index_spree_cms_sections_on_cms_page_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_sections_on_cms_page_id ON public.spree_cms_sections USING btree (cms_page_id); - - --- --- Name: index_spree_cms_sections_on_linked_resource; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_sections_on_linked_resource ON public.spree_cms_sections USING btree (linked_resource_type, linked_resource_id); - - --- --- Name: index_spree_cms_sections_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_sections_on_position ON public.spree_cms_sections USING btree ("position"); - - --- --- Name: index_spree_cms_sections_on_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_cms_sections_on_type ON public.spree_cms_sections USING btree (type); - - --- --- Name: index_spree_countries_on_iso; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_countries_on_iso ON public.spree_countries USING btree (iso); - - --- --- Name: index_spree_countries_on_iso3; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_countries_on_iso3 ON public.spree_countries USING btree (iso3); - - --- --- Name: index_spree_countries_on_iso_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_countries_on_iso_name ON public.spree_countries USING btree (iso_name); - - --- --- Name: index_spree_countries_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_countries_on_name ON public.spree_countries USING btree (name); - - --- --- Name: index_spree_credit_cards_on_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_credit_cards_on_address_id ON public.spree_credit_cards USING btree (address_id); - - --- --- Name: index_spree_credit_cards_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_credit_cards_on_deleted_at ON public.spree_credit_cards USING btree (deleted_at); - - --- --- Name: index_spree_credit_cards_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_credit_cards_on_payment_method_id ON public.spree_credit_cards USING btree (payment_method_id); - - --- --- Name: index_spree_credit_cards_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_credit_cards_on_user_id ON public.spree_credit_cards USING btree (user_id); - - --- --- Name: index_spree_customer_returns_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_customer_returns_on_number ON public.spree_customer_returns USING btree (number); - - --- --- Name: index_spree_customer_returns_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_customer_returns_on_stock_location_id ON public.spree_customer_returns USING btree (stock_location_id); - - --- --- Name: index_spree_customer_returns_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_customer_returns_on_store_id ON public.spree_customer_returns USING btree (store_id); - - --- --- Name: index_spree_digital_links_on_digital_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_digital_links_on_digital_id ON public.spree_digital_links USING btree (digital_id); - - --- --- Name: index_spree_digital_links_on_line_item_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_digital_links_on_line_item_id ON public.spree_digital_links USING btree (line_item_id); - - --- --- Name: index_spree_digital_links_on_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_digital_links_on_token ON public.spree_digital_links USING btree (token); - - --- --- Name: index_spree_digitals_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_digitals_on_variant_id ON public.spree_digitals USING btree (variant_id); - - --- --- Name: index_spree_gateways_on_active; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_gateways_on_active ON public.spree_gateways USING btree (active); - - --- --- Name: index_spree_gateways_on_test_mode; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_gateways_on_test_mode ON public.spree_gateways USING btree (test_mode); - - --- --- Name: index_spree_inventory_units_on_line_item_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_inventory_units_on_line_item_id ON public.spree_inventory_units USING btree (line_item_id); - - --- --- Name: index_spree_inventory_units_on_original_return_item_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_inventory_units_on_original_return_item_id ON public.spree_inventory_units USING btree (original_return_item_id); - - --- --- Name: index_spree_line_items_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_line_items_on_order_id ON public.spree_line_items USING btree (order_id); - - --- --- Name: index_spree_line_items_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_line_items_on_tax_category_id ON public.spree_line_items USING btree (tax_category_id); - - --- --- Name: index_spree_line_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_line_items_on_variant_id ON public.spree_line_items USING btree (variant_id); - - --- --- Name: index_spree_log_entries_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_log_entries_on_source_id_and_source_type ON public.spree_log_entries USING btree (source_id, source_type); - - --- --- Name: index_spree_menu_items_on_code; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_code ON public.spree_menu_items USING btree (code); - - --- --- Name: index_spree_menu_items_on_depth; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_depth ON public.spree_menu_items USING btree (depth); - - --- --- Name: index_spree_menu_items_on_item_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_item_type ON public.spree_menu_items USING btree (item_type); - - --- --- Name: index_spree_menu_items_on_lft; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_lft ON public.spree_menu_items USING btree (lft); - - --- --- Name: index_spree_menu_items_on_linked_resource; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_linked_resource ON public.spree_menu_items USING btree (linked_resource_type, linked_resource_id); - - --- --- Name: index_spree_menu_items_on_menu_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_menu_id ON public.spree_menu_items USING btree (menu_id); - - --- --- Name: index_spree_menu_items_on_parent_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_parent_id ON public.spree_menu_items USING btree (parent_id); - - --- --- Name: index_spree_menu_items_on_rgt; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menu_items_on_rgt ON public.spree_menu_items USING btree (rgt); - - --- --- Name: index_spree_menus_on_locale; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menus_on_locale ON public.spree_menus USING btree (locale); - - --- --- Name: index_spree_menus_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_menus_on_store_id ON public.spree_menus USING btree (store_id); - - --- --- Name: index_spree_menus_on_store_id_and_location_and_locale; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_menus_on_store_id_and_location_and_locale ON public.spree_menus USING btree (store_id, location, locale); - - --- --- Name: index_spree_oauth_access_grants_on_application_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_oauth_access_grants_on_application_id ON public.spree_oauth_access_grants USING btree (application_id); - - --- --- Name: index_spree_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_oauth_access_grants_on_token ON public.spree_oauth_access_grants USING btree (token); - - --- --- Name: index_spree_oauth_access_tokens_on_application_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_oauth_access_tokens_on_application_id ON public.spree_oauth_access_tokens USING btree (application_id); - - --- --- Name: index_spree_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_oauth_access_tokens_on_refresh_token ON public.spree_oauth_access_tokens USING btree (refresh_token); - - --- --- Name: index_spree_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_oauth_access_tokens_on_resource_owner_id ON public.spree_oauth_access_tokens USING btree (resource_owner_id); - - --- --- Name: index_spree_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_oauth_access_tokens_on_token ON public.spree_oauth_access_tokens USING btree (token); - - --- --- Name: index_spree_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_oauth_applications_on_uid ON public.spree_oauth_applications USING btree (uid); - - --- --- Name: index_spree_option_type_prototypes_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_type_prototypes_on_option_type_id ON public.spree_option_type_prototypes USING btree (option_type_id); - - --- --- Name: index_spree_option_type_prototypes_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_type_prototypes_on_prototype_id ON public.spree_option_type_prototypes USING btree (prototype_id); - - --- --- Name: index_spree_option_types_on_filterable; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_types_on_filterable ON public.spree_option_types USING btree (filterable); - - --- --- Name: index_spree_option_types_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_types_on_name ON public.spree_option_types USING btree (name); - - --- --- Name: index_spree_option_types_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_types_on_position ON public.spree_option_types USING btree ("position"); - - --- --- Name: index_spree_option_value_variants_on_option_value_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_value_variants_on_option_value_id ON public.spree_option_value_variants USING btree (option_value_id); - - --- --- Name: index_spree_option_value_variants_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_value_variants_on_variant_id ON public.spree_option_value_variants USING btree (variant_id); - - --- --- Name: index_spree_option_values_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_values_on_name ON public.spree_option_values USING btree (name); - - --- --- Name: index_spree_option_values_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_values_on_option_type_id ON public.spree_option_values USING btree (option_type_id); - - --- --- Name: index_spree_option_values_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_option_values_on_position ON public.spree_option_values USING btree ("position"); - - --- --- Name: index_spree_order_promotions_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_order_promotions_on_order_id ON public.spree_order_promotions USING btree (order_id); - - --- --- Name: index_spree_order_promotions_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_order_promotions_on_promotion_id ON public.spree_order_promotions USING btree (promotion_id); - - --- --- Name: index_spree_order_promotions_on_promotion_id_and_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_order_promotions_on_promotion_id_and_order_id ON public.spree_order_promotions USING btree (promotion_id, order_id); - - --- --- Name: index_spree_orders_on_approver_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_approver_id ON public.spree_orders USING btree (approver_id); - - --- --- Name: index_spree_orders_on_bill_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_bill_address_id ON public.spree_orders USING btree (bill_address_id); - - --- --- Name: index_spree_orders_on_canceler_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_canceler_id ON public.spree_orders USING btree (canceler_id); - - --- --- Name: index_spree_orders_on_completed_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_completed_at ON public.spree_orders USING btree (completed_at); - - --- --- Name: index_spree_orders_on_confirmation_delivered; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_confirmation_delivered ON public.spree_orders USING btree (confirmation_delivered); - - --- --- Name: index_spree_orders_on_considered_risky; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_considered_risky ON public.spree_orders USING btree (considered_risky); - - --- --- Name: index_spree_orders_on_created_by_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_created_by_id ON public.spree_orders USING btree (created_by_id); - - --- --- Name: index_spree_orders_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_orders_on_number ON public.spree_orders USING btree (number); - - --- --- Name: index_spree_orders_on_ship_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_ship_address_id ON public.spree_orders USING btree (ship_address_id); - - --- --- Name: index_spree_orders_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_store_id ON public.spree_orders USING btree (store_id); - - --- --- Name: index_spree_orders_on_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_token ON public.spree_orders USING btree (token); - - --- --- Name: index_spree_orders_on_user_id_and_created_by_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_orders_on_user_id_and_created_by_id ON public.spree_orders USING btree (user_id, created_by_id); - - --- --- Name: index_spree_payment_capture_events_on_payment_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payment_capture_events_on_payment_id ON public.spree_payment_capture_events USING btree (payment_id); - - --- --- Name: index_spree_payment_methods_on_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payment_methods_on_id ON public.spree_payment_methods USING btree (id); - - --- --- Name: index_spree_payment_methods_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payment_methods_on_id_and_type ON public.spree_payment_methods USING btree (id, type); - - --- --- Name: index_spree_payment_methods_stores_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payment_methods_stores_on_payment_method_id ON public.spree_payment_methods_stores USING btree (payment_method_id); - - --- --- Name: index_spree_payment_methods_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payment_methods_stores_on_store_id ON public.spree_payment_methods_stores USING btree (store_id); - - --- --- Name: index_spree_payments_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_payments_on_number ON public.spree_payments USING btree (number); - - --- --- Name: index_spree_payments_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payments_on_order_id ON public.spree_payments USING btree (order_id); - - --- --- Name: index_spree_payments_on_payment_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payments_on_payment_method_id ON public.spree_payments USING btree (payment_method_id); - - --- --- Name: index_spree_payments_on_source_id_and_source_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_payments_on_source_id_and_source_type ON public.spree_payments USING btree (source_id, source_type); - - --- --- Name: index_spree_preferences_on_key; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_preferences_on_key ON public.spree_preferences USING btree (key); - - --- --- Name: index_spree_prices_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prices_on_deleted_at ON public.spree_prices USING btree (deleted_at); - - --- --- Name: index_spree_prices_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prices_on_variant_id ON public.spree_prices USING btree (variant_id); - - --- --- Name: index_spree_prices_on_variant_id_and_currency; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prices_on_variant_id_and_currency ON public.spree_prices USING btree (variant_id, currency); - - --- --- Name: index_spree_product_option_types_on_option_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_option_types_on_option_type_id ON public.spree_product_option_types USING btree (option_type_id); - - --- --- Name: index_spree_product_option_types_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_option_types_on_position ON public.spree_product_option_types USING btree ("position"); - - --- --- Name: index_spree_product_option_types_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_option_types_on_product_id ON public.spree_product_option_types USING btree (product_id); - - --- --- Name: index_spree_product_properties_on_filter_param; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_properties_on_filter_param ON public.spree_product_properties USING btree (filter_param); - - --- --- Name: index_spree_product_properties_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_properties_on_position ON public.spree_product_properties USING btree ("position"); - - --- --- Name: index_spree_product_properties_on_property_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_product_properties_on_property_id ON public.spree_product_properties USING btree (property_id); - - --- --- Name: index_spree_product_properties_on_property_id_and_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_product_properties_on_property_id_and_product_id ON public.spree_product_properties USING btree (property_id, product_id); - - --- --- Name: index_spree_products_on_available_on; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_available_on ON public.spree_products USING btree (available_on); - - --- --- Name: index_spree_products_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_deleted_at ON public.spree_products USING btree (deleted_at); - - --- --- Name: index_spree_products_on_discontinue_on; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_discontinue_on ON public.spree_products USING btree (discontinue_on); - - --- --- Name: index_spree_products_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_name ON public.spree_products USING btree (name); - - --- --- Name: index_spree_products_on_shipping_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_shipping_category_id ON public.spree_products USING btree (shipping_category_id); - - --- --- Name: index_spree_products_on_slug; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_products_on_slug ON public.spree_products USING btree (slug); - - --- --- Name: index_spree_products_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_on_tax_category_id ON public.spree_products USING btree (tax_category_id); - - --- --- Name: index_spree_products_stores_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_stores_on_product_id ON public.spree_products_stores USING btree (product_id); - - --- --- Name: index_spree_products_stores_on_product_id_and_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_products_stores_on_product_id_and_store_id ON public.spree_products_stores USING btree (product_id, store_id); - - --- --- Name: index_spree_products_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_stores_on_store_id ON public.spree_products_stores USING btree (store_id); - - --- --- Name: index_spree_products_taxons_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_taxons_on_position ON public.spree_products_taxons USING btree ("position"); - - --- --- Name: index_spree_products_taxons_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_taxons_on_product_id ON public.spree_products_taxons USING btree (product_id); - - --- --- Name: index_spree_products_taxons_on_product_id_and_taxon_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_products_taxons_on_product_id_and_taxon_id ON public.spree_products_taxons USING btree (product_id, taxon_id); - - --- --- Name: index_spree_products_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_products_taxons_on_taxon_id ON public.spree_products_taxons USING btree (taxon_id); - - --- --- Name: index_spree_promotion_action_line_items_on_promotion_action_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_action_line_items_on_promotion_action_id ON public.spree_promotion_action_line_items USING btree (promotion_action_id); - - --- --- Name: index_spree_promotion_action_line_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_action_line_items_on_variant_id ON public.spree_promotion_action_line_items USING btree (variant_id); - - --- --- Name: index_spree_promotion_actions_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_actions_on_deleted_at ON public.spree_promotion_actions USING btree (deleted_at); - - --- --- Name: index_spree_promotion_actions_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_actions_on_id_and_type ON public.spree_promotion_actions USING btree (id, type); - - --- --- Name: index_spree_promotion_actions_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_actions_on_promotion_id ON public.spree_promotion_actions USING btree (promotion_id); - - --- --- Name: index_spree_promotion_rule_taxons_on_promotion_rule_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_rule_taxons_on_promotion_rule_id ON public.spree_promotion_rule_taxons USING btree (promotion_rule_id); - - --- --- Name: index_spree_promotion_rule_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_rule_taxons_on_taxon_id ON public.spree_promotion_rule_taxons USING btree (taxon_id); - - --- --- Name: index_spree_promotion_rules_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotion_rules_on_promotion_id ON public.spree_promotion_rules USING btree (promotion_id); - - --- --- Name: index_spree_promotions_on_advertise; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_advertise ON public.spree_promotions USING btree (advertise); - - --- --- Name: index_spree_promotions_on_code; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_code ON public.spree_promotions USING btree (code); - - --- --- Name: index_spree_promotions_on_expires_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_expires_at ON public.spree_promotions USING btree (expires_at); - - --- --- Name: index_spree_promotions_on_id_and_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_id_and_type ON public.spree_promotions USING btree (id, type); - - --- --- Name: index_spree_promotions_on_path; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_path ON public.spree_promotions USING btree (path); - - --- --- Name: index_spree_promotions_on_promotion_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_promotion_category_id ON public.spree_promotions USING btree (promotion_category_id); - - --- --- Name: index_spree_promotions_on_starts_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_on_starts_at ON public.spree_promotions USING btree (starts_at); - - --- --- Name: index_spree_promotions_stores_on_promotion_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_stores_on_promotion_id ON public.spree_promotions_stores USING btree (promotion_id); - - --- --- Name: index_spree_promotions_stores_on_promotion_id_and_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_promotions_stores_on_promotion_id_and_store_id ON public.spree_promotions_stores USING btree (promotion_id, store_id); - - --- --- Name: index_spree_promotions_stores_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_promotions_stores_on_store_id ON public.spree_promotions_stores USING btree (store_id); - - --- --- Name: index_spree_properties_on_filter_param; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_properties_on_filter_param ON public.spree_properties USING btree (filter_param); - - --- --- Name: index_spree_properties_on_filterable; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_properties_on_filterable ON public.spree_properties USING btree (filterable); - - --- --- Name: index_spree_properties_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_properties_on_name ON public.spree_properties USING btree (name); - - --- --- Name: index_spree_property_prototypes_on_property_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_property_prototypes_on_property_id ON public.spree_property_prototypes USING btree (property_id); - - --- --- Name: index_spree_property_prototypes_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_property_prototypes_on_prototype_id ON public.spree_property_prototypes USING btree (prototype_id); - - --- --- Name: index_spree_prototype_taxons_on_prototype_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prototype_taxons_on_prototype_id ON public.spree_prototype_taxons USING btree (prototype_id); - - --- --- Name: index_spree_prototype_taxons_on_prototype_id_and_taxon_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prototype_taxons_on_prototype_id_and_taxon_id ON public.spree_prototype_taxons USING btree (prototype_id, taxon_id); - - --- --- Name: index_spree_prototype_taxons_on_taxon_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_prototype_taxons_on_taxon_id ON public.spree_prototype_taxons USING btree (taxon_id); - - --- --- Name: index_spree_refund_reasons_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_refund_reasons_on_name ON public.spree_refund_reasons USING btree (name); - - --- --- Name: index_spree_refunds_on_payment_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_refunds_on_payment_id ON public.spree_refunds USING btree (payment_id); - - --- --- Name: index_spree_refunds_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_refunds_on_reimbursement_id ON public.spree_refunds USING btree (reimbursement_id); - - --- --- Name: index_spree_reimbursement_credits_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_reimbursement_credits_on_reimbursement_id ON public.spree_reimbursement_credits USING btree (reimbursement_id); - - --- --- Name: index_spree_reimbursement_types_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_reimbursement_types_on_name ON public.spree_reimbursement_types USING btree (name); - - --- --- Name: index_spree_reimbursement_types_on_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_reimbursement_types_on_type ON public.spree_reimbursement_types USING btree (type); - - --- --- Name: index_spree_reimbursements_on_customer_return_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_reimbursements_on_customer_return_id ON public.spree_reimbursements USING btree (customer_return_id); - - --- --- Name: index_spree_reimbursements_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_reimbursements_on_number ON public.spree_reimbursements USING btree (number); - - --- --- Name: index_spree_reimbursements_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_reimbursements_on_order_id ON public.spree_reimbursements USING btree (order_id); - - --- --- Name: index_spree_return_authorization_reasons_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_return_authorization_reasons_on_name ON public.spree_return_authorization_reasons USING btree (name); - - --- --- Name: index_spree_return_authorizations_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_return_authorizations_on_number ON public.spree_return_authorizations USING btree (number); - - --- --- Name: index_spree_return_authorizations_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_authorizations_on_order_id ON public.spree_return_authorizations USING btree (order_id); - - --- --- Name: index_spree_return_authorizations_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_authorizations_on_stock_location_id ON public.spree_return_authorizations USING btree (stock_location_id); - - --- --- Name: index_spree_return_items_on_exchange_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_exchange_variant_id ON public.spree_return_items USING btree (exchange_variant_id); - - --- --- Name: index_spree_return_items_on_inventory_unit_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_inventory_unit_id ON public.spree_return_items USING btree (inventory_unit_id); - - --- --- Name: index_spree_return_items_on_override_reimbursement_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_override_reimbursement_type_id ON public.spree_return_items USING btree (override_reimbursement_type_id); - - --- --- Name: index_spree_return_items_on_preferred_reimbursement_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_preferred_reimbursement_type_id ON public.spree_return_items USING btree (preferred_reimbursement_type_id); - - --- --- Name: index_spree_return_items_on_reimbursement_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_reimbursement_id ON public.spree_return_items USING btree (reimbursement_id); - - --- --- Name: index_spree_return_items_on_return_authorization_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_return_items_on_return_authorization_id ON public.spree_return_items USING btree (return_authorization_id); - - --- --- Name: index_spree_role_users_on_role_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_role_users_on_role_id ON public.spree_role_users USING btree (role_id); - - --- --- Name: index_spree_role_users_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_role_users_on_user_id ON public.spree_role_users USING btree (user_id); - - --- --- Name: index_spree_roles_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_roles_on_name ON public.spree_roles USING btree (name); - - --- --- Name: index_spree_shipments_on_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipments_on_address_id ON public.spree_shipments USING btree (address_id); - - --- --- Name: index_spree_shipments_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_shipments_on_number ON public.spree_shipments USING btree (number); - - --- --- Name: index_spree_shipments_on_order_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipments_on_order_id ON public.spree_shipments USING btree (order_id); - - --- --- Name: index_spree_shipments_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipments_on_stock_location_id ON public.spree_shipments USING btree (stock_location_id); - - --- --- Name: index_spree_shipping_categories_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_categories_on_name ON public.spree_shipping_categories USING btree (name); - - --- --- Name: index_spree_shipping_method_categories_on_shipping_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_method_categories_on_shipping_category_id ON public.spree_shipping_method_categories USING btree (shipping_category_id); - - --- --- Name: index_spree_shipping_method_categories_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_method_categories_on_shipping_method_id ON public.spree_shipping_method_categories USING btree (shipping_method_id); - - --- --- Name: index_spree_shipping_method_zones_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_method_zones_on_shipping_method_id ON public.spree_shipping_method_zones USING btree (shipping_method_id); - - --- --- Name: index_spree_shipping_method_zones_on_zone_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_method_zones_on_zone_id ON public.spree_shipping_method_zones USING btree (zone_id); - - --- --- Name: index_spree_shipping_methods_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_methods_on_deleted_at ON public.spree_shipping_methods USING btree (deleted_at); - - --- --- Name: index_spree_shipping_methods_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_methods_on_tax_category_id ON public.spree_shipping_methods USING btree (tax_category_id); - - --- --- Name: index_spree_shipping_rates_on_selected; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_rates_on_selected ON public.spree_shipping_rates USING btree (selected); - - --- --- Name: index_spree_shipping_rates_on_shipment_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_rates_on_shipment_id ON public.spree_shipping_rates USING btree (shipment_id); - - --- --- Name: index_spree_shipping_rates_on_shipping_method_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_rates_on_shipping_method_id ON public.spree_shipping_rates USING btree (shipping_method_id); - - --- --- Name: index_spree_shipping_rates_on_tax_rate_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_shipping_rates_on_tax_rate_id ON public.spree_shipping_rates USING btree (tax_rate_id); - - --- --- Name: index_spree_state_changes_on_stateful_id_and_stateful_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_state_changes_on_stateful_id_and_stateful_type ON public.spree_state_changes USING btree (stateful_id, stateful_type); - - --- --- Name: index_spree_states_on_country_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_states_on_country_id ON public.spree_states USING btree (country_id); - - --- --- Name: index_spree_stock_items_on_backorderable; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_items_on_backorderable ON public.spree_stock_items USING btree (backorderable); - - --- --- Name: index_spree_stock_items_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_items_on_deleted_at ON public.spree_stock_items USING btree (deleted_at); - - --- --- Name: index_spree_stock_items_on_stock_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_items_on_stock_location_id ON public.spree_stock_items USING btree (stock_location_id); - - --- --- Name: index_spree_stock_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_items_on_variant_id ON public.spree_stock_items USING btree (variant_id); - - --- --- Name: index_spree_stock_locations_on_active; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_locations_on_active ON public.spree_stock_locations USING btree (active); - - --- --- Name: index_spree_stock_locations_on_backorderable_default; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_locations_on_backorderable_default ON public.spree_stock_locations USING btree (backorderable_default); - - --- --- Name: index_spree_stock_locations_on_country_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_locations_on_country_id ON public.spree_stock_locations USING btree (country_id); - - --- --- Name: index_spree_stock_locations_on_propagate_all_variants; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_locations_on_propagate_all_variants ON public.spree_stock_locations USING btree (propagate_all_variants); - - --- --- Name: index_spree_stock_locations_on_state_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_locations_on_state_id ON public.spree_stock_locations USING btree (state_id); - - --- --- Name: index_spree_stock_movements_on_stock_item_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_movements_on_stock_item_id ON public.spree_stock_movements USING btree (stock_item_id); - - --- --- Name: index_spree_stock_transfers_on_destination_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_transfers_on_destination_location_id ON public.spree_stock_transfers USING btree (destination_location_id); - - --- --- Name: index_spree_stock_transfers_on_number; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_stock_transfers_on_number ON public.spree_stock_transfers USING btree (number); - - --- --- Name: index_spree_stock_transfers_on_source_location_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stock_transfers_on_source_location_id ON public.spree_stock_transfers USING btree (source_location_id); - - --- --- Name: index_spree_store_credit_events_on_store_credit_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credit_events_on_store_credit_id ON public.spree_store_credit_events USING btree (store_credit_id); - - --- --- Name: index_spree_store_credit_types_on_priority; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credit_types_on_priority ON public.spree_store_credit_types USING btree (priority); - - --- --- Name: index_spree_store_credits_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credits_on_deleted_at ON public.spree_store_credits USING btree (deleted_at); - - --- --- Name: index_spree_store_credits_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credits_on_store_id ON public.spree_store_credits USING btree (store_id); - - --- --- Name: index_spree_store_credits_on_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credits_on_type_id ON public.spree_store_credits USING btree (type_id); - - --- --- Name: index_spree_store_credits_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_store_credits_on_user_id ON public.spree_store_credits USING btree (user_id); - - --- --- Name: index_spree_stores_on_code; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_stores_on_code ON public.spree_stores USING btree (code); - - --- --- Name: index_spree_stores_on_default; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stores_on_default ON public.spree_stores USING btree ("default"); - - --- --- Name: index_spree_stores_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stores_on_deleted_at ON public.spree_stores USING btree (deleted_at); - - --- --- Name: index_spree_stores_on_url; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_stores_on_url ON public.spree_stores USING btree (url); - - --- --- Name: index_spree_tax_categories_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_categories_on_deleted_at ON public.spree_tax_categories USING btree (deleted_at); - - --- --- Name: index_spree_tax_categories_on_is_default; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_categories_on_is_default ON public.spree_tax_categories USING btree (is_default); - - --- --- Name: index_spree_tax_rates_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_rates_on_deleted_at ON public.spree_tax_rates USING btree (deleted_at); - - --- --- Name: index_spree_tax_rates_on_included_in_price; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_rates_on_included_in_price ON public.spree_tax_rates USING btree (included_in_price); - - --- --- Name: index_spree_tax_rates_on_show_rate_in_label; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_rates_on_show_rate_in_label ON public.spree_tax_rates USING btree (show_rate_in_label); - - --- --- Name: index_spree_tax_rates_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_rates_on_tax_category_id ON public.spree_tax_rates USING btree (tax_category_id); - - --- --- Name: index_spree_tax_rates_on_zone_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_tax_rates_on_zone_id ON public.spree_tax_rates USING btree (zone_id); - - --- --- Name: index_spree_taxonomies_on_name_and_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_taxonomies_on_name_and_store_id ON public.spree_taxonomies USING btree (name, store_id); - - --- --- Name: index_spree_taxonomies_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxonomies_on_position ON public.spree_taxonomies USING btree ("position"); - - --- --- Name: index_spree_taxonomies_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxonomies_on_store_id ON public.spree_taxonomies USING btree (store_id); - - --- --- Name: index_spree_taxons_on_lft; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxons_on_lft ON public.spree_taxons USING btree (lft); - - --- --- Name: index_spree_taxons_on_name; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxons_on_name ON public.spree_taxons USING btree (name); - - --- --- Name: index_spree_taxons_on_name_and_parent_id_and_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_taxons_on_name_and_parent_id_and_taxonomy_id ON public.spree_taxons USING btree (name, parent_id, taxonomy_id); - - --- --- Name: index_spree_taxons_on_permalink_and_parent_id_and_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_taxons_on_permalink_and_parent_id_and_taxonomy_id ON public.spree_taxons USING btree (permalink, parent_id, taxonomy_id); - - --- --- Name: index_spree_taxons_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxons_on_position ON public.spree_taxons USING btree ("position"); - - --- --- Name: index_spree_taxons_on_rgt; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_taxons_on_rgt ON public.spree_taxons USING btree (rgt); - - --- --- Name: index_spree_trackers_on_active; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_trackers_on_active ON public.spree_trackers USING btree (active); - - --- --- Name: index_spree_users_on_bill_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_users_on_bill_address_id ON public.spree_users USING btree (bill_address_id); - - --- --- Name: index_spree_users_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_users_on_deleted_at ON public.spree_users USING btree (deleted_at); - - --- --- Name: index_spree_users_on_ship_address_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_users_on_ship_address_id ON public.spree_users USING btree (ship_address_id); - - --- --- Name: index_spree_users_on_spree_api_key; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_users_on_spree_api_key ON public.spree_users USING btree (spree_api_key); - - --- --- Name: index_spree_variants_on_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_deleted_at ON public.spree_variants USING btree (deleted_at); - - --- --- Name: index_spree_variants_on_discontinue_on; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_discontinue_on ON public.spree_variants USING btree (discontinue_on); - - --- --- Name: index_spree_variants_on_is_master; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_is_master ON public.spree_variants USING btree (is_master); - - --- --- Name: index_spree_variants_on_position; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_position ON public.spree_variants USING btree ("position"); - - --- --- Name: index_spree_variants_on_product_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_product_id ON public.spree_variants USING btree (product_id); - - --- --- Name: index_spree_variants_on_sku; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_sku ON public.spree_variants USING btree (sku); - - --- --- Name: index_spree_variants_on_tax_category_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_tax_category_id ON public.spree_variants USING btree (tax_category_id); - - --- --- Name: index_spree_variants_on_track_inventory; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_variants_on_track_inventory ON public.spree_variants USING btree (track_inventory); - - --- --- Name: index_spree_webhooks_events_on_response_code; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_webhooks_events_on_response_code ON public.spree_webhooks_events USING btree (response_code); - - --- --- Name: index_spree_webhooks_events_on_subscriber_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_webhooks_events_on_subscriber_id ON public.spree_webhooks_events USING btree (subscriber_id); - - --- --- Name: index_spree_webhooks_events_on_success; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_webhooks_events_on_success ON public.spree_webhooks_events USING btree (success); - - --- --- Name: index_spree_webhooks_subscribers_on_active; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_webhooks_subscribers_on_active ON public.spree_webhooks_subscribers USING btree (active); - - --- --- Name: index_spree_wished_items_on_variant_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_wished_items_on_variant_id ON public.spree_wished_items USING btree (variant_id); - - --- --- Name: index_spree_wished_items_on_variant_id_and_wishlist_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_wished_items_on_variant_id_and_wishlist_id ON public.spree_wished_items USING btree (variant_id, wishlist_id); - - --- --- Name: index_spree_wished_items_on_wishlist_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_wished_items_on_wishlist_id ON public.spree_wished_items USING btree (wishlist_id); - - --- --- Name: index_spree_wishlists_on_store_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_wishlists_on_store_id ON public.spree_wishlists USING btree (store_id); - - --- --- Name: index_spree_wishlists_on_token; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX index_spree_wishlists_on_token ON public.spree_wishlists USING btree (token); - - --- --- Name: index_spree_wishlists_on_user_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_wishlists_on_user_id ON public.spree_wishlists USING btree (user_id); - - --- --- Name: index_spree_wishlists_on_user_id_and_is_default; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_wishlists_on_user_id_and_is_default ON public.spree_wishlists USING btree (user_id, is_default); - - --- --- Name: index_spree_zone_members_on_zone_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_zone_members_on_zone_id ON public.spree_zone_members USING btree (zone_id); - - --- --- Name: index_spree_zone_members_on_zoneable_id_and_zoneable_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_zone_members_on_zoneable_id_and_zoneable_type ON public.spree_zone_members USING btree (zoneable_id, zoneable_type); - - --- --- Name: index_spree_zones_on_default_tax; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_zones_on_default_tax ON public.spree_zones USING btree (default_tax); - - --- --- Name: index_spree_zones_on_kind; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_spree_zones_on_kind ON public.spree_zones USING btree (kind); - - --- --- Name: index_stock_movements_on_originator_id_and_originator_type; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_stock_movements_on_originator_id_and_originator_type ON public.spree_stock_movements USING btree (originator_id, originator_type); - - --- --- Name: index_taxons_on_parent_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_taxons_on_parent_id ON public.spree_taxons USING btree (parent_id); - - --- --- Name: index_taxons_on_permalink; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_taxons_on_permalink ON public.spree_taxons USING btree (permalink); - - --- --- Name: index_taxons_on_taxonomy_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX index_taxons_on_taxonomy_id ON public.spree_taxons USING btree (taxonomy_id); - - --- --- Name: payment_mentod_id_store_id_unique_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX payment_mentod_id_store_id_unique_index ON public.spree_payment_methods_stores USING btree (payment_method_id, store_id); - - --- --- Name: polymorphic_owner_oauth_access_grants; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX polymorphic_owner_oauth_access_grants ON public.spree_oauth_access_grants USING btree (resource_owner_id, resource_owner_type); - - --- --- Name: polymorphic_owner_oauth_access_tokens; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX polymorphic_owner_oauth_access_tokens ON public.spree_oauth_access_tokens USING btree (resource_owner_id, resource_owner_type); - - --- --- Name: spree_option_type_prototypes_prototype_id_option_type_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX spree_option_type_prototypes_prototype_id_option_type_id ON public.spree_option_type_prototypes USING btree (prototype_id, option_type_id); - - --- --- Name: spree_shipping_rates_join_index; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX spree_shipping_rates_join_index ON public.spree_shipping_rates USING btree (shipment_id, shipping_method_id); - - --- --- Name: spree_store_credit_events_originator; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX spree_store_credit_events_originator ON public.spree_store_credit_events USING btree (originator_id, originator_type); - - --- --- Name: spree_store_credits_originator; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX spree_store_credits_originator ON public.spree_store_credits USING btree (originator_id, originator_type); - - --- --- Name: stock_item_by_loc_and_var_id; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE INDEX stock_item_by_loc_and_var_id ON public.spree_stock_items USING btree (stock_location_id, variant_id); - - --- --- Name: stock_item_by_loc_var_id_deleted_at; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX stock_item_by_loc_var_id_deleted_at ON public.spree_stock_items USING btree (stock_location_id, variant_id, COALESCE(deleted_at, '1970-01-01 00:00:00'::timestamp without time zone)); - - --- --- Name: unique_spree_shipping_method_categories; Type: INDEX; Schema: public; Owner: postgres --- - -CREATE UNIQUE INDEX unique_spree_shipping_method_categories ON public.spree_shipping_method_categories USING btree (shipping_category_id, shipping_method_id); - - --- --- Name: spree_oauth_access_grants fk_rails_8049be136c; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_grants - ADD CONSTRAINT fk_rails_8049be136c FOREIGN KEY (application_id) REFERENCES public.spree_oauth_applications(id); - - --- --- Name: active_storage_variant_records fk_rails_993965df05; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_variant_records - ADD CONSTRAINT fk_rails_993965df05 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id); - - --- --- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.active_storage_attachments - ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id); - - --- --- Name: spree_oauth_access_tokens fk_rails_c9894c7021; Type: FK CONSTRAINT; Schema: public; Owner: postgres --- - -ALTER TABLE ONLY public.spree_oauth_access_tokens - ADD CONSTRAINT fk_rails_c9894c7021 FOREIGN KEY (application_id) REFERENCES public.spree_oauth_applications(id); - - --- --- PostgreSQL database dump complete --- - diff --git a/services/backend/storage/0i/zg/0izgp4zdrg4bxwvji5e0598oa8mp b/services/backend/storage/0i/zg/0izgp4zdrg4bxwvji5e0598oa8mp new file mode 100644 index 00000000..db0131e3 Binary files /dev/null and b/services/backend/storage/0i/zg/0izgp4zdrg4bxwvji5e0598oa8mp differ diff --git a/services/backend/storage/0r/r1/0rr1qtiq705h498m2e65y04aa1fb b/services/backend/storage/0r/r1/0rr1qtiq705h498m2e65y04aa1fb new file mode 100644 index 00000000..5b763cba Binary files /dev/null and b/services/backend/storage/0r/r1/0rr1qtiq705h498m2e65y04aa1fb differ diff --git a/services/backend/storage/3p/nu/3pnujzkcnksw26a0cu1vtyp1uviz b/services/backend/storage/3p/nu/3pnujzkcnksw26a0cu1vtyp1uviz new file mode 100644 index 00000000..3d8cde1b Binary files /dev/null and b/services/backend/storage/3p/nu/3pnujzkcnksw26a0cu1vtyp1uviz differ diff --git a/services/backend/storage/7u/pj/7upjjhp3sbp38un5ii23l5bm1tf8 b/services/backend/storage/7u/pj/7upjjhp3sbp38un5ii23l5bm1tf8 new file mode 100644 index 00000000..3d8cde1b Binary files /dev/null and b/services/backend/storage/7u/pj/7upjjhp3sbp38un5ii23l5bm1tf8 differ diff --git a/services/backend/storage/b5/31/b531yunrur87esye2s4cwavym6te b/services/backend/storage/b5/31/b531yunrur87esye2s4cwavym6te new file mode 100644 index 00000000..9e4f7cff Binary files /dev/null and b/services/backend/storage/b5/31/b531yunrur87esye2s4cwavym6te differ diff --git a/services/backend/storage/cb/kx/cbkxlh6px78ymmakilgwygcm0qn5 b/services/backend/storage/cb/kx/cbkxlh6px78ymmakilgwygcm0qn5 new file mode 100644 index 00000000..9e4f7cff Binary files /dev/null and b/services/backend/storage/cb/kx/cbkxlh6px78ymmakilgwygcm0qn5 differ diff --git a/services/backend/storage/f7/tg/f7tg9iqtd0i6tqxzkf15010kl9xq b/services/backend/storage/f7/tg/f7tg9iqtd0i6tqxzkf15010kl9xq new file mode 100644 index 00000000..85e6ecec Binary files /dev/null and b/services/backend/storage/f7/tg/f7tg9iqtd0i6tqxzkf15010kl9xq differ diff --git a/services/backend/storage/fj/gx/fjgxeszqvcbrc0v0u2n7i70yd956 b/services/backend/storage/fj/gx/fjgxeszqvcbrc0v0u2n7i70yd956 new file mode 100644 index 00000000..5b763cba Binary files /dev/null and b/services/backend/storage/fj/gx/fjgxeszqvcbrc0v0u2n7i70yd956 differ diff --git a/services/backend/storage/jl/mg/jlmgno906bkhwsytjqiyns2hqut8 b/services/backend/storage/jl/mg/jlmgno906bkhwsytjqiyns2hqut8 new file mode 100644 index 00000000..00a6434c Binary files /dev/null and b/services/backend/storage/jl/mg/jlmgno906bkhwsytjqiyns2hqut8 differ diff --git a/services/backend/storage/jr/qt/jrqti00rfi88kdgvjnw4s0tdv7xc b/services/backend/storage/jr/qt/jrqti00rfi88kdgvjnw4s0tdv7xc new file mode 100644 index 00000000..88b6d732 Binary files /dev/null and b/services/backend/storage/jr/qt/jrqti00rfi88kdgvjnw4s0tdv7xc differ diff --git a/services/backend/storage/lp/lr/lplrh3v056du1izagk5o76sfu98p b/services/backend/storage/lp/lr/lplrh3v056du1izagk5o76sfu98p new file mode 100644 index 00000000..5b763cba Binary files /dev/null and b/services/backend/storage/lp/lr/lplrh3v056du1izagk5o76sfu98p differ diff --git a/services/backend/storage/n1/m4/n1m4ol3mo2fbg77imv5qn156swi4 b/services/backend/storage/n1/m4/n1m4ol3mo2fbg77imv5qn156swi4 new file mode 100644 index 00000000..b04cc873 Binary files /dev/null and b/services/backend/storage/n1/m4/n1m4ol3mo2fbg77imv5qn156swi4 differ diff --git a/services/backend/storage/r0/l3/r0l3vmf800tdhnaha8ipdutspb1e b/services/backend/storage/r0/l3/r0l3vmf800tdhnaha8ipdutspb1e new file mode 100644 index 00000000..a03ac42b Binary files /dev/null and b/services/backend/storage/r0/l3/r0l3vmf800tdhnaha8ipdutspb1e differ diff --git a/services/backend/storage/rx/4i/rx4ig9xw7h5y1y2sqqmawsq1x17p b/services/backend/storage/rx/4i/rx4ig9xw7h5y1y2sqqmawsq1x17p new file mode 100644 index 00000000..dd2a594f Binary files /dev/null and b/services/backend/storage/rx/4i/rx4ig9xw7h5y1y2sqqmawsq1x17p differ diff --git a/services/backend/db/dd-agent-conf.yaml b/services/datadog-agent/postgres/dd-agent-conf.yaml similarity index 100% rename from services/backend/db/dd-agent-conf.yaml rename to services/datadog-agent/postgres/dd-agent-conf.yaml diff --git a/services/frontend/site/.eslintrc b/services/frontend/.eslintrc similarity index 100% rename from services/frontend/site/.eslintrc rename to services/frontend/.eslintrc diff --git a/services/frontend/site/.gitignore b/services/frontend/.gitignore similarity index 100% rename from services/frontend/site/.gitignore rename to services/frontend/.gitignore diff --git a/services/frontend/.prettierignore b/services/frontend/.prettierignore index 1c8b279c..105738ca 100644 --- a/services/frontend/.prettierignore +++ b/services/frontend/.prettierignore @@ -1,5 +1,3 @@ -# Every package defines its prettier config node_modules -dist .next -public +public \ No newline at end of file diff --git a/services/frontend/Dockerfile b/services/frontend/Dockerfile index 4f76ee2a..7a9e8e8b 100644 --- a/services/frontend/Dockerfile +++ b/services/frontend/Dockerfile @@ -1,5 +1,10 @@ -FROM node:16.18.0 as builder +FROM node:20 as builder + +# install wait-for-it +RUN apt-get update && apt-get install -y wait-for-it + WORKDIR /storedog-app +COPY package*.json ./ +RUN npm install COPY . . EXPOSE 3000 -RUN ["yarn","install", "--frozen-lockfile", "--network-timeout 1000000"] diff --git a/services/frontend/site/assets/base.css b/services/frontend/assets/base.css similarity index 100% rename from services/frontend/site/assets/base.css rename to services/frontend/assets/base.css diff --git a/services/frontend/site/assets/chrome-bug.css b/services/frontend/assets/chrome-bug.css similarity index 100% rename from services/frontend/site/assets/chrome-bug.css rename to services/frontend/assets/chrome-bug.css diff --git a/services/frontend/site/assets/components.css b/services/frontend/assets/components.css similarity index 100% rename from services/frontend/site/assets/components.css rename to services/frontend/assets/components.css diff --git a/services/frontend/site/assets/main.css b/services/frontend/assets/main.css similarity index 100% rename from services/frontend/site/assets/main.css rename to services/frontend/assets/main.css diff --git a/services/frontend/components/ErrorBoundary.tsx b/services/frontend/components/ErrorBoundary.tsx new file mode 100644 index 00000000..b818d77a --- /dev/null +++ b/services/frontend/components/ErrorBoundary.tsx @@ -0,0 +1,53 @@ +import React from 'react' +import { withRouter } from 'next/router' +import { datadogRum } from '@datadog/browser-rum' + +class ErrorBoundary extends React.Component { + constructor(props) { + super(props) + + // Define a state variable to track whether is an error or not + this.state = { hasError: false } + } + static getDerivedStateFromError(error) { + // Update state so the next render will show the fallback UI + + return { hasError: true } + } + componentDidCatch(error, errorInfo) { + // You can use your own error logging service here + // console.log({ error, errorInfo }); + datadogRum.addError(error, errorInfo) + } + render() { + const { router } = this.props + + // Check if the error is thrown + if (this.state.hasError) { + // You can render any custom fallback UI + return ( ++ Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake. +
+