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":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 29 2022-07-12 18:15:57.295483 2022-07-12 18:15:57.318458 +38 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 30 2022-07-12 18:15:57.344942 2022-07-12 18:15:57.36682 +39 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 31 2022-07-12 18:15:57.393743 2022-07-12 18:15:57.415078 +40 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 25 2022-07-12 18:15:57.440226 2022-07-12 18:15:57.462772 +41 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 26 2022-07-12 18:15:57.488024 2022-07-12 18:15:57.509922 +42 Modetrends {"title":"Sommer 2022","subtitle":"Modetrends","button_text":"Weiterlesen","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 27 2022-07-12 18:15:57.542908 2022-07-12 18:15:57.566165 +43 Tendencias de la moda {"title":"Verano 2022","subtitle":"Tendencias de la moda","button_text":"Lee mas","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 28 2022-07-12 18:15:57.591569 2022-07-12 18:15:57.612986 +44 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 32 2022-07-12 18:15:57.637931 2022-07-12 18:15:57.658399 +45 Modetrends {"title":"Sommer 2022","subtitle":"Modetrends","button_text":"Weiterlesen","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 33 2022-07-12 18:15:57.68353 2022-07-12 18:15:57.704781 +46 Tendencias de la moda {"title":"Verano 2022","subtitle":"Tendencias de la moda","button_text":"Lee mas","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 34 2022-07-12 18:15:57.730615 2022-07-12 18:15:57.752067 +47 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 35 2022-07-12 18:15:57.777577 2022-07-12 18:15:57.802069 +48 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 36 2022-07-12 18:15:57.830775 2022-07-12 18:15:57.854622 +49 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 29 2022-07-12 18:15:57.884541 2022-07-12 18:15:57.908668 +50 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 30 2022-07-12 18:15:57.936657 2022-07-12 18:15:57.960737 +51 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 31 2022-07-12 18:15:57.987721 2022-07-12 18:15:58.011427 +52 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 25 2022-07-12 18:15:58.040509 2022-07-12 18:15:58.067203 +53 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 26 2022-07-12 18:15:58.092225 2022-07-12 18:15:58.125223 +54 Trendiges Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 27 2022-07-12 18:15:58.152142 2022-07-12 18:15:58.174287 +55 Carrusel de tendencias \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 28 2022-07-12 18:15:58.201086 2022-07-12 18:15:58.224035 +56 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 32 2022-07-12 18:15:58.253036 2022-07-12 18:15:58.276289 +57 Trendiges Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 33 2022-07-12 18:15:58.303222 2022-07-12 18:15:58.325422 +58 Carrusel de tendencias \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 34 2022-07-12 18:15:58.354015 2022-07-12 18:15:58.375659 +59 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 35 2022-07-12 18:15:58.402513 2022-07-12 18:15:58.423669 +60 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 36 2022-07-12 18:15:58.451172 2022-07-12 18:15:58.474318 +61 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 29 2022-07-12 18:15:58.510328 2022-07-12 18:15:58.533807 +62 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 30 2022-07-12 18:15:58.55789 2022-07-12 18:15:58.579742 +63 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 31 2022-07-12 18:15:58.606038 2022-07-12 18:15:58.628483 +64 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 25 2022-07-12 18:15:58.654181 2022-07-12 18:15:58.676937 +65 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 26 2022-07-12 18:15:58.703366 2022-07-12 18:15:58.725942 +66 Werbeaktionen {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Neue Kollektion","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Bis zu 30% RABATT","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 27 2022-07-12 18:15:58.750974 2022-07-12 18:15:58.773992 +67 Promociones {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nueva colección","subtitle_one":"Estilo callejero","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Hasta 30% DE DESCUENTO","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 28 2022-07-12 18:15:58.798498 2022-07-12 18:15:58.821634 +68 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 32 2022-07-12 18:15:58.845354 2022-07-12 18:15:58.866652 +69 Werbeaktionen {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Neue Kollektion","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Bis zu 30% RABATT","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 33 2022-07-12 18:15:58.890674 2022-07-12 18:15:58.914659 +70 Promociones {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nueva colección","subtitle_one":"Estilo callejero","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Hasta 30% DE DESCUENTO","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 34 2022-07-12 18:15:58.941526 2022-07-12 18:15:58.965991 +71 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 35 2022-07-12 18:15:58.991542 2022-07-12 18:15:59.015934 +72 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 36 2022-07-12 18:15:59.041036 2022-07-12 18:15:59.065511 +\. + + +-- +-- Data for Name: spree_countries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_countries (id, iso_name, iso, iso3, name, numcode, states_required, updated_at, zipcode_required, created_at) FROM stdin; +1 ANDORRA AD AND Andorra 20 f \N t \N +3 AFGHANISTAN AF AFG Afghanistan 4 f \N t \N +5 ANGUILLA AI AIA Anguilla 660 f \N t \N +6 ALBANIA AL ALB Albania 8 f \N t \N +7 ARMENIA AM ARM Armenia 51 f \N t \N +9 ARGENTINA AR ARG Argentina 32 f \N t \N +10 AMERICAN SAMOA AS ASM American Samoa 16 f \N t \N +11 AUSTRIA AT AUT Austria 40 f \N t \N +14 AZERBAIJAN AZ AZE Azerbaijan 31 f \N t \N +15 BOSNIA AND HERZEGOVINA BA BIH Bosnia and Herzegovina 70 f \N t \N +16 BARBADOS BB BRB Barbados 52 f \N t \N +17 BANGLADESH BD BGD Bangladesh 50 f \N t \N +18 BELGIUM BE BEL Belgium 56 f \N t \N +20 BULGARIA BG BGR Bulgaria 100 f \N t \N +21 BAHRAIN BH BHR Bahrain 48 f \N t \N +24 SAINT BARTHÉLEMY BL BLM Saint Barthélemy 652 f \N t \N +26 BRUNEI DARUSSALAM BN BRN Brunei Darussalam 96 f \N t \N +28 BONAIRE, SINT EUSTATIUS AND SABA BQ BES Bonaire, Sint Eustatius and Saba 535 f \N t \N +31 BHUTAN BT BTN Bhutan 64 f \N t \N +33 BELARUS BY BLR Belarus 112 f \N t \N +36 COCOS (KEELING) ISLANDS CC CCK Cocos (Keeling) Islands 166 f \N t \N +40 SWITZERLAND CH CHE Switzerland 756 f \N t \N +43 CHILE CL CHL Chile 152 f \N t \N +46 COLOMBIA CO COL Colombia 170 f \N t \N +47 COSTA RICA CR CRI Costa Rica 188 f \N t \N +48 CUBA CU CUB Cuba 192 f \N t \N +49 CABO VERDE CV CPV Cabo Verde 132 f \N t \N +50 CURAÇAO CW CUW Curaçao 531 f \N t \N +51 CHRISTMAS ISLAND CX CXR Christmas Island 162 f \N t \N +52 CYPRUS CY CYP Cyprus 196 f \N t \N +53 CZECHIA CZ CZE Czechia 203 f \N t \N +54 GERMANY DE DEU Germany 276 f \N t \N +56 DENMARK DK DNK Denmark 208 f \N t \N +58 DOMINICAN REPUBLIC DO DOM Dominican Republic 214 f \N t \N +59 ALGERIA DZ DZA Algeria 12 f \N t \N +60 ECUADOR EC ECU Ecuador 218 f \N t \N +61 ESTONIA EE EST Estonia 233 f \N t \N +62 EGYPT EG EGY Egypt 818 f \N t \N +65 ETHIOPIA ET ETH Ethiopia 231 f \N t \N +66 FINLAND FI FIN Finland 246 f \N t \N +68 FALKLAND ISLANDS (MALVINAS) FK FLK Falkland Islands (Malvinas) 238 f \N t \N +69 MICRONESIA, FEDERATED STATES OF FM FSM Micronesia, Federated States of 583 f \N t \N +70 FAROE ISLANDS FO FRO Faroe Islands 234 f \N t \N +71 FRANCE FR FRA France 250 f \N t \N +72 GABON GA GAB Gabon 266 f \N t \N +73 UNITED KINGDOM GB GBR United Kingdom 826 f \N t \N +75 GEORGIA GE GEO Georgia 268 f \N t \N +76 FRENCH GUIANA GF GUF French Guiana 254 f \N t \N +77 GUERNSEY GG GGY Guernsey 831 f \N t \N +79 GIBRALTAR GI GIB Gibraltar 292 f \N t \N +80 GREENLAND GL GRL Greenland 304 f \N t \N +83 GUADELOUPE GP GLP Guadeloupe 312 f \N t \N +85 GREECE GR GRC Greece 300 f \N t \N +86 GUATEMALA GT GTM Guatemala 320 f \N t \N +87 GUAM GU GUM Guam 316 f \N t \N +88 GUINEA-BISSAU GW GNB Guinea-Bissau 624 f \N t \N +91 HONDURAS HN HND Honduras 340 f \N t \N +92 CROATIA HR HRV Croatia 191 f \N t \N +93 HAITI HT HTI Haiti 332 f \N t \N +94 HUNGARY HU HUN Hungary 348 f \N t \N +95 INDONESIA ID IDN Indonesia 360 f \N t \N +97 ISRAEL IL ISR Israel 376 f \N t \N +98 ISLE OF MAN IM IMN Isle of Man 833 f \N t \N +100 IRAQ IQ IRQ Iraq 368 f \N t \N +101 IRAN, ISLAMIC REPUBLIC OF IR IRN Iran, Islamic Republic of 364 f \N t \N +102 ICELAND IS ISL Iceland 352 f \N t \N +104 JERSEY JE JEY Jersey 832 f \N t \N +105 JAMAICA JM JAM Jamaica 388 f \N t \N +106 JORDAN JO JOR Jordan 400 f \N t \N +107 JAPAN JP JPN Japan 392 f \N t \N +108 KENYA KE KEN Kenya 404 f \N t \N +109 KYRGYZSTAN KG KGZ Kyrgyzstan 417 f \N t \N +110 CAMBODIA KH KHM Cambodia 116 f \N t \N +115 KOREA, REPUBLIC OF KR KOR Korea, Republic of 410 f \N t \N +116 KUWAIT KW KWT Kuwait 414 f \N t \N +117 CAYMAN ISLANDS KY CYM Cayman Islands 136 f \N t \N +118 KAZAKHSTAN KZ KAZ Kazakhstan 398 f \N t \N +119 LAO PEOPLE'S DEMOCRATIC REPUBLIC LA LAO Lao People's Democratic Republic 418 f \N t \N +120 LEBANON LB LBN Lebanon 422 f \N t \N +122 LIECHTENSTEIN LI LIE Liechtenstein 438 f \N t \N +123 SRI LANKA LK LKA Sri Lanka 144 f \N t \N +124 LIBERIA LR LBR Liberia 430 f \N t \N +125 LESOTHO LS LSO Lesotho 426 f \N t \N +126 LITHUANIA LT LTU Lithuania 440 f \N t \N +127 LUXEMBOURG LU LUX Luxembourg 442 f \N t \N +128 LATVIA LV LVA Latvia 428 f \N t \N +130 MOROCCO MA MAR Morocco 504 f \N t \N +131 MONACO MC MCO Monaco 492 f \N t \N +132 MOLDOVA, REPUBLIC OF MD MDA Moldova, Republic of 498 f \N t \N +133 MONTENEGRO ME MNE Montenegro 499 f \N t \N +134 SAINT MARTIN (FRENCH PART) MF MAF Saint Martin (French part) 663 f \N t \N +135 MADAGASCAR MG MDG Madagascar 450 f \N t \N +136 MARSHALL ISLANDS MH MHL Marshall Islands 584 f \N t \N +137 NORTH MACEDONIA MK MKD North Macedonia 807 f \N t \N +139 MYANMAR MM MMR Myanmar 104 f \N t \N +140 MONGOLIA MN MNG Mongolia 496 f \N t \N +142 NORTHERN MARIANA ISLANDS MP MNP Northern Mariana Islands 580 f \N t \N +143 MARTINIQUE MQ MTQ Martinique 474 f \N t \N +145 MONTSERRAT MS MSR Montserrat 500 f \N t \N +146 MALTA MT MLT Malta 470 f \N t \N +147 MAURITIUS MU MUS Mauritius 480 f \N t \N +148 MALDIVES MV MDV Maldives 462 f \N t \N +152 MOZAMBIQUE MZ MOZ Mozambique 508 f \N t \N +153 NAMIBIA NA NAM Namibia 516 f \N t \N +154 NEW CALEDONIA NC NCL New Caledonia 540 f \N t \N +155 NIGER NE NER Niger 562 f \N t \N +156 NORFOLK ISLAND NF NFK Norfolk Island 574 f \N t \N +157 NIGERIA NG NGA Nigeria 566 f \N t \N +158 NICARAGUA NI NIC Nicaragua 558 f \N t \N +159 NETHERLANDS NL NLD Netherlands 528 f \N t \N +160 NORWAY NO NOR Norway 578 f \N t \N +161 NEPAL NP NPL Nepal 524 f \N t \N +165 OMAN OM OMN Oman 512 f \N t \N +167 PERU PE PER Peru 604 f \N t \N +168 FRENCH POLYNESIA PF PYF French Polynesia 258 f \N t \N +169 PAPUA NEW GUINEA PG PNG Papua New Guinea 598 f \N t \N +170 PHILIPPINES PH PHL Philippines 608 f \N t \N +171 PAKISTAN PK PAK Pakistan 586 f \N t \N +172 POLAND PL POL Poland 616 f \N t \N +173 SAINT PIERRE AND MIQUELON PM SPM Saint Pierre and Miquelon 666 f \N t \N +174 PITCAIRN PN PCN Pitcairn 612 f \N t \N +175 PUERTO RICO PR PRI Puerto Rico 630 f \N t \N +176 PALESTINE, STATE OF PS PSE Palestine, State of 275 f \N t \N +178 PALAU PW PLW Palau 585 f \N t \N +179 PARAGUAY PY PRY Paraguay 600 f \N t \N +181 RÉUNION RE REU Réunion 638 f \N t \N +183 SERBIA RS SRB Serbia 688 f \N t \N +184 RUSSIA RU RUS Russia 643 f \N t \N +186 SAUDI ARABIA SA SAU Saudi Arabia 682 f \N t \N +189 SUDAN SD SDN Sudan 729 f \N t \N +190 SWEDEN SE SWE Sweden 752 f \N t \N +191 SINGAPORE SG SGP Singapore 702 f \N t \N +111 KIRIBATI KI KIR Kiribati 296 f \N f \N +192 SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA SH SHN Saint Helena, Ascension and Tristan da Cunha 654 f \N t \N +193 SLOVENIA SI SVN Slovenia 705 f \N t \N +194 SVALBARD AND JAN MAYEN SJ SJM Svalbard and Jan Mayen 744 f \N t \N +195 SLOVAKIA SK SVK Slovakia 703 f \N t \N +197 SAN MARINO SM SMR San Marino 674 f \N t \N +198 SENEGAL SN SEN Senegal 686 f \N t \N +201 SOUTH SUDAN SS SSD South Sudan 728 f \N t \N +203 EL SALVADOR SV SLV El Salvador 222 f \N t \N +204 SINT MAARTEN (DUTCH PART) SX SXM Sint Maarten (Dutch part) 534 f \N t \N +206 ESWATINI SZ SWZ Eswatini 748 f \N t \N +207 TURKS AND CAICOS ISLANDS TC TCA Turks and Caicos Islands 796 f \N t \N +208 CHAD TD TCD Chad 148 f \N t \N +211 TAJIKISTAN TJ TJK Tajikistan 762 f \N t \N +214 TURKMENISTAN TM TKM Turkmenistan 795 f \N t \N +215 TUNISIA TN TUN Tunisia 788 f \N t \N +217 TURKEY TR TUR Turkey 792 f \N t \N +218 TRINIDAD AND TOBAGO TT TTO Trinidad and Tobago 780 f \N t \N +220 TAIWAN TW TWN Taiwan 158 f \N t \N +222 UKRAINE UA UKR Ukraine 804 f \N t \N +225 URUGUAY UY URY Uruguay 858 f \N t \N +226 UZBEKISTAN UZ UZB Uzbekistan 860 f \N t \N +227 HOLY SEE (VATICAN CITY STATE) VA VAT Holy See (Vatican City State) 336 f \N t \N +228 SAINT VINCENT AND THE GRENADINES VC VCT Saint Vincent and the Grenadines 670 f \N t \N +229 VENEZUELA, BOLIVARIAN REPUBLIC OF VE VEN Venezuela, Bolivarian Republic of 862 f \N t \N +230 VIRGIN ISLANDS, BRITISH VG VGB Virgin Islands, British 92 f \N t \N +231 VIRGIN ISLANDS, U.S. VI VIR Virgin Islands, U.S. 850 f \N t \N +232 VIETNAM VN VNM Vietnam 704 f \N t \N +234 WALLIS AND FUTUNA WF WLF Wallis and Futuna 876 f \N t \N +235 SAMOA WS WSM Samoa 882 f \N t \N +237 MAYOTTE YT MYT Mayotte 175 f \N t \N +239 ZAMBIA ZM ZMB Zambia 894 f \N t \N +4 ANTIGUA AND BARBUDA AG ATG Antigua and Barbuda 28 f \N f \N +8 ANGOLA AO AGO Angola 24 f \N f \N +13 ARUBA AW ABW Aruba 533 f \N f \N +19 BURKINA FASO BF BFA Burkina Faso 854 f \N f \N +22 BURUNDI BI BDI Burundi 108 f \N f \N +23 BENIN BJ BEN Benin 204 f \N f \N +25 BERMUDA BM BMU Bermuda 60 f \N f \N +27 BOLIVIA, PLURINATIONAL STATE OF BO BOL Bolivia, Plurinational State of 68 f \N f \N +30 BAHAMAS BS BHS Bahamas 44 f \N f \N +32 BOTSWANA BW BWA Botswana 72 f \N f \N +34 BELIZE BZ BLZ Belize 84 f \N f \N +37 CONGO, THE DEMOCRATIC REPUBLIC OF THE CD COD Congo, The Democratic Republic of the 180 f \N f \N +38 CENTRAL AFRICAN REPUBLIC CF CAF Central African Republic 140 f \N f \N +39 CONGO CG COG Congo 178 f \N f \N +41 CÔTE D'IVOIRE CI CIV Côte d'Ivoire 384 f \N f \N +42 COOK ISLANDS CK COK Cook Islands 184 f \N f \N +44 CAMEROON CM CMR Cameroon 120 f \N f \N +55 DJIBOUTI DJ DJI Djibouti 262 f \N f \N +57 DOMINICA DM DMA Dominica 212 f \N f \N +63 ERITREA ER ERI Eritrea 232 f \N f \N +67 FIJI FJ FJI Fiji 242 f \N f \N +74 GRENADA GD GRD Grenada 308 f \N f \N +78 GHANA GH GHA Ghana 288 f \N f \N +81 GAMBIA GM GMB Gambia 270 f \N f \N +82 GUINEA GN GIN Guinea 324 f \N f \N +84 EQUATORIAL GUINEA GQ GNQ Equatorial Guinea 226 f \N f \N +89 GUYANA GY GUY Guyana 328 f \N f \N +112 COMOROS KM COM Comoros 174 f \N f \N +113 SAINT KITTS AND NEVIS KN KNA Saint Kitts and Nevis 659 f \N f \N +114 KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF KP PRK Korea, Democratic People's Republic of 408 f \N f \N +121 SAINT LUCIA LC LCA Saint Lucia 662 f \N f \N +129 LIBYA LY LBY Libya 434 f \N f \N +138 MALI ML MLI Mali 466 f \N f \N +141 MACAO MO MAC Macao 446 f \N f \N +144 MAURITANIA MR MRT Mauritania 478 f \N f \N +149 MALAWI MW MWI Malawi 454 f \N f \N +162 NAURU NR NRU Nauru 520 f \N f \N +163 NIUE NU NIU Niue 570 f \N f \N +166 PANAMA PA PAN Panama 591 f \N f \N +180 QATAR QA QAT Qatar 634 f \N f \N +185 RWANDA RW RWA Rwanda 646 f \N f \N +187 SOLOMON ISLANDS SB SLB Solomon Islands 90 f \N f \N +188 SEYCHELLES SC SYC Seychelles 690 f \N f \N +196 SIERRA LEONE SL SLE Sierra Leone 694 f \N f \N +199 SOMALIA SO SOM Somalia 706 f \N f \N +200 SURINAME SR SUR Suriname 740 f \N f \N +202 SAO TOME AND PRINCIPE ST STP Sao Tome and Principe 678 f \N f \N +205 SYRIAN ARAB REPUBLIC SY SYR Syrian Arab Republic 760 f \N f \N +209 TOGO TG TGO Togo 768 f \N f \N +212 TOKELAU TK TKL Tokelau 772 f \N f \N +213 TIMOR-LESTE TL TLS Timor-Leste 626 f \N f \N +216 TONGA TO TON Tonga 776 f \N f \N +219 TUVALU TV TUV Tuvalu 798 f \N f \N +221 TANZANIA, UNITED REPUBLIC OF TZ TZA Tanzania, United Republic of 834 f \N f \N +223 UGANDA UG UGA Uganda 800 f \N f \N +233 VANUATU VU VUT Vanuatu 548 f \N f \N +236 YEMEN YE YEM Yemen 887 f \N f \N +240 ZIMBABWE ZW ZWE Zimbabwe 716 f \N f \N +12 AUSTRALIA AU AUS Australia 36 t \N t \N +29 BRAZIL BR BRA Brazil 76 t \N t \N +35 CANADA CA CAN Canada 124 t \N t \N +45 CHINA CN CHN China 156 t \N t \N +64 SPAIN ES ESP Spain 724 t \N t \N +99 INDIA IN IND India 356 t \N t \N +103 ITALY IT ITA Italy 380 t \N t \N +150 MEXICO MX MEX Mexico 484 t \N t \N +151 MALAYSIA MY MYS Malaysia 458 t \N t \N +164 NEW ZEALAND NZ NZL New Zealand 554 t \N t \N +177 PORTUGAL PT PRT Portugal 620 t \N t \N +182 ROMANIA RO ROU Romania 642 t \N t \N +210 THAILAND TH THA Thailand 764 t \N t \N +224 UNITED STATES US USA United States 840 t \N t \N +238 SOUTH AFRICA ZA ZAF South Africa 710 t \N t \N +2 UNITED ARAB EMIRATES AE ARE United Arab Emirates 784 t \N f \N +90 HONG KONG HK HKG Hong Kong 344 t \N f \N +96 IRELAND IE IRL Ireland 372 t \N f \N +\. + + +-- +-- Data for Name: spree_credit_cards; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_credit_cards (id, month, year, cc_type, last_digits, address_id, gateway_customer_profile_id, gateway_payment_profile_id, created_at, updated_at, name, user_id, payment_method_id, "default", deleted_at, public_metadata, private_metadata) FROM stdin; +1 12 2024 visa 1111 \N BGS-1234 \N 2022-07-12 18:15:53.472361 2022-07-12 18:15:53.472361 Sean Schofield \N \N f \N \N \N +2 1 2027 \N 1111 \N BGS-522411 \N 2024-02-09 22:50:56.656597 2024-02-09 22:50:56.724497 Jade Angelou \N 1 f \N \N \N +3 1 2027 \N 1111 \N BGS-111213 \N 2024-02-09 22:50:57.131256 2024-02-09 22:50:57.142578 Jade Angelou \N 1 f \N \N \N +4 1 2027 \N 1111 \N BGS-221414 \N 2024-02-09 22:51:55.478097 2024-02-09 22:51:55.521027 Jade Angelou \N 1 f \N \N \N +5 1 2027 \N 1111 \N BGS-305103 \N 2024-02-09 22:52:53.858531 2024-02-09 22:52:53.869224 Jade Angelou \N 1 f \N \N \N +6 1 2027 \N 1111 \N BGS-040022 \N 2024-02-09 22:53:52.341817 2024-02-09 22:53:52.353388 Jade Angelou \N 1 f \N \N \N +7 1 2027 \N 1111 \N BGS-142553 \N 2024-02-09 22:54:50.818123 2024-02-09 22:54:50.830326 Jade Angelou \N 1 f \N \N \N +8 1 2027 \N 1111 \N BGS-300102 \N 2024-02-09 22:55:49.304371 2024-02-09 22:55:49.314889 Jade Angelou \N 1 f \N \N \N +9 1 2027 \N 1111 \N BGS-013135 \N 2024-02-09 22:56:48.811883 2024-02-09 22:56:48.822118 Jade Angelou \N 1 f \N \N \N +10 1 2027 \N 1111 \N BGS-510020 \N 2024-02-10 01:00:19.281682 2024-02-10 01:00:19.295364 Jade Angelou \N 1 f \N \N \N +11 1 2027 \N 1111 \N BGS-033223 \N 2024-02-10 04:22:37.752898 2024-02-10 04:22:37.766759 Jade Angelou \N 1 f \N \N \N +12 1 2027 \N 1111 \N BGS-000145 \N 2024-02-10 08:12:45.363623 2024-02-10 08:12:45.374484 Jade Angelou \N 1 f \N \N \N +13 1 2027 \N 1111 \N BGS-034313 \N 2024-02-10 12:30:56.124794 2024-02-10 12:30:56.138856 Jade Angelou \N 1 f \N \N \N +14 1 2027 \N 1111 \N BGS-524511 \N 2024-02-10 13:50:10.155908 2024-02-10 13:50:10.4136 Jade Angelou \N 1 f \N \N \N +15 1 2027 \N 1111 \N BGS-414411 \N 2024-02-10 14:41:07.593603 2024-02-10 14:41:07.605136 Jade Angelou \N 1 f \N \N \N +16 1 2027 \N 1111 \N BGS-415341 \N 2024-02-10 16:04:57.472701 2024-02-10 16:04:57.487139 Jade Angelou \N 1 f \N \N \N +17 1 2027 \N 1111 \N BGS-512102 \N 2024-02-10 17:57:42.329787 2024-02-10 17:57:42.342975 Jade Angelou \N 1 f \N \N \N +18 1 2027 \N 1111 \N BGS-003533 \N 2024-02-10 22:29:03.233288 2024-02-10 22:29:03.243993 Jade Angelou \N 1 f \N \N \N +19 1 2027 \N 1111 \N BGS-513142 \N 2024-02-11 02:45:20.25559 2024-02-11 02:45:20.274492 Jade Angelou \N 1 f \N \N \N +20 1 2027 \N 1111 \N BGS-310515 \N 2024-02-11 05:59:47.554541 2024-02-11 05:59:47.570123 Jade Angelou \N 1 f \N \N \N +21 1 2027 \N 1111 \N BGS-024521 \N 2024-02-11 09:54:29.497749 2024-02-11 09:54:29.50873 Jade Angelou \N 1 f \N \N \N +22 1 2027 \N 1111 \N BGS-501530 \N 2024-02-11 13:55:09.327345 2024-02-11 13:55:09.340652 Jade Angelou \N 1 f \N \N \N +23 1 2027 \N 1111 \N BGS-305221 \N 2024-02-11 15:05:54.062941 2024-02-11 15:05:54.076455 Jade Angelou \N 1 f \N \N \N +24 1 2027 \N 1111 \N BGS-525521 \N 2024-02-11 20:00:38.693465 2024-02-11 20:00:38.707502 Jade Angelou \N 1 f \N \N \N +25 1 2027 \N 1111 \N BGS-514035 \N 2024-02-11 21:01:41.526449 2024-02-11 21:01:41.541575 Jade Angelou \N 1 f \N \N \N +26 1 2027 \N 1111 \N BGS-321320 \N 2024-02-12 00:21:37.392603 2024-02-12 00:21:37.410783 Jade Angelou \N 1 f \N \N \N +27 1 2027 \N 1111 \N BGS-315024 \N 2024-02-12 02:43:36.500989 2024-02-12 02:43:36.514013 Jade Angelou \N 1 f \N \N \N +28 1 2027 \N 1111 \N BGS-533234 \N 2024-02-12 06:12:56.771439 2024-02-12 06:12:56.78549 Jade Angelou \N 1 f \N \N \N +29 1 2027 \N 1111 \N BGS-403345 \N 2024-02-12 09:00:10.380618 2024-02-12 09:00:10.397917 Jade Angelou \N 1 f \N \N \N +30 1 2027 \N 1111 \N BGS-254311 \N 2024-02-12 10:48:35.098981 2024-02-12 10:48:35.112752 Jade Angelou \N 1 f \N \N \N +31 1 2027 \N 1111 \N BGS-254021 \N 2024-02-12 12:23:30.682278 2024-02-12 12:23:30.696915 Jade Angelou \N 1 f \N \N \N +32 1 2027 \N 1111 \N BGS-212554 \N 2024-02-12 13:10:49.767949 2024-02-12 13:10:49.778837 Jade Angelou \N 1 f \N \N \N +33 1 2027 \N 1111 \N BGS-254425 \N 2024-02-12 13:11:46.507062 2024-02-12 13:11:46.521966 Jade Angelou \N 1 f \N \N \N +34 1 2027 \N 1111 \N BGS-202005 \N 2024-02-12 13:12:43.482213 2024-02-12 13:12:43.491262 Jade Angelou \N 1 f \N \N \N +35 1 2027 \N 1111 \N BGS-255130 \N 2024-02-12 13:13:40.656764 2024-02-12 13:13:40.666158 Jade Angelou \N 1 f \N \N \N +36 1 2027 \N 1111 \N BGS-305302 \N 2024-02-12 13:14:37.702749 2024-02-12 13:14:37.712052 Jade Angelou \N 1 f \N \N \N +37 1 2027 \N 1111 \N BGS-123234 \N 2024-02-12 13:15:34.776789 2024-02-12 13:15:34.785889 Jade Angelou \N 1 f \N \N \N +38 1 2027 \N 1111 \N BGS-212521 \N 2024-02-12 13:16:31.647903 2024-02-12 13:16:31.657936 Jade Angelou \N 1 f \N \N \N +39 1 2027 \N 1111 \N BGS-231104 \N 2024-02-12 13:17:28.553983 2024-02-12 13:17:28.572809 Jade Angelou \N 1 f \N \N \N +40 1 2027 \N 1111 \N BGS-102532 \N 2024-02-12 13:18:25.480675 2024-02-12 13:18:25.493701 Jade Angelou \N 1 f \N \N \N +41 1 2027 \N 1111 \N BGS-531405 \N 2024-02-12 13:19:22.477012 2024-02-12 13:19:22.488527 Jade Angelou \N 1 f \N \N \N +42 1 2027 \N 1111 \N BGS-221415 \N 2024-02-12 13:20:19.360714 2024-02-12 13:20:19.37356 Jade Angelou \N 1 f \N \N \N +43 1 2027 \N 1111 \N BGS-233144 \N 2024-02-12 13:21:16.309371 2024-02-12 13:21:16.319458 Jade Angelou \N 1 f \N \N \N +44 1 2027 \N 1111 \N BGS-523005 \N 2024-02-12 13:22:13.16137 2024-02-12 13:22:13.171102 Jade Angelou \N 1 f \N \N \N +45 1 2027 \N 1111 \N BGS-123443 \N 2024-02-12 13:23:10.033678 2024-02-12 13:23:10.042981 Jade Angelou \N 1 f \N \N \N +46 1 2027 \N 1111 \N BGS-342331 \N 2024-02-12 13:24:06.815493 2024-02-12 13:24:06.824352 Jade Angelou \N 1 f \N \N \N +47 1 2027 \N 1111 \N BGS-342055 \N 2024-02-12 13:25:03.666625 2024-02-12 13:25:03.677355 Jade Angelou \N 1 f \N \N \N +48 1 2027 \N 1111 \N BGS-215200 \N 2024-02-12 13:26:00.569329 2024-02-12 13:26:00.579704 Jade Angelou \N 1 f \N \N \N +49 1 2027 \N 1111 \N BGS-212204 \N 2024-02-12 13:26:57.379534 2024-02-12 13:26:57.389278 Jade Angelou \N 1 f \N \N \N +50 1 2027 \N 1111 \N BGS-213151 \N 2024-02-12 13:27:54.119227 2024-02-12 13:27:54.128162 Jade Angelou \N 1 f \N \N \N +51 1 2027 \N 1111 \N BGS-214152 \N 2024-02-12 13:28:50.948763 2024-02-12 13:28:50.957366 Jade Angelou \N 1 f \N \N \N +52 1 2027 \N 1111 \N BGS-510201 \N 2024-02-12 13:29:47.702219 2024-02-12 13:29:47.713259 Jade Angelou \N 1 f \N \N \N +53 1 2027 \N 1111 \N BGS-022104 \N 2024-02-12 13:30:44.546262 2024-02-12 13:30:44.556028 Jade Angelou \N 1 f \N \N \N +54 1 2027 \N 1111 \N BGS-310254 \N 2024-02-12 13:31:41.45257 2024-02-12 13:31:41.46279 Jade Angelou \N 1 f \N \N \N +55 1 2027 \N 1111 \N BGS-502445 \N 2024-02-12 13:32:38.62421 2024-02-12 13:32:38.63444 Jade Angelou \N 1 f \N \N \N +56 1 2027 \N 1111 \N BGS-410433 \N 2024-02-12 13:33:35.49932 2024-02-12 13:33:35.509234 Jade Angelou \N 1 f \N \N \N +57 1 2027 \N 1111 \N BGS-211025 \N 2024-02-12 13:34:32.236487 2024-02-12 13:34:32.245991 Jade Angelou \N 1 f \N \N \N +58 1 2027 \N 1111 \N BGS-441055 \N 2024-02-12 13:35:29.186199 2024-02-12 13:35:29.195409 Jade Angelou \N 1 f \N \N \N +59 1 2027 \N 1111 \N BGS-113451 \N 2024-02-12 13:36:25.950309 2024-02-12 13:36:25.959045 Jade Angelou \N 1 f \N \N \N +60 1 2027 \N 1111 \N BGS-510354 \N 2024-02-12 13:37:23.018135 2024-02-12 13:37:23.028183 Jade Angelou \N 1 f \N \N \N +61 1 2027 \N 1111 \N BGS-103044 \N 2024-02-12 13:38:20.095777 2024-02-12 13:38:20.107157 Jade Angelou \N 1 f \N \N \N +62 1 2027 \N 1111 \N BGS-341223 \N 2024-02-12 13:39:16.851405 2024-02-12 13:39:16.861675 Jade Angelou \N 1 f \N \N \N +63 1 2027 \N 1111 \N BGS-532554 \N 2024-02-12 13:40:13.609097 2024-02-12 13:40:13.61826 Jade Angelou \N 1 f \N \N \N +64 1 2027 \N 1111 \N BGS-455204 \N 2024-02-12 13:41:10.385654 2024-02-12 13:41:10.395618 Jade Angelou \N 1 f \N \N \N +65 1 2027 \N 1111 \N BGS-250400 \N 2024-02-12 13:42:07.227852 2024-02-12 13:42:07.237534 Jade Angelou \N 1 f \N \N \N +66 1 2027 \N 1111 \N BGS-211530 \N 2024-02-12 13:43:04.015736 2024-02-12 13:43:04.031446 Jade Angelou \N 1 f \N \N \N +67 1 2027 \N 1111 \N BGS-244410 \N 2024-02-12 13:44:00.861601 2024-02-12 13:44:00.872489 Jade Angelou \N 1 f \N \N \N +68 1 2027 \N 1111 \N BGS-413103 \N 2024-02-12 13:44:57.606497 2024-02-12 13:44:57.615321 Jade Angelou \N 1 f \N \N \N +69 1 2027 \N 1111 \N BGS-254315 \N 2024-02-12 13:45:54.493798 2024-02-12 13:45:54.503046 Jade Angelou \N 1 f \N \N \N +71 1 2027 \N 1111 \N BGS-544022 \N 2024-02-12 13:47:48.696181 2024-02-12 13:47:48.705125 Jade Angelou \N 1 f \N \N \N +73 1 2027 \N 1111 \N BGS-105213 \N 2024-02-12 13:49:42.452614 2024-02-12 13:49:42.460638 Jade Angelou \N 1 f \N \N \N +74 1 2027 \N 1111 \N BGS-422535 \N 2024-02-12 13:50:39.409954 2024-02-12 13:50:39.419457 Jade Angelou \N 1 f \N \N \N +76 1 2027 \N 1111 \N BGS-152003 \N 2024-02-12 13:52:33.376529 2024-02-12 13:52:33.388889 Jade Angelou \N 1 f \N \N \N +78 1 2027 \N 1111 \N BGS-200112 \N 2024-02-12 13:54:27.065554 2024-02-12 13:54:27.075768 Jade Angelou \N 1 f \N \N \N +79 1 2027 \N 1111 \N BGS-541541 \N 2024-02-12 13:55:23.968793 2024-02-12 13:55:23.978349 Jade Angelou \N 1 f \N \N \N +70 1 2027 \N 1111 \N BGS-024500 \N 2024-02-12 13:46:51.703825 2024-02-12 13:46:51.713182 Jade Angelou \N 1 f \N \N \N +72 1 2027 \N 1111 \N BGS-312154 \N 2024-02-12 13:48:45.503368 2024-02-12 13:48:45.513189 Jade Angelou \N 1 f \N \N \N +75 1 2027 \N 1111 \N BGS-345421 \N 2024-02-12 13:51:36.349506 2024-02-12 13:51:36.372898 Jade Angelou \N 1 f \N \N \N +77 1 2027 \N 1111 \N BGS-133301 \N 2024-02-12 13:53:30.273084 2024-02-12 13:53:30.281759 Jade Angelou \N 1 f \N \N \N +80 1 2027 \N 1111 \N BGS-453154 \N 2024-02-12 13:56:20.922867 2024-02-12 13:56:20.934012 Jade Angelou \N 1 f \N \N \N +81 1 2027 \N 1111 \N BGS-532525 \N 2024-02-12 13:57:17.819281 2024-02-12 13:57:17.83223 Jade Angelou \N 1 f \N \N \N +82 1 2027 \N 1111 \N BGS-250142 \N 2024-02-12 13:58:14.634394 2024-02-12 13:58:14.644111 Jade Angelou \N 1 f \N \N \N +83 1 2027 \N 1111 \N BGS-455542 \N 2024-02-12 13:59:11.582755 2024-02-12 13:59:11.592219 Jade Angelou \N 1 f \N \N \N +84 1 2027 \N 1111 \N BGS-513100 \N 2024-02-12 14:00:08.360531 2024-02-12 14:00:08.370778 Jade Angelou \N 1 f \N \N \N +85 1 2027 \N 1111 \N BGS-231152 \N 2024-02-12 14:01:05.141299 2024-02-12 14:01:05.150796 Jade Angelou \N 1 f \N \N \N +86 1 2027 \N 1111 \N BGS-315145 \N 2024-02-12 14:02:02.158055 2024-02-12 14:02:02.167101 Jade Angelou \N 1 f \N \N \N +87 1 2027 \N 1111 \N BGS-455302 \N 2024-02-12 14:02:58.90712 2024-02-12 14:02:58.916304 Jade Angelou \N 1 f \N \N \N +88 1 2027 \N 1111 \N BGS-414153 \N 2024-02-12 14:03:55.81619 2024-02-12 14:03:55.827201 Jade Angelou \N 1 f \N \N \N +89 1 2027 \N 1111 \N BGS-332011 \N 2024-02-12 14:04:52.710785 2024-02-12 14:04:52.719738 Jade Angelou \N 1 f \N \N \N +90 1 2027 \N 1111 \N BGS-522541 \N 2024-02-12 14:05:49.556774 2024-02-12 14:05:49.566328 Jade Angelou \N 1 f \N \N \N +91 1 2027 \N 1111 \N BGS-401114 \N 2024-02-12 14:06:46.498552 2024-02-12 14:06:46.509206 Jade Angelou \N 1 f \N \N \N +92 1 2027 \N 1111 \N BGS-124110 \N 2024-02-12 14:07:43.342468 2024-02-12 14:07:43.352047 Jade Angelou \N 1 f \N \N \N +93 1 2027 \N 1111 \N BGS-231250 \N 2024-02-12 14:08:40.226047 2024-02-12 14:08:40.23623 Jade Angelou \N 1 f \N \N \N +94 1 2027 \N 1111 \N BGS-514413 \N 2024-02-12 14:09:37.130001 2024-02-12 14:09:37.138984 Jade Angelou \N 1 f \N \N \N +95 1 2027 \N 1111 \N BGS-224530 \N 2024-02-12 14:10:33.978137 2024-02-12 14:10:33.988939 Jade Angelou \N 1 f \N \N \N +96 1 2027 \N 1111 \N BGS-103000 \N 2024-02-12 14:11:30.896232 2024-02-12 14:11:30.905726 Jade Angelou \N 1 f \N \N \N +97 1 2027 \N 1111 \N BGS-205022 \N 2024-02-12 14:12:27.753592 2024-02-12 14:12:27.768287 Jade Angelou \N 1 f \N \N \N +98 1 2027 \N 1111 \N BGS-444511 \N 2024-02-12 14:13:24.773062 2024-02-12 14:13:24.783289 Jade Angelou \N 1 f \N \N \N +99 1 2027 \N 1111 \N BGS-555235 \N 2024-02-12 14:14:21.666693 2024-02-12 14:14:21.675978 Jade Angelou \N 1 f \N \N \N +100 1 2027 \N 1111 \N BGS-155325 \N 2024-02-12 14:15:18.526145 2024-02-12 14:15:18.534983 Jade Angelou \N 1 f \N \N \N +101 1 2027 \N 1111 \N BGS-154323 \N 2024-02-12 14:16:15.364276 2024-02-12 14:16:15.373756 Jade Angelou \N 1 f \N \N \N +102 1 2027 \N 1111 \N BGS-351144 \N 2024-02-12 14:17:12.39696 2024-02-12 14:17:12.405518 Jade Angelou \N 1 f \N \N \N +103 1 2027 \N 1111 \N BGS-443354 \N 2024-02-12 14:18:09.380145 2024-02-12 14:18:09.389763 Jade Angelou \N 1 f \N \N \N +104 1 2027 \N 1111 \N BGS-221501 \N 2024-02-12 14:19:06.116111 2024-02-12 14:19:06.125149 Jade Angelou \N 1 f \N \N \N +105 1 2027 \N 1111 \N BGS-135532 \N 2024-02-12 14:20:02.983005 2024-02-12 14:20:02.991874 Jade Angelou \N 1 f \N \N \N +106 1 2027 \N 1111 \N BGS-531504 \N 2024-02-12 14:21:00.316774 2024-02-12 14:21:00.327088 Jade Angelou \N 1 f \N \N \N +107 1 2027 \N 1111 \N BGS-005113 \N 2024-02-12 14:21:57.044581 2024-02-12 14:21:57.054054 Jade Angelou \N 1 f \N \N \N +108 1 2027 \N 1111 \N BGS-232242 \N 2024-02-12 14:22:53.995557 2024-02-12 14:22:54.004448 Jade Angelou \N 1 f \N \N \N +109 1 2027 \N 1111 \N BGS-053015 \N 2024-02-12 14:23:50.762885 2024-02-12 14:23:50.773409 Jade Angelou \N 1 f \N \N \N +110 1 2027 \N 1111 \N BGS-450411 \N 2024-02-12 14:24:47.610878 2024-02-12 14:24:47.621029 Jade Angelou \N 1 f \N \N \N +111 1 2027 \N 1111 \N BGS-342413 \N 2024-02-12 14:25:44.45455 2024-02-12 14:25:44.46628 Jade Angelou \N 1 f \N \N \N +112 1 2027 \N 1111 \N BGS-123241 \N 2024-02-12 14:26:41.246604 2024-02-12 14:26:41.256782 Jade Angelou \N 1 f \N \N \N +113 1 2027 \N 1111 \N BGS-241335 \N 2024-02-12 14:27:38.167734 2024-02-12 14:27:38.177619 Jade Angelou \N 1 f \N \N \N +114 1 2027 \N 1111 \N BGS-442433 \N 2024-02-12 14:28:35.002532 2024-02-12 14:28:35.012911 Jade Angelou \N 1 f \N \N \N +115 1 2027 \N 1111 \N BGS-440024 \N 2024-02-12 14:29:31.932468 2024-02-12 14:29:31.940331 Jade Angelou \N 1 f \N \N \N +116 1 2027 \N 1111 \N BGS-035032 \N 2024-02-12 14:30:28.860771 2024-02-12 14:30:28.869003 Jade Angelou \N 1 f \N \N \N +117 1 2027 \N 1111 \N BGS-221125 \N 2024-02-12 14:31:25.65817 2024-02-12 14:31:25.666088 Jade Angelou \N 1 f \N \N \N +118 1 2027 \N 1111 \N BGS-214552 \N 2024-02-12 14:32:22.47279 2024-02-12 14:32:22.481999 Jade Angelou \N 1 f \N \N \N +119 1 2027 \N 1111 \N BGS-241500 \N 2024-02-12 14:33:19.461263 2024-02-12 14:33:19.47078 Jade Angelou \N 1 f \N \N \N +120 1 2027 \N 1111 \N BGS-211322 \N 2024-02-12 14:34:16.423684 2024-02-12 14:34:16.434261 Jade Angelou \N 1 f \N \N \N +121 1 2027 \N 1111 \N BGS-020125 \N 2024-02-12 14:35:13.317456 2024-02-12 14:35:13.327355 Jade Angelou \N 1 f \N \N \N +122 1 2027 \N 1111 \N BGS-530014 \N 2024-02-12 14:36:10.302615 2024-02-12 14:36:10.312631 Jade Angelou \N 1 f \N \N \N +123 1 2027 \N 1111 \N BGS-323244 \N 2024-02-12 14:37:07.217506 2024-02-12 14:37:07.227073 Jade Angelou \N 1 f \N \N \N +124 1 2027 \N 1111 \N BGS-311010 \N 2024-02-12 14:38:04.22845 2024-02-12 14:38:04.23803 Jade Angelou \N 1 f \N \N \N +125 1 2027 \N 1111 \N BGS-403041 \N 2024-02-12 14:39:01.151875 2024-02-12 14:39:01.161814 Jade Angelou \N 1 f \N \N \N +126 1 2027 \N 1111 \N BGS-401312 \N 2024-02-12 14:39:58.242211 2024-02-12 14:39:58.251185 Jade Angelou \N 1 f \N \N \N +127 1 2027 \N 1111 \N BGS-422404 \N 2024-02-12 14:40:55.048359 2024-02-12 14:40:55.058211 Jade Angelou \N 1 f \N \N \N +128 1 2027 \N 1111 \N BGS-343412 \N 2024-02-12 14:41:51.896168 2024-02-12 14:41:51.906035 Jade Angelou \N 1 f \N \N \N +129 1 2027 \N 1111 \N BGS-413554 \N 2024-02-12 14:42:49.183478 2024-02-12 14:42:49.192195 Jade Angelou \N 1 f \N \N \N +130 1 2027 \N 1111 \N BGS-123312 \N 2024-02-12 14:43:46.050312 2024-02-12 14:43:46.059869 Jade Angelou \N 1 f \N \N \N +131 1 2027 \N 1111 \N BGS-000101 \N 2024-02-12 14:44:42.82725 2024-02-12 14:44:42.836802 Jade Angelou \N 1 f \N \N \N +132 1 2027 \N 1111 \N BGS-301003 \N 2024-02-12 14:45:39.848346 2024-02-12 14:45:39.857212 Jade Angelou \N 1 f \N \N \N +133 1 2027 \N 1111 \N BGS-443042 \N 2024-02-12 14:46:36.684025 2024-02-12 14:46:36.694164 Jade Angelou \N 1 f \N \N \N +134 1 2027 \N 1111 \N BGS-202055 \N 2024-02-12 14:47:33.459303 2024-02-12 14:47:33.477727 Jade Angelou \N 1 f \N \N \N +135 1 2027 \N 1111 \N BGS-542030 \N 2024-02-12 14:48:30.224551 2024-02-12 14:48:30.236532 Jade Angelou \N 1 f \N \N \N +136 1 2027 \N 1111 \N BGS-014344 \N 2024-02-12 14:49:27.103382 2024-02-12 14:49:27.115049 Jade Angelou \N 1 f \N \N \N +137 1 2027 \N 1111 \N BGS-144041 \N 2024-02-12 14:50:24.099328 2024-02-12 14:50:24.111192 Jade Angelou \N 1 f \N \N \N +138 1 2027 \N 1111 \N BGS-451134 \N 2024-02-12 14:51:21.193911 2024-02-12 14:51:21.203744 Jade Angelou \N 1 f \N \N \N +139 1 2027 \N 1111 \N BGS-040552 \N 2024-02-12 14:52:17.996526 2024-02-12 14:52:18.007315 Jade Angelou \N 1 f \N \N \N +140 1 2027 \N 1111 \N BGS-502145 \N 2024-02-12 14:53:14.832055 2024-02-12 14:53:14.842751 Jade Angelou \N 1 f \N \N \N +141 1 2027 \N 1111 \N BGS-225443 \N 2024-02-12 14:54:11.70563 2024-02-12 14:54:11.715355 Jade Angelou \N 1 f \N \N \N +142 1 2027 \N 1111 \N BGS-045023 \N 2024-02-12 14:55:08.595262 2024-02-12 14:55:08.604793 Jade Angelou \N 1 f \N \N \N +143 1 2027 \N 1111 \N BGS-420132 \N 2024-02-12 14:56:05.486419 2024-02-12 14:56:05.497144 Jade Angelou \N 1 f \N \N \N +144 1 2027 \N 1111 \N BGS-241131 \N 2024-02-12 14:57:02.425032 2024-02-12 14:57:02.434632 Jade Angelou \N 1 f \N \N \N +145 1 2027 \N 1111 \N BGS-121051 \N 2024-02-12 14:57:59.136665 2024-02-12 14:57:59.146561 Jade Angelou \N 1 f \N \N \N +146 1 2027 \N 1111 \N BGS-044052 \N 2024-02-12 14:58:56.009034 2024-02-12 14:58:56.017892 Jade Angelou \N 1 f \N \N \N +147 1 2027 \N 1111 \N BGS-534504 \N 2024-02-12 14:59:52.878454 2024-02-12 14:59:52.888051 Jade Angelou \N 1 f \N \N \N +148 1 2027 \N 1111 \N BGS-253015 \N 2024-02-12 15:00:49.818914 2024-02-12 15:00:49.827369 Jade Angelou \N 1 f \N \N \N +149 1 2027 \N 1111 \N BGS-230150 \N 2024-02-12 15:01:46.832486 2024-02-12 15:01:46.843456 Jade Angelou \N 1 f \N \N \N +150 1 2027 \N 1111 \N BGS-502353 \N 2024-02-12 15:02:43.811682 2024-02-12 15:02:43.821392 Jade Angelou \N 1 f \N \N \N +151 1 2027 \N 1111 \N BGS-135441 \N 2024-02-12 15:03:40.659094 2024-02-12 15:03:40.668048 Jade Angelou \N 1 f \N \N \N +152 1 2027 \N 1111 \N BGS-555124 \N 2024-02-12 15:04:37.489503 2024-02-12 15:04:37.502004 Jade Angelou \N 1 f \N \N \N +153 1 2027 \N 1111 \N BGS-440515 \N 2024-02-12 15:05:34.56442 2024-02-12 15:05:34.573052 Jade Angelou \N 1 f \N \N \N +154 1 2027 \N 1111 \N BGS-432142 \N 2024-02-12 15:06:31.308496 2024-02-12 15:06:31.318141 Jade Angelou \N 1 f \N \N \N +155 1 2027 \N 1111 \N BGS-011420 \N 2024-02-12 15:07:28.309727 2024-02-12 15:07:28.321938 Jade Angelou \N 1 f \N \N \N +156 1 2027 \N 1111 \N BGS-215143 \N 2024-02-12 15:08:25.429111 2024-02-12 15:08:25.438768 Jade Angelou \N 1 f \N \N \N +157 1 2027 \N 1111 \N BGS-550540 \N 2024-02-12 15:09:22.301463 2024-02-12 15:09:22.310968 Jade Angelou \N 1 f \N \N \N +158 1 2027 \N 1111 \N BGS-035021 \N 2024-02-12 15:10:19.188719 2024-02-12 15:10:19.198961 Jade Angelou \N 1 f \N \N \N +159 1 2027 \N 1111 \N BGS-421534 \N 2024-02-12 15:11:16.022375 2024-02-12 15:11:16.034508 Jade Angelou \N 1 f \N \N \N +160 1 2027 \N 1111 \N BGS-514130 \N 2024-02-12 15:12:12.936399 2024-02-12 15:12:12.945747 Jade Angelou \N 1 f \N \N \N +161 1 2027 \N 1111 \N BGS-300442 \N 2024-02-12 15:13:09.857085 2024-02-12 15:13:09.866275 Jade Angelou \N 1 f \N \N \N +162 1 2027 \N 1111 \N BGS-144005 \N 2024-02-12 15:14:06.813534 2024-02-12 15:14:06.823606 Jade Angelou \N 1 f \N \N \N +163 1 2027 \N 1111 \N BGS-543013 \N 2024-02-12 15:15:03.575425 2024-02-12 15:15:03.586382 Jade Angelou \N 1 f \N \N \N +164 1 2027 \N 1111 \N BGS-503021 \N 2024-02-12 15:16:00.543616 2024-02-12 15:16:00.554873 Jade Angelou \N 1 f \N \N \N +165 1 2027 \N 1111 \N BGS-145302 \N 2024-02-12 15:16:57.463767 2024-02-12 15:16:57.473086 Jade Angelou \N 1 f \N \N \N +166 1 2027 \N 1111 \N BGS-350002 \N 2024-02-12 15:17:54.376757 2024-02-12 15:17:54.386044 Jade Angelou \N 1 f \N \N \N +167 1 2027 \N 1111 \N BGS-301413 \N 2024-02-12 15:18:51.208513 2024-02-12 15:18:51.219934 Jade Angelou \N 1 f \N \N \N +168 1 2027 \N 1111 \N BGS-324220 \N 2024-02-12 15:19:48.105438 2024-02-12 15:19:48.114754 Jade Angelou \N 1 f \N \N \N +169 1 2027 \N 1111 \N BGS-424524 \N 2024-02-12 15:20:45.084848 2024-02-12 15:20:45.095202 Jade Angelou \N 1 f \N \N \N +170 1 2027 \N 1111 \N BGS-221300 \N 2024-02-12 15:21:41.929873 2024-02-12 15:21:41.938961 Jade Angelou \N 1 f \N \N \N +171 1 2027 \N 1111 \N BGS-524515 \N 2024-02-12 15:22:38.83699 2024-02-12 15:22:38.845905 Jade Angelou \N 1 f \N \N \N +172 1 2027 \N 1111 \N BGS-140545 \N 2024-02-12 15:23:35.649943 2024-02-12 15:23:35.659741 Jade Angelou \N 1 f \N \N \N +173 1 2027 \N 1111 \N BGS-455235 \N 2024-02-12 15:24:32.773662 2024-02-12 15:24:32.783168 Jade Angelou \N 1 f \N \N \N +174 1 2027 \N 1111 \N BGS-051054 \N 2024-02-12 15:25:29.51214 2024-02-12 15:25:29.520935 Jade Angelou \N 1 f \N \N \N +175 1 2027 \N 1111 \N BGS-425503 \N 2024-02-12 15:26:26.370249 2024-02-12 15:26:26.379239 Jade Angelou \N 1 f \N \N \N +176 1 2027 \N 1111 \N BGS-123041 \N 2024-02-12 15:27:23.293306 2024-02-12 15:27:23.303642 Jade Angelou \N 1 f \N \N \N +177 1 2027 \N 1111 \N BGS-130151 \N 2024-02-12 15:28:20.109149 2024-02-12 15:28:20.120642 Jade Angelou \N 1 f \N \N \N +178 1 2027 \N 1111 \N BGS-220532 \N 2024-02-12 15:29:16.952553 2024-02-12 15:29:16.96241 Jade Angelou \N 1 f \N \N \N +179 1 2027 \N 1111 \N BGS-330132 \N 2024-02-12 15:30:13.861093 2024-02-12 15:30:13.871201 Jade Angelou \N 1 f \N \N \N +180 1 2027 \N 1111 \N BGS-104233 \N 2024-02-12 15:31:10.66738 2024-02-12 15:31:10.677318 Jade Angelou \N 1 f \N \N \N +181 1 2027 \N 1111 \N BGS-514042 \N 2024-02-12 15:32:07.426402 2024-02-12 15:32:07.434774 Jade Angelou \N 1 f \N \N \N +182 1 2027 \N 1111 \N BGS-224404 \N 2024-02-12 15:33:04.076823 2024-02-12 15:33:04.097689 Jade Angelou \N 1 f \N \N \N +183 1 2027 \N 1111 \N BGS-023115 \N 2024-02-12 15:34:00.898871 2024-02-12 15:34:00.909778 Jade Angelou \N 1 f \N \N \N +184 1 2027 \N 1111 \N BGS-311355 \N 2024-02-12 15:34:57.750975 2024-02-12 15:34:57.762116 Jade Angelou \N 1 f \N \N \N +185 1 2027 \N 1111 \N BGS-532114 \N 2024-02-12 15:35:54.518943 2024-02-12 15:35:54.528255 Jade Angelou \N 1 f \N \N \N +186 1 2027 \N 1111 \N BGS-504244 \N 2024-02-12 15:36:51.376808 2024-02-12 15:36:51.387359 Jade Angelou \N 1 f \N \N \N +187 1 2027 \N 1111 \N BGS-132204 \N 2024-02-12 15:37:48.338437 2024-02-12 15:37:48.348244 Jade Angelou \N 1 f \N \N \N +188 1 2027 \N 1111 \N BGS-450434 \N 2024-02-12 15:38:45.137786 2024-02-12 15:38:45.14849 Jade Angelou \N 1 f \N \N \N +189 1 2027 \N 1111 \N BGS-355143 \N 2024-02-12 15:39:42.233764 2024-02-12 15:39:42.243291 Jade Angelou \N 1 f \N \N \N +190 1 2027 \N 1111 \N BGS-354014 \N 2024-02-12 15:40:39.046243 2024-02-12 15:40:39.056276 Jade Angelou \N 1 f \N \N \N +191 1 2027 \N 1111 \N BGS-022155 \N 2024-02-12 15:41:35.797635 2024-02-12 15:41:35.808771 Jade Angelou \N 1 f \N \N \N +192 1 2027 \N 1111 \N BGS-231055 \N 2024-02-12 15:42:32.725111 2024-02-12 15:42:32.734329 Jade Angelou \N 1 f \N \N \N +193 1 2027 \N 1111 \N BGS-151503 \N 2024-02-12 15:43:29.546024 2024-02-12 15:43:29.555677 Jade Angelou \N 1 f \N \N \N +194 1 2027 \N 1111 \N BGS-103220 \N 2024-02-12 15:44:26.4804 2024-02-12 15:44:26.490144 Jade Angelou \N 1 f \N \N \N +195 1 2027 \N 1111 \N BGS-342400 \N 2024-02-12 15:45:23.317928 2024-02-12 15:45:23.328444 Jade Angelou \N 1 f \N \N \N +196 1 2027 \N 1111 \N BGS-512510 \N 2024-02-12 15:46:20.077773 2024-02-12 15:46:20.087628 Jade Angelou \N 1 f \N \N \N +197 1 2027 \N 1111 \N BGS-200243 \N 2024-02-12 15:47:16.967355 2024-02-12 15:47:16.976994 Jade Angelou \N 1 f \N \N \N +198 1 2027 \N 1111 \N BGS-445245 \N 2024-02-12 15:48:13.874299 2024-02-12 15:48:13.889898 Jade Angelou \N 1 f \N \N \N +199 1 2027 \N 1111 \N BGS-040343 \N 2024-02-12 15:49:10.721412 2024-02-12 15:49:10.73096 Jade Angelou \N 1 f \N \N \N +200 1 2027 \N 1111 \N BGS-414403 \N 2024-02-12 15:50:07.55709 2024-02-12 15:50:07.567026 Jade Angelou \N 1 f \N \N \N +201 1 2027 \N 1111 \N BGS-001433 \N 2024-02-12 15:51:04.343775 2024-02-12 15:51:04.361332 Jade Angelou \N 1 f \N \N \N +202 1 2027 \N 1111 \N BGS-313440 \N 2024-02-12 15:52:01.16693 2024-02-12 15:52:01.175918 Jade Angelou \N 1 f \N \N \N +203 1 2027 \N 1111 \N BGS-524203 \N 2024-02-12 15:52:58.024371 2024-02-12 15:52:58.033247 Jade Angelou \N 1 f \N \N \N +204 1 2027 \N 1111 \N BGS-120121 \N 2024-02-12 15:53:55.153248 2024-02-12 15:53:55.163495 Jade Angelou \N 1 f \N \N \N +205 1 2027 \N 1111 \N BGS-124500 \N 2024-02-12 15:54:52.268225 2024-02-12 15:54:52.278613 Jade Angelou \N 1 f \N \N \N +206 1 2027 \N 1111 \N BGS-230404 \N 2024-02-12 15:55:49.235586 2024-02-12 15:55:49.24504 Jade Angelou \N 1 f \N \N \N +207 1 2027 \N 1111 \N BGS-320031 \N 2024-02-12 15:56:46.260695 2024-02-12 15:56:46.271396 Jade Angelou \N 1 f \N \N \N +208 1 2027 \N 1111 \N BGS-423211 \N 2024-02-12 15:57:43.182387 2024-02-12 15:57:43.193138 Jade Angelou \N 1 f \N \N \N +209 1 2027 \N 1111 \N BGS-420205 \N 2024-02-12 15:58:40.177774 2024-02-12 15:58:40.187618 Jade Angelou \N 1 f \N \N \N +210 1 2027 \N 1111 \N BGS-052212 \N 2024-02-12 15:59:37.69534 2024-02-12 15:59:37.706228 Jade Angelou \N 1 f \N \N \N +211 1 2027 \N 1111 \N BGS-122035 \N 2024-02-12 16:00:34.669979 2024-02-12 16:00:34.679508 Jade Angelou \N 1 f \N \N \N +212 1 2027 \N 1111 \N BGS-255532 \N 2024-02-12 16:01:31.754486 2024-02-12 16:01:31.76406 Jade Angelou \N 1 f \N \N \N +213 1 2027 \N 1111 \N BGS-453202 \N 2024-02-12 16:02:28.886085 2024-02-12 16:02:28.897558 Jade Angelou \N 1 f \N \N \N +214 1 2027 \N 1111 \N BGS-353250 \N 2024-02-12 16:03:25.917507 2024-02-12 16:03:25.928262 Jade Angelou \N 1 f \N \N \N +215 1 2027 \N 1111 \N BGS-551543 \N 2024-02-12 16:04:22.913522 2024-02-12 16:04:22.922447 Jade Angelou \N 1 f \N \N \N +216 1 2027 \N 1111 \N BGS-404103 \N 2024-02-12 16:05:19.849509 2024-02-12 16:05:19.858999 Jade Angelou \N 1 f \N \N \N +217 1 2027 \N 1111 \N BGS-233431 \N 2024-02-12 16:06:16.663522 2024-02-12 16:06:16.673211 Jade Angelou \N 1 f \N \N \N +218 1 2027 \N 1111 \N BGS-451021 \N 2024-02-12 16:07:13.585363 2024-02-12 16:07:13.5948 Jade Angelou \N 1 f \N \N \N +219 1 2027 \N 1111 \N BGS-121541 \N 2024-02-12 16:08:10.55873 2024-02-12 16:08:10.568274 Jade Angelou \N 1 f \N \N \N +220 1 2027 \N 1111 \N BGS-340433 \N 2024-02-12 16:09:07.547669 2024-02-12 16:09:07.557374 Jade Angelou \N 1 f \N \N \N +221 1 2027 \N 1111 \N BGS-405201 \N 2024-02-12 16:10:04.550743 2024-02-12 16:10:04.560148 Jade Angelou \N 1 f \N \N \N +222 1 2027 \N 1111 \N BGS-342521 \N 2024-02-12 16:11:01.504641 2024-02-12 16:11:01.514934 Jade Angelou \N 1 f \N \N \N +223 1 2027 \N 1111 \N BGS-201310 \N 2024-02-12 16:11:58.357461 2024-02-12 16:11:58.373559 Jade Angelou \N 1 f \N \N \N +224 1 2027 \N 1111 \N BGS-034525 \N 2024-02-12 16:12:55.281094 2024-02-12 16:12:55.290772 Jade Angelou \N 1 f \N \N \N +225 1 2027 \N 1111 \N BGS-531000 \N 2024-02-12 16:13:52.262344 2024-02-12 16:13:52.271329 Jade Angelou \N 1 f \N \N \N +226 1 2027 \N 1111 \N BGS-222203 \N 2024-02-12 16:14:49.276285 2024-02-12 16:14:49.28572 Jade Angelou \N 1 f \N \N \N +227 1 2027 \N 1111 \N BGS-340305 \N 2024-02-12 16:15:46.140323 2024-02-12 16:15:46.149695 Jade Angelou \N 1 f \N \N \N +228 1 2027 \N 1111 \N BGS-311523 \N 2024-02-12 16:16:43.224142 2024-02-12 16:16:43.235543 Jade Angelou \N 1 f \N \N \N +229 1 2027 \N 1111 \N BGS-042331 \N 2024-02-12 16:17:40.165612 2024-02-12 16:17:40.17616 Jade Angelou \N 1 f \N \N \N +230 1 2027 \N 1111 \N BGS-554121 \N 2024-02-12 16:18:37.157576 2024-02-12 16:18:37.166987 Jade Angelou \N 1 f \N \N \N +231 1 2027 \N 1111 \N BGS-544140 \N 2024-02-12 16:19:34.022944 2024-02-12 16:19:34.033681 Jade Angelou \N 1 f \N \N \N +232 1 2027 \N 1111 \N BGS-140350 \N 2024-02-12 16:20:30.894993 2024-02-12 16:20:30.904733 Jade Angelou \N 1 f \N \N \N +233 1 2027 \N 1111 \N BGS-143453 \N 2024-02-12 16:21:27.971012 2024-02-12 16:21:27.984754 Jade Angelou \N 1 f \N \N \N +234 1 2027 \N 1111 \N BGS-213221 \N 2024-02-12 16:22:24.917845 2024-02-12 16:22:24.928763 Jade Angelou \N 1 f \N \N \N +235 1 2027 \N 1111 \N BGS-535034 \N 2024-02-12 16:23:21.902755 2024-02-12 16:23:21.912216 Jade Angelou \N 1 f \N \N \N +236 1 2027 \N 1111 \N BGS-342305 \N 2024-02-12 16:24:19.122193 2024-02-12 16:24:19.133054 Jade Angelou \N 1 f \N \N \N +237 1 2027 \N 1111 \N BGS-152420 \N 2024-02-12 16:25:16.093863 2024-02-12 16:25:16.103275 Jade Angelou \N 1 f \N \N \N +238 1 2027 \N 1111 \N BGS-142530 \N 2024-02-12 16:26:13.053532 2024-02-12 16:26:13.063979 Jade Angelou \N 1 f \N \N \N +239 1 2027 \N 1111 \N BGS-025553 \N 2024-02-12 16:27:10.062758 2024-02-12 16:27:10.072554 Jade Angelou \N 1 f \N \N \N +240 1 2027 \N 1111 \N BGS-552543 \N 2024-02-12 16:28:06.983547 2024-02-12 16:28:06.99362 Jade Angelou \N 1 f \N \N \N +241 1 2027 \N 1111 \N BGS-132000 \N 2024-02-12 16:29:03.867839 2024-02-12 16:29:03.878599 Jade Angelou \N 1 f \N \N \N +242 1 2027 \N 1111 \N BGS-041455 \N 2024-02-12 16:30:00.778882 2024-02-12 16:30:00.78808 Jade Angelou \N 1 f \N \N \N +243 1 2027 \N 1111 \N BGS-234255 \N 2024-02-12 16:30:57.657083 2024-02-12 16:30:57.666531 Jade Angelou \N 1 f \N \N \N +244 1 2027 \N 1111 \N BGS-250431 \N 2024-02-12 16:31:54.594381 2024-02-12 16:31:54.60233 Jade Angelou \N 1 f \N \N \N +245 1 2027 \N 1111 \N BGS-101041 \N 2024-02-12 16:32:51.621358 2024-02-12 16:32:51.631246 Jade Angelou \N 1 f \N \N \N +246 1 2027 \N 1111 \N BGS-345140 \N 2024-02-12 16:33:48.595876 2024-02-12 16:33:48.60547 Jade Angelou \N 1 f \N \N \N +247 1 2027 \N 1111 \N BGS-343534 \N 2024-02-12 16:34:45.713383 2024-02-12 16:34:45.724285 Jade Angelou \N 1 f \N \N \N +248 1 2027 \N 1111 \N BGS-551433 \N 2024-02-12 16:35:42.715535 2024-02-12 16:35:42.726332 Jade Angelou \N 1 f \N \N \N +249 1 2027 \N 1111 \N BGS-421154 \N 2024-02-12 16:36:39.560693 2024-02-12 16:36:39.570499 Jade Angelou \N 1 f \N \N \N +250 1 2027 \N 1111 \N BGS-520452 \N 2024-02-12 16:37:36.426406 2024-02-12 16:37:36.435469 Jade Angelou \N 1 f \N \N \N +251 1 2027 \N 1111 \N BGS-020024 \N 2024-02-12 16:38:33.223105 2024-02-12 16:38:33.232642 Jade Angelou \N 1 f \N \N \N +252 1 2027 \N 1111 \N BGS-021442 \N 2024-02-12 16:39:30.110007 2024-02-12 16:39:30.11986 Jade Angelou \N 1 f \N \N \N +253 1 2027 \N 1111 \N BGS-404522 \N 2024-02-12 16:40:27.015536 2024-02-12 16:40:27.02559 Jade Angelou \N 1 f \N \N \N +254 1 2027 \N 1111 \N BGS-443431 \N 2024-02-12 16:41:23.735257 2024-02-12 16:41:23.745696 Jade Angelou \N 1 f \N \N \N +255 1 2027 \N 1111 \N BGS-511012 \N 2024-02-12 16:42:20.51747 2024-02-12 16:42:20.526791 Jade Angelou \N 1 f \N \N \N +256 1 2027 \N 1111 \N BGS-054252 \N 2024-02-12 16:43:17.414074 2024-02-12 16:43:17.424985 Jade Angelou \N 1 f \N \N \N +257 1 2027 \N 1111 \N BGS-005352 \N 2024-02-12 16:44:14.97968 2024-02-12 16:44:14.990206 Jade Angelou \N 1 f \N \N \N +258 1 2027 \N 1111 \N BGS-421300 \N 2024-02-12 16:45:12.018821 2024-02-12 16:45:12.029153 Jade Angelou \N 1 f \N \N \N +259 1 2027 \N 1111 \N BGS-143525 \N 2024-02-12 16:46:08.957481 2024-02-12 16:46:08.967074 Jade Angelou \N 1 f \N \N \N +260 1 2027 \N 1111 \N BGS-533112 \N 2024-02-12 16:47:06.034496 2024-02-12 16:47:06.044236 Jade Angelou \N 1 f \N \N \N +261 1 2027 \N 1111 \N BGS-101351 \N 2024-02-12 16:48:02.937327 2024-02-12 16:48:02.946974 Jade Angelou \N 1 f \N \N \N +262 1 2027 \N 1111 \N BGS-141442 \N 2024-02-12 16:48:59.826309 2024-02-12 16:48:59.835597 Jade Angelou \N 1 f \N \N \N +263 1 2027 \N 1111 \N BGS-225042 \N 2024-02-12 16:49:56.682615 2024-02-12 16:49:56.691592 Jade Angelou \N 1 f \N \N \N +264 1 2027 \N 1111 \N BGS-205520 \N 2024-02-12 16:50:53.905967 2024-02-12 16:50:53.917125 Jade Angelou \N 1 f \N \N \N +265 1 2027 \N 1111 \N BGS-552511 \N 2024-02-12 16:51:50.945828 2024-02-12 16:51:50.955424 Jade Angelou \N 1 f \N \N \N +266 1 2027 \N 1111 \N BGS-220031 \N 2024-02-12 16:52:47.714809 2024-02-12 16:52:47.730714 Jade Angelou \N 1 f \N \N \N +267 1 2027 \N 1111 \N BGS-125332 \N 2024-02-12 16:53:44.707689 2024-02-12 16:53:44.71797 Jade Angelou \N 1 f \N \N \N +268 1 2027 \N 1111 \N BGS-052545 \N 2024-02-12 16:54:41.714184 2024-02-12 16:54:41.723239 Jade Angelou \N 1 f \N \N \N +269 1 2027 \N 1111 \N BGS-111444 \N 2024-02-12 16:55:38.664881 2024-02-12 16:55:38.674114 Jade Angelou \N 1 f \N \N \N +270 1 2027 \N 1111 \N BGS-230155 \N 2024-02-12 16:56:35.911211 2024-02-12 16:56:35.920219 Jade Angelou \N 1 f \N \N \N +271 1 2027 \N 1111 \N BGS-441445 \N 2024-02-12 16:57:32.766835 2024-02-12 16:57:32.776025 Jade Angelou \N 1 f \N \N \N +272 1 2027 \N 1111 \N BGS-202203 \N 2024-02-12 16:58:29.771476 2024-02-12 16:58:29.782352 Jade Angelou \N 1 f \N \N \N +273 1 2027 \N 1111 \N BGS-210532 \N 2024-02-12 16:59:26.674661 2024-02-12 16:59:26.683843 Jade Angelou \N 1 f \N \N \N +274 1 2027 \N 1111 \N BGS-045244 \N 2024-02-12 17:00:24.206951 2024-02-12 17:00:24.216488 Jade Angelou \N 1 f \N \N \N +275 1 2027 \N 1111 \N BGS-323545 \N 2024-02-12 17:01:21.396113 2024-02-12 17:01:21.408887 Jade Angelou \N 1 f \N \N \N +276 1 2027 \N 1111 \N BGS-540422 \N 2024-02-12 17:02:18.598719 2024-02-12 17:02:18.608149 Jade Angelou \N 1 f \N \N \N +277 1 2027 \N 1111 \N BGS-102440 \N 2024-02-12 17:03:15.985953 2024-02-12 17:03:16.003055 Jade Angelou \N 1 f \N \N \N +278 1 2027 \N 1111 \N BGS-430455 \N 2024-02-12 17:04:13.302751 2024-02-12 17:04:13.312822 Jade Angelou \N 1 f \N \N \N +279 1 2027 \N 1111 \N BGS-253052 \N 2024-02-12 17:05:10.55428 2024-02-12 17:05:10.564967 Jade Angelou \N 1 f \N \N \N +280 1 2027 \N 1111 \N BGS-125324 \N 2024-02-12 17:06:07.654085 2024-02-12 17:06:07.663195 Jade Angelou \N 1 f \N \N \N +281 1 2027 \N 1111 \N BGS-425050 \N 2024-02-12 17:07:04.94886 2024-02-12 17:07:04.959102 Jade Angelou \N 1 f \N \N \N +282 1 2027 \N 1111 \N BGS-131204 \N 2024-02-12 17:08:02.127998 2024-02-12 17:08:02.13806 Jade Angelou \N 1 f \N \N \N +283 1 2027 \N 1111 \N BGS-125310 \N 2024-02-12 17:08:59.248456 2024-02-12 17:08:59.2585 Jade Angelou \N 1 f \N \N \N +284 1 2027 \N 1111 \N BGS-035355 \N 2024-02-12 17:09:56.561482 2024-02-12 17:09:56.571146 Jade Angelou \N 1 f \N \N \N +285 1 2027 \N 1111 \N BGS-534442 \N 2024-02-12 17:10:53.710117 2024-02-12 17:10:53.720723 Jade Angelou \N 1 f \N \N \N +286 1 2027 \N 1111 \N BGS-202235 \N 2024-02-12 17:11:50.940289 2024-02-12 17:11:50.951742 Jade Angelou \N 1 f \N \N \N +287 1 2027 \N 1111 \N BGS-255100 \N 2024-02-12 17:12:48.201885 2024-02-12 17:12:48.21167 Jade Angelou \N 1 f \N \N \N +288 1 2027 \N 1111 \N BGS-310305 \N 2024-02-12 17:13:45.54784 2024-02-12 17:13:45.561615 Jade Angelou \N 1 f \N \N \N +289 1 2027 \N 1111 \N BGS-425233 \N 2024-02-12 17:14:42.637775 2024-02-12 17:14:42.647756 Jade Angelou \N 1 f \N \N \N +290 1 2027 \N 1111 \N BGS-245032 \N 2024-02-12 17:15:39.840896 2024-02-12 17:15:39.850683 Jade Angelou \N 1 f \N \N \N +291 1 2027 \N 1111 \N BGS-555423 \N 2024-02-12 17:16:37.096101 2024-02-12 17:16:37.106378 Jade Angelou \N 1 f \N \N \N +292 1 2027 \N 1111 \N BGS-242034 \N 2024-02-12 17:17:34.28794 2024-02-12 17:17:34.323809 Jade Angelou \N 1 f \N \N \N +293 1 2027 \N 1111 \N BGS-431415 \N 2024-02-12 17:18:31.589327 2024-02-12 17:18:31.600144 Jade Angelou \N 1 f \N \N \N +294 1 2027 \N 1111 \N BGS-454031 \N 2024-02-12 17:19:28.724722 2024-02-12 17:19:28.737383 Jade Angelou \N 1 f \N \N \N +295 1 2027 \N 1111 \N BGS-302434 \N 2024-02-12 17:20:26.340375 2024-02-12 17:20:26.352119 Jade Angelou \N 1 f \N \N \N +296 1 2027 \N 1111 \N BGS-012525 \N 2024-02-12 17:21:23.593416 2024-02-12 17:21:23.604578 Jade Angelou \N 1 f \N \N \N +297 1 2027 \N 1111 \N BGS-024152 \N 2024-02-12 17:22:21.11997 2024-02-12 17:22:21.131605 Jade Angelou \N 1 f \N \N \N +298 1 2027 \N 1111 \N BGS-034342 \N 2024-02-12 17:23:18.270831 2024-02-12 17:23:18.280635 Jade Angelou \N 1 f \N \N \N +299 1 2027 \N 1111 \N BGS-340225 \N 2024-02-12 17:24:15.451216 2024-02-12 17:24:15.46095 Jade Angelou \N 1 f \N \N \N +300 1 2027 \N 1111 \N BGS-054441 \N 2024-02-12 17:25:12.591392 2024-02-12 17:25:12.603261 Jade Angelou \N 1 f \N \N \N +301 1 2027 \N 1111 \N BGS-102141 \N 2024-02-12 17:26:09.858003 2024-02-12 17:26:09.87031 Jade Angelou \N 1 f \N \N \N +302 1 2027 \N 1111 \N BGS-023324 \N 2024-02-12 17:27:07.330992 2024-02-12 17:27:07.340106 Jade Angelou \N 1 f \N \N \N +303 1 2027 \N 1111 \N BGS-510510 \N 2024-02-12 17:28:04.631031 2024-02-12 17:28:04.640194 Jade Angelou \N 1 f \N \N \N +304 1 2027 \N 1111 \N BGS-432305 \N 2024-02-12 17:29:01.967375 2024-02-12 17:29:01.977631 Jade Angelou \N 1 f \N \N \N +305 1 2027 \N 1111 \N BGS-022000 \N 2024-02-12 17:29:59.402547 2024-02-12 17:29:59.4121 Jade Angelou \N 1 f \N \N \N +306 1 2027 \N 1111 \N BGS-345340 \N 2024-02-12 17:30:56.609389 2024-02-12 17:30:56.622286 Jade Angelou \N 1 f \N \N \N +307 1 2027 \N 1111 \N BGS-015145 \N 2024-02-12 17:31:53.896952 2024-02-12 17:31:53.906389 Jade Angelou \N 1 f \N \N \N +308 1 2027 \N 1111 \N BGS-001025 \N 2024-02-12 17:32:50.738918 2024-02-12 17:32:50.748267 Jade Angelou \N 1 f \N \N \N +309 1 2027 \N 1111 \N BGS-255344 \N 2024-02-12 17:33:47.402819 2024-02-12 17:33:47.414444 Jade Angelou \N 1 f \N \N \N +310 1 2027 \N 1111 \N BGS-242354 \N 2024-02-12 17:34:44.125795 2024-02-12 17:34:44.13515 Jade Angelou \N 1 f \N \N \N +311 1 2027 \N 1111 \N BGS-024324 \N 2024-02-12 17:35:40.926984 2024-02-12 17:35:40.93682 Jade Angelou \N 1 f \N \N \N +312 1 2027 \N 1111 \N BGS-142413 \N 2024-02-12 17:36:37.754237 2024-02-12 17:36:37.763454 Jade Angelou \N 1 f \N \N \N +313 1 2027 \N 1111 \N BGS-124523 \N 2024-02-12 17:37:34.682474 2024-02-12 17:37:34.69215 Jade Angelou \N 1 f \N \N \N +314 1 2027 \N 1111 \N BGS-013041 \N 2024-02-12 17:38:31.573615 2024-02-12 17:38:31.583681 Jade Angelou \N 1 f \N \N \N +315 1 2027 \N 1111 \N BGS-451424 \N 2024-02-12 17:39:28.529488 2024-02-12 17:39:28.540312 Jade Angelou \N 1 f \N \N \N +316 1 2027 \N 1111 \N BGS-513224 \N 2024-02-12 17:40:25.46636 2024-02-12 17:40:25.476449 Jade Angelou \N 1 f \N \N \N +317 1 2027 \N 1111 \N BGS-522545 \N 2024-02-12 17:41:22.693266 2024-02-12 17:41:22.702015 Jade Angelou \N 1 f \N \N \N +318 1 2027 \N 1111 \N BGS-233500 \N 2024-02-12 17:42:19.585127 2024-02-12 17:42:19.593875 Jade Angelou \N 1 f \N \N \N +319 1 2027 \N 1111 \N BGS-124141 \N 2024-02-12 17:43:16.394628 2024-02-12 17:43:16.403457 Jade Angelou \N 1 f \N \N \N +320 1 2027 \N 1111 \N BGS-115023 \N 2024-02-12 17:44:13.142851 2024-02-12 17:44:13.151692 Jade Angelou \N 1 f \N \N \N +321 1 2027 \N 1111 \N BGS-235312 \N 2024-02-12 17:45:10.390767 2024-02-12 17:45:10.40086 Jade Angelou \N 1 f \N \N \N +322 1 2027 \N 1111 \N BGS-325541 \N 2024-02-12 17:46:07.382317 2024-02-12 17:46:07.393665 Jade Angelou \N 1 f \N \N \N +323 1 2027 \N 1111 \N BGS-314510 \N 2024-02-12 17:47:04.437929 2024-02-12 17:47:04.447316 Jade Angelou \N 1 f \N \N \N +324 1 2027 \N 1111 \N BGS-141241 \N 2024-02-12 17:48:01.475431 2024-02-12 17:48:01.48599 Jade Angelou \N 1 f \N \N \N +325 1 2027 \N 1111 \N BGS-535524 \N 2024-02-12 17:48:58.328837 2024-02-12 17:48:58.337823 Jade Angelou \N 1 f \N \N \N +326 1 2027 \N 1111 \N BGS-025253 \N 2024-02-12 17:49:55.54998 2024-02-12 17:49:55.560255 Jade Angelou \N 1 f \N \N \N +327 1 2027 \N 1111 \N BGS-351225 \N 2024-02-12 17:50:52.352662 2024-02-12 17:50:52.361912 Jade Angelou \N 1 f \N \N \N +328 1 2027 \N 1111 \N BGS-530332 \N 2024-02-12 17:51:49.29845 2024-02-12 17:51:49.307721 Jade Angelou \N 1 f \N \N \N +329 1 2027 \N 1111 \N BGS-205403 \N 2024-02-12 17:52:46.331952 2024-02-12 17:52:46.344113 Jade Angelou \N 1 f \N \N \N +330 1 2027 \N 1111 \N BGS-042521 \N 2024-02-12 17:53:43.22481 2024-02-12 17:53:43.234148 Jade Angelou \N 1 f \N \N \N +331 1 2027 \N 1111 \N BGS-421113 \N 2024-02-12 17:54:40.055774 2024-02-12 17:54:40.066192 Jade Angelou \N 1 f \N \N \N +332 1 2027 \N 1111 \N BGS-103522 \N 2024-02-12 17:55:37.419509 2024-02-12 17:55:37.430941 Jade Angelou \N 1 f \N \N \N +333 1 2027 \N 1111 \N BGS-315130 \N 2024-02-12 17:56:34.549535 2024-02-12 17:56:34.559727 Jade Angelou \N 1 f \N \N \N +334 1 2027 \N 1111 \N BGS-404551 \N 2024-02-12 17:57:31.810013 2024-02-12 17:57:31.819559 Jade Angelou \N 1 f \N \N \N +335 1 2027 \N 1111 \N BGS-345341 \N 2024-02-12 17:58:28.456467 2024-02-12 17:58:28.465417 Jade Angelou \N 1 f \N \N \N +336 1 2027 \N 1111 \N BGS-122545 \N 2024-02-12 17:59:25.216395 2024-02-12 17:59:25.226182 Jade Angelou \N 1 f \N \N \N +337 1 2027 \N 1111 \N BGS-052431 \N 2024-02-12 18:00:22.080594 2024-02-12 18:00:22.137327 Jade Angelou \N 1 f \N \N \N +338 1 2027 \N 1111 \N BGS-211013 \N 2024-02-12 18:01:18.926133 2024-02-12 18:01:18.936159 Jade Angelou \N 1 f \N \N \N +339 1 2027 \N 1111 \N BGS-200234 \N 2024-02-12 18:02:15.724292 2024-02-12 18:02:15.734416 Jade Angelou \N 1 f \N \N \N +340 1 2027 \N 1111 \N BGS-543054 \N 2024-02-12 18:03:12.722451 2024-02-12 18:03:12.731861 Jade Angelou \N 1 f \N \N \N +341 1 2027 \N 1111 \N BGS-115542 \N 2024-02-12 18:04:09.711066 2024-02-12 18:04:09.720514 Jade Angelou \N 1 f \N \N \N +342 1 2027 \N 1111 \N BGS-552505 \N 2024-02-12 18:05:06.697914 2024-02-12 18:05:06.707851 Jade Angelou \N 1 f \N \N \N +343 1 2027 \N 1111 \N BGS-254154 \N 2024-02-12 18:06:03.601207 2024-02-12 18:06:03.616086 Jade Angelou \N 1 f \N \N \N +344 1 2027 \N 1111 \N BGS-000124 \N 2024-02-12 18:07:00.401786 2024-02-12 18:07:00.410931 Jade Angelou \N 1 f \N \N \N +345 1 2027 \N 1111 \N BGS-033003 \N 2024-02-12 18:07:57.277499 2024-02-12 18:07:57.286512 Jade Angelou \N 1 f \N \N \N +346 1 2027 \N 1111 \N BGS-435541 \N 2024-02-12 18:08:54.400188 2024-02-12 18:08:54.409464 Jade Angelou \N 1 f \N \N \N +347 1 2027 \N 1111 \N BGS-430341 \N 2024-02-12 18:09:51.262615 2024-02-12 18:09:51.2715 Jade Angelou \N 1 f \N \N \N +348 1 2027 \N 1111 \N BGS-035300 \N 2024-02-12 18:10:48.610132 2024-02-12 18:10:48.620283 Jade Angelou \N 1 f \N \N \N +349 1 2027 \N 1111 \N BGS-324323 \N 2024-02-12 18:11:45.935024 2024-02-12 18:11:45.945155 Jade Angelou \N 1 f \N \N \N +350 1 2027 \N 1111 \N BGS-130535 \N 2024-02-12 18:12:43.132095 2024-02-12 18:12:43.142527 Jade Angelou \N 1 f \N \N \N +351 1 2027 \N 1111 \N BGS-131230 \N 2024-02-12 18:13:40.284747 2024-02-12 18:13:40.294941 Jade Angelou \N 1 f \N \N \N +352 1 2027 \N 1111 \N BGS-021151 \N 2024-02-12 18:14:37.857248 2024-02-12 18:14:37.868281 Jade Angelou \N 1 f \N \N \N +353 1 2027 \N 1111 \N BGS-212054 \N 2024-02-12 18:15:34.647885 2024-02-12 18:15:34.656171 Jade Angelou \N 1 f \N \N \N +354 1 2027 \N 1111 \N BGS-122450 \N 2024-02-12 18:16:31.528418 2024-02-12 18:16:31.538677 Jade Angelou \N 1 f \N \N \N +355 1 2027 \N 1111 \N BGS-142314 \N 2024-02-12 18:17:28.270256 2024-02-12 18:17:28.280318 Jade Angelou \N 1 f \N \N \N +356 1 2027 \N 1111 \N BGS-410301 \N 2024-02-12 18:18:25.192169 2024-02-12 18:18:25.201265 Jade Angelou \N 1 f \N \N \N +357 1 2027 \N 1111 \N BGS-243211 \N 2024-02-12 18:19:22.113405 2024-02-12 18:19:22.123541 Jade Angelou \N 1 f \N \N \N +358 1 2027 \N 1111 \N BGS-500540 \N 2024-02-12 18:20:19.274042 2024-02-12 18:20:19.284338 Jade Angelou \N 1 f \N \N \N +359 1 2027 \N 1111 \N BGS-135131 \N 2024-02-12 18:21:16.377318 2024-02-12 18:21:16.387421 Jade Angelou \N 1 f \N \N \N +360 1 2027 \N 1111 \N BGS-503151 \N 2024-02-12 18:22:13.139436 2024-02-12 18:22:13.149534 Jade Angelou \N 1 f \N \N \N +361 1 2027 \N 1111 \N BGS-132043 \N 2024-02-12 18:23:10.031939 2024-02-12 18:23:10.040887 Jade Angelou \N 1 f \N \N \N +362 1 2027 \N 1111 \N BGS-404020 \N 2024-02-12 18:24:06.778823 2024-02-12 18:24:06.789519 Jade Angelou \N 1 f \N \N \N +363 1 2027 \N 1111 \N BGS-050101 \N 2024-02-12 18:25:03.932828 2024-02-12 18:25:03.942343 Jade Angelou \N 1 f \N \N \N +364 1 2027 \N 1111 \N BGS-430550 \N 2024-02-12 18:26:00.864181 2024-02-12 18:26:00.873676 Jade Angelou \N 1 f \N \N \N +365 1 2027 \N 1111 \N BGS-101452 \N 2024-02-12 18:26:57.712437 2024-02-12 18:26:57.721834 Jade Angelou \N 1 f \N \N \N +366 1 2027 \N 1111 \N BGS-440503 \N 2024-02-12 18:27:54.550567 2024-02-12 18:27:54.560325 Jade Angelou \N 1 f \N \N \N +367 1 2027 \N 1111 \N BGS-015335 \N 2024-02-12 18:28:51.293414 2024-02-12 18:28:51.302425 Jade Angelou \N 1 f \N \N \N +368 1 2027 \N 1111 \N BGS-023430 \N 2024-02-12 18:29:48.129539 2024-02-12 18:29:48.140708 Jade Angelou \N 1 f \N \N \N +369 1 2027 \N 1111 \N BGS-334413 \N 2024-02-12 18:30:44.930307 2024-02-12 18:30:44.939791 Jade Angelou \N 1 f \N \N \N +370 1 2027 \N 1111 \N BGS-324531 \N 2024-02-12 18:31:41.748419 2024-02-12 18:31:41.757629 Jade Angelou \N 1 f \N \N \N +371 1 2027 \N 1111 \N BGS-522001 \N 2024-02-12 18:32:38.728639 2024-02-12 18:32:38.738289 Jade Angelou \N 1 f \N \N \N +372 1 2027 \N 1111 \N BGS-012155 \N 2024-02-12 18:33:35.64325 2024-02-12 18:33:35.652711 Jade Angelou \N 1 f \N \N \N +373 1 2027 \N 1111 \N BGS-131432 \N 2024-02-12 18:34:32.384972 2024-02-12 18:34:32.407354 Jade Angelou \N 1 f \N \N \N +374 1 2027 \N 1111 \N BGS-534323 \N 2024-02-12 18:35:29.369003 2024-02-12 18:35:29.379277 Jade Angelou \N 1 f \N \N \N +375 1 2027 \N 1111 \N BGS-340240 \N 2024-02-12 18:36:26.13729 2024-02-12 18:36:26.146449 Jade Angelou \N 1 f \N \N \N +376 1 2027 \N 1111 \N BGS-202143 \N 2024-02-12 18:37:23.104723 2024-02-12 18:37:23.114011 Jade Angelou \N 1 f \N \N \N +377 1 2027 \N 1111 \N BGS-311143 \N 2024-02-12 18:38:19.898018 2024-02-12 18:38:19.907852 Jade Angelou \N 1 f \N \N \N +378 1 2027 \N 1111 \N BGS-331044 \N 2024-02-12 18:39:16.620999 2024-02-12 18:39:16.632755 Jade Angelou \N 1 f \N \N \N +379 1 2027 \N 1111 \N BGS-512350 \N 2024-02-12 18:40:13.645306 2024-02-12 18:40:13.656022 Jade Angelou \N 1 f \N \N \N +380 1 2027 \N 1111 \N BGS-012322 \N 2024-02-12 18:41:10.571699 2024-02-12 18:41:10.581253 Jade Angelou \N 1 f \N \N \N +381 1 2027 \N 1111 \N BGS-135304 \N 2024-02-12 18:42:07.338664 2024-02-12 18:42:07.349314 Jade Angelou \N 1 f \N \N \N +382 1 2027 \N 1111 \N BGS-545441 \N 2024-02-12 18:43:04.152015 2024-02-12 18:43:04.161532 Jade Angelou \N 1 f \N \N \N +383 1 2027 \N 1111 \N BGS-501540 \N 2024-02-12 18:44:01.118547 2024-02-12 18:44:01.128095 Jade Angelou \N 1 f \N \N \N +384 1 2027 \N 1111 \N BGS-534405 \N 2024-02-12 18:44:57.60781 2024-02-12 18:44:57.619024 Jade Angelou \N 1 f \N \N \N +385 1 2027 \N 1111 \N BGS-352532 \N 2024-02-12 18:45:54.446615 2024-02-12 18:45:54.456133 Jade Angelou \N 1 f \N \N \N +386 1 2027 \N 1111 \N BGS-222220 \N 2024-02-12 18:46:51.603309 2024-02-12 18:46:51.61772 Jade Angelou \N 1 f \N \N \N +387 1 2027 \N 1111 \N BGS-450111 \N 2024-02-12 18:47:48.269081 2024-02-12 18:47:48.279276 Jade Angelou \N 1 f \N \N \N +388 1 2027 \N 1111 \N BGS-443132 \N 2024-02-12 18:48:45.118495 2024-02-12 18:48:45.130062 Jade Angelou \N 1 f \N \N \N +389 1 2027 \N 1111 \N BGS-041104 \N 2024-02-12 18:49:41.80794 2024-02-12 18:49:41.818525 Jade Angelou \N 1 f \N \N \N +390 1 2027 \N 1111 \N BGS-025404 \N 2024-02-12 18:50:38.806938 2024-02-12 18:50:38.816931 Jade Angelou \N 1 f \N \N \N +391 1 2027 \N 1111 \N BGS-144225 \N 2024-02-12 18:51:35.922852 2024-02-12 18:51:35.932828 Jade Angelou \N 1 f \N \N \N +392 1 2027 \N 1111 \N BGS-321311 \N 2024-02-12 18:52:32.899223 2024-02-12 18:52:32.909278 Jade Angelou \N 1 f \N \N \N +393 1 2027 \N 1111 \N BGS-414222 \N 2024-02-12 18:53:29.711431 2024-02-12 18:53:29.721177 Jade Angelou \N 1 f \N \N \N +394 1 2027 \N 1111 \N BGS-013555 \N 2024-02-12 18:54:26.531622 2024-02-12 18:54:26.540757 Jade Angelou \N 1 f \N \N \N +395 1 2027 \N 1111 \N BGS-502142 \N 2024-02-12 18:55:23.389049 2024-02-12 18:55:23.400214 Jade Angelou \N 1 f \N \N \N +396 1 2027 \N 1111 \N BGS-330333 \N 2024-02-12 18:56:20.207685 2024-02-12 18:56:20.216919 Jade Angelou \N 1 f \N \N \N +397 1 2027 \N 1111 \N BGS-125042 \N 2024-02-12 18:57:17.146144 2024-02-12 18:57:17.156093 Jade Angelou \N 1 f \N \N \N +398 1 2027 \N 1111 \N BGS-102400 \N 2024-02-12 18:58:14.172974 2024-02-12 18:58:14.182822 Jade Angelou \N 1 f \N \N \N +399 1 2027 \N 1111 \N BGS-131151 \N 2024-02-12 18:59:10.923198 2024-02-12 18:59:10.932352 Jade Angelou \N 1 f \N \N \N +400 1 2027 \N 1111 \N BGS-322334 \N 2024-02-12 19:00:07.767623 2024-02-12 19:00:07.778921 Jade Angelou \N 1 f \N \N \N +401 1 2027 \N 1111 \N BGS-144355 \N 2024-02-12 19:01:04.614246 2024-02-12 19:01:04.626928 Jade Angelou \N 1 f \N \N \N +402 1 2027 \N 1111 \N BGS-553021 \N 2024-02-12 19:02:01.389716 2024-02-12 19:02:01.400225 Jade Angelou \N 1 f \N \N \N +403 1 2027 \N 1111 \N BGS-302554 \N 2024-02-12 19:02:58.211746 2024-02-12 19:02:58.221335 Jade Angelou \N 1 f \N \N \N +404 1 2027 \N 1111 \N BGS-452300 \N 2024-02-12 19:03:55.106426 2024-02-12 19:03:55.115176 Jade Angelou \N 1 f \N \N \N +405 1 2027 \N 1111 \N BGS-525354 \N 2024-02-12 19:04:51.932729 2024-02-12 19:04:51.941727 Jade Angelou \N 1 f \N \N \N +406 1 2027 \N 1111 \N BGS-455202 \N 2024-02-12 19:05:48.782424 2024-02-12 19:05:48.792543 Jade Angelou \N 1 f \N \N \N +407 1 2027 \N 1111 \N BGS-201041 \N 2024-02-12 19:06:45.654615 2024-02-12 19:06:45.664518 Jade Angelou \N 1 f \N \N \N +408 1 2027 \N 1111 \N BGS-102321 \N 2024-02-12 19:07:42.676841 2024-02-12 19:07:42.686729 Jade Angelou \N 1 f \N \N \N +409 1 2027 \N 1111 \N BGS-223220 \N 2024-02-12 19:08:39.621492 2024-02-12 19:08:39.63072 Jade Angelou \N 1 f \N \N \N +410 1 2027 \N 1111 \N BGS-015143 \N 2024-02-12 19:09:36.461298 2024-02-12 19:09:36.470832 Jade Angelou \N 1 f \N \N \N +411 1 2027 \N 1111 \N BGS-454441 \N 2024-02-12 19:10:33.296531 2024-02-12 19:10:33.306702 Jade Angelou \N 1 f \N \N \N +412 1 2027 \N 1111 \N BGS-400503 \N 2024-02-12 19:11:30.234797 2024-02-12 19:11:30.243617 Jade Angelou \N 1 f \N \N \N +413 1 2027 \N 1111 \N BGS-523540 \N 2024-02-12 19:12:27.187727 2024-02-12 19:12:27.196723 Jade Angelou \N 1 f \N \N \N +414 1 2027 \N 1111 \N BGS-331005 \N 2024-02-12 19:13:23.985541 2024-02-12 19:13:23.996507 Jade Angelou \N 1 f \N \N \N +415 1 2027 \N 1111 \N BGS-002105 \N 2024-02-12 19:14:21.119256 2024-02-12 19:14:21.130503 Jade Angelou \N 1 f \N \N \N +416 1 2027 \N 1111 \N BGS-441130 \N 2024-02-12 19:15:18.034651 2024-02-12 19:15:18.043641 Jade Angelou \N 1 f \N \N \N +417 1 2027 \N 1111 \N BGS-143344 \N 2024-02-12 19:16:14.994932 2024-02-12 19:16:15.006112 Jade Angelou \N 1 f \N \N \N +418 1 2027 \N 1111 \N BGS-051320 \N 2024-02-12 19:17:11.820245 2024-02-12 19:17:11.829605 Jade Angelou \N 1 f \N \N \N +419 1 2027 \N 1111 \N BGS-515433 \N 2024-02-12 19:18:08.636671 2024-02-12 19:18:08.645625 Jade Angelou \N 1 f \N \N \N +423 1 2027 \N 1111 \N BGS-100321 \N 2024-02-12 19:21:56.069314 2024-02-12 19:21:56.078383 Jade Angelou \N 1 f \N \N \N +424 1 2027 \N 1111 \N BGS-544334 \N 2024-02-12 19:22:53.157291 2024-02-12 19:22:53.167898 Jade Angelou \N 1 f \N \N \N +420 1 2027 \N 1111 \N BGS-415141 \N 2024-02-12 19:19:05.512174 2024-02-12 19:19:05.521647 Jade Angelou \N 1 f \N \N \N +421 1 2027 \N 1111 \N BGS-011021 \N 2024-02-12 19:20:02.367412 2024-02-12 19:20:02.376366 Jade Angelou \N 1 f \N \N \N +422 1 2027 \N 1111 \N BGS-501304 \N 2024-02-12 19:20:59.041149 2024-02-12 19:20:59.051115 Jade Angelou \N 1 f \N \N \N +425 1 2027 \N 1111 \N BGS-035144 \N 2024-02-12 19:23:50.242293 2024-02-12 19:23:50.251785 Jade Angelou \N 1 f \N \N \N +426 1 2027 \N 1111 \N BGS-133422 \N 2024-02-12 19:24:47.377838 2024-02-12 19:24:47.387203 Jade Angelou \N 1 f \N \N \N +427 1 2027 \N 1111 \N BGS-525514 \N 2024-02-12 19:25:44.529435 2024-02-12 19:25:44.538926 Jade Angelou \N 1 f \N \N \N +428 1 2027 \N 1111 \N BGS-234124 \N 2024-02-12 19:26:41.754692 2024-02-12 19:26:41.765922 Jade Angelou \N 1 f \N \N \N +429 1 2027 \N 1111 \N BGS-254240 \N 2024-02-12 19:27:38.706858 2024-02-12 19:27:38.71635 Jade Angelou \N 1 f \N \N \N +430 1 2027 \N 1111 \N BGS-222300 \N 2024-02-12 19:28:35.728659 2024-02-12 19:28:35.738144 Jade Angelou \N 1 f \N \N \N +431 1 2027 \N 1111 \N BGS-232414 \N 2024-02-12 19:29:32.850849 2024-02-12 19:29:32.860732 Jade Angelou \N 1 f \N \N \N +432 1 2027 \N 1111 \N BGS-141034 \N 2024-02-12 19:30:29.963703 2024-02-12 19:30:29.972924 Jade Angelou \N 1 f \N \N \N +433 1 2027 \N 1111 \N BGS-500503 \N 2024-02-12 19:31:27.225332 2024-02-12 19:31:27.242963 Jade Angelou \N 1 f \N \N \N +434 1 2027 \N 1111 \N BGS-352315 \N 2024-02-12 19:32:24.203064 2024-02-12 19:32:24.214813 Jade Angelou \N 1 f \N \N \N +435 1 2027 \N 1111 \N BGS-533502 \N 2024-02-12 19:33:21.28875 2024-02-12 19:33:21.299267 Jade Angelou \N 1 f \N \N \N +436 1 2027 \N 1111 \N BGS-320404 \N 2024-02-12 19:34:18.155303 2024-02-12 19:34:18.172853 Jade Angelou \N 1 f \N \N \N +437 1 2027 \N 1111 \N BGS-253203 \N 2024-02-12 19:35:15.379784 2024-02-12 19:35:15.389538 Jade Angelou \N 1 f \N \N \N +438 1 2027 \N 1111 \N BGS-205310 \N 2024-02-12 19:36:12.455136 2024-02-12 19:36:12.466011 Jade Angelou \N 1 f \N \N \N +439 1 2027 \N 1111 \N BGS-252044 \N 2024-02-12 19:37:09.539529 2024-02-12 19:37:09.54934 Jade Angelou \N 1 f \N \N \N +440 1 2027 \N 1111 \N BGS-355455 \N 2024-02-12 19:38:06.312189 2024-02-12 19:38:06.321144 Jade Angelou \N 1 f \N \N \N +441 1 2027 \N 1111 \N BGS-334120 \N 2024-02-12 19:39:03.35299 2024-02-12 19:39:03.363718 Jade Angelou \N 1 f \N \N \N +442 1 2027 \N 1111 \N BGS-000322 \N 2024-02-12 19:40:00.331575 2024-02-12 19:40:00.342044 Jade Angelou \N 1 f \N \N \N +443 1 2027 \N 1111 \N BGS-003305 \N 2024-02-12 19:40:57.494941 2024-02-12 19:40:57.505654 Jade Angelou \N 1 f \N \N \N +444 1 2027 \N 1111 \N BGS-332102 \N 2024-02-12 19:41:54.614711 2024-02-12 19:41:54.625457 Jade Angelou \N 1 f \N \N \N +445 1 2027 \N 1111 \N BGS-432055 \N 2024-02-12 19:42:51.650496 2024-02-12 19:42:51.659718 Jade Angelou \N 1 f \N \N \N +446 1 2027 \N 1111 \N BGS-515400 \N 2024-02-12 19:43:48.513613 2024-02-12 19:43:48.523031 Jade Angelou \N 1 f \N \N \N +447 1 2027 \N 1111 \N BGS-301032 \N 2024-02-12 19:44:45.44105 2024-02-12 19:44:45.45159 Jade Angelou \N 1 f \N \N \N +448 1 2027 \N 1111 \N BGS-513111 \N 2024-02-12 19:45:42.725653 2024-02-12 19:45:42.734491 Jade Angelou \N 1 f \N \N \N +449 1 2027 \N 1111 \N BGS-533532 \N 2024-02-12 19:46:39.680495 2024-02-12 19:46:39.689299 Jade Angelou \N 1 f \N \N \N +450 1 2027 \N 1111 \N BGS-415114 \N 2024-02-12 19:47:36.529788 2024-02-12 19:47:36.53931 Jade Angelou \N 1 f \N \N \N +451 1 2027 \N 1111 \N BGS-511100 \N 2024-02-12 19:48:33.555485 2024-02-12 19:48:33.580745 Jade Angelou \N 1 f \N \N \N +452 1 2027 \N 1111 \N BGS-014125 \N 2024-02-12 19:49:30.539498 2024-02-12 19:49:30.550833 Jade Angelou \N 1 f \N \N \N +453 1 2027 \N 1111 \N BGS-152102 \N 2024-02-12 19:50:27.437349 2024-02-12 19:50:27.455452 Jade Angelou \N 1 f \N \N \N +454 1 2027 \N 1111 \N BGS-022042 \N 2024-02-12 19:51:24.934778 2024-02-12 19:51:24.950377 Jade Angelou \N 1 f \N \N \N +455 1 2027 \N 1111 \N BGS-202540 \N 2024-02-12 19:52:21.844171 2024-02-12 19:52:21.85447 Jade Angelou \N 1 f \N \N \N +456 1 2027 \N 1111 \N BGS-313454 \N 2024-02-12 19:53:18.682147 2024-02-12 19:53:18.692144 Jade Angelou \N 1 f \N \N \N +457 1 2027 \N 1111 \N BGS-503525 \N 2024-02-12 19:54:15.524387 2024-02-12 19:54:15.538017 Jade Angelou \N 1 f \N \N \N +458 1 2027 \N 1111 \N BGS-324414 \N 2024-02-12 19:55:12.407819 2024-02-12 19:55:12.418685 Jade Angelou \N 1 f \N \N \N +459 1 2027 \N 1111 \N BGS-242315 \N 2024-02-12 19:56:09.274682 2024-02-12 19:56:09.283985 Jade Angelou \N 1 f \N \N \N +460 1 2027 \N 1111 \N BGS-135431 \N 2024-02-12 19:57:05.999762 2024-02-12 19:57:06.009587 Jade Angelou \N 1 f \N \N \N +461 1 2027 \N 1111 \N BGS-115431 \N 2024-02-12 19:58:03.172262 2024-02-12 19:58:03.182098 Jade Angelou \N 1 f \N \N \N +462 1 2027 \N 1111 \N BGS-032024 \N 2024-02-12 19:59:00.183485 2024-02-12 19:59:00.192836 Jade Angelou \N 1 f \N \N \N +463 1 2027 \N 1111 \N BGS-143223 \N 2024-02-12 19:59:57.129101 2024-02-12 19:59:57.138489 Jade Angelou \N 1 f \N \N \N +464 1 2027 \N 1111 \N BGS-243505 \N 2024-02-12 20:00:54.030087 2024-02-12 20:00:54.038893 Jade Angelou \N 1 f \N \N \N +465 1 2027 \N 1111 \N BGS-520041 \N 2024-02-12 20:01:51.050265 2024-02-12 20:01:51.058816 Jade Angelou \N 1 f \N \N \N +466 1 2027 \N 1111 \N BGS-414550 \N 2024-02-12 20:02:48.019463 2024-02-12 20:02:48.029291 Jade Angelou \N 1 f \N \N \N +467 1 2027 \N 1111 \N BGS-543341 \N 2024-02-12 20:03:45.050542 2024-02-12 20:03:45.059805 Jade Angelou \N 1 f \N \N \N +468 1 2027 \N 1111 \N BGS-453211 \N 2024-02-12 20:04:41.864613 2024-02-12 20:04:41.873928 Jade Angelou \N 1 f \N \N \N +469 1 2027 \N 1111 \N BGS-052350 \N 2024-02-12 20:05:38.681436 2024-02-12 20:05:38.692447 Jade Angelou \N 1 f \N \N \N +470 1 2027 \N 1111 \N BGS-411122 \N 2024-02-12 20:06:35.582632 2024-02-12 20:06:35.592109 Jade Angelou \N 1 f \N \N \N +471 1 2027 \N 1111 \N BGS-053200 \N 2024-02-12 20:07:32.584926 2024-02-12 20:07:32.594307 Jade Angelou \N 1 f \N \N \N +472 1 2027 \N 1111 \N BGS-424023 \N 2024-02-12 20:08:25.412313 2024-02-12 20:08:25.456548 Jade Angelou \N 1 f \N \N \N +473 1 2027 \N 1111 \N BGS-520131 \N 2024-02-12 20:08:27.130547 2024-02-12 20:08:27.178632 Jade Angelou \N 1 f \N \N \N +474 1 2027 \N 1111 \N BGS-355210 \N 2024-02-12 20:08:30.358761 2024-02-12 20:08:30.369664 Jade Angelou \N 1 f \N \N \N +475 1 2027 \N 1111 \N BGS-523555 \N 2024-02-12 20:09:27.245381 2024-02-12 20:09:27.254726 Jade Angelou \N 1 f \N \N \N +476 1 2027 \N 1111 \N BGS-250325 \N 2024-02-12 20:10:24.30761 2024-02-12 20:10:24.319464 Jade Angelou \N 1 f \N \N \N +477 1 2027 \N 1111 \N BGS-100322 \N 2024-02-12 20:11:21.450945 2024-02-12 20:11:21.461095 Jade Angelou \N 1 f \N \N \N +478 1 2027 \N 1111 \N BGS-224544 \N 2024-02-12 20:12:19.123932 2024-02-12 20:12:19.136343 Jade Angelou \N 1 f \N \N \N +479 1 2027 \N 1111 \N BGS-545324 \N 2024-02-12 20:14:35.211918 2024-02-12 20:14:35.222376 Jade Angelou \N 1 f \N \N \N +480 1 2027 \N 1111 \N BGS-520413 \N 2024-02-12 20:14:55.481935 2024-02-12 20:14:55.506979 Jade Angelou \N 1 f \N \N \N +481 1 2027 \N 1111 \N BGS-301321 \N 2024-02-12 20:15:04.234057 2024-02-12 20:15:04.244116 Jade Angelou \N 1 f \N \N \N +482 1 2027 \N 1111 \N BGS-104032 \N 2024-02-12 20:16:14.263151 2024-02-12 20:16:14.278781 Jade Angelou \N 1 f \N \N \N +483 1 2027 \N 1111 \N BGS-025203 \N 2024-02-12 20:16:38.495714 2024-02-12 20:16:38.534405 Jade Angelou \N 1 f \N \N \N +484 1 2027 \N 1111 \N BGS-004545 \N 2024-02-12 20:16:47.318978 2024-02-12 20:16:47.328089 Jade Angelou \N 1 f \N \N \N +485 1 2027 \N 1111 \N BGS-000443 \N 2024-02-12 20:18:53.53596 2024-02-12 20:18:53.547638 Jade Angelou \N 1 f \N \N \N +486 1 2027 \N 1111 \N BGS-054054 \N 2024-02-12 20:19:14.362866 2024-02-12 20:19:14.391177 Jade Angelou \N 1 f \N \N \N +487 1 2027 \N 1111 \N BGS-352343 \N 2024-02-12 20:19:23.333071 2024-02-12 20:19:23.34586 Jade Angelou \N 1 f \N \N \N +488 1 2027 \N 1111 \N BGS-055020 \N 2024-02-12 20:20:59.03436 2024-02-12 20:20:59.103273 Jade Angelou \N 1 f \N \N \N +489 1 2027 \N 1111 \N BGS-141334 \N 2024-02-12 20:21:21.794883 2024-02-12 20:21:21.855328 Jade Angelou \N 1 f \N \N \N +490 1 2027 \N 1111 \N BGS-440501 \N 2024-02-12 20:21:24.71395 2024-02-12 20:21:24.730557 Jade Angelou \N 1 f \N \N \N +491 1 2027 \N 1111 \N BGS-152505 \N 2024-02-12 20:21:37.662391 2024-02-12 20:21:37.718805 Jade Angelou \N 1 f \N \N \N +492 1 2027 \N 1111 \N BGS-253453 \N 2024-02-12 20:21:45.651168 2024-02-12 20:21:45.681227 Jade Angelou \N 1 f \N \N \N +494 1 2027 \N 1111 \N BGS-400035 \N 2024-02-12 20:24:08.557639 2024-02-12 20:24:08.576343 Jade Angelou \N 1 f \N \N \N +495 1 2027 \N 1111 \N BGS-542112 \N 2024-02-12 20:24:32.2947 2024-02-12 20:24:32.320107 Jade Angelou \N 1 f \N \N \N +496 1 2027 \N 1111 \N BGS-402434 \N 2024-02-12 20:24:41.330025 2024-02-12 20:24:41.340354 Jade Angelou \N 1 f \N \N \N +497 1 2027 \N 1111 \N BGS-312044 \N 2024-02-12 20:24:41.879501 2024-02-12 20:24:41.915876 Jade Angelou \N 1 f \N \N \N +498 1 2027 \N 1111 \N BGS-113255 \N 2024-02-12 20:24:42.105021 2024-02-12 20:24:42.129032 Jade Angelou \N 1 f \N \N \N +499 1 2027 \N 1111 \N BGS-414213 \N 2024-02-12 20:26:00.336676 2024-02-12 20:26:00.348528 Jade Angelou \N 1 f \N \N \N +500 1 2027 \N 1111 \N BGS-523000 \N 2024-02-12 20:31:11.633649 2024-02-12 20:31:11.644185 Jade Angelou \N 1 f \N \N \N +501 1 2027 \N 1111 \N BGS-541311 \N 2024-02-12 20:31:23.958142 2024-02-12 20:31:23.986554 Jade Angelou \N 1 f \N \N \N +503 1 2027 \N 1111 \N BGS-241111 \N 2024-02-12 20:32:37.452803 2024-02-12 20:32:37.601746 Jade Angelou \N 1 f \N \N \N +504 1 2027 \N 1111 \N BGS-001231 \N 2024-02-12 20:34:02.068095 2024-02-12 20:34:02.117702 Jade Angelou \N 1 f \N \N \N +493 1 2027 \N 1111 \N BGS-054503 \N 2024-02-12 20:21:54.601479 2024-02-12 20:21:54.611846 Jade Angelou \N 1 f \N \N \N +502 1 2027 \N 1111 \N BGS-235120 \N 2024-02-12 20:32:23.690617 2024-02-12 20:32:23.768148 Jade Angelou \N 1 f \N \N \N +505 1 2027 \N 1111 \N BGS-440053 \N 2024-02-12 20:34:36.969025 2024-02-12 20:34:36.995166 Jade Angelou \N 1 f \N \N \N +506 1 2027 \N 1111 \N BGS-120024 \N 2024-02-12 20:35:35.149697 2024-02-12 20:35:35.177637 Jade Angelou \N 1 f \N \N \N +507 1 2027 \N 1111 \N BGS-553141 \N 2024-02-12 20:36:14.947966 2024-02-12 20:36:14.997688 Jade Angelou \N 1 f \N \N \N +508 1 2027 \N 1111 \N BGS-510110 \N 2024-02-12 20:36:19.527584 2024-02-12 20:36:19.556809 Jade Angelou \N 1 f \N \N \N +509 1 2027 \N 1111 \N BGS-254310 \N 2024-02-12 20:36:57.84873 2024-02-12 20:36:57.909043 Jade Angelou \N 1 f \N \N \N +510 1 2027 \N 1111 \N BGS-152454 \N 2024-02-12 20:37:01.801363 2024-02-12 20:37:01.832121 Jade Angelou \N 1 f \N \N \N +511 1 2027 \N 1111 \N BGS-511502 \N 2024-02-12 20:40:07.770845 2024-02-12 20:40:07.798513 Jade Angelou \N 1 f \N \N \N +512 1 2027 \N 1111 \N BGS-004412 \N 2024-02-12 20:40:18.728546 2024-02-12 20:40:18.75937 Jade Angelou \N 1 f \N \N \N +513 1 2027 \N 1111 \N BGS-130503 \N 2024-02-12 21:24:22.548688 2024-02-12 21:24:22.578968 Jade Angelou \N 1 f \N \N \N +514 1 2027 \N 1111 \N BGS-420501 \N 2024-02-12 21:26:06.424352 2024-02-12 21:26:06.44479 Jade Angelou \N 1 f \N \N \N +515 1 2027 \N 1111 \N BGS-401112 \N 2024-02-12 21:26:12.834434 2024-02-12 21:26:12.844691 Jade Angelou \N 1 f \N \N \N +516 1 2027 \N 1111 \N BGS-522154 \N 2024-02-12 21:26:14.775026 2024-02-12 21:26:14.785215 Jade Angelou \N 1 f \N \N \N +517 1 2027 \N 1111 \N BGS-001221 \N 2024-02-12 21:26:17.588757 2024-02-12 21:26:17.601051 Jade Angelou \N 1 f \N \N \N +518 1 2027 \N 1111 \N BGS-521500 \N 2024-02-12 21:26:18.182779 2024-02-12 21:26:18.194604 Jade Angelou \N 1 f \N \N \N +519 1 2027 \N 1111 \N BGS-453510 \N 2024-02-12 21:26:21.46975 2024-02-12 21:26:21.48921 Jade Angelou \N 1 f \N \N \N +520 1 2027 \N 1111 \N BGS-513034 \N 2024-02-12 21:26:22.76828 2024-02-12 21:26:22.780052 Jade Angelou \N 1 f \N \N \N +521 1 2027 \N 1111 \N BGS-234440 \N 2024-02-12 21:26:25.087969 2024-02-12 21:26:25.104431 Jade Angelou \N 1 f \N \N \N +522 1 2027 \N 1111 \N BGS-222023 \N 2024-02-12 21:26:25.333836 2024-02-12 21:26:25.343678 Jade Angelou \N 1 f \N \N \N +523 1 2027 \N 1111 \N BGS-021241 \N 2024-02-12 21:26:26.114492 2024-02-12 21:26:26.123821 Jade Angelou \N 1 f \N \N \N +524 1 2027 \N 1111 \N BGS-122015 \N 2024-02-12 21:27:47.024249 2024-02-12 21:27:47.036869 Jade Angelou \N 1 f \N \N \N +525 1 2027 \N 1111 \N BGS-345131 \N 2024-02-12 21:28:09.200266 2024-02-12 21:28:09.209962 Jade Angelou \N 1 f \N \N \N +526 1 2027 \N 1111 \N BGS-030543 \N 2024-02-12 21:29:19.011158 2024-02-12 21:29:19.019736 Jade Angelou \N 1 f \N \N \N +527 1 2027 \N 1111 \N BGS-043230 \N 2024-02-12 21:31:28.271325 2024-02-12 21:31:28.281158 Jade Angelou \N 1 f \N \N \N +528 1 2027 \N 1111 \N BGS-413200 \N 2024-02-12 21:31:35.877199 2024-02-12 21:31:35.886952 Jade Angelou \N 1 f \N \N \N +529 1 2027 \N 1111 \N BGS-123542 \N 2024-02-12 21:31:37.48435 2024-02-12 21:31:37.49401 Jade Angelou \N 1 f \N \N \N +530 1 2027 \N 1111 \N BGS-501325 \N 2024-02-12 21:31:39.081899 2024-02-12 21:31:39.094073 Jade Angelou \N 1 f \N \N \N +531 1 2027 \N 1111 \N BGS-541154 \N 2024-02-12 21:31:40.932394 2024-02-12 21:31:40.943443 Jade Angelou \N 1 f \N \N \N +532 1 2027 \N 1111 \N BGS-114454 \N 2024-02-12 21:31:41.51975 2024-02-12 21:31:41.528415 Jade Angelou \N 1 f \N \N \N +533 1 2027 \N 1111 \N BGS-434140 \N 2024-02-12 21:31:43.697022 2024-02-12 21:31:43.716314 Jade Angelou \N 1 f \N \N \N +534 1 2027 \N 1111 \N BGS-134255 \N 2024-02-12 21:31:44.330899 2024-02-12 21:31:44.340687 Jade Angelou \N 1 f \N \N \N +535 1 2027 \N 1111 \N BGS-011233 \N 2024-02-12 21:31:44.647938 2024-02-12 21:31:44.657776 Jade Angelou \N 1 f \N \N \N +536 1 2027 \N 1111 \N BGS-311325 \N 2024-02-12 21:31:46.374245 2024-02-12 21:31:46.384281 Jade Angelou \N 1 f \N \N \N +537 1 2027 \N 1111 \N BGS-335412 \N 2024-02-12 21:32:35.83031 2024-02-12 21:32:35.877449 Jade Angelou \N 1 f \N \N \N +538 1 2027 \N 1111 \N BGS-412041 \N 2024-02-12 21:32:58.14588 2024-02-12 21:32:58.157412 Jade Angelou \N 1 f \N \N \N +539 1 2027 \N 1111 \N BGS-133421 \N 2024-02-12 21:33:19.543158 2024-02-12 21:33:19.559591 Jade Angelou \N 1 f \N \N \N +540 1 2027 \N 1111 \N BGS-355120 \N 2024-02-12 21:33:22.361898 2024-02-12 21:33:22.390987 Jade Angelou \N 1 f \N \N \N +541 1 2027 \N 1111 \N BGS-551051 \N 2024-02-12 21:33:23.668343 2024-02-12 21:33:23.679342 Jade Angelou \N 1 f \N \N \N +542 1 2027 \N 1111 \N BGS-451030 \N 2024-02-12 21:33:26.11421 2024-02-12 21:33:26.125926 Jade Angelou \N 1 f \N \N \N +543 1 2027 \N 1111 \N BGS-112310 \N 2024-02-12 21:33:28.357985 2024-02-12 21:33:28.405316 Jade Angelou \N 1 f \N \N \N +544 1 2027 \N 1111 \N BGS-532423 \N 2024-02-12 21:33:43.657818 2024-02-12 21:33:43.682844 Jade Angelou \N 1 f \N \N \N +545 1 2027 \N 1111 \N BGS-152004 \N 2024-02-12 21:33:47.75031 2024-02-12 21:33:47.780883 Jade Angelou \N 1 f \N \N \N +546 1 2027 \N 1111 \N BGS-431515 \N 2024-02-12 21:33:50.048143 2024-02-12 21:33:50.071239 Jade Angelou \N 1 f \N \N \N +547 1 2027 \N 1111 \N BGS-514530 \N 2024-02-12 21:34:38.43138 2024-02-12 21:34:38.445534 Jade Angelou \N 1 f \N \N \N +548 1 2027 \N 1111 \N BGS-031533 \N 2024-02-12 21:34:50.295245 2024-02-12 21:34:50.318505 Jade Angelou \N 1 f \N \N \N +549 1 2027 \N 1111 \N BGS-411520 \N 2024-02-12 21:35:02.934861 2024-02-12 21:35:02.96133 Jade Angelou \N 1 f \N \N \N +550 1 2027 \N 1111 \N BGS-012551 \N 2024-02-12 21:36:12.962057 2024-02-12 21:36:12.973856 Jade Angelou \N 1 f \N \N \N +551 1 2027 \N 1111 \N BGS-434341 \N 2024-02-12 21:36:21.089598 2024-02-12 21:36:21.098646 Jade Angelou \N 1 f \N \N \N +552 1 2027 \N 1111 \N BGS-504535 \N 2024-02-12 21:36:24.142034 2024-02-12 21:36:24.16681 Jade Angelou \N 1 f \N \N \N +553 1 2027 \N 1111 \N BGS-553455 \N 2024-02-12 21:36:24.267471 2024-02-12 21:36:24.279848 Jade Angelou \N 1 f \N \N \N +554 1 2027 \N 1111 \N BGS-142453 \N 2024-02-12 21:36:26.321211 2024-02-12 21:36:26.331152 Jade Angelou \N 1 f \N \N \N +555 1 2027 \N 1111 \N BGS-053402 \N 2024-02-12 21:36:27.763881 2024-02-12 21:36:27.77511 Jade Angelou \N 1 f \N \N \N +556 1 2027 \N 1111 \N BGS-242223 \N 2024-02-12 21:36:29.451936 2024-02-12 21:36:29.462337 Jade Angelou \N 1 f \N \N \N +557 1 2027 \N 1111 \N BGS-222550 \N 2024-02-12 21:36:30.724117 2024-02-12 21:36:30.734466 Jade Angelou \N 1 f \N \N \N +558 1 2027 \N 1111 \N BGS-143202 \N 2024-02-12 21:36:31.273117 2024-02-12 21:36:31.285391 Jade Angelou \N 1 f \N \N \N +559 1 2027 \N 1111 \N BGS-131510 \N 2024-02-12 21:36:32.328547 2024-02-12 21:36:32.339515 Jade Angelou \N 1 f \N \N \N +560 1 2027 \N 1111 \N BGS-034203 \N 2024-02-12 21:38:01.127506 2024-02-12 21:38:01.144484 Jade Angelou \N 1 f \N \N \N +561 1 2027 \N 1111 \N BGS-334502 \N 2024-02-12 21:38:03.060524 2024-02-12 21:38:03.070498 Jade Angelou \N 1 f \N \N \N +562 1 2027 \N 1111 \N BGS-515204 \N 2024-02-12 21:38:05.48801 2024-02-12 21:38:05.497824 Jade Angelou \N 1 f \N \N \N +563 1 2027 \N 1111 \N BGS-334451 \N 2024-02-12 21:38:09.0533 2024-02-12 21:38:09.072151 Jade Angelou \N 1 f \N \N \N +564 1 2027 \N 1111 \N BGS-414415 \N 2024-02-12 21:38:09.700263 2024-02-12 21:38:09.709287 Jade Angelou \N 1 f \N \N \N +565 1 2027 \N 1111 \N BGS-542554 \N 2024-02-12 21:38:22.250131 2024-02-12 21:38:22.297649 Jade Angelou \N 1 f \N \N \N +566 1 2027 \N 1111 \N BGS-013434 \N 2024-02-12 21:38:30.696913 2024-02-12 21:38:30.725562 Jade Angelou \N 1 f \N \N \N +567 1 2027 \N 1111 \N BGS-203503 \N 2024-02-12 21:38:33.811307 2024-02-12 21:38:33.84579 Jade Angelou \N 1 f \N \N \N +568 1 2027 \N 1111 \N BGS-132514 \N 2024-02-12 21:39:19.863425 2024-02-12 21:39:19.873945 Jade Angelou \N 1 f \N \N \N +569 1 2027 \N 1111 \N BGS-433034 \N 2024-02-12 21:39:44.225271 2024-02-12 21:39:44.270065 Jade Angelou \N 1 f \N \N \N +570 1 2027 \N 1111 \N BGS-105302 \N 2024-02-12 21:42:56.09733 2024-02-12 21:42:56.107869 Jade Angelou \N 1 f \N \N \N +572 1 2027 \N 1111 \N BGS-234254 \N 2024-02-12 21:43:03.674805 2024-02-12 21:43:03.684293 Jade Angelou \N 1 f \N \N \N +574 1 2027 \N 1111 \N BGS-502513 \N 2024-02-12 21:43:09.587944 2024-02-12 21:43:09.599024 Jade Angelou \N 1 f \N \N \N +580 1 2027 \N 1111 \N BGS-055012 \N 2024-02-12 21:44:20.923715 2024-02-12 21:44:20.939961 Jade Angelou \N 1 f \N \N \N +599 1 2027 \N 1111 \N BGS-103151 \N 2024-02-12 21:50:05.653553 2024-02-12 21:50:05.681248 Jade Angelou \N 1 f \N \N \N +605 1 2027 \N 1111 \N BGS-535045 \N 2024-02-12 21:50:57.299211 2024-02-12 21:50:57.323039 Jade Angelou \N 1 f \N \N \N +608 1 2027 \N 1111 \N BGS-223333 \N 2024-02-12 21:51:11.666001 2024-02-12 21:51:11.691321 Jade Angelou \N 1 f \N \N \N +609 1 2027 \N 1111 \N BGS-133232 \N 2024-02-12 21:52:24.447599 2024-02-12 21:52:24.457779 Jade Angelou \N 1 f \N \N \N +613 1 2027 \N 1111 \N BGS-243221 \N 2024-02-12 21:52:35.028314 2024-02-12 21:52:35.038395 Jade Angelou \N 1 f \N \N \N +614 1 2027 \N 1111 \N BGS-045313 \N 2024-02-12 21:52:38.223234 2024-02-12 21:52:38.232977 Jade Angelou \N 1 f \N \N \N +615 1 2027 \N 1111 \N BGS-432221 \N 2024-02-12 21:52:39.55106 2024-02-12 21:52:39.559885 Jade Angelou \N 1 f \N \N \N +618 1 2027 \N 1111 \N BGS-324310 \N 2024-02-12 21:52:42.468899 2024-02-12 21:52:42.479783 Jade Angelou \N 1 f \N \N \N +571 1 2027 \N 1111 \N BGS-144055 \N 2024-02-12 21:43:02.144121 2024-02-12 21:43:02.153416 Jade Angelou \N 1 f \N \N \N +573 1 2027 \N 1111 \N BGS-153014 \N 2024-02-12 21:43:06.345056 2024-02-12 21:43:06.355223 Jade Angelou \N 1 f \N \N \N +577 1 2027 \N 1111 \N BGS-232334 \N 2024-02-12 21:43:13.148968 2024-02-12 21:43:13.158301 Jade Angelou \N 1 f \N \N \N +581 1 2027 \N 1111 \N BGS-534503 \N 2024-02-12 21:44:44.740914 2024-02-12 21:44:44.765266 Jade Angelou \N 1 f \N \N \N +582 1 2027 \N 1111 \N BGS-125452 \N 2024-02-12 21:44:52.630574 2024-02-12 21:44:52.63967 Jade Angelou \N 1 f \N \N \N +603 1 2027 \N 1111 \N BGS-504215 \N 2024-02-12 21:50:38.234739 2024-02-12 21:50:38.244078 Jade Angelou \N 1 f \N \N \N +604 1 2027 \N 1111 \N BGS-154044 \N 2024-02-12 21:50:55.502871 2024-02-12 21:50:55.527121 Jade Angelou \N 1 f \N \N \N +575 1 2027 \N 1111 \N BGS-444241 \N 2024-02-12 21:43:11.843908 2024-02-12 21:43:11.865514 Jade Angelou \N 1 f \N \N \N +576 1 2027 \N 1111 \N BGS-342534 \N 2024-02-12 21:43:12.232522 2024-02-12 21:43:12.241947 Jade Angelou \N 1 f \N \N \N +578 1 2027 \N 1111 \N BGS-004224 \N 2024-02-12 21:43:14.268226 2024-02-12 21:43:14.279166 Jade Angelou \N 1 f \N \N \N +579 1 2027 \N 1111 \N BGS-213344 \N 2024-02-12 21:43:15.270065 2024-02-12 21:43:15.27896 Jade Angelou \N 1 f \N \N \N +583 1 2027 \N 1111 \N BGS-324314 \N 2024-02-12 21:46:02.793206 2024-02-12 21:46:02.823088 Jade Angelou \N 1 f \N \N \N +584 1 2027 \N 1111 \N BGS-231321 \N 2024-02-12 21:46:04.134319 2024-02-12 21:46:04.151693 Jade Angelou \N 1 f \N \N \N +585 1 2027 \N 1111 \N BGS-113231 \N 2024-02-12 21:46:05.092959 2024-02-12 21:46:05.103716 Jade Angelou \N 1 f \N \N \N +586 1 2027 \N 1111 \N BGS-502543 \N 2024-02-12 21:47:17.897313 2024-02-12 21:47:17.909091 Jade Angelou \N 1 f \N \N \N +587 1 2027 \N 1111 \N BGS-544023 \N 2024-02-12 21:47:39.474544 2024-02-12 21:47:39.501723 Jade Angelou \N 1 f \N \N \N +588 1 2027 \N 1111 \N BGS-435200 \N 2024-02-12 21:48:59.928409 2024-02-12 21:48:59.939099 Jade Angelou \N 1 f \N \N \N +589 1 2027 \N 1111 \N BGS-244233 \N 2024-02-12 21:49:06.013744 2024-02-12 21:49:06.025142 Jade Angelou \N 1 f \N \N \N +590 1 2027 \N 1111 \N BGS-155551 \N 2024-02-12 21:49:07.261402 2024-02-12 21:49:07.270661 Jade Angelou \N 1 f \N \N \N +591 1 2027 \N 1111 \N BGS-011532 \N 2024-02-12 21:49:08.520735 2024-02-12 21:49:08.531701 Jade Angelou \N 1 f \N \N \N +592 1 2027 \N 1111 \N BGS-245350 \N 2024-02-12 21:49:11.959953 2024-02-12 21:49:11.970044 Jade Angelou \N 1 f \N \N \N +593 1 2027 \N 1111 \N BGS-044413 \N 2024-02-12 21:49:13.139538 2024-02-12 21:49:13.148791 Jade Angelou \N 1 f \N \N \N +594 1 2027 \N 1111 \N BGS-330030 \N 2024-02-12 21:49:13.296466 2024-02-12 21:49:13.310114 Jade Angelou \N 1 f \N \N \N +595 1 2027 \N 1111 \N BGS-414151 \N 2024-02-12 21:49:13.787969 2024-02-12 21:49:13.80262 Jade Angelou \N 1 f \N \N \N +596 1 2027 \N 1111 \N BGS-303131 \N 2024-02-12 21:49:15.72631 2024-02-12 21:49:15.740424 Jade Angelou \N 1 f \N \N \N +597 1 2027 \N 1111 \N BGS-004444 \N 2024-02-12 21:49:15.891895 2024-02-12 21:49:15.901587 Jade Angelou \N 1 f \N \N \N +598 1 2027 \N 1111 \N BGS-311120 \N 2024-02-12 21:49:55.435322 2024-02-12 21:49:55.462153 Jade Angelou \N 1 f \N \N \N +600 1 2027 \N 1111 \N BGS-405112 \N 2024-02-12 21:50:08.354285 2024-02-12 21:50:08.363825 Jade Angelou \N 1 f \N \N \N +601 1 2027 \N 1111 \N BGS-211050 \N 2024-02-12 21:50:33.776876 2024-02-12 21:50:33.786966 Jade Angelou \N 1 f \N \N \N +602 1 2027 \N 1111 \N BGS-505115 \N 2024-02-12 21:50:34.677888 2024-02-12 21:50:34.687286 Jade Angelou \N 1 f \N \N \N +606 1 2027 \N 1111 \N BGS-142505 \N 2024-02-12 21:50:59.300702 2024-02-12 21:50:59.325358 Jade Angelou \N 1 f \N \N \N +607 1 2027 \N 1111 \N BGS-324155 \N 2024-02-12 21:51:05.367648 2024-02-12 21:51:05.410606 Jade Angelou \N 1 f \N \N \N +610 1 2027 \N 1111 \N BGS-031335 \N 2024-02-12 21:52:29.924184 2024-02-12 21:52:29.933333 Jade Angelou \N 1 f \N \N \N +611 1 2027 \N 1111 \N BGS-123145 \N 2024-02-12 21:52:31.310278 2024-02-12 21:52:31.319374 Jade Angelou \N 1 f \N \N \N +612 1 2027 \N 1111 \N BGS-004051 \N 2024-02-12 21:52:33.665865 2024-02-12 21:52:33.675163 Jade Angelou \N 1 f \N \N \N +616 1 2027 \N 1111 \N BGS-531340 \N 2024-02-12 21:52:40.868987 2024-02-12 21:52:40.877693 Jade Angelou \N 1 f \N \N \N +617 1 2027 \N 1111 \N BGS-020040 \N 2024-02-12 21:52:41.46646 2024-02-12 21:52:41.476202 Jade Angelou \N 1 f \N \N \N +619 1 2027 \N 1111 \N BGS-510241 \N 2024-02-12 21:53:32.449016 2024-02-12 21:53:32.461518 Jade Angelou \N 1 f \N \N \N +620 1 2027 \N 1111 \N BGS-354540 \N 2024-02-12 21:53:37.700493 2024-02-12 21:53:37.710392 Jade Angelou \N 1 f \N \N \N +621 1 2027 \N 1111 \N BGS-034353 \N 2024-02-12 21:53:57.945393 2024-02-12 21:53:57.955445 Jade Angelou \N 1 f \N \N \N +622 1 2027 \N 1111 \N BGS-001152 \N 2024-02-12 21:54:08.518341 2024-02-12 21:54:08.53267 Jade Angelou \N 1 f \N \N \N +623 1 2027 \N 1111 \N BGS-552323 \N 2024-02-12 21:54:15.920652 2024-02-12 21:54:15.938157 Jade Angelou \N 1 f \N \N \N +624 1 2027 \N 1111 \N BGS-300533 \N 2024-02-12 21:54:21.568541 2024-02-12 21:54:21.593417 Jade Angelou \N 1 f \N \N \N +625 1 2027 \N 1111 \N BGS-505055 \N 2024-02-12 21:54:24.668746 2024-02-12 21:54:24.682097 Jade Angelou \N 1 f \N \N \N +626 1 2027 \N 1111 \N BGS-423052 \N 2024-02-12 21:54:29.415098 2024-02-12 21:54:29.441397 Jade Angelou \N 1 f \N \N \N +627 1 2027 \N 1111 \N BGS-121504 \N 2024-02-12 21:54:39.947876 2024-02-12 21:54:39.97494 Jade Angelou \N 1 f \N \N \N +628 1 2027 \N 1111 \N BGS-221550 \N 2024-02-12 21:54:45.700223 2024-02-12 21:54:45.734477 Jade Angelou \N 1 f \N \N \N +629 1 2027 \N 1111 \N BGS-301225 \N 2024-02-12 21:55:32.929477 2024-02-12 21:55:32.979152 Jade Angelou \N 1 f \N \N \N +630 1 2027 \N 1111 \N BGS-025000 \N 2024-02-12 21:55:50.647397 2024-02-12 21:55:50.658075 Jade Angelou \N 1 f \N \N \N +631 1 2027 \N 1111 \N BGS-454232 \N 2024-02-12 21:56:12.09904 2024-02-12 21:56:12.123599 Jade Angelou \N 1 f \N \N \N +632 1 2027 \N 1111 \N BGS-250153 \N 2024-02-12 21:57:23.410184 2024-02-12 21:57:23.420013 Jade Angelou \N 1 f \N \N \N +633 1 2027 \N 1111 \N BGS-313114 \N 2024-02-12 21:57:29.150725 2024-02-12 21:57:29.160216 Jade Angelou \N 1 f \N \N \N +634 1 2027 \N 1111 \N BGS-011005 \N 2024-02-12 21:57:31.925777 2024-02-12 21:57:31.935712 Jade Angelou \N 1 f \N \N \N +635 1 2027 \N 1111 \N BGS-555053 \N 2024-02-12 21:57:35.258129 2024-02-12 21:57:35.268099 Jade Angelou \N 1 f \N \N \N +636 1 2027 \N 1111 \N BGS-200121 \N 2024-02-12 21:57:37.508057 2024-02-12 21:57:37.518888 Jade Angelou \N 1 f \N \N \N +637 1 2027 \N 1111 \N BGS-120503 \N 2024-02-12 21:57:38.512545 2024-02-12 21:57:38.522996 Jade Angelou \N 1 f \N \N \N +638 1 2027 \N 1111 \N BGS-535152 \N 2024-02-12 21:57:40.632614 2024-02-12 21:57:40.642888 Jade Angelou \N 1 f \N \N \N +639 1 2027 \N 1111 \N BGS-342042 \N 2024-02-12 21:57:40.803028 2024-02-12 21:57:40.812644 Jade Angelou \N 1 f \N \N \N +640 1 2027 \N 1111 \N BGS-542450 \N 2024-02-12 21:57:41.247459 2024-02-12 21:57:41.257943 Jade Angelou \N 1 f \N \N \N +641 1 2027 \N 1111 \N BGS-540502 \N 2024-02-12 21:57:41.523531 2024-02-12 21:57:41.533511 Jade Angelou \N 1 f \N \N \N +642 1 2027 \N 1111 \N BGS-411330 \N 2024-02-12 21:58:26.399032 2024-02-12 21:58:26.415949 Jade Angelou \N 1 f \N \N \N +643 1 2027 \N 1111 \N BGS-354310 \N 2024-02-12 21:58:33.96768 2024-02-12 21:58:33.992248 Jade Angelou \N 1 f \N \N \N +644 1 2027 \N 1111 \N BGS-053240 \N 2024-02-12 21:58:37.019615 2024-02-12 21:58:37.037532 Jade Angelou \N 1 f \N \N \N +645 1 2027 \N 1111 \N BGS-140033 \N 2024-02-12 21:59:01.938435 2024-02-12 21:59:01.95526 Jade Angelou \N 1 f \N \N \N +646 1 2027 \N 1111 \N BGS-421123 \N 2024-02-12 21:59:17.551956 2024-02-12 21:59:17.561681 Jade Angelou \N 1 f \N \N \N +647 1 2027 \N 1111 \N BGS-205425 \N 2024-02-12 21:59:21.583681 2024-02-12 21:59:21.592613 Jade Angelou \N 1 f \N \N \N +648 1 2027 \N 1111 \N BGS-230012 \N 2024-02-12 21:59:25.545401 2024-02-12 21:59:25.568395 Jade Angelou \N 1 f \N \N \N +649 1 2027 \N 1111 \N BGS-532522 \N 2024-02-12 21:59:39.50976 2024-02-12 21:59:39.550514 Jade Angelou \N 1 f \N \N \N +650 1 2027 \N 1111 \N BGS-453452 \N 2024-02-12 21:59:42.929617 2024-02-12 21:59:42.95595 Jade Angelou \N 1 f \N \N \N +651 1 2027 \N 1111 \N BGS-413252 \N 2024-02-12 22:00:29.58118 2024-02-12 22:00:29.59017 Jade Angelou \N 1 f \N \N \N +652 1 2027 \N 1111 \N BGS-442251 \N 2024-02-12 22:00:47.681486 2024-02-12 22:00:47.690145 Jade Angelou \N 1 f \N \N \N +653 1 2027 \N 1111 \N BGS-324333 \N 2024-02-12 22:00:54.016849 2024-02-12 22:00:54.042654 Jade Angelou \N 1 f \N \N \N +654 1 2027 \N 1111 \N BGS-013340 \N 2024-02-12 22:01:09.106476 2024-02-12 22:01:09.140676 Jade Angelou \N 1 f \N \N \N +655 1 2027 \N 1111 \N BGS-252434 \N 2024-02-12 22:02:27.241769 2024-02-12 22:02:27.251101 Jade Angelou \N 1 f \N \N \N +656 1 2027 \N 1111 \N BGS-403514 \N 2024-02-12 22:02:40.670984 2024-02-12 22:02:40.696128 Jade Angelou \N 1 f \N \N \N +662 1 2027 \N 1111 \N BGS-002403 \N 2024-02-12 22:02:51.663757 2024-02-12 22:02:51.673978 Jade Angelou \N 1 f \N \N \N +663 1 2027 \N 1111 \N BGS-331140 \N 2024-02-12 22:02:51.828127 2024-02-12 22:02:51.838468 Jade Angelou \N 1 f \N \N \N +664 1 2027 \N 1111 \N BGS-054411 \N 2024-02-12 22:02:52.835236 2024-02-12 22:02:52.84454 Jade Angelou \N 1 f \N \N \N +671 1 2027 \N 1111 \N BGS-302113 \N 2024-02-12 22:04:40.46217 2024-02-12 22:04:40.487565 Jade Angelou \N 1 f \N \N \N +673 1 2027 \N 1111 \N BGS-133100 \N 2024-02-12 22:04:48.535809 2024-02-12 22:04:48.559259 Jade Angelou \N 1 f \N \N \N +657 1 2027 \N 1111 \N BGS-403033 \N 2024-02-12 22:02:42.079845 2024-02-12 22:02:42.090607 Jade Angelou \N 1 f \N \N \N +659 1 2027 \N 1111 \N BGS-204430 \N 2024-02-12 22:02:47.665757 2024-02-12 22:02:47.676295 Jade Angelou \N 1 f \N \N \N +660 1 2027 \N 1111 \N BGS-114555 \N 2024-02-12 22:02:49.046681 2024-02-12 22:02:49.057627 Jade Angelou \N 1 f \N \N \N +661 1 2027 \N 1111 \N BGS-521540 \N 2024-02-12 22:02:49.504699 2024-02-12 22:02:49.514433 Jade Angelou \N 1 f \N \N \N +667 1 2027 \N 1111 \N BGS-511433 \N 2024-02-12 22:03:57.032104 2024-02-12 22:03:57.049174 Jade Angelou \N 1 f \N \N \N +668 1 2027 \N 1111 \N BGS-113403 \N 2024-02-12 22:04:17.251608 2024-02-12 22:04:17.265344 Jade Angelou \N 1 f \N \N \N +669 1 2027 \N 1111 \N BGS-530445 \N 2024-02-12 22:04:27.596137 2024-02-12 22:04:27.605156 Jade Angelou \N 1 f \N \N \N +670 1 2027 \N 1111 \N BGS-431315 \N 2024-02-12 22:04:38.331919 2024-02-12 22:04:38.354651 Jade Angelou \N 1 f \N \N \N +658 1 2027 \N 1111 \N BGS-054053 \N 2024-02-12 22:02:44.748113 2024-02-12 22:02:44.767984 Jade Angelou \N 1 f \N \N \N +665 1 2027 \N 1111 \N BGS-411002 \N 2024-02-12 22:03:40.093147 2024-02-12 22:03:40.118219 Jade Angelou \N 1 f \N \N \N +666 1 2027 \N 1111 \N BGS-041241 \N 2024-02-12 22:03:42.666929 2024-02-12 22:03:42.694279 Jade Angelou \N 1 f \N \N \N +672 1 2027 \N 1111 \N BGS-114254 \N 2024-02-12 22:04:45.198822 2024-02-12 22:04:45.241698 Jade Angelou \N 1 f \N \N \N +674 1 2027 \N 1111 \N BGS-420010 \N 2024-02-12 22:06:00.846674 2024-02-12 22:06:00.855909 Jade Angelou \N 1 f \N \N \N +675 1 2027 \N 1111 \N BGS-333354 \N 2024-02-12 22:06:08.050333 2024-02-12 22:06:08.061294 Jade Angelou \N 1 f \N \N \N +676 1 2027 \N 1111 \N BGS-114124 \N 2024-02-12 22:06:10.687993 2024-02-12 22:06:10.697009 Jade Angelou \N 1 f \N \N \N +677 1 2027 \N 1111 \N BGS-120512 \N 2024-02-12 22:06:12.896489 2024-02-12 22:06:12.906405 Jade Angelou \N 1 f \N \N \N +678 1 2027 \N 1111 \N BGS-135200 \N 2024-02-12 22:06:13.559302 2024-02-12 22:06:13.569047 Jade Angelou \N 1 f \N \N \N +679 1 2027 \N 1111 \N BGS-503005 \N 2024-02-12 22:06:15.536445 2024-02-12 22:06:15.546689 Jade Angelou \N 1 f \N \N \N +680 1 2027 \N 1111 \N BGS-024010 \N 2024-02-12 22:06:16.795418 2024-02-12 22:06:16.804072 Jade Angelou \N 1 f \N \N \N +681 1 2027 \N 1111 \N BGS-141201 \N 2024-02-12 22:06:17.782836 2024-02-12 22:06:17.793277 Jade Angelou \N 1 f \N \N \N +682 1 2027 \N 1111 \N BGS-033121 \N 2024-02-12 22:06:19.116831 2024-02-12 22:06:19.127475 Jade Angelou \N 1 f \N \N \N +683 1 2027 \N 1111 \N BGS-534155 \N 2024-02-12 22:06:19.203875 2024-02-12 22:06:19.213401 Jade Angelou \N 1 f \N \N \N +684 1 2027 \N 1111 \N BGS-224125 \N 2024-02-12 22:07:17.47878 2024-02-12 22:07:17.489075 Jade Angelou \N 1 f \N \N \N +685 1 2027 \N 1111 \N BGS-312313 \N 2024-02-12 22:07:54.694023 2024-02-12 22:07:54.703522 Jade Angelou \N 1 f \N \N \N +686 1 2027 \N 1111 \N BGS-514443 \N 2024-02-12 22:08:11.102967 2024-02-12 22:08:11.147533 Jade Angelou \N 1 f \N \N \N +687 1 2027 \N 1111 \N BGS-134113 \N 2024-02-12 22:08:18.765145 2024-02-12 22:08:18.789156 Jade Angelou \N 1 f \N \N \N +688 1 2027 \N 1111 \N BGS-510001 \N 2024-02-12 22:09:12.900271 2024-02-12 22:09:12.945987 Jade Angelou \N 1 f \N \N \N +689 1 2027 \N 1111 \N BGS-310301 \N 2024-02-12 22:09:21.294418 2024-02-12 22:09:21.303916 Jade Angelou \N 1 f \N \N \N +690 1 2027 \N 1111 \N BGS-055534 \N 2024-02-12 22:09:24.909921 2024-02-12 22:09:24.957341 Jade Angelou \N 1 f \N \N \N +691 1 2027 \N 1111 \N BGS-151403 \N 2024-02-12 22:09:28.368807 2024-02-12 22:09:28.377834 Jade Angelou \N 1 f \N \N \N +692 1 2027 \N 1111 \N BGS-145034 \N 2024-02-12 22:09:37.403412 2024-02-12 22:09:37.427565 Jade Angelou \N 1 f \N \N \N +693 1 2027 \N 1111 \N BGS-342103 \N 2024-02-12 22:09:42.726466 2024-02-12 22:09:42.759714 Jade Angelou \N 1 f \N \N \N +694 1 2027 \N 1111 \N BGS-051543 \N 2024-02-12 22:09:49.777175 2024-02-12 22:09:49.80224 Jade Angelou \N 1 f \N \N \N +695 1 2027 \N 1111 \N BGS-142233 \N 2024-02-12 22:10:18.072794 2024-02-12 22:10:18.097168 Jade Angelou \N 1 f \N \N \N +696 1 2027 \N 1111 \N BGS-212013 \N 2024-02-12 22:11:28.291304 2024-02-12 22:11:28.300605 Jade Angelou \N 1 f \N \N \N +697 1 2027 \N 1111 \N BGS-444212 \N 2024-02-12 22:11:35.412948 2024-02-12 22:11:35.423292 Jade Angelou \N 1 f \N \N \N +698 1 2027 \N 1111 \N BGS-403404 \N 2024-02-12 22:11:38.055126 2024-02-12 22:11:38.065108 Jade Angelou \N 1 f \N \N \N +699 1 2027 \N 1111 \N BGS-102444 \N 2024-02-12 22:11:40.369757 2024-02-12 22:11:40.379387 Jade Angelou \N 1 f \N \N \N +700 1 2027 \N 1111 \N BGS-402142 \N 2024-02-12 22:11:42.306813 2024-02-12 22:11:42.316369 Jade Angelou \N 1 f \N \N \N +701 1 2027 \N 1111 \N BGS-055005 \N 2024-02-12 22:11:42.709225 2024-02-12 22:11:42.718775 Jade Angelou \N 1 f \N \N \N +702 1 2027 \N 1111 \N BGS-501124 \N 2024-02-12 22:11:43.335651 2024-02-12 22:11:43.348838 Jade Angelou \N 1 f \N \N \N +703 1 2027 \N 1111 \N BGS-103320 \N 2024-02-12 22:11:46.060106 2024-02-12 22:11:46.069402 Jade Angelou \N 1 f \N \N \N +704 1 2027 \N 1111 \N BGS-511241 \N 2024-02-12 22:11:46.515354 2024-02-12 22:11:46.525241 Jade Angelou \N 1 f \N \N \N +705 1 2027 \N 1111 \N BGS-242051 \N 2024-02-12 22:11:47.381811 2024-02-12 22:11:47.391519 Jade Angelou \N 1 f \N \N \N +706 1 2027 \N 1111 \N BGS-134155 \N 2024-02-12 22:12:24.279969 2024-02-12 22:12:24.303631 Jade Angelou \N 1 f \N \N \N +707 1 2027 \N 1111 \N BGS-003515 \N 2024-02-12 22:13:19.197583 2024-02-12 22:13:19.206912 Jade Angelou \N 1 f \N \N \N +708 1 2027 \N 1111 \N BGS-115441 \N 2024-02-12 22:13:22.238889 2024-02-12 22:13:22.253972 Jade Angelou \N 1 f \N \N \N +709 1 2027 \N 1111 \N BGS-020251 \N 2024-02-12 22:13:48.320688 2024-02-12 22:13:48.349695 Jade Angelou \N 1 f \N \N \N +710 1 2027 \N 1111 \N BGS-553025 \N 2024-02-12 22:14:37.452121 2024-02-12 22:14:37.466876 Jade Angelou \N 1 f \N \N \N +711 1 2027 \N 1111 \N BGS-310424 \N 2024-02-12 22:15:01.514682 2024-02-12 22:15:01.524337 Jade Angelou \N 1 f \N \N \N +712 1 2027 \N 1111 \N BGS-024043 \N 2024-02-12 22:15:23.078684 2024-02-12 22:15:23.10255 Jade Angelou \N 1 f \N \N \N +713 1 2027 \N 1111 \N BGS-411241 \N 2024-02-12 22:16:42.700843 2024-02-12 22:16:42.710133 Jade Angelou \N 1 f \N \N \N +714 1 2027 \N 1111 \N BGS-113045 \N 2024-02-12 22:16:47.939393 2024-02-12 22:16:47.950379 Jade Angelou \N 1 f \N \N \N +715 1 2027 \N 1111 \N BGS-514151 \N 2024-02-12 22:16:51.435192 2024-02-12 22:16:51.444347 Jade Angelou \N 1 f \N \N \N +716 1 2027 \N 1111 \N BGS-452050 \N 2024-02-12 22:16:53.477888 2024-02-12 22:16:53.487937 Jade Angelou \N 1 f \N \N \N +717 1 2027 \N 1111 \N BGS-214224 \N 2024-02-12 22:16:54.315119 2024-02-12 22:16:54.324641 Jade Angelou \N 1 f \N \N \N +718 1 2027 \N 1111 \N BGS-555031 \N 2024-02-12 22:16:54.490119 2024-02-12 22:16:54.499588 Jade Angelou \N 1 f \N \N \N +719 1 2027 \N 1111 \N BGS-053500 \N 2024-02-12 22:16:57.385586 2024-02-12 22:16:57.396249 Jade Angelou \N 1 f \N \N \N +720 1 2027 \N 1111 \N BGS-232455 \N 2024-02-12 22:16:58.144074 2024-02-12 22:16:58.154395 Jade Angelou \N 1 f \N \N \N +721 1 2027 \N 1111 \N BGS-101235 \N 2024-02-12 22:16:58.530691 2024-02-12 22:16:58.540124 Jade Angelou \N 1 f \N \N \N +722 1 2027 \N 1111 \N BGS-403400 \N 2024-02-12 22:16:58.605715 2024-02-12 22:16:58.615394 Jade Angelou \N 1 f \N \N \N +723 1 2027 \N 1111 \N BGS-005245 \N 2024-02-12 22:17:53.003852 2024-02-12 22:17:53.040926 Jade Angelou \N 1 f \N \N \N +724 1 2027 \N 1111 \N BGS-104531 \N 2024-02-12 22:17:53.658215 2024-02-12 22:17:53.669123 Jade Angelou \N 1 f \N \N \N +725 1 2027 \N 1111 \N BGS-434513 \N 2024-02-12 22:18:04.625932 2024-02-12 22:18:04.635652 Jade Angelou \N 1 f \N \N \N +726 1 2027 \N 1111 \N BGS-502245 \N 2024-02-12 22:18:19.340513 2024-02-12 22:18:19.353355 Jade Angelou \N 1 f \N \N \N +727 1 2027 \N 1111 \N BGS-412033 \N 2024-02-12 22:18:22.571819 2024-02-12 22:18:22.580444 Jade Angelou \N 1 f \N \N \N +728 1 2027 \N 1111 \N BGS-321213 \N 2024-02-12 22:18:29.788264 2024-02-12 22:18:29.829417 Jade Angelou \N 1 f \N \N \N +729 1 2027 \N 1111 \N BGS-421255 \N 2024-02-12 22:18:40.466802 2024-02-12 22:18:40.493103 Jade Angelou \N 1 f \N \N \N +730 1 2027 \N 1111 \N BGS-240513 \N 2024-02-12 22:18:43.017457 2024-02-12 22:18:43.036283 Jade Angelou \N 1 f \N \N \N +731 1 2027 \N 1111 \N BGS-514302 \N 2024-02-12 22:18:45.493705 2024-02-12 22:18:45.503157 Jade Angelou \N 1 f \N \N \N +732 1 2027 \N 1111 \N BGS-122420 \N 2024-02-12 22:18:46.668101 2024-02-12 22:18:46.692642 Jade Angelou \N 1 f \N \N \N +733 1 2027 \N 1111 \N BGS-304214 \N 2024-02-12 22:20:18.252359 2024-02-12 22:20:18.275164 Jade Angelou \N 1 f \N \N \N +734 1 2027 \N 1111 \N BGS-404040 \N 2024-02-12 22:21:33.641556 2024-02-12 22:21:33.654664 Jade Angelou \N 1 f \N \N \N +735 1 2027 \N 1111 \N BGS-101554 \N 2024-02-12 22:21:41.552533 2024-02-12 22:21:41.565048 Jade Angelou \N 1 f \N \N \N +736 1 2027 \N 1111 \N BGS-504502 \N 2024-02-12 22:21:42.330371 2024-02-12 22:21:42.340627 Jade Angelou \N 1 f \N \N \N +737 1 2027 \N 1111 \N BGS-013523 \N 2024-02-12 22:21:44.680431 2024-02-12 22:21:44.690106 Jade Angelou \N 1 f \N \N \N +738 1 2027 \N 1111 \N BGS-245022 \N 2024-02-12 22:21:46.100254 2024-02-12 22:21:46.109198 Jade Angelou \N 1 f \N \N \N +739 1 2027 \N 1111 \N BGS-030500 \N 2024-02-12 22:21:46.842294 2024-02-12 22:21:46.852176 Jade Angelou \N 1 f \N \N \N +741 1 2027 \N 1111 \N BGS-411150 \N 2024-02-12 22:21:49.270834 2024-02-12 22:21:49.282242 Jade Angelou \N 1 f \N \N \N +742 1 2027 \N 1111 \N BGS-050523 \N 2024-02-12 22:21:50.08429 2024-02-12 22:21:50.094218 Jade Angelou \N 1 f \N \N \N +740 1 2027 \N 1111 \N BGS-441053 \N 2024-02-12 22:21:49.11394 2024-02-12 22:21:49.125203 Jade Angelou \N 1 f \N \N \N +743 1 2027 \N 1111 \N BGS-345542 \N 2024-02-12 22:21:51.614908 2024-02-12 22:21:51.62422 Jade Angelou \N 1 f \N \N \N +744 1 2027 \N 1111 \N BGS-052355 \N 2024-02-12 22:22:28.653587 2024-02-12 22:22:28.678349 Jade Angelou \N 1 f \N \N \N +745 1 2027 \N 1111 \N BGS-254302 \N 2024-02-12 22:22:40.541515 2024-02-12 22:22:40.569641 Jade Angelou \N 1 f \N \N \N +746 1 2027 \N 1111 \N BGS-432445 \N 2024-02-12 22:22:49.229308 2024-02-12 22:22:49.245712 Jade Angelou \N 1 f \N \N \N +747 1 2027 \N 1111 \N BGS-032054 \N 2024-02-12 22:23:04.616281 2024-02-12 22:23:04.629705 Jade Angelou \N 1 f \N \N \N +748 1 2027 \N 1111 \N BGS-305514 \N 2024-02-12 22:23:11.492504 2024-02-12 22:23:11.509365 Jade Angelou \N 1 f \N \N \N +749 1 2027 \N 1111 \N BGS-432235 \N 2024-02-12 22:23:29.225772 2024-02-12 22:23:29.25131 Jade Angelou \N 1 f \N \N \N +750 1 2027 \N 1111 \N BGS-432035 \N 2024-02-12 22:23:35.697896 2024-02-12 22:23:35.734436 Jade Angelou \N 1 f \N \N \N +751 1 2027 \N 1111 \N BGS-455213 \N 2024-02-12 22:23:36.342589 2024-02-12 22:23:36.361272 Jade Angelou \N 1 f \N \N \N +752 1 2027 \N 1111 \N BGS-031255 \N 2024-02-12 22:23:41.68405 2024-02-12 22:23:41.709999 Jade Angelou \N 1 f \N \N \N +753 1 2027 \N 1111 \N BGS-221555 \N 2024-02-12 22:23:57.279067 2024-02-12 22:23:57.304627 Jade Angelou \N 1 f \N \N \N +754 1 2027 \N 1111 \N BGS-054200 \N 2024-02-12 22:26:06.051034 2024-02-12 22:26:06.062637 Jade Angelou \N 1 f \N \N \N +755 1 2027 \N 1111 \N BGS-213103 \N 2024-02-12 22:26:11.187201 2024-02-12 22:26:11.196444 Jade Angelou \N 1 f \N \N \N +756 1 2027 \N 1111 \N BGS-120452 \N 2024-02-12 22:26:13.95081 2024-02-12 22:26:13.960458 Jade Angelou \N 1 f \N \N \N +757 1 2027 \N 1111 \N BGS-301205 \N 2024-02-12 22:26:16.754671 2024-02-12 22:26:16.763742 Jade Angelou \N 1 f \N \N \N +758 1 2027 \N 1111 \N BGS-050055 \N 2024-02-12 22:26:16.907908 2024-02-12 22:26:16.917535 Jade Angelou \N 1 f \N \N \N +759 1 2027 \N 1111 \N BGS-502530 \N 2024-02-12 22:26:18.63616 2024-02-12 22:26:18.645646 Jade Angelou \N 1 f \N \N \N +760 1 2027 \N 1111 \N BGS-025225 \N 2024-02-12 22:26:19.273497 2024-02-12 22:26:19.285388 Jade Angelou \N 1 f \N \N \N +761 1 2027 \N 1111 \N BGS-203230 \N 2024-02-12 22:26:21.676818 2024-02-12 22:26:21.695345 Jade Angelou \N 1 f \N \N \N +762 1 2027 \N 1111 \N BGS-100403 \N 2024-02-12 22:26:21.738724 2024-02-12 22:26:21.749186 Jade Angelou \N 1 f \N \N \N +763 1 2027 \N 1111 \N BGS-435311 \N 2024-02-12 22:26:23.574692 2024-02-12 22:26:23.586684 Jade Angelou \N 1 f \N \N \N +764 1 2027 \N 1111 \N BGS-034311 \N 2024-02-12 22:27:12.901331 2024-02-12 22:27:12.927477 Jade Angelou \N 1 f \N \N \N +765 1 2027 \N 1111 \N BGS-134543 \N 2024-02-12 22:27:17.830463 2024-02-12 22:27:17.848445 Jade Angelou \N 1 f \N \N \N +766 1 2027 \N 1111 \N BGS-124333 \N 2024-02-12 22:27:19.827519 2024-02-12 22:27:19.836677 Jade Angelou \N 1 f \N \N \N +767 1 2027 \N 1111 \N BGS-530343 \N 2024-02-12 22:27:49.250158 2024-02-12 22:27:49.262732 Jade Angelou \N 1 f \N \N \N +768 1 2027 \N 1111 \N BGS-402143 \N 2024-02-12 22:28:06.024579 2024-02-12 22:28:06.033493 Jade Angelou \N 1 f \N \N \N +769 1 2027 \N 1111 \N BGS-043525 \N 2024-02-12 22:28:13.14831 2024-02-12 22:28:13.172158 Jade Angelou \N 1 f \N \N \N +770 1 2027 \N 1111 \N BGS-350555 \N 2024-02-12 22:28:16.703123 2024-02-12 22:28:16.730018 Jade Angelou \N 1 f \N \N \N +771 1 2027 \N 1111 \N BGS-320224 \N 2024-02-12 22:28:27.144242 2024-02-12 22:28:27.169432 Jade Angelou \N 1 f \N \N \N +772 1 2027 \N 1111 \N BGS-152215 \N 2024-02-12 22:30:30.251962 2024-02-12 22:30:30.260762 Jade Angelou \N 1 f \N \N \N +773 1 2027 \N 1111 \N BGS-452411 \N 2024-02-12 22:30:39.913611 2024-02-12 22:30:39.929271 Jade Angelou \N 1 f \N \N \N +774 1 2027 \N 1111 \N BGS-343255 \N 2024-02-12 22:30:43.818455 2024-02-12 22:30:43.829913 Jade Angelou \N 1 f \N \N \N +775 1 2027 \N 1111 \N BGS-054113 \N 2024-02-12 22:30:44.166297 2024-02-12 22:30:44.178698 Jade Angelou \N 1 f \N \N \N +776 1 2027 \N 1111 \N BGS-123201 \N 2024-02-12 22:30:44.570014 2024-02-12 22:30:44.579376 Jade Angelou \N 1 f \N \N \N +777 1 2027 \N 1111 \N BGS-542251 \N 2024-02-12 22:30:47.550897 2024-02-12 22:30:47.570175 Jade Angelou \N 1 f \N \N \N +778 1 2027 \N 1111 \N BGS-303530 \N 2024-02-12 22:30:47.947786 2024-02-12 22:30:47.957738 Jade Angelou \N 1 f \N \N \N +779 1 2027 \N 1111 \N BGS-035351 \N 2024-02-12 22:30:48.638578 2024-02-12 22:30:48.648694 Jade Angelou \N 1 f \N \N \N +780 1 2027 \N 1111 \N BGS-504150 \N 2024-02-12 22:30:50.751667 2024-02-12 22:30:50.760651 Jade Angelou \N 1 f \N \N \N +781 1 2027 \N 1111 \N BGS-213334 \N 2024-02-12 22:30:51.52002 2024-02-12 22:30:51.532265 Jade Angelou \N 1 f \N \N \N +782 1 2027 \N 1111 \N BGS-541540 \N 2024-02-12 22:32:18.314166 2024-02-12 22:32:18.329702 Jade Angelou \N 1 f \N \N \N +783 1 2027 \N 1111 \N BGS-544212 \N 2024-02-12 22:32:29.159458 2024-02-12 22:32:29.174934 Jade Angelou \N 1 f \N \N \N +784 1 2027 \N 1111 \N BGS-143042 \N 2024-02-12 22:32:53.463619 2024-02-12 22:32:53.48899 Jade Angelou \N 1 f \N \N \N +785 1 2027 \N 1111 \N BGS-422020 \N 2024-02-12 22:33:41.796945 2024-02-12 22:33:41.815158 Jade Angelou \N 1 f \N \N \N +786 1 2027 \N 1111 \N BGS-405313 \N 2024-02-12 22:33:56.674102 2024-02-12 22:33:56.690819 Jade Angelou \N 1 f \N \N \N +787 1 2027 \N 1111 \N BGS-240221 \N 2024-02-12 22:34:06.130905 2024-02-12 22:34:06.153552 Jade Angelou \N 1 f \N \N \N +788 1 2027 \N 1111 \N BGS-223541 \N 2024-02-12 22:34:18.157399 2024-02-12 22:34:18.18108 Jade Angelou \N 1 f \N \N \N +789 1 2027 \N 1111 \N BGS-524031 \N 2024-02-12 22:35:00.926055 2024-02-12 22:35:00.940444 Jade Angelou \N 1 f \N \N \N +790 1 2027 \N 1111 \N BGS-423122 \N 2024-02-12 22:35:22.284569 2024-02-12 22:35:22.31056 Jade Angelou \N 1 f \N \N \N +791 1 2027 \N 1111 \N BGS-532124 \N 2024-02-12 22:36:32.082751 2024-02-12 22:36:32.091825 Jade Angelou \N 1 f \N \N \N +792 1 2027 \N 1111 \N BGS-300342 \N 2024-02-12 22:36:39.207313 2024-02-12 22:36:39.216823 Jade Angelou \N 1 f \N \N \N +793 1 2027 \N 1111 \N BGS-241404 \N 2024-02-12 22:36:40.620891 2024-02-12 22:36:40.631395 Jade Angelou \N 1 f \N \N \N +794 1 2027 \N 1111 \N BGS-320002 \N 2024-02-12 22:36:40.77902 2024-02-12 22:36:40.789043 Jade Angelou \N 1 f \N \N \N +795 1 2027 \N 1111 \N BGS-001205 \N 2024-02-12 22:36:44.008184 2024-02-12 22:36:44.017697 Jade Angelou \N 1 f \N \N \N +796 1 2027 \N 1111 \N BGS-550354 \N 2024-02-12 22:36:45.138869 2024-02-12 22:36:45.148452 Jade Angelou \N 1 f \N \N \N +797 1 2027 \N 1111 \N BGS-150223 \N 2024-02-12 22:36:47.104855 2024-02-12 22:36:47.114589 Jade Angelou \N 1 f \N \N \N +798 1 2027 \N 1111 \N BGS-304030 \N 2024-02-12 22:36:47.238888 2024-02-12 22:36:47.248264 Jade Angelou \N 1 f \N \N \N +799 1 2027 \N 1111 \N BGS-032255 \N 2024-02-12 22:36:47.793004 2024-02-12 22:36:47.802376 Jade Angelou \N 1 f \N \N \N +800 1 2027 \N 1111 \N BGS-135350 \N 2024-02-12 22:36:48.438883 2024-02-12 22:36:48.449382 Jade Angelou \N 1 f \N \N \N +801 1 2027 \N 1111 \N BGS-454343 \N 2024-02-12 22:37:39.447694 2024-02-12 22:37:39.458167 Jade Angelou \N 1 f \N \N \N +802 1 2027 \N 1111 \N BGS-530313 \N 2024-02-12 22:37:41.972176 2024-02-12 22:37:41.983694 Jade Angelou \N 1 f \N \N \N +803 1 2027 \N 1111 \N BGS-403535 \N 2024-02-12 22:38:03.125383 2024-02-12 22:38:03.151045 Jade Angelou \N 1 f \N \N \N +804 1 2027 \N 1111 \N BGS-151020 \N 2024-02-12 22:38:06.093807 2024-02-12 22:38:06.118502 Jade Angelou \N 1 f \N \N \N +805 1 2027 \N 1111 \N BGS-033214 \N 2024-02-12 22:38:15.306798 2024-02-12 22:38:15.317203 Jade Angelou \N 1 f \N \N \N +806 1 2027 \N 1111 \N BGS-442541 \N 2024-02-12 22:38:25.123713 2024-02-12 22:38:25.166524 Jade Angelou \N 1 f \N \N \N +807 1 2027 \N 1111 \N BGS-214554 \N 2024-02-12 22:38:36.567833 2024-02-12 22:38:36.593496 Jade Angelou \N 1 f \N \N \N +808 1 2027 \N 1111 \N BGS-513502 \N 2024-02-12 22:38:37.107189 2024-02-12 22:38:37.117193 Jade Angelou \N 1 f \N \N \N +809 1 2027 \N 1111 \N BGS-254135 \N 2024-02-12 22:38:39.304016 2024-02-12 22:38:39.329251 Jade Angelou \N 1 f \N \N \N +810 1 2027 \N 1111 \N BGS-142153 \N 2024-02-12 22:38:43.572857 2024-02-12 22:38:43.598638 Jade Angelou \N 1 f \N \N \N +811 1 2027 \N 1111 \N BGS-005334 \N 2024-02-12 22:38:46.248722 2024-02-12 22:38:46.264094 Jade Angelou \N 1 f \N \N \N +812 1 2027 \N 1111 \N BGS-340452 \N 2024-02-12 22:38:57.827607 2024-02-12 22:38:57.850799 Jade Angelou \N 1 f \N \N \N +813 1 2027 \N 1111 \N BGS-253003 \N 2024-02-12 22:39:07.270687 2024-02-12 22:39:07.305052 Jade Angelou \N 1 f \N \N \N +814 1 2027 \N 1111 \N BGS-101213 \N 2024-02-12 22:39:40.449793 2024-02-12 22:39:40.466806 Jade Angelou \N 1 f \N \N \N +815 1 2027 \N 1111 \N BGS-041044 \N 2024-02-12 22:40:05.047608 2024-02-12 22:40:05.073589 Jade Angelou \N 1 f \N \N \N +816 1 2027 \N 1111 \N BGS-032122 \N 2024-02-12 22:41:15.492184 2024-02-12 22:41:15.501588 Jade Angelou \N 1 f \N \N \N +817 1 2027 \N 1111 \N BGS-225512 \N 2024-02-12 22:41:22.20073 2024-02-12 22:41:22.211511 Jade Angelou \N 1 f \N \N \N +818 1 2027 \N 1111 \N BGS-331031 \N 2024-02-12 22:41:25.115374 2024-02-12 22:41:25.126603 Jade Angelou \N 1 f \N \N \N +819 1 2027 \N 1111 \N BGS-021340 \N 2024-02-12 22:41:27.765088 2024-02-12 22:41:27.774637 Jade Angelou \N 1 f \N \N \N +820 1 2027 \N 1111 \N BGS-424424 \N 2024-02-12 22:41:27.974316 2024-02-12 22:41:27.98363 Jade Angelou \N 1 f \N \N \N +821 1 2027 \N 1111 \N BGS-412542 \N 2024-02-12 22:41:29.697367 2024-02-12 22:41:29.706497 Jade Angelou \N 1 f \N \N \N +822 1 2027 \N 1111 \N BGS-001211 \N 2024-02-12 22:41:30.694366 2024-02-12 22:41:30.705472 Jade Angelou \N 1 f \N \N \N +823 1 2027 \N 1111 \N BGS-134253 \N 2024-02-12 22:41:30.927303 2024-02-12 22:41:30.937393 Jade Angelou \N 1 f \N \N \N +824 1 2027 \N 1111 \N BGS-435004 \N 2024-02-12 22:41:32.944687 2024-02-12 22:41:32.963033 Jade Angelou \N 1 f \N \N \N +825 1 2027 \N 1111 \N BGS-121020 \N 2024-02-12 22:41:33.661414 2024-02-12 22:41:33.671592 Jade Angelou \N 1 f \N \N \N +826 1 2027 \N 1111 \N BGS-523340 \N 2024-02-12 22:42:30.890755 2024-02-12 22:42:30.900997 Jade Angelou \N 1 f \N \N \N +827 1 2027 \N 1111 \N BGS-241132 \N 2024-02-12 22:42:58.653099 2024-02-12 22:42:58.670077 Jade Angelou \N 1 f \N \N \N +828 1 2027 \N 1111 \N BGS-114543 \N 2024-02-12 22:43:01.173511 2024-02-12 22:43:01.183163 Jade Angelou \N 1 f \N \N \N +829 1 2027 \N 1111 \N BGS-255443 \N 2024-02-12 22:43:11.049173 2024-02-12 22:43:11.058362 Jade Angelou \N 1 f \N \N \N +830 1 2027 \N 1111 \N BGS-525554 \N 2024-02-12 22:43:24.977641 2024-02-12 22:43:25.002054 Jade Angelou \N 1 f \N \N \N +831 1 2027 \N 1111 \N BGS-104355 \N 2024-02-12 22:43:32.35669 2024-02-12 22:43:32.381195 Jade Angelou \N 1 f \N \N \N +832 1 2027 \N 1111 \N BGS-523415 \N 2024-02-12 22:43:33.020022 2024-02-12 22:43:33.030798 Jade Angelou \N 1 f \N \N \N +833 1 2027 \N 1111 \N BGS-430255 \N 2024-02-12 22:43:53.771736 2024-02-12 22:43:53.796204 Jade Angelou \N 1 f \N \N \N +834 1 2027 \N 1111 \N BGS-034440 \N 2024-02-12 22:44:15.848304 2024-02-12 22:44:15.876789 Jade Angelou \N 1 f \N \N \N +835 1 2027 \N 1111 \N BGS-301300 \N 2024-02-12 22:46:41.999813 2024-02-12 22:46:42.03001 Jade Angelou \N 1 f \N \N \N +836 1 2027 \N 1111 \N BGS-301103 \N 2024-02-12 22:46:50.591613 2024-02-12 22:46:50.604396 Jade Angelou \N 1 f \N \N \N +837 1 2027 \N 1111 \N BGS-542121 \N 2024-02-12 22:46:52.116795 2024-02-12 22:46:52.128543 Jade Angelou \N 1 f \N \N \N +838 1 2027 \N 1111 \N BGS-011432 \N 2024-02-12 22:46:54.876213 2024-02-12 22:46:54.901237 Jade Angelou \N 1 f \N \N \N +839 1 2027 \N 1111 \N BGS-320252 \N 2024-02-12 22:46:55.803246 2024-02-12 22:46:55.815232 Jade Angelou \N 1 f \N \N \N +840 1 2027 \N 1111 \N BGS-014415 \N 2024-02-12 22:47:00.19883 2024-02-12 22:47:00.211816 Jade Angelou \N 1 f \N \N \N +841 1 2027 \N 1111 \N BGS-032134 \N 2024-02-12 22:47:01.234661 2024-02-12 22:47:01.25584 Jade Angelou \N 1 f \N \N \N +842 1 2027 \N 1111 \N BGS-053520 \N 2024-02-12 22:47:03.422952 2024-02-12 22:47:03.436336 Jade Angelou \N 1 f \N \N \N +843 1 2027 \N 1111 \N BGS-202205 \N 2024-02-12 22:47:04.350961 2024-02-12 22:47:04.363536 Jade Angelou \N 1 f \N \N \N +844 1 2027 \N 1111 \N BGS-022202 \N 2024-02-12 22:47:05.150278 2024-02-12 22:47:05.163085 Jade Angelou \N 1 f \N \N \N +845 1 2027 \N 1111 \N BGS-231115 \N 2024-02-12 22:48:00.078166 2024-02-12 22:48:00.102371 Jade Angelou \N 1 f \N \N \N +846 1 2027 \N 1111 \N BGS-102545 \N 2024-02-12 22:48:01.815435 2024-02-12 22:48:01.83271 Jade Angelou \N 1 f \N \N \N +847 1 2027 \N 1111 \N BGS-114020 \N 2024-02-12 22:48:26.504076 2024-02-12 22:48:26.534647 Jade Angelou \N 1 f \N \N \N +848 1 2027 \N 1111 \N BGS-234441 \N 2024-02-12 22:48:29.561204 2024-02-12 22:48:29.571907 Jade Angelou \N 1 f \N \N \N +849 1 2027 \N 1111 \N BGS-005031 \N 2024-02-12 22:48:46.587523 2024-02-12 22:48:46.603763 Jade Angelou \N 1 f \N \N \N +850 1 2027 \N 1111 \N BGS-213025 \N 2024-02-12 22:48:50.475181 2024-02-12 22:48:50.50314 Jade Angelou \N 1 f \N \N \N +851 1 2027 \N 1111 \N BGS-204023 \N 2024-02-12 22:49:00.608713 2024-02-12 22:49:00.664427 Jade Angelou \N 1 f \N \N \N +852 1 2027 \N 1111 \N BGS-355500 \N 2024-02-12 22:49:07.559784 2024-02-12 22:49:07.598484 Jade Angelou \N 1 f \N \N \N +853 1 2027 \N 1111 \N BGS-335255 \N 2024-02-12 22:50:53.190208 2024-02-12 22:50:53.203014 Jade Angelou \N 1 f \N \N \N +854 1 2027 \N 1111 \N BGS-033453 \N 2024-02-12 22:50:56.033705 2024-02-12 22:50:56.048788 Jade Angelou \N 1 f \N \N \N +855 1 2027 \N 1111 \N BGS-303051 \N 2024-02-12 22:50:59.279018 2024-02-12 22:50:59.292007 Jade Angelou \N 1 f \N \N \N +856 1 2027 \N 1111 \N BGS-334503 \N 2024-02-12 22:51:00.267728 2024-02-12 22:51:00.279342 Jade Angelou \N 1 f \N \N \N +857 1 2027 \N 1111 \N BGS-414110 \N 2024-02-12 22:51:01.332887 2024-02-12 22:51:01.344332 Jade Angelou \N 1 f \N \N \N +858 1 2027 \N 1111 \N BGS-143332 \N 2024-02-12 22:51:02.906632 2024-02-12 22:51:02.91866 Jade Angelou \N 1 f \N \N \N +859 1 2027 \N 1111 \N BGS-103341 \N 2024-02-12 22:51:03.274475 2024-02-12 22:51:03.287004 Jade Angelou \N 1 f \N \N \N +860 1 2027 \N 1111 \N BGS-233354 \N 2024-02-12 22:51:05.056713 2024-02-12 22:51:05.068476 Jade Angelou \N 1 f \N \N \N +861 1 2027 \N 1111 \N BGS-000105 \N 2024-02-12 22:51:05.651188 2024-02-12 22:51:05.663028 Jade Angelou \N 1 f \N \N \N +862 1 2027 \N 1111 \N BGS-135045 \N 2024-02-12 22:52:20.037689 2024-02-12 22:52:20.04915 Jade Angelou \N 1 f \N \N \N +863 1 2027 \N 1111 \N BGS-331120 \N 2024-02-12 22:52:23.241808 2024-02-12 22:52:23.254203 Jade Angelou \N 1 f \N \N \N +864 1 2027 \N 1111 \N BGS-400051 \N 2024-02-12 22:52:25.202447 2024-02-12 22:52:25.226893 Jade Angelou \N 1 f \N \N \N +865 1 2027 \N 1111 \N BGS-231355 \N 2024-02-12 22:52:47.540286 2024-02-12 22:52:47.567728 Jade Angelou \N 1 f \N \N \N +866 1 2027 \N 1111 \N BGS-224003 \N 2024-02-12 22:52:49.269927 2024-02-12 22:52:49.298456 Jade Angelou \N 1 f \N \N \N +867 1 2027 \N 1111 \N BGS-214553 \N 2024-02-12 22:52:59.339605 2024-02-12 22:52:59.351272 Jade Angelou \N 1 f \N \N \N +868 1 2027 \N 1111 \N BGS-355453 \N 2024-02-12 22:53:00.460961 2024-02-12 22:53:00.517731 Jade Angelou \N 1 f \N \N \N +869 1 2027 \N 1111 \N BGS-134512 \N 2024-02-12 22:53:20.330929 2024-02-12 22:53:20.357829 Jade Angelou \N 1 f \N \N \N +\. + + +-- +-- Data for Name: spree_customer_returns; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_customer_returns (id, number, stock_location_id, created_at, updated_at, store_id, public_metadata, private_metadata) FROM stdin; +\. + + +-- +-- Data for Name: spree_digital_links; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_digital_links (id, digital_id, line_item_id, token, access_counter, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_digitals; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_digitals (id, variant_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_gateways; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_gateways (id, type, name, description, active, environment, server, test_mode, created_at, updated_at, preferences) FROM stdin; +\. + + +-- +-- Data for Name: spree_inventory_units; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_inventory_units (id, state, variant_id, order_id, shipment_id, created_at, updated_at, pending, line_item_id, quantity, original_return_item_id) FROM stdin; +3 on_hand 233 63 3 2024-02-09 22:51:15.79611 2024-02-09 22:51:15.79611 t 86 1 \N +4 on_hand 233 65 4 2024-02-09 22:52:14.005197 2024-02-09 22:52:14.005197 t 87 1 \N +5 on_hand 233 66 5 2024-02-09 22:53:12.293754 2024-02-09 22:53:12.293754 t 88 1 \N +6 on_hand 233 67 6 2024-02-09 22:54:10.748008 2024-02-09 22:54:10.748008 t 89 1 \N +7 on_hand 233 68 7 2024-02-09 22:55:09.246954 2024-02-09 22:55:09.246954 t 90 1 \N +8 on_hand 233 69 8 2024-02-09 22:56:07.710315 2024-02-09 22:56:07.710315 t 91 1 \N +9 on_hand 233 70 9 2024-02-09 23:12:38.94712 2024-02-09 23:12:38.94712 t 92 1 \N +10 on_hand 233 71 10 2024-02-10 02:50:51.254192 2024-02-10 02:50:51.254192 t 93 1 \N +11 on_hand 233 72 11 2024-02-10 06:06:54.295113 2024-02-10 06:06:54.295113 t 94 1 \N +12 on_hand 233 73 12 2024-02-10 12:00:19.742973 2024-02-10 12:00:19.742973 t 95 1 \N +13 on_hand 233 74 13 2024-02-10 12:55:47.23938 2024-02-10 12:55:47.23938 t 96 1 \N +14 on_hand 233 75 14 2024-02-10 14:20:39.819047 2024-02-10 14:20:39.819047 t 97 1 \N +15 on_hand 233 76 15 2024-02-10 15:55:28.445877 2024-02-10 15:55:28.445877 t 98 1 \N +16 on_hand 233 77 16 2024-02-10 16:56:28.047041 2024-02-10 16:56:28.047041 t 99 1 \N +17 on_hand 233 78 17 2024-02-10 21:00:28.593691 2024-02-10 21:00:28.593691 t 100 1 \N +18 on_hand 233 79 18 2024-02-10 23:02:31.554713 2024-02-10 23:02:31.554713 t 101 1 \N +19 on_hand 233 81 19 2024-02-11 02:45:38.218859 2024-02-11 02:45:38.218859 t 102 1 \N +20 on_hand 233 82 20 2024-02-11 06:00:08.792814 2024-02-11 06:00:08.792814 t 103 1 \N +21 on_hand 233 83 21 2024-02-11 09:54:50.494941 2024-02-11 09:54:50.494941 t 104 1 \N +22 on_hand 233 84 22 2024-02-11 13:55:28.055324 2024-02-11 13:55:28.055324 t 105 1 \N +23 on_hand 233 85 23 2024-02-11 15:06:13.542761 2024-02-11 15:06:13.542761 t 106 1 \N +24 on_hand 233 86 24 2024-02-11 20:00:57.738498 2024-02-11 20:00:57.738498 t 107 1 \N +25 on_hand 233 87 25 2024-02-11 21:02:00.18368 2024-02-11 21:02:00.18368 t 108 1 \N +26 on_hand 233 88 26 2024-02-12 00:21:55.008434 2024-02-12 00:21:55.008434 t 109 1 \N +27 on_hand 233 89 27 2024-02-12 02:43:54.68182 2024-02-12 02:43:54.68182 t 110 1 \N +28 on_hand 233 90 28 2024-02-12 06:13:15.704776 2024-02-12 06:13:15.704776 t 111 1 \N +29 on_hand 233 92 29 2024-02-12 09:00:28.811389 2024-02-12 09:00:28.811389 t 112 1 \N +30 on_hand 233 94 30 2024-02-12 10:48:52.175911 2024-02-12 10:48:52.175911 t 113 1 \N +31 on_hand 233 96 31 2024-02-12 12:23:49.51464 2024-02-12 12:23:49.51464 t 114 1 \N +32 on_hand 233 97 32 2024-02-12 13:11:07.96921 2024-02-12 13:11:07.96921 t 115 1 \N +33 on_hand 233 98 33 2024-02-12 13:12:04.786388 2024-02-12 13:12:04.786388 t 116 1 \N +34 on_hand 233 99 34 2024-02-12 13:13:01.756331 2024-02-12 13:13:01.756331 t 117 1 \N +35 on_hand 233 100 35 2024-02-12 13:13:59.023086 2024-02-12 13:13:59.023086 t 118 1 \N +36 on_hand 233 101 36 2024-02-12 13:14:56.043647 2024-02-12 13:14:56.043647 t 119 1 \N +37 on_hand 233 102 37 2024-02-12 13:15:52.948824 2024-02-12 13:15:52.948824 t 120 1 \N +38 on_hand 233 103 38 2024-02-12 13:16:50.079008 2024-02-12 13:16:50.079008 t 121 1 \N +39 on_hand 233 104 39 2024-02-12 13:17:46.864776 2024-02-12 13:17:46.864776 t 122 1 \N +40 on_hand 233 105 40 2024-02-12 13:18:43.81233 2024-02-12 13:18:43.81233 t 123 1 \N +41 on_hand 233 106 41 2024-02-12 13:19:40.805816 2024-02-12 13:19:40.805816 t 124 1 \N +42 on_hand 233 107 42 2024-02-12 13:20:37.638254 2024-02-12 13:20:37.638254 t 125 1 \N +43 on_hand 233 108 43 2024-02-12 13:21:34.561364 2024-02-12 13:21:34.561364 t 126 1 \N +44 on_hand 233 109 44 2024-02-12 13:22:31.492811 2024-02-12 13:22:31.492811 t 127 1 \N +45 on_hand 233 110 45 2024-02-12 13:23:28.275625 2024-02-12 13:23:28.275625 t 128 1 \N +46 on_hand 233 111 46 2024-02-12 13:24:25.225216 2024-02-12 13:24:25.225216 t 129 1 \N +47 on_hand 233 112 47 2024-02-12 13:25:21.993505 2024-02-12 13:25:21.993505 t 130 1 \N +48 on_hand 233 113 48 2024-02-12 13:26:18.916407 2024-02-12 13:26:18.916407 t 131 1 \N +49 on_hand 233 114 49 2024-02-12 13:27:15.630687 2024-02-12 13:27:15.630687 t 132 1 \N +50 on_hand 233 115 50 2024-02-12 13:28:12.463377 2024-02-12 13:28:12.463377 t 133 1 \N +51 on_hand 233 116 51 2024-02-12 13:29:09.22506 2024-02-12 13:29:09.22506 t 134 1 \N +52 on_hand 233 117 52 2024-02-12 13:30:06.101995 2024-02-12 13:30:06.101995 t 135 1 \N +53 on_hand 233 118 53 2024-02-12 13:31:02.870871 2024-02-12 13:31:02.870871 t 136 1 \N +54 on_hand 233 119 54 2024-02-12 13:31:59.833322 2024-02-12 13:31:59.833322 t 137 1 \N +55 on_hand 233 120 55 2024-02-12 13:32:56.944764 2024-02-12 13:32:56.944764 t 138 1 \N +56 on_hand 233 121 56 2024-02-12 13:33:53.795335 2024-02-12 13:33:53.795335 t 139 1 \N +57 on_hand 233 122 57 2024-02-12 13:34:50.702162 2024-02-12 13:34:50.702162 t 140 1 \N +58 on_hand 233 123 58 2024-02-12 13:35:47.448579 2024-02-12 13:35:47.448579 t 141 1 \N +59 on_hand 233 124 59 2024-02-12 13:36:44.27393 2024-02-12 13:36:44.27393 t 142 1 \N +60 on_hand 233 125 60 2024-02-12 13:37:41.307011 2024-02-12 13:37:41.307011 t 143 1 \N +61 on_hand 233 126 61 2024-02-12 13:38:38.40359 2024-02-12 13:38:38.40359 t 144 1 \N +62 on_hand 233 127 62 2024-02-12 13:39:35.17339 2024-02-12 13:39:35.17339 t 145 1 \N +63 on_hand 233 128 63 2024-02-12 13:40:31.92664 2024-02-12 13:40:31.92664 t 146 1 \N +64 on_hand 233 129 64 2024-02-12 13:41:28.63883 2024-02-12 13:41:28.63883 t 147 1 \N +65 on_hand 233 130 65 2024-02-12 13:42:25.596428 2024-02-12 13:42:25.596428 t 148 1 \N +66 on_hand 233 131 66 2024-02-12 13:43:22.506058 2024-02-12 13:43:22.506058 t 149 1 \N +67 on_hand 233 132 67 2024-02-12 13:44:19.091187 2024-02-12 13:44:19.091187 t 150 1 \N +68 on_hand 233 133 68 2024-02-12 13:45:15.90911 2024-02-12 13:45:15.90911 t 151 1 \N +69 on_hand 233 134 69 2024-02-12 13:46:12.755271 2024-02-12 13:46:12.755271 t 152 1 \N +70 on_hand 233 135 70 2024-02-12 13:47:09.986522 2024-02-12 13:47:09.986522 t 153 1 \N +71 on_hand 233 136 71 2024-02-12 13:48:07.018396 2024-02-12 13:48:07.018396 t 154 1 \N +72 on_hand 233 137 72 2024-02-12 13:49:03.88519 2024-02-12 13:49:03.88519 t 155 1 \N +73 on_hand 233 138 73 2024-02-12 13:50:00.744322 2024-02-12 13:50:00.744322 t 156 1 \N +74 on_hand 233 139 74 2024-02-12 13:50:57.645698 2024-02-12 13:50:57.645698 t 157 1 \N +76 on_hand 233 141 76 2024-02-12 13:52:51.694941 2024-02-12 13:52:51.694941 t 159 1 \N +78 on_hand 233 143 78 2024-02-12 13:54:45.414406 2024-02-12 13:54:45.414406 t 161 1 \N +79 on_hand 233 144 79 2024-02-12 13:55:42.239992 2024-02-12 13:55:42.239992 t 162 1 \N +834 on_hand 242 693 687 2024-02-12 22:13:53.587115 2024-02-12 22:14:36.169395 f 748 1 \N +835 on_hand 234 693 687 2024-02-12 22:13:53.59399 2024-02-12 22:14:36.169395 f 752 1 \N +953 on_hand 235 749 758 2024-02-12 22:33:52.043653 2024-02-12 22:33:52.043653 t 803 1 \N +954 on_hand 234 749 758 2024-02-12 22:33:52.04601 2024-02-12 22:33:52.04601 t 809 1 \N +955 on_hand 236 749 758 2024-02-12 22:33:52.048273 2024-02-12 22:33:52.048273 t 814 1 \N +956 on_hand 237 749 758 2024-02-12 22:33:52.050493 2024-02-12 22:33:52.050493 t 818 1 \N +972 on_hand 238 763 768 2024-02-12 22:37:34.841388 2024-02-12 22:37:34.841388 t 828 1 \N +986 on_hand 236 768 776 2024-02-12 22:38:57.328874 2024-02-12 22:39:40.016399 f 834 3 \N +1000 on_hand 242 781 787 2024-02-12 22:42:04.896863 2024-02-12 22:42:04.896863 t 836 1 \N +1001 on_hand 237 781 787 2024-02-12 22:42:04.8992 2024-02-12 22:42:04.8992 t 845 1 \N +1007 on_hand 233 780 791 2024-02-12 22:42:13.838365 2024-02-12 22:42:13.838365 t 835 1 \N +1008 on_hand 236 780 791 2024-02-12 22:42:13.840997 2024-02-12 22:42:13.840997 t 842 1 \N +1009 on_hand 241 780 791 2024-02-12 22:42:13.843414 2024-02-12 22:42:13.843414 t 848 1 \N +1010 on_hand 234 783 792 2024-02-12 22:42:18.100985 2024-02-12 22:42:57.725517 f 837 1 \N +1011 on_hand 236 783 792 2024-02-12 22:42:18.103126 2024-02-12 22:42:57.725517 f 843 1 \N +1012 on_hand 235 783 792 2024-02-12 22:42:18.105361 2024-02-12 22:42:57.725517 f 850 1 \N +1013 on_hand 241 785 793 2024-02-12 22:42:20.656088 2024-02-12 22:43:00.488837 f 840 1 \N +1014 on_hand 236 785 793 2024-02-12 22:42:20.659085 2024-02-12 22:43:00.488837 f 844 1 \N +1015 on_hand 235 785 793 2024-02-12 22:42:20.661886 2024-02-12 22:43:00.488837 f 851 1 \N +1041 on_hand 240 799 807 2024-02-12 22:48:02.188555 2024-02-12 22:48:02.188555 t 865 1 \N +1031 on_hand 239 797 803 2024-02-12 22:47:26.316071 2024-02-12 22:48:28.821585 f 856 1 \N +1032 on_hand 236 797 803 2024-02-12 22:47:26.319491 2024-02-12 22:48:28.821585 f 861 1 \N +1064 on_hand 234 814 821 2024-02-12 22:52:06.013599 2024-02-12 22:52:06.013599 t 879 1 \N +1066 on_hand 240 813 823 2024-02-12 22:52:11.659607 2024-02-12 22:52:11.659607 t 881 1 \N +75 on_hand 233 140 75 2024-02-12 13:51:54.689913 2024-02-12 13:51:54.689913 t 158 1 \N +77 on_hand 233 142 77 2024-02-12 13:53:48.534738 2024-02-12 13:53:48.534738 t 160 1 \N +80 on_hand 233 145 80 2024-02-12 13:56:39.346549 2024-02-12 13:56:39.346549 t 163 1 \N +81 on_hand 233 146 81 2024-02-12 13:57:36.134106 2024-02-12 13:57:36.134106 t 164 1 \N +82 on_hand 233 147 82 2024-02-12 13:58:32.948151 2024-02-12 13:58:32.948151 t 165 1 \N +83 on_hand 233 148 83 2024-02-12 13:59:29.813386 2024-02-12 13:59:29.813386 t 166 1 \N +84 on_hand 233 149 84 2024-02-12 14:00:26.615661 2024-02-12 14:00:26.615661 t 167 1 \N +85 on_hand 233 150 85 2024-02-12 14:01:23.641227 2024-02-12 14:01:23.641227 t 168 1 \N +86 on_hand 233 151 86 2024-02-12 14:02:20.51741 2024-02-12 14:02:20.51741 t 169 1 \N +87 on_hand 233 152 87 2024-02-12 14:03:17.208453 2024-02-12 14:03:17.208453 t 170 1 \N +88 on_hand 233 153 88 2024-02-12 14:04:14.18278 2024-02-12 14:04:14.18278 t 171 1 \N +89 on_hand 233 154 89 2024-02-12 14:05:10.985033 2024-02-12 14:05:10.985033 t 172 1 \N +90 on_hand 233 155 90 2024-02-12 14:06:08.002999 2024-02-12 14:06:08.002999 t 173 1 \N +91 on_hand 233 156 91 2024-02-12 14:07:04.81808 2024-02-12 14:07:04.81808 t 174 1 \N +92 on_hand 233 157 92 2024-02-12 14:08:01.689152 2024-02-12 14:08:01.689152 t 175 1 \N +93 on_hand 233 158 93 2024-02-12 14:08:58.48501 2024-02-12 14:08:58.48501 t 176 1 \N +94 on_hand 233 159 94 2024-02-12 14:09:55.452189 2024-02-12 14:09:55.452189 t 177 1 \N +95 on_hand 233 160 95 2024-02-12 14:10:52.351764 2024-02-12 14:10:52.351764 t 178 1 \N +96 on_hand 233 161 96 2024-02-12 14:11:49.201464 2024-02-12 14:11:49.201464 t 179 1 \N +97 on_hand 233 162 97 2024-02-12 14:12:46.114155 2024-02-12 14:12:46.114155 t 180 1 \N +98 on_hand 233 163 98 2024-02-12 14:13:43.135345 2024-02-12 14:13:43.135345 t 181 1 \N +99 on_hand 233 164 99 2024-02-12 14:14:39.969084 2024-02-12 14:14:39.969084 t 182 1 \N +100 on_hand 233 165 100 2024-02-12 14:15:36.85279 2024-02-12 14:15:36.85279 t 183 1 \N +101 on_hand 233 166 101 2024-02-12 14:16:33.809613 2024-02-12 14:16:33.809613 t 184 1 \N +102 on_hand 233 167 102 2024-02-12 14:17:30.818651 2024-02-12 14:17:30.818651 t 185 1 \N +103 on_hand 233 168 103 2024-02-12 14:18:27.670967 2024-02-12 14:18:27.670967 t 186 1 \N +104 on_hand 233 169 104 2024-02-12 14:19:24.472791 2024-02-12 14:19:24.472791 t 187 1 \N +105 on_hand 233 170 105 2024-02-12 14:20:21.348072 2024-02-12 14:20:21.348072 t 188 1 \N +106 on_hand 233 171 106 2024-02-12 14:21:18.74417 2024-02-12 14:21:18.74417 t 189 1 \N +107 on_hand 233 172 107 2024-02-12 14:22:15.402249 2024-02-12 14:22:15.402249 t 190 1 \N +108 on_hand 233 173 108 2024-02-12 14:23:12.390906 2024-02-12 14:23:12.390906 t 191 1 \N +109 on_hand 233 174 109 2024-02-12 14:24:09.135936 2024-02-12 14:24:09.135936 t 192 1 \N +110 on_hand 233 175 110 2024-02-12 14:25:05.903352 2024-02-12 14:25:05.903352 t 193 1 \N +111 on_hand 233 176 111 2024-02-12 14:26:02.762342 2024-02-12 14:26:02.762342 t 194 1 \N +112 on_hand 233 177 112 2024-02-12 14:26:59.579453 2024-02-12 14:26:59.579453 t 195 1 \N +113 on_hand 233 178 113 2024-02-12 14:27:56.49042 2024-02-12 14:27:56.49042 t 196 1 \N +114 on_hand 233 179 114 2024-02-12 14:28:53.431126 2024-02-12 14:28:53.431126 t 197 1 \N +115 on_hand 233 180 115 2024-02-12 14:29:50.530917 2024-02-12 14:29:50.530917 t 198 1 \N +116 on_hand 233 181 116 2024-02-12 14:30:47.190859 2024-02-12 14:30:47.190859 t 199 1 \N +117 on_hand 233 182 117 2024-02-12 14:31:44.041924 2024-02-12 14:31:44.041924 t 200 1 \N +118 on_hand 233 183 118 2024-02-12 14:32:40.91266 2024-02-12 14:32:40.91266 t 201 1 \N +119 on_hand 233 184 119 2024-02-12 14:33:37.906244 2024-02-12 14:33:37.906244 t 202 1 \N +120 on_hand 233 185 120 2024-02-12 14:34:34.698787 2024-02-12 14:34:34.698787 t 203 1 \N +121 on_hand 233 186 121 2024-02-12 14:35:31.638502 2024-02-12 14:35:31.638502 t 204 1 \N +122 on_hand 233 187 122 2024-02-12 14:36:28.704965 2024-02-12 14:36:28.704965 t 205 1 \N +123 on_hand 233 188 123 2024-02-12 14:37:25.593993 2024-02-12 14:37:25.593993 t 206 1 \N +124 on_hand 233 189 124 2024-02-12 14:38:22.646149 2024-02-12 14:38:22.646149 t 207 1 \N +125 on_hand 233 190 125 2024-02-12 14:39:19.547163 2024-02-12 14:39:19.547163 t 208 1 \N +126 on_hand 233 191 126 2024-02-12 14:40:16.514865 2024-02-12 14:40:16.514865 t 209 1 \N +127 on_hand 233 192 127 2024-02-12 14:41:13.360273 2024-02-12 14:41:13.360273 t 210 1 \N +128 on_hand 233 193 128 2024-02-12 14:42:10.241383 2024-02-12 14:42:10.241383 t 211 1 \N +129 on_hand 233 194 129 2024-02-12 14:43:07.572479 2024-02-12 14:43:07.572479 t 212 1 \N +130 on_hand 233 195 130 2024-02-12 14:44:04.363485 2024-02-12 14:44:04.363485 t 213 1 \N +131 on_hand 233 196 131 2024-02-12 14:45:01.277208 2024-02-12 14:45:01.277208 t 214 1 \N +132 on_hand 233 197 132 2024-02-12 14:45:58.10178 2024-02-12 14:45:58.10178 t 215 1 \N +133 on_hand 233 198 133 2024-02-12 14:46:55.024102 2024-02-12 14:46:55.024102 t 216 1 \N +134 on_hand 233 199 134 2024-02-12 14:47:51.707006 2024-02-12 14:47:51.707006 t 217 1 \N +135 on_hand 233 200 135 2024-02-12 14:48:48.50663 2024-02-12 14:48:48.50663 t 218 1 \N +136 on_hand 233 201 136 2024-02-12 14:49:45.457756 2024-02-12 14:49:45.457756 t 219 1 \N +137 on_hand 233 202 137 2024-02-12 14:50:42.512771 2024-02-12 14:50:42.512771 t 220 1 \N +138 on_hand 233 203 138 2024-02-12 14:51:39.415299 2024-02-12 14:51:39.415299 t 221 1 \N +139 on_hand 233 204 139 2024-02-12 14:52:36.300294 2024-02-12 14:52:36.300294 t 222 1 \N +140 on_hand 233 205 140 2024-02-12 14:53:33.111595 2024-02-12 14:53:33.111595 t 223 1 \N +141 on_hand 233 206 141 2024-02-12 14:54:30.113641 2024-02-12 14:54:30.113641 t 224 1 \N +142 on_hand 233 207 142 2024-02-12 14:55:26.989242 2024-02-12 14:55:26.989242 t 225 1 \N +143 on_hand 233 208 143 2024-02-12 14:56:23.846573 2024-02-12 14:56:23.846573 t 226 1 \N +144 on_hand 233 209 144 2024-02-12 14:57:20.797672 2024-02-12 14:57:20.797672 t 227 1 \N +145 on_hand 233 210 145 2024-02-12 14:58:17.579258 2024-02-12 14:58:17.579258 t 228 1 \N +146 on_hand 233 211 146 2024-02-12 14:59:14.47119 2024-02-12 14:59:14.47119 t 229 1 \N +147 on_hand 233 212 147 2024-02-12 15:00:11.18567 2024-02-12 15:00:11.18567 t 230 1 \N +148 on_hand 233 213 148 2024-02-12 15:01:08.202914 2024-02-12 15:01:08.202914 t 231 1 \N +836 on_hand 244 699 688 2024-02-12 22:13:54.156968 2024-02-12 22:13:54.156968 t 750 1 \N +837 on_hand 242 699 688 2024-02-12 22:13:54.162205 2024-02-12 22:13:54.162205 t 753 1 \N +838 on_hand 234 697 689 2024-02-12 22:13:56.885067 2024-02-12 22:15:00.979964 f 751 1 \N +839 on_hand 241 697 689 2024-02-12 22:13:56.887482 2024-02-12 22:15:00.979964 f 754 1 \N +853 on_hand 237 705 700 2024-02-12 22:17:42.605118 2024-02-12 22:18:21.953054 f 755 1 \N +854 on_hand 236 705 700 2024-02-12 22:17:42.611944 2024-02-12 22:18:21.953054 f 761 1 \N +855 on_hand 238 705 700 2024-02-12 22:17:42.615977 2024-02-12 22:18:21.953054 f 764 1 \N +856 on_hand 244 706 701 2024-02-12 22:17:43.700725 2024-02-12 22:18:42.405285 f 756 1 \N +857 on_hand 236 706 701 2024-02-12 22:17:43.703299 2024-02-12 22:18:42.405285 f 762 1 \N +858 on_hand 239 706 701 2024-02-12 22:17:43.706044 2024-02-12 22:18:42.405285 f 765 1 \N +957 on_hand 235 757 759 2024-02-12 22:33:54.938499 2024-02-12 22:35:00.172981 f 808 1 \N +958 on_hand 239 757 759 2024-02-12 22:33:54.941369 2024-02-12 22:35:00.172981 f 811 1 \N +959 on_hand 236 757 759 2024-02-12 22:33:54.943743 2024-02-12 22:35:00.172981 f 816 1 \N +960 on_hand 237 757 759 2024-02-12 22:33:54.946206 2024-02-12 22:35:00.172981 f 819 1 \N +963 on_hand 246 767 762 2024-02-12 22:37:01.642902 2024-02-12 22:37:41.551065 f 822 1 \N +980 on_hand 235 765 772 2024-02-12 22:37:44.282149 2024-02-12 22:38:45.598537 f 821 1 \N +981 on_hand 233 765 772 2024-02-12 22:37:44.284636 2024-02-12 22:38:45.598537 f 827 1 \N +982 on_hand 245 765 772 2024-02-12 22:37:44.286921 2024-02-12 22:38:45.598537 f 832 1 \N +993 on_hand 240 788 783 2024-02-12 22:41:50.519999 2024-02-12 22:42:30.443971 f 841 1 \N +1016 on_hand 242 784 794 2024-02-12 22:42:29.896355 2024-02-12 22:43:32.308977 f 839 1 \N +1017 on_hand 234 784 794 2024-02-12 22:42:29.898732 2024-02-12 22:43:32.308977 f 846 1 \N +1018 on_hand 246 784 794 2024-02-12 22:42:29.900891 2024-02-12 22:43:32.308977 f 852 1 \N +1067 on_hand 245 810 824 2024-02-12 22:53:06.34503 2024-02-12 22:53:06.34503 t 880 1 \N +1068 on_hand 237 810 824 2024-02-12 22:53:06.348183 2024-02-12 22:53:06.348183 t 882 1 \N +149 on_hand 233 214 149 2024-02-12 15:02:05.267593 2024-02-12 15:02:05.267593 t 232 1 \N +150 on_hand 233 215 150 2024-02-12 15:03:02.162497 2024-02-12 15:03:02.162497 t 233 1 \N +151 on_hand 233 216 151 2024-02-12 15:03:58.92306 2024-02-12 15:03:58.92306 t 234 1 \N +152 on_hand 233 217 152 2024-02-12 15:04:56.02207 2024-02-12 15:04:56.02207 t 235 1 \N +153 on_hand 233 218 153 2024-02-12 15:05:52.802767 2024-02-12 15:05:52.802767 t 236 1 \N +154 on_hand 233 219 154 2024-02-12 15:06:49.656565 2024-02-12 15:06:49.656565 t 237 1 \N +155 on_hand 233 220 155 2024-02-12 15:07:46.821188 2024-02-12 15:07:46.821188 t 238 1 \N +156 on_hand 233 221 156 2024-02-12 15:08:43.712618 2024-02-12 15:08:43.712618 t 239 1 \N +157 on_hand 233 222 157 2024-02-12 15:09:40.641044 2024-02-12 15:09:40.641044 t 240 1 \N +158 on_hand 233 223 158 2024-02-12 15:10:37.472445 2024-02-12 15:10:37.472445 t 241 1 \N +159 on_hand 233 224 159 2024-02-12 15:11:34.377136 2024-02-12 15:11:34.377136 t 242 1 \N +160 on_hand 233 225 160 2024-02-12 15:12:31.394632 2024-02-12 15:12:31.394632 t 243 1 \N +161 on_hand 233 226 161 2024-02-12 15:13:28.042814 2024-02-12 15:13:28.042814 t 244 1 \N +162 on_hand 233 227 162 2024-02-12 15:14:25.097421 2024-02-12 15:14:25.097421 t 245 1 \N +163 on_hand 233 228 163 2024-02-12 15:15:21.925328 2024-02-12 15:15:21.925328 t 246 1 \N +164 on_hand 233 229 164 2024-02-12 15:16:18.980359 2024-02-12 15:16:18.980359 t 247 1 \N +165 on_hand 233 230 165 2024-02-12 15:17:15.848865 2024-02-12 15:17:15.848865 t 248 1 \N +166 on_hand 233 231 166 2024-02-12 15:18:12.679634 2024-02-12 15:18:12.679634 t 249 1 \N +167 on_hand 233 232 167 2024-02-12 15:19:09.563234 2024-02-12 15:19:09.563234 t 250 1 \N +168 on_hand 233 233 168 2024-02-12 15:20:06.533537 2024-02-12 15:20:06.533537 t 251 1 \N +169 on_hand 233 234 169 2024-02-12 15:21:03.422759 2024-02-12 15:21:03.422759 t 252 1 \N +170 on_hand 233 235 170 2024-02-12 15:22:00.175496 2024-02-12 15:22:00.175496 t 253 1 \N +171 on_hand 233 236 171 2024-02-12 15:22:57.169015 2024-02-12 15:22:57.169015 t 254 1 \N +172 on_hand 233 237 172 2024-02-12 15:23:53.994264 2024-02-12 15:23:53.994264 t 255 1 \N +173 on_hand 233 238 173 2024-02-12 15:24:51.032759 2024-02-12 15:24:51.032759 t 256 1 \N +174 on_hand 233 239 174 2024-02-12 15:25:47.874901 2024-02-12 15:25:47.874901 t 257 1 \N +175 on_hand 233 240 175 2024-02-12 15:26:44.745542 2024-02-12 15:26:44.745542 t 258 1 \N +176 on_hand 233 241 176 2024-02-12 15:27:41.541947 2024-02-12 15:27:41.541947 t 259 1 \N +177 on_hand 233 242 177 2024-02-12 15:28:38.474891 2024-02-12 15:28:38.474891 t 260 1 \N +178 on_hand 233 243 178 2024-02-12 15:29:35.466988 2024-02-12 15:29:35.466988 t 261 1 \N +179 on_hand 233 244 179 2024-02-12 15:30:32.149078 2024-02-12 15:30:32.149078 t 262 1 \N +180 on_hand 233 245 180 2024-02-12 15:31:28.940472 2024-02-12 15:31:28.940472 t 263 1 \N +181 on_hand 233 246 181 2024-02-12 15:32:25.733455 2024-02-12 15:32:25.733455 t 264 1 \N +182 on_hand 233 247 182 2024-02-12 15:33:22.41235 2024-02-12 15:33:22.41235 t 265 1 \N +183 on_hand 233 248 183 2024-02-12 15:34:19.227665 2024-02-12 15:34:19.227665 t 266 1 \N +184 on_hand 233 249 184 2024-02-12 15:35:16.089286 2024-02-12 15:35:16.089286 t 267 1 \N +185 on_hand 233 250 185 2024-02-12 15:36:12.852066 2024-02-12 15:36:12.852066 t 268 1 \N +186 on_hand 233 251 186 2024-02-12 15:37:09.809761 2024-02-12 15:37:09.809761 t 269 1 \N +187 on_hand 233 252 187 2024-02-12 15:38:06.650485 2024-02-12 15:38:06.650485 t 270 1 \N +188 on_hand 233 253 188 2024-02-12 15:39:03.671296 2024-02-12 15:39:03.671296 t 271 1 \N +189 on_hand 233 254 189 2024-02-12 15:40:00.529505 2024-02-12 15:40:00.529505 t 272 1 \N +190 on_hand 233 255 190 2024-02-12 15:40:57.365351 2024-02-12 15:40:57.365351 t 273 1 \N +191 on_hand 233 256 191 2024-02-12 15:41:54.193037 2024-02-12 15:41:54.193037 t 274 1 \N +192 on_hand 233 257 192 2024-02-12 15:42:50.983439 2024-02-12 15:42:50.983439 t 275 1 \N +193 on_hand 233 258 193 2024-02-12 15:43:47.885953 2024-02-12 15:43:47.885953 t 276 1 \N +194 on_hand 233 259 194 2024-02-12 15:44:44.732468 2024-02-12 15:44:44.732468 t 277 1 \N +195 on_hand 233 260 195 2024-02-12 15:45:41.533971 2024-02-12 15:45:41.533971 t 278 1 \N +196 on_hand 233 261 196 2024-02-12 15:46:38.490777 2024-02-12 15:46:38.490777 t 279 1 \N +197 on_hand 233 262 197 2024-02-12 15:47:35.315587 2024-02-12 15:47:35.315587 t 280 1 \N +198 on_hand 233 263 198 2024-02-12 15:48:32.204163 2024-02-12 15:48:32.204163 t 281 1 \N +199 on_hand 233 264 199 2024-02-12 15:49:29.156537 2024-02-12 15:49:29.156537 t 282 1 \N +200 on_hand 233 265 200 2024-02-12 15:50:25.891762 2024-02-12 15:50:25.891762 t 283 1 \N +201 on_hand 233 266 201 2024-02-12 15:51:22.665576 2024-02-12 15:51:22.665576 t 284 1 \N +202 on_hand 233 267 202 2024-02-12 15:52:19.603111 2024-02-12 15:52:19.603111 t 285 1 \N +203 on_hand 233 268 203 2024-02-12 15:53:16.450834 2024-02-12 15:53:16.450834 t 286 1 \N +204 on_hand 233 269 204 2024-02-12 15:54:13.494258 2024-02-12 15:54:13.494258 t 287 1 \N +205 on_hand 233 270 205 2024-02-12 15:55:10.807961 2024-02-12 15:55:10.807961 t 288 1 \N +206 on_hand 233 271 206 2024-02-12 15:56:07.659759 2024-02-12 15:56:07.659759 t 289 1 \N +207 on_hand 233 272 207 2024-02-12 15:57:04.550123 2024-02-12 15:57:04.550123 t 290 1 \N +208 on_hand 233 273 208 2024-02-12 15:58:01.522504 2024-02-12 15:58:01.522504 t 291 1 \N +209 on_hand 233 274 209 2024-02-12 15:58:58.612229 2024-02-12 15:58:58.612229 t 292 1 \N +210 on_hand 233 275 210 2024-02-12 15:59:56.063051 2024-02-12 15:59:56.063051 t 293 1 \N +211 on_hand 233 276 211 2024-02-12 16:00:53.068479 2024-02-12 16:00:53.068479 t 294 1 \N +212 on_hand 233 277 212 2024-02-12 16:01:50.149191 2024-02-12 16:01:50.149191 t 295 1 \N +213 on_hand 233 278 213 2024-02-12 16:02:47.224119 2024-02-12 16:02:47.224119 t 296 1 \N +214 on_hand 233 279 214 2024-02-12 16:03:44.287748 2024-02-12 16:03:44.287748 t 297 1 \N +215 on_hand 233 280 215 2024-02-12 16:04:41.336249 2024-02-12 16:04:41.336249 t 298 1 \N +216 on_hand 233 281 216 2024-02-12 16:05:38.130325 2024-02-12 16:05:38.130325 t 299 1 \N +217 on_hand 233 282 217 2024-02-12 16:06:34.945203 2024-02-12 16:06:34.945203 t 300 1 \N +218 on_hand 233 283 218 2024-02-12 16:07:31.989864 2024-02-12 16:07:31.989864 t 301 1 \N +219 on_hand 233 284 219 2024-02-12 16:08:28.979783 2024-02-12 16:08:28.979783 t 302 1 \N +223 on_hand 233 288 223 2024-02-12 16:12:16.694407 2024-02-12 16:12:16.694407 t 306 1 \N +224 on_hand 233 289 224 2024-02-12 16:13:13.726749 2024-02-12 16:13:13.726749 t 307 1 \N +227 on_hand 233 292 227 2024-02-12 16:16:04.426146 2024-02-12 16:16:04.426146 t 310 1 \N +229 on_hand 233 294 229 2024-02-12 16:17:58.457447 2024-02-12 16:17:58.457447 t 312 1 \N +232 on_hand 233 297 232 2024-02-12 16:20:49.259221 2024-02-12 16:20:49.259221 t 315 1 \N +234 on_hand 233 299 234 2024-02-12 16:22:43.194024 2024-02-12 16:22:43.194024 t 317 1 \N +235 on_hand 233 300 235 2024-02-12 16:23:40.333751 2024-02-12 16:23:40.333751 t 318 1 \N +237 on_hand 233 302 237 2024-02-12 16:25:34.390877 2024-02-12 16:25:34.390877 t 320 1 \N +842 on_hand 239 707 692 2024-02-12 22:17:12.082294 2024-02-12 22:17:53.226817 f 757 1 \N +844 on_hand 235 709 694 2024-02-12 22:17:15.594539 2024-02-12 22:18:18.738051 f 759 1 \N +862 on_hand 233 710 704 2024-02-12 22:19:08.674361 2024-02-12 22:19:08.674361 t 766 1 \N +863 on_hand 239 710 704 2024-02-12 22:19:08.677429 2024-02-12 22:19:08.677429 t 767 1 \N +864 on_hand 236 710 704 2024-02-12 22:19:08.680738 2024-02-12 22:19:08.680738 t 768 1 \N +961 on_hand 239 764 760 2024-02-12 22:36:58.887218 2024-02-12 22:37:38.74341 f 820 1 \N +976 on_hand 241 771 770 2024-02-12 22:37:37.067963 2024-02-12 22:38:36.242161 f 824 1 \N +977 on_hand 236 771 770 2024-02-12 22:37:37.07035 2024-02-12 22:38:36.242161 f 826 1 \N +978 on_hand 235 771 770 2024-02-12 22:37:37.073402 2024-02-12 22:38:36.242161 f 830 1 \N +1004 on_hand 244 782 789 2024-02-12 22:42:08.721523 2024-02-12 22:43:10.53312 f 838 1 \N +1005 on_hand 239 782 789 2024-02-12 22:42:08.725638 2024-02-12 22:43:10.53312 f 847 1 \N +220 on_hand 233 285 220 2024-02-12 16:09:25.889722 2024-02-12 16:09:25.889722 t 303 1 \N +221 on_hand 233 286 221 2024-02-12 16:10:22.877908 2024-02-12 16:10:22.877908 t 304 1 \N +222 on_hand 233 287 222 2024-02-12 16:11:19.825582 2024-02-12 16:11:19.825582 t 305 1 \N +225 on_hand 233 290 225 2024-02-12 16:14:10.590001 2024-02-12 16:14:10.590001 t 308 1 \N +226 on_hand 233 291 226 2024-02-12 16:15:07.600656 2024-02-12 16:15:07.600656 t 309 1 \N +228 on_hand 233 293 228 2024-02-12 16:17:01.602164 2024-02-12 16:17:01.602164 t 311 1 \N +230 on_hand 233 295 230 2024-02-12 16:18:55.422015 2024-02-12 16:18:55.422015 t 313 1 \N +231 on_hand 233 296 231 2024-02-12 16:19:52.300493 2024-02-12 16:19:52.300493 t 314 1 \N +233 on_hand 233 298 233 2024-02-12 16:21:46.240645 2024-02-12 16:21:46.240645 t 316 1 \N +236 on_hand 233 301 236 2024-02-12 16:24:37.505844 2024-02-12 16:24:37.505844 t 319 1 \N +238 on_hand 233 303 238 2024-02-12 16:26:31.472053 2024-02-12 16:26:31.472053 t 321 1 \N +239 on_hand 233 304 239 2024-02-12 16:27:28.401 2024-02-12 16:27:28.401 t 322 1 \N +240 on_hand 233 305 240 2024-02-12 16:28:25.240372 2024-02-12 16:28:25.240372 t 323 1 \N +241 on_hand 233 306 241 2024-02-12 16:29:22.100487 2024-02-12 16:29:22.100487 t 324 1 \N +242 on_hand 233 307 242 2024-02-12 16:30:19.160896 2024-02-12 16:30:19.160896 t 325 1 \N +243 on_hand 233 308 243 2024-02-12 16:31:15.955937 2024-02-12 16:31:15.955937 t 326 1 \N +244 on_hand 233 309 244 2024-02-12 16:32:13.030661 2024-02-12 16:32:13.030661 t 327 1 \N +245 on_hand 233 310 245 2024-02-12 16:33:10.076319 2024-02-12 16:33:10.076319 t 328 1 \N +246 on_hand 233 311 246 2024-02-12 16:34:06.974395 2024-02-12 16:34:06.974395 t 329 1 \N +247 on_hand 233 312 247 2024-02-12 16:35:04.119533 2024-02-12 16:35:04.119533 t 330 1 \N +248 on_hand 233 313 248 2024-02-12 16:36:01.116625 2024-02-12 16:36:01.116625 t 331 1 \N +249 on_hand 233 314 249 2024-02-12 16:36:57.873709 2024-02-12 16:36:57.873709 t 332 1 \N +250 on_hand 233 315 250 2024-02-12 16:37:54.815351 2024-02-12 16:37:54.815351 t 333 1 \N +251 on_hand 233 316 251 2024-02-12 16:38:51.637601 2024-02-12 16:38:51.637601 t 334 1 \N +252 on_hand 233 317 252 2024-02-12 16:39:48.479982 2024-02-12 16:39:48.479982 t 335 1 \N +253 on_hand 233 318 253 2024-02-12 16:40:45.287915 2024-02-12 16:40:45.287915 t 336 1 \N +254 on_hand 233 319 254 2024-02-12 16:41:42.02259 2024-02-12 16:41:42.02259 t 337 1 \N +255 on_hand 233 320 255 2024-02-12 16:42:39.017762 2024-02-12 16:42:39.017762 t 338 1 \N +256 on_hand 233 321 256 2024-02-12 16:43:35.793527 2024-02-12 16:43:35.793527 t 339 1 \N +257 on_hand 233 322 257 2024-02-12 16:44:33.283625 2024-02-12 16:44:33.283625 t 340 1 \N +258 on_hand 233 323 258 2024-02-12 16:45:30.306457 2024-02-12 16:45:30.306457 t 341 1 \N +259 on_hand 233 324 259 2024-02-12 16:46:27.333155 2024-02-12 16:46:27.333155 t 342 1 \N +260 on_hand 233 325 260 2024-02-12 16:47:24.474435 2024-02-12 16:47:24.474435 t 343 1 \N +261 on_hand 233 326 261 2024-02-12 16:48:21.185483 2024-02-12 16:48:21.185483 t 344 1 \N +262 on_hand 233 327 262 2024-02-12 16:49:18.14053 2024-02-12 16:49:18.14053 t 345 1 \N +263 on_hand 233 328 263 2024-02-12 16:50:14.928034 2024-02-12 16:50:14.928034 t 346 1 \N +264 on_hand 233 329 264 2024-02-12 16:51:12.38464 2024-02-12 16:51:12.38464 t 347 1 \N +265 on_hand 233 330 265 2024-02-12 16:52:09.340676 2024-02-12 16:52:09.340676 t 348 1 \N +266 on_hand 233 331 266 2024-02-12 16:53:06.083849 2024-02-12 16:53:06.083849 t 349 1 \N +267 on_hand 233 332 267 2024-02-12 16:54:02.99554 2024-02-12 16:54:02.99554 t 350 1 \N +268 on_hand 233 333 268 2024-02-12 16:55:00.1093 2024-02-12 16:55:00.1093 t 351 1 \N +269 on_hand 233 334 269 2024-02-12 16:55:57.033846 2024-02-12 16:55:57.033846 t 352 1 \N +270 on_hand 233 335 270 2024-02-12 16:56:54.258105 2024-02-12 16:56:54.258105 t 353 1 \N +271 on_hand 233 336 271 2024-02-12 16:57:51.124829 2024-02-12 16:57:51.124829 t 354 1 \N +272 on_hand 233 337 272 2024-02-12 16:58:48.080962 2024-02-12 16:58:48.080962 t 355 1 \N +273 on_hand 233 338 273 2024-02-12 16:59:44.999506 2024-02-12 16:59:44.999506 t 356 1 \N +274 on_hand 233 339 274 2024-02-12 17:00:42.468686 2024-02-12 17:00:42.468686 t 357 1 \N +275 on_hand 233 340 275 2024-02-12 17:01:39.773756 2024-02-12 17:01:39.773756 t 358 1 \N +276 on_hand 233 341 276 2024-02-12 17:02:37.014927 2024-02-12 17:02:37.014927 t 359 1 \N +277 on_hand 233 342 277 2024-02-12 17:03:34.622149 2024-02-12 17:03:34.622149 t 360 1 \N +278 on_hand 233 343 278 2024-02-12 17:04:31.628011 2024-02-12 17:04:31.628011 t 361 1 \N +279 on_hand 233 344 279 2024-02-12 17:05:28.83659 2024-02-12 17:05:28.83659 t 362 1 \N +280 on_hand 233 345 280 2024-02-12 17:06:26.02288 2024-02-12 17:06:26.02288 t 363 1 \N +281 on_hand 233 346 281 2024-02-12 17:07:23.272537 2024-02-12 17:07:23.272537 t 364 1 \N +282 on_hand 233 347 282 2024-02-12 17:08:20.440814 2024-02-12 17:08:20.440814 t 365 1 \N +283 on_hand 233 348 283 2024-02-12 17:09:17.685133 2024-02-12 17:09:17.685133 t 366 1 \N +284 on_hand 233 349 284 2024-02-12 17:10:14.80675 2024-02-12 17:10:14.80675 t 367 1 \N +285 on_hand 233 350 285 2024-02-12 17:11:12.180436 2024-02-12 17:11:12.180436 t 368 1 \N +286 on_hand 233 351 286 2024-02-12 17:12:09.180792 2024-02-12 17:12:09.180792 t 369 1 \N +287 on_hand 233 352 287 2024-02-12 17:13:06.649988 2024-02-12 17:13:06.649988 t 370 1 \N +288 on_hand 233 353 288 2024-02-12 17:14:03.873966 2024-02-12 17:14:03.873966 t 371 1 \N +289 on_hand 233 354 289 2024-02-12 17:15:00.995316 2024-02-12 17:15:00.995316 t 372 1 \N +290 on_hand 233 355 290 2024-02-12 17:15:58.147444 2024-02-12 17:15:58.147444 t 373 1 \N +291 on_hand 233 356 291 2024-02-12 17:16:55.327601 2024-02-12 17:16:55.327601 t 374 1 \N +292 on_hand 233 357 292 2024-02-12 17:17:52.721353 2024-02-12 17:17:52.721353 t 375 1 \N +293 on_hand 233 358 293 2024-02-12 17:18:49.796089 2024-02-12 17:18:49.796089 t 376 1 \N +294 on_hand 233 359 294 2024-02-12 17:19:47.082209 2024-02-12 17:19:47.082209 t 377 1 \N +295 on_hand 233 360 295 2024-02-12 17:20:44.770251 2024-02-12 17:20:44.770251 t 378 1 \N +296 on_hand 233 361 296 2024-02-12 17:21:41.963756 2024-02-12 17:21:41.963756 t 379 1 \N +297 on_hand 233 362 297 2024-02-12 17:22:39.468984 2024-02-12 17:22:39.468984 t 380 1 \N +298 on_hand 233 363 298 2024-02-12 17:23:36.623203 2024-02-12 17:23:36.623203 t 381 1 \N +300 on_hand 233 365 300 2024-02-12 17:25:30.91525 2024-02-12 17:25:30.91525 t 383 1 \N +302 on_hand 233 367 302 2024-02-12 17:27:25.809145 2024-02-12 17:27:25.809145 t 385 1 \N +303 on_hand 233 368 303 2024-02-12 17:28:23.348124 2024-02-12 17:28:23.348124 t 386 1 \N +308 on_hand 233 373 308 2024-02-12 17:33:09.157566 2024-02-12 17:33:09.157566 t 391 1 \N +311 on_hand 233 376 311 2024-02-12 17:35:59.335274 2024-02-12 17:35:59.335274 t 394 1 \N +850 on_hand 233 708 698 2024-02-12 22:17:24.738262 2024-02-12 22:18:04.13156 f 758 1 \N +851 on_hand 236 708 698 2024-02-12 22:17:24.740904 2024-02-12 22:18:04.13156 f 763 1 \N +852 on_hand 240 712 699 2024-02-12 22:17:40.232445 2024-02-12 22:18:45.070846 f 760 2 \N +869 on_hand 235 728 709 2024-02-12 22:22:09.269451 2024-02-12 22:22:48.754647 f 773 1 \N +979 on_hand 241 766 771 2024-02-12 22:37:42.935799 2024-02-12 22:37:42.935799 t 831 1 \N +983 on_hand 241 769 773 2024-02-12 22:37:49.705103 2024-02-12 22:37:49.705103 t 833 1 \N +973 on_hand 233 770 769 2024-02-12 22:37:35.597092 2024-02-12 22:38:14.596251 f 823 1 \N +974 on_hand 236 770 769 2024-02-12 22:37:35.599549 2024-02-12 22:38:14.596251 f 825 1 \N +975 on_hand 240 770 769 2024-02-12 22:37:35.601825 2024-02-12 22:38:14.596251 f 829 1 \N +299 on_hand 233 364 299 2024-02-12 17:24:33.766509 2024-02-12 17:24:33.766509 t 382 1 \N +301 on_hand 233 366 301 2024-02-12 17:26:28.38486 2024-02-12 17:26:28.38486 t 384 1 \N +304 on_hand 233 369 304 2024-02-12 17:29:20.413856 2024-02-12 17:29:20.413856 t 387 1 \N +305 on_hand 233 370 305 2024-02-12 17:30:17.865983 2024-02-12 17:30:17.865983 t 388 1 \N +306 on_hand 233 371 306 2024-02-12 17:31:15.074382 2024-02-12 17:31:15.074382 t 389 1 \N +307 on_hand 233 372 307 2024-02-12 17:32:12.326255 2024-02-12 17:32:12.326255 t 390 1 \N +309 on_hand 233 374 309 2024-02-12 17:34:05.797584 2024-02-12 17:34:05.797584 t 392 1 \N +310 on_hand 233 375 310 2024-02-12 17:35:02.524062 2024-02-12 17:35:02.524062 t 393 1 \N +312 on_hand 233 377 312 2024-02-12 17:36:56.12363 2024-02-12 17:36:56.12363 t 395 1 \N +313 on_hand 233 378 313 2024-02-12 17:37:53.124724 2024-02-12 17:37:53.124724 t 396 1 \N +314 on_hand 233 379 314 2024-02-12 17:38:49.945852 2024-02-12 17:38:49.945852 t 397 1 \N +315 on_hand 233 380 315 2024-02-12 17:39:46.83125 2024-02-12 17:39:46.83125 t 398 1 \N +316 on_hand 233 381 316 2024-02-12 17:40:44.017362 2024-02-12 17:40:44.017362 t 399 1 \N +317 on_hand 233 382 317 2024-02-12 17:41:41.019952 2024-02-12 17:41:41.019952 t 400 1 \N +318 on_hand 233 383 318 2024-02-12 17:42:37.891919 2024-02-12 17:42:37.891919 t 401 1 \N +319 on_hand 233 384 319 2024-02-12 17:43:34.61496 2024-02-12 17:43:34.61496 t 402 1 \N +320 on_hand 233 385 320 2024-02-12 17:44:31.439511 2024-02-12 17:44:31.439511 t 403 1 \N +321 on_hand 233 386 321 2024-02-12 17:45:28.741667 2024-02-12 17:45:28.741667 t 404 1 \N +322 on_hand 233 387 322 2024-02-12 17:46:25.786833 2024-02-12 17:46:25.786833 t 405 1 \N +323 on_hand 233 388 323 2024-02-12 17:47:22.773219 2024-02-12 17:47:22.773219 t 406 1 \N +324 on_hand 233 389 324 2024-02-12 17:48:19.827306 2024-02-12 17:48:19.827306 t 407 1 \N +325 on_hand 233 390 325 2024-02-12 17:49:16.826902 2024-02-12 17:49:16.826902 t 408 1 \N +326 on_hand 233 391 326 2024-02-12 17:50:13.833778 2024-02-12 17:50:13.833778 t 409 1 \N +327 on_hand 233 392 327 2024-02-12 17:51:10.773947 2024-02-12 17:51:10.773947 t 410 1 \N +328 on_hand 233 393 328 2024-02-12 17:52:07.746476 2024-02-12 17:52:07.746476 t 411 1 \N +329 on_hand 233 394 329 2024-02-12 17:53:04.707838 2024-02-12 17:53:04.707838 t 412 1 \N +330 on_hand 233 395 330 2024-02-12 17:54:01.491125 2024-02-12 17:54:01.491125 t 413 1 \N +331 on_hand 233 396 331 2024-02-12 17:54:58.378571 2024-02-12 17:54:58.378571 t 414 1 \N +332 on_hand 233 397 332 2024-02-12 17:55:55.797502 2024-02-12 17:55:55.797502 t 415 1 \N +333 on_hand 233 398 333 2024-02-12 17:56:52.983981 2024-02-12 17:56:52.983981 t 416 1 \N +334 on_hand 233 399 334 2024-02-12 17:57:50.173356 2024-02-12 17:57:50.173356 t 417 1 \N +335 on_hand 233 400 335 2024-02-12 17:58:46.650297 2024-02-12 17:58:46.650297 t 418 1 \N +336 on_hand 233 401 336 2024-02-12 17:59:43.721166 2024-02-12 17:59:43.721166 t 419 1 \N +337 on_hand 233 402 337 2024-02-12 18:00:40.327647 2024-02-12 18:00:40.327647 t 420 1 \N +338 on_hand 233 403 338 2024-02-12 18:01:37.191253 2024-02-12 18:01:37.191253 t 421 1 \N +339 on_hand 233 404 339 2024-02-12 18:02:34.036093 2024-02-12 18:02:34.036093 t 422 1 \N +340 on_hand 233 405 340 2024-02-12 18:03:31.112426 2024-02-12 18:03:31.112426 t 423 1 \N +341 on_hand 233 406 341 2024-02-12 18:04:28.06103 2024-02-12 18:04:28.06103 t 424 1 \N +342 on_hand 233 407 342 2024-02-12 18:05:25.039379 2024-02-12 18:05:25.039379 t 425 1 \N +343 on_hand 233 408 343 2024-02-12 18:06:22.052026 2024-02-12 18:06:22.052026 t 426 1 \N +344 on_hand 233 409 344 2024-02-12 18:07:18.733924 2024-02-12 18:07:18.733924 t 427 1 \N +345 on_hand 233 410 345 2024-02-12 18:08:15.704318 2024-02-12 18:08:15.704318 t 428 1 \N +346 on_hand 233 411 346 2024-02-12 18:09:12.867699 2024-02-12 18:09:12.867699 t 429 1 \N +347 on_hand 233 412 347 2024-02-12 18:10:09.703162 2024-02-12 18:10:09.703162 t 430 1 \N +348 on_hand 233 413 348 2024-02-12 18:11:07.038667 2024-02-12 18:11:07.038667 t 431 1 \N +349 on_hand 233 414 349 2024-02-12 18:12:04.294181 2024-02-12 18:12:04.294181 t 432 1 \N +350 on_hand 233 415 350 2024-02-12 18:13:01.44094 2024-02-12 18:13:01.44094 t 433 1 \N +351 on_hand 233 416 351 2024-02-12 18:13:58.6829 2024-02-12 18:13:58.6829 t 434 1 \N +352 on_hand 233 417 352 2024-02-12 18:14:56.096224 2024-02-12 18:14:56.096224 t 435 1 \N +353 on_hand 233 418 353 2024-02-12 18:15:52.941574 2024-02-12 18:15:52.941574 t 436 1 \N +354 on_hand 233 419 354 2024-02-12 18:16:49.759913 2024-02-12 18:16:49.759913 t 437 1 \N +355 on_hand 233 420 355 2024-02-12 18:17:46.640852 2024-02-12 18:17:46.640852 t 438 1 \N +356 on_hand 233 421 356 2024-02-12 18:18:43.600422 2024-02-12 18:18:43.600422 t 439 1 \N +357 on_hand 233 422 357 2024-02-12 18:19:40.556746 2024-02-12 18:19:40.556746 t 440 1 \N +358 on_hand 233 423 358 2024-02-12 18:20:37.672701 2024-02-12 18:20:37.672701 t 441 1 \N +359 on_hand 233 424 359 2024-02-12 18:21:34.614784 2024-02-12 18:21:34.614784 t 442 1 \N +360 on_hand 233 425 360 2024-02-12 18:22:31.568896 2024-02-12 18:22:31.568896 t 443 1 \N +361 on_hand 233 426 361 2024-02-12 18:23:28.216846 2024-02-12 18:23:28.216846 t 444 1 \N +362 on_hand 233 427 362 2024-02-12 18:24:25.330209 2024-02-12 18:24:25.330209 t 445 1 \N +363 on_hand 233 428 363 2024-02-12 18:25:22.319395 2024-02-12 18:25:22.319395 t 446 1 \N +364 on_hand 233 429 364 2024-02-12 18:26:19.187932 2024-02-12 18:26:19.187932 t 447 1 \N +365 on_hand 233 430 365 2024-02-12 18:27:16.147195 2024-02-12 18:27:16.147195 t 448 1 \N +366 on_hand 233 431 366 2024-02-12 18:28:12.817118 2024-02-12 18:28:12.817118 t 449 1 \N +367 on_hand 233 432 367 2024-02-12 18:29:09.60991 2024-02-12 18:29:09.60991 t 450 1 \N +368 on_hand 233 433 368 2024-02-12 18:30:06.429901 2024-02-12 18:30:06.429901 t 451 1 \N +369 on_hand 233 434 369 2024-02-12 18:31:03.284871 2024-02-12 18:31:03.284871 t 452 1 \N +370 on_hand 233 435 370 2024-02-12 18:32:00.015016 2024-02-12 18:32:00.015016 t 453 1 \N +371 on_hand 233 436 371 2024-02-12 18:32:57.096899 2024-02-12 18:32:57.096899 t 454 1 \N +372 on_hand 233 437 372 2024-02-12 18:33:53.935729 2024-02-12 18:33:53.935729 t 455 1 \N +373 on_hand 233 438 373 2024-02-12 18:34:50.773526 2024-02-12 18:34:50.773526 t 456 1 \N +374 on_hand 233 439 374 2024-02-12 18:35:47.610557 2024-02-12 18:35:47.610557 t 457 1 \N +376 on_hand 233 441 376 2024-02-12 18:37:41.375624 2024-02-12 18:37:41.375624 t 459 1 \N +379 on_hand 233 444 379 2024-02-12 18:40:31.998924 2024-02-12 18:40:31.998924 t 462 1 \N +382 on_hand 233 447 382 2024-02-12 18:43:22.584857 2024-02-12 18:43:22.584857 t 465 1 \N +375 on_hand 233 440 375 2024-02-12 18:36:44.560565 2024-02-12 18:36:44.560565 t 458 1 \N +377 on_hand 233 442 377 2024-02-12 18:38:38.152271 2024-02-12 18:38:38.152271 t 460 1 \N +378 on_hand 233 443 378 2024-02-12 18:39:35.148634 2024-02-12 18:39:35.148634 t 461 1 \N +380 on_hand 233 445 380 2024-02-12 18:41:28.925229 2024-02-12 18:41:28.925229 t 463 1 \N +381 on_hand 233 446 381 2024-02-12 18:42:25.688478 2024-02-12 18:42:25.688478 t 464 1 \N +383 on_hand 233 448 383 2024-02-12 18:44:19.285795 2024-02-12 18:44:19.285795 t 466 1 \N +384 on_hand 233 449 384 2024-02-12 18:45:15.986646 2024-02-12 18:45:15.986646 t 467 1 \N +385 on_hand 233 450 385 2024-02-12 18:46:12.726332 2024-02-12 18:46:12.726332 t 468 1 \N +386 on_hand 233 451 386 2024-02-12 18:47:09.992694 2024-02-12 18:47:09.992694 t 469 1 \N +387 on_hand 233 452 387 2024-02-12 18:48:06.62655 2024-02-12 18:48:06.62655 t 470 1 \N +388 on_hand 233 453 388 2024-02-12 18:49:03.309629 2024-02-12 18:49:03.309629 t 471 1 \N +389 on_hand 233 454 389 2024-02-12 18:50:00.107057 2024-02-12 18:50:00.107057 t 472 1 \N +390 on_hand 233 455 390 2024-02-12 18:50:57.252486 2024-02-12 18:50:57.252486 t 473 1 \N +391 on_hand 233 456 391 2024-02-12 18:51:54.348058 2024-02-12 18:51:54.348058 t 474 1 \N +392 on_hand 233 457 392 2024-02-12 18:52:51.256647 2024-02-12 18:52:51.256647 t 475 1 \N +393 on_hand 233 458 393 2024-02-12 18:53:48.002379 2024-02-12 18:53:48.002379 t 476 1 \N +394 on_hand 233 459 394 2024-02-12 18:54:44.919587 2024-02-12 18:54:44.919587 t 477 1 \N +395 on_hand 233 460 395 2024-02-12 18:55:41.666986 2024-02-12 18:55:41.666986 t 478 1 \N +396 on_hand 233 461 396 2024-02-12 18:56:38.62651 2024-02-12 18:56:38.62651 t 479 1 \N +397 on_hand 233 462 397 2024-02-12 18:57:35.547366 2024-02-12 18:57:35.547366 t 480 1 \N +398 on_hand 233 463 398 2024-02-12 18:58:32.390739 2024-02-12 18:58:32.390739 t 481 1 \N +399 on_hand 233 464 399 2024-02-12 18:59:29.261621 2024-02-12 18:59:29.261621 t 482 1 \N +400 on_hand 233 465 400 2024-02-12 19:00:26.112251 2024-02-12 19:00:26.112251 t 483 1 \N +401 on_hand 233 466 401 2024-02-12 19:01:22.889994 2024-02-12 19:01:22.889994 t 484 1 \N +402 on_hand 233 467 402 2024-02-12 19:02:19.692898 2024-02-12 19:02:19.692898 t 485 1 \N +403 on_hand 233 468 403 2024-02-12 19:03:16.600381 2024-02-12 19:03:16.600381 t 486 1 \N +404 on_hand 233 469 404 2024-02-12 19:04:13.478166 2024-02-12 19:04:13.478166 t 487 1 \N +405 on_hand 233 470 405 2024-02-12 19:05:10.373482 2024-02-12 19:05:10.373482 t 488 1 \N +406 on_hand 233 471 406 2024-02-12 19:06:07.137739 2024-02-12 19:06:07.137739 t 489 1 \N +407 on_hand 233 472 407 2024-02-12 19:07:04.057097 2024-02-12 19:07:04.057097 t 490 1 \N +408 on_hand 233 473 408 2024-02-12 19:08:01.042903 2024-02-12 19:08:01.042903 t 491 1 \N +409 on_hand 233 474 409 2024-02-12 19:08:57.8836 2024-02-12 19:08:57.8836 t 492 1 \N +410 on_hand 233 475 410 2024-02-12 19:09:54.869822 2024-02-12 19:09:54.869822 t 493 1 \N +411 on_hand 233 476 411 2024-02-12 19:10:51.689023 2024-02-12 19:10:51.689023 t 494 1 \N +412 on_hand 233 477 412 2024-02-12 19:11:48.652519 2024-02-12 19:11:48.652519 t 495 1 \N +413 on_hand 233 478 413 2024-02-12 19:12:45.491588 2024-02-12 19:12:45.491588 t 496 1 \N +414 on_hand 233 479 414 2024-02-12 19:13:42.424676 2024-02-12 19:13:42.424676 t 497 1 \N +415 on_hand 233 480 415 2024-02-12 19:14:39.37598 2024-02-12 19:14:39.37598 t 498 1 \N +416 on_hand 233 481 416 2024-02-12 19:15:36.425554 2024-02-12 19:15:36.425554 t 499 1 \N +417 on_hand 233 482 417 2024-02-12 19:16:33.251743 2024-02-12 19:16:33.251743 t 500 1 \N +418 on_hand 233 483 418 2024-02-12 19:17:30.089746 2024-02-12 19:17:30.089746 t 501 1 \N +419 on_hand 233 484 419 2024-02-12 19:18:26.951925 2024-02-12 19:18:26.951925 t 502 1 \N +420 on_hand 233 485 420 2024-02-12 19:19:23.865521 2024-02-12 19:19:23.865521 t 503 1 \N +421 on_hand 233 486 421 2024-02-12 19:20:20.555361 2024-02-12 19:20:20.555361 t 504 1 \N +422 on_hand 233 487 422 2024-02-12 19:21:17.338114 2024-02-12 19:21:17.338114 t 505 1 \N +423 on_hand 233 488 423 2024-02-12 19:22:14.558078 2024-02-12 19:22:14.558078 t 506 1 \N +424 on_hand 233 489 424 2024-02-12 19:23:11.403841 2024-02-12 19:23:11.403841 t 507 1 \N +425 on_hand 233 490 425 2024-02-12 19:24:08.616515 2024-02-12 19:24:08.616515 t 508 1 \N +426 on_hand 233 491 426 2024-02-12 19:25:05.737404 2024-02-12 19:25:05.737404 t 509 1 \N +427 on_hand 233 492 427 2024-02-12 19:26:02.932102 2024-02-12 19:26:02.932102 t 510 1 \N +428 on_hand 233 493 428 2024-02-12 19:27:00.180624 2024-02-12 19:27:00.180624 t 511 1 \N +429 on_hand 233 494 429 2024-02-12 19:27:57.195866 2024-02-12 19:27:57.195866 t 512 1 \N +430 on_hand 233 495 430 2024-02-12 19:28:54.042667 2024-02-12 19:28:54.042667 t 513 1 \N +431 on_hand 233 496 431 2024-02-12 19:29:51.067115 2024-02-12 19:29:51.067115 t 514 1 \N +432 on_hand 233 497 432 2024-02-12 19:30:48.381245 2024-02-12 19:30:48.381245 t 515 1 \N +433 on_hand 233 498 433 2024-02-12 19:31:45.449994 2024-02-12 19:31:45.449994 t 516 1 \N +434 on_hand 233 499 434 2024-02-12 19:32:42.462384 2024-02-12 19:32:42.462384 t 517 1 \N +435 on_hand 233 500 435 2024-02-12 19:33:39.579927 2024-02-12 19:33:39.579927 t 518 1 \N +436 on_hand 233 501 436 2024-02-12 19:34:36.680072 2024-02-12 19:34:36.680072 t 519 1 \N +437 on_hand 233 502 437 2024-02-12 19:35:33.720465 2024-02-12 19:35:33.720465 t 520 1 \N +438 on_hand 233 503 438 2024-02-12 19:36:30.721031 2024-02-12 19:36:30.721031 t 521 1 \N +439 on_hand 233 504 439 2024-02-12 19:37:27.807232 2024-02-12 19:37:27.807232 t 522 1 \N +440 on_hand 233 505 440 2024-02-12 19:38:24.816174 2024-02-12 19:38:24.816174 t 523 1 \N +441 on_hand 233 506 441 2024-02-12 19:39:21.617165 2024-02-12 19:39:21.617165 t 524 1 \N +442 on_hand 233 507 442 2024-02-12 19:40:18.835327 2024-02-12 19:40:18.835327 t 525 1 \N +443 on_hand 233 508 443 2024-02-12 19:41:15.851131 2024-02-12 19:41:15.851131 t 526 1 \N +444 on_hand 233 509 444 2024-02-12 19:42:12.957876 2024-02-12 19:42:12.957876 t 527 1 \N +445 on_hand 233 510 445 2024-02-12 19:43:09.924961 2024-02-12 19:43:09.924961 t 528 1 \N +446 on_hand 233 511 446 2024-02-12 19:44:06.85296 2024-02-12 19:44:06.85296 t 529 1 \N +447 on_hand 233 512 447 2024-02-12 19:45:03.831433 2024-02-12 19:45:03.831433 t 530 1 \N +448 on_hand 233 513 448 2024-02-12 19:46:01.214288 2024-02-12 19:46:01.214288 t 531 1 \N +451 on_hand 233 516 451 2024-02-12 19:48:51.901642 2024-02-12 19:48:51.901642 t 534 1 \N +453 on_hand 233 518 453 2024-02-12 19:50:45.881114 2024-02-12 19:50:45.881114 t 536 1 \N +454 on_hand 233 519 454 2024-02-12 19:51:43.233237 2024-02-12 19:51:43.233237 t 537 1 \N +461 on_hand 233 526 461 2024-02-12 19:58:21.500711 2024-02-12 19:58:21.500711 t 544 1 \N +464 on_hand 233 529 464 2024-02-12 20:01:12.37953 2024-02-12 20:01:12.37953 t 547 1 \N +465 on_hand 233 530 465 2024-02-12 20:02:09.372149 2024-02-12 20:02:09.372149 t 548 1 \N +467 on_hand 233 532 467 2024-02-12 20:04:03.309597 2024-02-12 20:04:03.309597 t 550 1 \N +468 on_hand 233 533 468 2024-02-12 20:05:00.198349 2024-02-12 20:05:00.198349 t 551 1 \N +471 on_hand 233 536 471 2024-02-12 20:07:50.919472 2024-02-12 20:07:50.919472 t 554 1 \N +473 on_hand 233 538 473 2024-02-12 20:09:45.618858 2024-02-12 20:09:45.618858 t 556 1 \N +877 on_hand 236 721 714 2024-02-12 22:22:26.685057 2024-02-12 22:22:26.685057 t 769 1 \N +878 on_hand 237 721 714 2024-02-12 22:22:26.687702 2024-02-12 22:22:26.687702 t 778 1 \N +875 on_hand 245 722 713 2024-02-12 22:22:24.362659 2024-02-12 22:23:03.915471 f 770 1 \N +876 on_hand 234 722 713 2024-02-12 22:22:24.365561 2024-02-12 22:23:03.915471 f 777 1 \N +879 on_hand 234 729 715 2024-02-12 22:22:31.437693 2024-02-12 22:23:10.908714 f 774 1 \N +880 on_hand 239 729 715 2024-02-12 22:22:31.439892 2024-02-12 22:23:10.908714 f 779 1 \N +881 on_hand 237 726 716 2024-02-12 22:22:36.632456 2024-02-12 22:23:35.488342 f 771 1 \N +882 on_hand 236 726 716 2024-02-12 22:22:36.635055 2024-02-12 22:23:35.488342 f 775 1 \N +883 on_hand 234 726 716 2024-02-12 22:22:36.637559 2024-02-12 22:23:35.488342 f 780 1 \N +894 on_hand 239 735 722 2024-02-12 22:26:33.388358 2024-02-12 22:26:33.388358 t 786 1 \N +906 on_hand 244 736 731 2024-02-12 22:27:05.599484 2024-02-12 22:27:05.599484 t 787 2 \N +907 on_hand 236 736 731 2024-02-12 22:27:05.601781 2024-02-12 22:27:05.601781 t 792 1 \N +908 on_hand 240 738 732 2024-02-12 22:27:08.028107 2024-02-12 22:27:48.514209 f 788 1 \N +909 on_hand 236 738 732 2024-02-12 22:27:08.030568 2024-02-12 22:27:48.514209 f 793 2 \N +904 on_hand 242 743 730 2024-02-12 22:27:04.588371 2024-02-12 22:28:05.505007 f 791 1 \N +905 on_hand 233 743 730 2024-02-12 22:27:04.590998 2024-02-12 22:28:05.505007 f 794 1 \N +914 on_hand 244 734 737 2024-02-12 22:28:20.791468 2024-02-12 22:28:20.791468 t 795 2 \N +915 on_hand 236 734 737 2024-02-12 22:28:20.795188 2024-02-12 22:28:20.795188 t 798 1 \N +916 on_hand 240 742 738 2024-02-12 22:28:25.273164 2024-02-12 22:28:25.273164 t 797 1 \N +917 on_hand 239 742 738 2024-02-12 22:28:25.276189 2024-02-12 22:28:25.276189 t 799 1 \N +920 on_hand 244 748 741 2024-02-12 22:31:15.803879 2024-02-12 22:32:17.912943 f 800 2 \N +1021 on_hand 237 779 796 2024-02-12 22:43:22.700068 2024-02-12 22:43:22.700068 t 849 1 \N +1022 on_hand 244 779 796 2024-02-12 22:43:22.702811 2024-02-12 22:43:22.702811 t 853 1 \N +1023 on_hand 236 779 796 2024-02-12 22:43:22.705498 2024-02-12 22:43:22.705498 t 854 1 \N +449 on_hand 233 514 449 2024-02-12 19:46:57.977368 2024-02-12 19:46:57.977368 t 532 1 \N +450 on_hand 233 515 450 2024-02-12 19:47:54.923957 2024-02-12 19:47:54.923957 t 533 1 \N +452 on_hand 233 517 452 2024-02-12 19:49:48.911406 2024-02-12 19:49:48.911406 t 535 1 \N +455 on_hand 233 520 455 2024-02-12 19:52:40.101778 2024-02-12 19:52:40.101778 t 538 1 \N +456 on_hand 233 521 456 2024-02-12 19:53:36.987394 2024-02-12 19:53:36.987394 t 539 1 \N +457 on_hand 233 522 457 2024-02-12 19:54:33.861166 2024-02-12 19:54:33.861166 t 540 1 \N +458 on_hand 233 523 458 2024-02-12 19:55:30.768675 2024-02-12 19:55:30.768675 t 541 1 \N +459 on_hand 233 524 459 2024-02-12 19:56:27.541776 2024-02-12 19:56:27.541776 t 542 1 \N +460 on_hand 233 525 460 2024-02-12 19:57:24.239049 2024-02-12 19:57:24.239049 t 543 1 \N +462 on_hand 233 527 462 2024-02-12 19:59:18.54854 2024-02-12 19:59:18.54854 t 545 1 \N +463 on_hand 233 528 463 2024-02-12 20:00:15.458635 2024-02-12 20:00:15.458635 t 546 1 \N +466 on_hand 233 531 466 2024-02-12 20:03:06.483338 2024-02-12 20:03:06.483338 t 549 1 \N +469 on_hand 233 534 469 2024-02-12 20:05:57.040445 2024-02-12 20:05:57.040445 t 552 1 \N +470 on_hand 233 535 470 2024-02-12 20:06:54.010067 2024-02-12 20:06:54.010067 t 553 1 \N +472 on_hand 233 537 472 2024-02-12 20:08:48.819787 2024-02-12 20:08:48.819787 t 555 1 \N +474 on_hand 233 539 474 2024-02-12 20:10:42.600204 2024-02-12 20:10:42.600204 t 557 1 \N +476 on_hand 233 540 476 2024-02-12 20:11:39.792114 2024-02-12 20:11:39.792114 t 559 1 \N +477 on_hand 233 64 477 2024-02-12 20:11:57.0907 2024-02-12 20:11:57.0907 t 558 2 \N +884 on_hand 246 727 717 2024-02-12 22:22:38.681643 2024-02-12 22:22:38.681643 t 772 1 \N +885 on_hand 236 727 717 2024-02-12 22:22:38.684257 2024-02-12 22:22:38.684257 t 776 1 \N +484 on_hand 233 541 481 2024-02-12 20:13:31.43411 2024-02-12 20:14:34.154118 f 560 1 \N +485 on_hand 236 541 481 2024-02-12 20:13:31.436296 2024-02-12 20:14:34.154118 f 561 1 \N +486 on_hand 240 541 481 2024-02-12 20:13:31.438359 2024-02-12 20:14:34.154118 f 562 1 \N +487 on_hand 238 541 481 2024-02-12 20:13:31.440422 2024-02-12 20:14:34.154118 f 563 1 \N +489 on_hand 233 543 483 2024-02-12 20:15:32.502546 2024-02-12 20:16:13.722439 f 564 1 \N +490 on_hand 236 543 483 2024-02-12 20:15:32.50517 2024-02-12 20:16:13.722439 f 565 1 \N +494 on_hand 233 545 486 2024-02-12 20:17:49.523858 2024-02-12 20:18:52.8323 f 566 1 \N +495 on_hand 234 545 486 2024-02-12 20:17:49.52615 2024-02-12 20:18:52.8323 f 567 1 \N +496 on_hand 240 545 486 2024-02-12 20:17:49.528528 2024-02-12 20:18:52.8323 f 568 1 \N +500 on_hand 233 547 489 2024-02-12 20:20:25.477957 2024-02-12 20:21:23.968959 f 569 1 \N +501 on_hand 239 547 489 2024-02-12 20:20:25.480295 2024-02-12 20:21:23.968959 f 570 1 \N +502 on_hand 236 547 489 2024-02-12 20:20:25.482601 2024-02-12 20:21:23.968959 f 571 1 \N +512 on_hand 233 549 494 2024-02-12 20:23:28.303999 2024-02-12 20:24:07.783563 f 572 2 \N +513 on_hand 236 549 494 2024-02-12 20:23:28.310141 2024-02-12 20:24:07.783563 f 573 1 \N +514 on_hand 234 549 494 2024-02-12 20:23:28.312721 2024-02-12 20:24:07.783563 f 574 2 \N +515 on_hand 233 551 495 2024-02-12 20:24:59.644342 2024-02-12 20:25:59.935453 f 575 1 \N +525 on_hand 234 552 505 2024-02-12 20:40:22.156479 2024-02-12 20:40:22.156479 t 577 1 \N +537 on_hand 239 554 514 2024-02-12 21:27:00.802689 2024-02-12 21:27:00.802689 t 578 1 \N +538 on_hand 236 554 514 2024-02-12 21:27:00.805692 2024-02-12 21:27:00.805692 t 581 1 \N +539 on_hand 238 554 514 2024-02-12 21:27:00.808009 2024-02-12 21:27:00.808009 t 586 1 \N +540 on_hand 242 562 515 2024-02-12 21:27:03.116904 2024-02-12 21:27:03.116904 t 582 1 \N +541 on_hand 233 562 515 2024-02-12 21:27:03.119495 2024-02-12 21:27:03.119495 t 587 1 \N +547 on_hand 234 557 518 2024-02-12 21:27:07.936337 2024-02-12 21:27:07.936337 t 580 1 \N +548 on_hand 236 557 518 2024-02-12 21:27:07.938975 2024-02-12 21:27:07.938975 t 585 1 \N +549 on_hand 239 557 518 2024-02-12 21:27:07.94152 2024-02-12 21:27:07.94152 t 590 1 \N +552 on_hand 236 560 521 2024-02-12 21:27:29.081588 2024-02-12 21:27:29.081588 t 593 1 \N +545 on_hand 235 563 517 2024-02-12 21:27:06.321779 2024-02-12 21:27:46.191528 f 583 1 \N +546 on_hand 236 563 517 2024-02-12 21:27:06.324381 2024-02-12 21:27:46.191528 f 589 1 \N +542 on_hand 237 555 516 2024-02-12 21:27:05.98767 2024-02-12 21:28:08.394968 f 579 1 \N +543 on_hand 236 555 516 2024-02-12 21:27:05.990307 2024-02-12 21:28:08.394968 f 584 1 \N +544 on_hand 240 555 516 2024-02-12 21:27:05.992956 2024-02-12 21:28:08.394968 f 588 1 \N +557 on_hand 233 556 524 2024-02-12 21:28:30.285204 2024-02-12 21:28:30.285204 t 591 1 \N +558 on_hand 239 556 524 2024-02-12 21:28:30.288399 2024-02-12 21:28:30.288399 t 594 1 \N +559 on_hand 236 556 524 2024-02-12 21:28:30.291601 2024-02-12 21:28:30.291601 t 596 1 \N +560 on_hand 239 558 525 2024-02-12 21:28:35.542995 2024-02-12 21:29:18.157184 f 592 1 \N +561 on_hand 245 558 525 2024-02-12 21:28:35.545906 2024-02-12 21:29:18.157184 f 595 1 \N +562 on_hand 236 558 525 2024-02-12 21:28:35.548701 2024-02-12 21:29:18.157184 f 597 1 \N +574 on_hand 244 567 534 2024-02-12 21:32:34.492397 2024-02-12 21:32:34.492397 t 605 1 \N +575 on_hand 234 568 535 2024-02-12 21:32:39.44465 2024-02-12 21:33:19.04104 f 598 2 \N +576 on_hand 233 568 535 2024-02-12 21:32:39.447218 2024-02-12 21:33:19.04104 f 606 1 \N +577 on_hand 245 574 536 2024-02-12 21:32:43.519932 2024-02-12 21:33:22.964403 f 600 1 \N +578 on_hand 236 574 536 2024-02-12 21:32:43.52244 2024-02-12 21:33:22.964403 f 603 1 \N +582 on_hand 239 576 539 2024-02-12 21:32:45.943853 2024-02-12 21:33:25.443214 f 601 1 \N +583 on_hand 238 576 539 2024-02-12 21:32:45.94633 2024-02-12 21:33:25.443214 f 604 1 \N +589 on_hand 239 575 543 2024-02-12 21:33:56.98435 2024-02-12 21:33:56.98435 t 608 2 \N +590 on_hand 236 575 543 2024-02-12 21:33:56.987352 2024-02-12 21:33:56.987352 t 612 1 \N +587 on_hand 241 573 542 2024-02-12 21:33:55.379632 2024-02-12 21:34:37.926608 f 609 2 \N +568 on_hand 245 570 531 2024-02-12 21:32:18.10637 2024-02-12 21:32:57.595653 f 599 1 \N +569 on_hand 244 570 531 2024-02-12 21:32:18.108695 2024-02-12 21:32:57.595653 f 602 1 \N +584 on_hand 235 576 539 2024-02-12 21:32:45.952873 2024-02-12 21:33:25.443214 f 610 1 \N +886 on_hand 235 727 717 2024-02-12 22:22:38.686643 2024-02-12 22:22:38.686643 t 781 1 \N +888 on_hand 235 725 719 2024-02-12 22:22:47.808919 2024-02-12 22:22:47.808919 t 783 1 \N +891 on_hand 237 724 721 2024-02-12 22:23:59.662863 2024-02-12 22:23:59.662863 t 782 1 \N +599 on_hand 244 589 551 2024-02-12 21:36:58.322141 2024-02-12 21:38:02.515363 f 617 1 \N +600 on_hand 236 589 551 2024-02-12 21:36:58.324667 2024-02-12 21:38:02.515363 f 620 1 \N +603 on_hand 240 583 553 2024-02-12 21:37:01.423783 2024-02-12 21:38:04.970586 f 613 1 \N +604 on_hand 236 583 553 2024-02-12 21:37:01.426523 2024-02-12 21:38:04.970586 f 622 1 \N +605 on_hand 237 584 554 2024-02-12 21:37:05.863555 2024-02-12 21:38:08.376114 f 615 1 \N +606 on_hand 234 584 554 2024-02-12 21:37:05.865921 2024-02-12 21:38:08.376114 f 623 1 \N +892 on_hand 238 724 721 2024-02-12 22:23:59.665171 2024-02-12 22:23:59.665171 t 784 1 \N +893 on_hand 236 724 721 2024-02-12 22:23:59.667523 2024-02-12 22:23:59.667523 t 785 1 \N +898 on_hand 234 741 726 2024-02-12 22:26:39.664322 2024-02-12 22:27:19.334166 f 790 1 \N +926 on_hand 244 750 746 2024-02-12 22:31:48.943483 2024-02-12 22:32:28.540618 f 801 1 \N +927 on_hand 235 750 746 2024-02-12 22:31:48.946234 2024-02-12 22:32:28.540618 f 802 1 \N +928 on_hand 237 750 746 2024-02-12 22:31:48.949366 2024-02-12 22:32:28.540618 f 806 1 \N +1038 on_hand 235 802 806 2024-02-12 22:47:55.144008 2024-02-12 22:47:55.144008 t 860 1 \N +1039 on_hand 236 802 806 2024-02-12 22:47:55.147196 2024-02-12 22:47:55.147196 t 862 1 \N +1040 on_hand 239 802 806 2024-02-12 22:47:55.150362 2024-02-12 22:47:55.150362 t 864 1 \N +1026 on_hand 241 800 799 2024-02-12 22:47:19.463441 2024-02-12 22:47:59.436169 f 857 1 \N +1027 on_hand 244 801 800 2024-02-12 22:47:22.392896 2024-02-12 22:48:01.14319 f 858 1 \N +1035 on_hand 234 795 805 2024-02-12 22:47:44.529809 2024-02-12 22:48:45.701079 f 855 1 \N +1036 on_hand 236 795 805 2024-02-12 22:47:44.532693 2024-02-12 22:48:45.701079 f 859 1 \N +1037 on_hand 242 795 805 2024-02-12 22:47:44.535912 2024-02-12 22:48:45.701079 f 863 1 \N +579 on_hand 246 574 536 2024-02-12 21:32:43.5251 2024-02-12 21:33:22.964403 f 607 1 \N +588 on_hand 236 573 542 2024-02-12 21:33:55.383322 2024-02-12 21:34:37.926608 f 611 1 \N +609 on_hand 234 585 556 2024-02-12 21:37:13.718814 2024-02-12 21:37:13.718814 t 614 1 \N +610 on_hand 236 585 556 2024-02-12 21:37:13.729782 2024-02-12 21:37:13.729782 t 619 1 \N +611 on_hand 241 585 556 2024-02-12 21:37:13.732388 2024-02-12 21:37:13.732388 t 625 1 \N +612 on_hand 233 582 557 2024-02-12 21:37:14.573178 2024-02-12 21:37:14.573178 t 626 1 \N +616 on_hand 235 591 559 2024-02-12 21:37:28.346738 2024-02-12 21:37:28.346738 t 628 1 \N +897 on_hand 241 740 725 2024-02-12 22:26:38.05648 2024-02-12 22:27:17.079944 f 789 1 \N +613 on_hand 241 590 558 2024-02-12 21:37:21.336179 2024-02-12 21:38:00.464694 f 618 1 \N +614 on_hand 236 590 558 2024-02-12 21:37:21.338639 2024-02-12 21:38:00.464694 f 621 1 \N +615 on_hand 238 590 558 2024-02-12 21:37:21.341189 2024-02-12 21:38:00.464694 f 627 1 \N +618 on_hand 233 587 561 2024-02-12 21:37:30.00112 2024-02-12 21:38:08.951615 f 616 1 \N +619 on_hand 234 587 561 2024-02-12 21:37:30.003901 2024-02-12 21:38:08.951615 f 624 1 \N +620 on_hand 242 587 561 2024-02-12 21:37:30.00729 2024-02-12 21:38:08.951615 f 630 1 \N +626 on_hand 241 586 565 2024-02-12 21:38:36.572899 2024-02-12 21:39:19.110942 f 629 1 \N +627 on_hand 233 586 565 2024-02-12 21:38:36.575271 2024-02-12 21:39:19.110942 f 632 1 \N +628 on_hand 236 586 565 2024-02-12 21:38:36.577903 2024-02-12 21:39:19.110942 f 633 1 \N +632 on_hand 245 588 567 2024-02-12 21:40:40.367404 2024-02-12 21:40:40.367404 t 631 1 \N +633 on_hand 244 588 567 2024-02-12 21:40:40.369881 2024-02-12 21:40:40.369881 t 634 1 \N +634 on_hand 238 588 567 2024-02-12 21:40:40.372213 2024-02-12 21:40:40.372213 t 635 1 \N +635 on_hand 236 588 567 2024-02-12 21:40:40.37443 2024-02-12 21:40:40.37443 t 636 1 \N +950 on_hand 233 752 757 2024-02-12 22:33:00.701784 2024-02-12 22:33:00.701784 t 804 1 \N +951 on_hand 238 752 757 2024-02-12 22:33:00.704273 2024-02-12 22:33:00.704273 t 812 1 \N +952 on_hand 236 752 757 2024-02-12 22:33:00.707009 2024-02-12 22:33:00.707009 t 817 1 \N +939 on_hand 240 751 753 2024-02-12 22:32:52.479988 2024-02-12 22:33:56.14153 f 805 1 \N +940 on_hand 238 751 753 2024-02-12 22:32:52.482667 2024-02-12 22:33:56.14153 f 813 1 \N +638 on_hand 242 598 570 2024-02-12 21:43:40.575893 2024-02-12 21:44:20.197206 f 637 1 \N +639 on_hand 245 598 570 2024-02-12 21:43:40.578139 2024-02-12 21:44:20.197206 f 639 1 \N +646 on_hand 240 604 576 2024-02-12 21:44:12.561274 2024-02-12 21:44:52.012509 f 638 1 \N +647 on_hand 235 604 576 2024-02-12 21:44:12.563848 2024-02-12 21:44:52.012509 f 640 1 \N +648 on_hand 244 604 576 2024-02-12 21:44:12.566202 2024-02-12 21:44:52.012509 f 645 1 \N +1042 on_hand 241 803 808 2024-02-12 22:48:06.432071 2024-02-12 22:48:06.432071 t 866 1 \N +671 on_hand 233 602 587 2024-02-12 21:45:22.837223 2024-02-12 21:45:22.837223 t 643 1 \N +672 on_hand 242 602 587 2024-02-12 21:45:22.840158 2024-02-12 21:45:22.840158 t 651 1 \N +673 on_hand 236 602 587 2024-02-12 21:45:22.842805 2024-02-12 21:45:22.842805 t 655 1 \N +662 on_hand 235 601 584 2024-02-12 21:45:19.665892 2024-02-12 21:46:02.145931 f 642 1 \N +663 on_hand 245 601 584 2024-02-12 21:45:19.668535 2024-02-12 21:46:02.145931 f 648 1 \N +664 on_hand 236 601 584 2024-02-12 21:45:19.670684 2024-02-12 21:46:02.145931 f 652 1 \N +665 on_hand 235 600 585 2024-02-12 21:45:21.190492 2024-02-12 21:46:03.444429 f 644 1 \N +666 on_hand 242 600 585 2024-02-12 21:45:21.193398 2024-02-12 21:46:03.444429 f 649 1 \N +667 on_hand 236 600 585 2024-02-12 21:45:21.20207 2024-02-12 21:46:03.444429 f 653 1 \N +668 on_hand 244 603 586 2024-02-12 21:45:22.024086 2024-02-12 21:46:04.446604 f 646 1 \N +669 on_hand 237 603 586 2024-02-12 21:45:22.026685 2024-02-12 21:46:04.446604 f 650 1 \N +670 on_hand 236 603 586 2024-02-12 21:45:22.029469 2024-02-12 21:46:04.446604 f 654 1 \N +674 on_hand 236 599 588 2024-02-12 21:46:15.102412 2024-02-12 21:47:17.163218 f 641 2 \N +675 on_hand 233 599 588 2024-02-12 21:46:15.104792 2024-02-12 21:47:17.163218 f 647 1 \N +676 on_hand 242 599 588 2024-02-12 21:46:15.107047 2024-02-12 21:47:17.163218 f 656 1 \N +678 on_hand 241 617 590 2024-02-12 21:49:28.058767 2024-02-12 21:50:07.939684 f 658 1 \N +692 on_hand 245 623 599 2024-02-12 21:50:17.168645 2024-02-12 21:50:17.168645 t 667 1 \N +682 on_hand 237 615 594 2024-02-12 21:49:36.095592 2024-02-12 21:50:34.00214 f 657 1 \N +683 on_hand 236 615 594 2024-02-12 21:49:36.098044 2024-02-12 21:50:34.00214 f 662 1 \N +711 on_hand 245 628 613 2024-02-12 21:53:18.253401 2024-02-12 21:53:57.06548 f 669 1 \N +712 on_hand 236 628 613 2024-02-12 21:53:18.256016 2024-02-12 21:53:57.06548 f 674 1 \N +713 on_hand 235 628 613 2024-02-12 21:53:18.259032 2024-02-12 21:53:57.06548 f 681 1 \N +709 on_hand 237 631 612 2024-02-12 21:53:17.413263 2024-02-12 21:54:24.039044 f 672 1 \N +710 on_hand 245 631 612 2024-02-12 21:53:17.416793 2024-02-12 21:54:24.039044 f 680 1 \N +722 on_hand 234 633 618 2024-02-12 21:54:42.297903 2024-02-12 21:54:42.297903 t 684 1 \N +723 on_hand 239 633 618 2024-02-12 21:54:42.300435 2024-02-12 21:54:42.300435 t 686 1 \N +726 on_hand 239 645 620 2024-02-12 21:57:46.104472 2024-02-12 21:58:25.886823 f 688 1 \N +911 on_hand 234 739 734 2024-02-12 22:27:21.826687 2024-02-12 22:27:21.826687 t 796 1 \N +688 on_hand 239 618 597 2024-02-12 21:50:00.293182 2024-02-12 21:50:00.293182 t 659 1 \N +689 on_hand 236 618 597 2024-02-12 21:50:00.295514 2024-02-12 21:50:00.295514 t 663 1 \N +690 on_hand 242 618 597 2024-02-12 21:50:00.298142 2024-02-12 21:50:00.298142 t 665 1 \N +691 on_hand 240 616 598 2024-02-12 21:50:11.922936 2024-02-12 21:50:11.922936 t 666 1 \N +693 on_hand 241 622 600 2024-02-12 21:50:19.496158 2024-02-12 21:50:19.496158 t 668 1 \N +686 on_hand 235 619 596 2024-02-12 21:49:53.295459 2024-02-12 21:50:32.911761 f 660 1 \N +687 on_hand 241 619 596 2024-02-12 21:49:53.298799 2024-02-12 21:50:32.911761 f 664 1 \N +681 on_hand 237 620 593 2024-02-12 21:49:31.171687 2024-02-12 21:50:37.74505 f 661 1 \N +714 on_hand 235 632 614 2024-02-12 21:53:26.943763 2024-02-12 21:53:26.943763 t 673 1 \N +715 on_hand 236 632 614 2024-02-12 21:53:26.946117 2024-02-12 21:53:26.946117 t 677 1 \N +716 on_hand 234 632 614 2024-02-12 21:53:26.948269 2024-02-12 21:53:26.948269 t 682 1 \N +696 on_hand 237 630 603 2024-02-12 21:52:52.226074 2024-02-12 21:53:31.896679 f 671 1 \N +701 on_hand 244 634 607 2024-02-12 21:52:57.995271 2024-02-12 21:53:37.296089 f 675 1 \N +705 on_hand 237 635 610 2024-02-12 21:53:09.251328 2024-02-12 21:54:07.856177 f 676 1 \N +706 on_hand 236 635 610 2024-02-12 21:53:09.261266 2024-02-12 21:54:07.856177 f 678 1 \N +717 on_hand 246 629 615 2024-02-12 21:53:35.763601 2024-02-12 21:54:15.162352 f 670 1 \N +718 on_hand 239 629 615 2024-02-12 21:53:35.766382 2024-02-12 21:54:15.162352 f 679 1 \N +719 on_hand 236 629 615 2024-02-12 21:53:35.768797 2024-02-12 21:54:15.162352 f 683 1 \N +724 on_hand 245 637 619 2024-02-12 21:54:47.741514 2024-02-12 21:55:50.089977 f 685 1 \N +725 on_hand 233 637 619 2024-02-12 21:54:47.744222 2024-02-12 21:55:50.089977 f 687 1 \N +742 on_hand 237 649 631 2024-02-12 21:58:26.452966 2024-02-12 21:58:26.452966 t 692 1 \N +743 on_hand 236 649 631 2024-02-12 21:58:26.45566 2024-02-12 21:58:26.45566 t 695 1 \N +744 on_hand 239 649 631 2024-02-12 21:58:26.45801 2024-02-12 21:58:26.45801 t 698 1 \N +731 on_hand 244 650 625 2024-02-12 21:57:57.120694 2024-02-12 21:58:36.482089 f 693 1 \N +745 on_hand 245 651 632 2024-02-12 21:58:40.890909 2024-02-12 21:58:40.890909 t 699 1 \N +739 on_hand 237 646 630 2024-02-12 21:58:21.533978 2024-02-12 21:59:01.060572 f 689 1 \N +740 on_hand 236 646 630 2024-02-12 21:58:21.536379 2024-02-12 21:59:01.060572 f 694 1 \N +741 on_hand 241 646 630 2024-02-12 21:58:21.538603 2024-02-12 21:59:01.060572 f 697 1 \N +736 on_hand 235 647 628 2024-02-12 21:58:14.211855 2024-02-12 21:59:16.967686 f 690 1 \N +737 on_hand 240 647 628 2024-02-12 21:58:14.214161 2024-02-12 21:59:16.967686 f 696 1 \N +738 on_hand 242 648 629 2024-02-12 21:58:17.487837 2024-02-12 21:59:21.168891 f 691 2 \N +750 on_hand 234 652 636 2024-02-12 21:59:46.388321 2024-02-12 22:00:29.052511 f 701 1 \N +751 on_hand 239 652 636 2024-02-12 21:59:46.390642 2024-02-12 22:00:29.052511 f 703 1 \N +748 on_hand 238 654 635 2024-02-12 21:59:44.594381 2024-02-12 22:00:47.144998 f 700 1 \N +749 on_hand 234 654 635 2024-02-12 21:59:44.596891 2024-02-12 22:00:47.144998 f 702 1 \N +765 on_hand 244 670 646 2024-02-12 22:03:31.2087 2024-02-12 22:03:31.2087 t 708 1 \N +766 on_hand 235 670 646 2024-02-12 22:03:31.211266 2024-02-12 22:03:31.211266 t 713 1 \N +767 on_hand 235 665 647 2024-02-12 22:03:34.265102 2024-02-12 22:03:34.265102 t 705 1 \N +768 on_hand 236 665 647 2024-02-12 22:03:34.267501 2024-02-12 22:03:34.267501 t 709 1 \N +769 on_hand 241 665 647 2024-02-12 22:03:34.269738 2024-02-12 22:03:34.269738 t 714 1 \N +770 on_hand 233 671 648 2024-02-12 22:03:51.848997 2024-02-12 22:03:51.848997 t 715 1 \N +759 on_hand 234 668 643 2024-02-12 22:03:16.747595 2024-02-12 22:03:56.228986 f 706 1 \N +760 on_hand 236 668 643 2024-02-12 22:03:16.760597 2024-02-12 22:03:56.228986 f 710 1 \N +761 on_hand 240 662 644 2024-02-12 22:03:18.87804 2024-02-12 22:04:16.64663 f 704 1 \N +762 on_hand 245 662 644 2024-02-12 22:03:18.880416 2024-02-12 22:04:16.64663 f 711 1 \N +763 on_hand 242 667 645 2024-02-12 22:03:27.621368 2024-02-12 22:04:27.064859 f 707 1 \N +764 on_hand 235 667 645 2024-02-12 22:03:27.62379 2024-02-12 22:04:27.064859 f 712 1 \N +778 on_hand 235 679 654 2024-02-12 22:07:02.068646 2024-02-12 22:07:02.068646 t 717 1 \N +779 on_hand 236 679 654 2024-02-12 22:07:02.071883 2024-02-12 22:07:02.071883 t 719 1 \N +780 on_hand 242 679 654 2024-02-12 22:07:02.075647 2024-02-12 22:07:02.075647 t 721 1 \N +773 on_hand 244 684 651 2024-02-12 22:06:36.235172 2024-02-12 22:07:16.644414 f 718 1 \N +787 on_hand 244 680 659 2024-02-12 22:07:18.346263 2024-02-12 22:07:18.346263 t 726 1 \N +783 on_hand 241 677 657 2024-02-12 22:07:14.525642 2024-02-12 22:07:53.962475 f 716 1 \N +784 on_hand 246 677 657 2024-02-12 22:07:14.528366 2024-02-12 22:07:53.962475 f 720 1 \N +785 on_hand 235 677 657 2024-02-12 22:07:14.530747 2024-02-12 22:07:53.962475 f 724 1 \N +797 on_hand 238 682 666 2024-02-12 22:08:20.216744 2024-02-12 22:08:20.216744 t 727 1 \N +798 on_hand 244 682 666 2024-02-12 22:08:20.219343 2024-02-12 22:08:20.219343 t 732 1 \N +801 on_hand 244 678 668 2024-02-12 22:08:29.756822 2024-02-12 22:09:12.3658 f 725 1 \N +802 on_hand 236 678 668 2024-02-12 22:08:29.759645 2024-02-12 22:09:12.3658 f 731 2 \N +803 on_hand 238 675 669 2024-02-12 22:09:13.742269 2024-02-12 22:09:13.742269 t 722 2 \N +804 on_hand 236 675 669 2024-02-12 22:09:13.744713 2024-02-12 22:09:13.744713 t 729 1 \N +805 on_hand 234 675 669 2024-02-12 22:09:13.747783 2024-02-12 22:09:13.747783 t 734 1 \N +793 on_hand 238 676 664 2024-02-12 22:08:14.290895 2024-02-12 22:09:20.762814 f 723 1 \N +799 on_hand 237 681 667 2024-02-12 22:08:25.354952 2024-02-12 22:09:27.833339 f 728 1 \N +800 on_hand 240 681 667 2024-02-12 22:08:25.35858 2024-02-12 22:09:27.833339 f 733 1 \N +794 on_hand 242 676 664 2024-02-12 22:08:14.293612 2024-02-12 22:09:20.762814 f 730 1 \N +811 on_hand 237 695 675 2024-02-12 22:12:10.961134 2024-02-12 22:13:18.234922 f 737 1 \N +812 on_hand 236 695 675 2024-02-12 22:12:10.965791 2024-02-12 22:13:18.234922 f 740 1 \N +827 on_hand 234 692 682 2024-02-12 22:12:41.50984 2024-02-12 22:13:21.462965 f 736 1 \N +828 on_hand 235 692 682 2024-02-12 22:12:41.512569 2024-02-12 22:13:21.462965 f 744 1 \N +829 on_hand 236 692 682 2024-02-12 22:12:41.515119 2024-02-12 22:13:21.462965 f 747 1 \N +817 on_hand 246 691 678 2024-02-12 22:12:16.105092 2024-02-12 22:12:16.105092 t 735 1 \N +818 on_hand 242 691 678 2024-02-12 22:12:16.107367 2024-02-12 22:12:16.107367 t 743 1 \N +944 on_hand 234 756 755 2024-02-12 22:32:58.694693 2024-02-12 22:33:41.180282 f 807 1 \N +821 on_hand 239 694 680 2024-02-12 22:12:30.632496 2024-02-12 22:12:30.632496 t 738 1 \N +822 on_hand 236 694 680 2024-02-12 22:12:30.634761 2024-02-12 22:12:30.634761 t 741 1 \N +823 on_hand 244 694 680 2024-02-12 22:12:30.636933 2024-02-12 22:12:30.636933 t 745 1 \N +824 on_hand 242 698 681 2024-02-12 22:12:33.411885 2024-02-12 22:12:33.411885 t 739 1 \N +825 on_hand 236 698 681 2024-02-12 22:12:33.414327 2024-02-12 22:12:33.414327 t 742 1 \N +826 on_hand 234 698 681 2024-02-12 22:12:33.41754 2024-02-12 22:12:33.41754 t 746 1 \N +831 on_hand 233 696 684 2024-02-12 22:12:47.010446 2024-02-12 22:12:47.010446 t 749 1 \N +945 on_hand 240 756 755 2024-02-12 22:32:58.697188 2024-02-12 22:33:41.180282 f 810 1 \N +946 on_hand 236 756 755 2024-02-12 22:32:58.699477 2024-02-12 22:33:41.180282 f 815 1 \N +1058 on_hand 234 812 819 2024-02-12 22:51:50.91516 2024-02-12 22:51:50.91516 t 869 1 \N +1059 on_hand 236 812 819 2024-02-12 22:51:50.917794 2024-02-12 22:51:50.917794 t 872 1 \N +1060 on_hand 246 812 819 2024-02-12 22:51:50.920318 2024-02-12 22:51:50.920318 t 877 1 \N +1052 on_hand 235 809 816 2024-02-12 22:51:39.922369 2024-02-12 22:52:19.279757 f 868 1 \N +1053 on_hand 246 809 816 2024-02-12 22:51:39.925218 2024-02-12 22:52:19.279757 f 874 1 \N +1054 on_hand 238 811 817 2024-02-12 22:51:42.927484 2024-02-12 22:52:22.497079 f 870 1 \N +1055 on_hand 242 811 817 2024-02-12 22:51:42.930254 2024-02-12 22:52:22.497079 f 875 1 \N +1056 on_hand 234 816 818 2024-02-12 22:51:44.767458 2024-02-12 22:52:24.392145 f 871 1 \N +1057 on_hand 239 816 818 2024-02-12 22:51:44.770426 2024-02-12 22:52:24.392145 f 876 1 \N +1061 on_hand 246 808 820 2024-02-12 22:51:59.35865 2024-02-12 22:52:58.292975 f 867 1 \N +1062 on_hand 236 808 820 2024-02-12 22:51:59.361899 2024-02-12 22:52:58.292975 f 873 1 \N +1063 on_hand 244 808 820 2024-02-12 22:51:59.365183 2024-02-12 22:52:58.292975 f 878 1 \N +\. + + +-- +-- Data for Name: spree_line_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_line_items (id, variant_id, order_id, quantity, price, created_at, updated_at, currency, cost_price, tax_category_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; +3 233 3 1 20.00 2022-09-02 17:23:28.931907 2022-09-02 17:23:29.334969 USD \N \N 0.00 0.00 0.00 0.00 20.0000 0.00 0.00 \N \N +4 235 4 1 5.00 2022-09-02 18:42:33.838861 2022-09-02 18:42:34.186913 USD \N \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +23 234 19 1 14.99 2022-09-13 20:44:51.628683 2022-09-13 20:44:52.019666 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +30 236 18 1 9.99 2022-09-13 20:45:22.613275 2022-09-13 20:45:23.516742 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +38 236 25 1 9.99 2022-09-13 20:47:18.625578 2022-09-13 20:47:18.991186 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +31 236 21 1 9.99 2022-09-13 20:45:22.830553 2022-09-13 20:45:24.020033 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +36 236 23 1 9.99 2022-09-13 20:47:13.042276 2022-09-13 20:47:13.326648 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +12 234 16 1 14.99 2022-09-13 20:42:57.546979 2022-09-13 20:42:58.21849 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +28 236 19 1 9.99 2022-09-13 20:45:22.020959 2022-09-13 20:45:22.4028 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +6 234 7 1 14.99 2022-09-13 20:41:04.241214 2022-09-13 20:41:05.140195 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +18 236 14 1 9.99 2022-09-13 20:43:28.276 2022-09-13 20:43:29.740885 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +5 234 10 1 14.99 2022-09-13 20:41:04.209604 2022-09-13 20:41:05.174027 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +7 234 11 1 14.99 2022-09-13 20:41:04.343489 2022-09-13 20:41:05.205564 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +13 234 14 1 14.99 2022-09-13 20:42:57.888629 2022-09-13 20:42:58.701566 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +8 234 12 1 14.99 2022-09-13 20:41:04.609584 2022-09-13 20:41:05.441235 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +15 234 17 1 14.99 2022-09-13 20:42:57.952481 2022-09-13 20:42:58.732567 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +20 236 16 1 9.99 2022-09-13 20:43:28.615427 2022-09-13 20:43:30.035119 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +22 234 20 1 14.99 2022-09-13 20:44:51.579162 2022-09-13 20:44:53.190626 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +14 234 13 1 14.99 2022-09-13 20:42:57.905112 2022-09-13 20:42:58.927906 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +41 234 30 1 14.99 2022-09-13 20:48:42.744139 2022-09-13 20:48:43.914163 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +21 236 15 1 9.99 2022-09-13 20:43:28.756594 2022-09-13 20:43:30.1031 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +16 234 15 1 14.99 2022-09-13 20:42:58.46677 2022-09-13 20:42:59.614915 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +19 236 17 1 9.99 2022-09-13 20:43:28.407091 2022-09-13 20:43:30.123097 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +10 236 11 1 9.99 2022-09-13 20:41:34.804127 2022-09-13 20:41:35.123113 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +42 234 31 1 14.99 2022-09-13 20:48:42.961563 2022-09-13 20:48:44.07321 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +11 236 12 1 9.99 2022-09-13 20:41:34.872687 2022-09-13 20:41:35.482082 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +9 236 10 1 9.99 2022-09-13 20:41:34.733022 2022-09-13 20:41:35.500638 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +33 234 25 1 14.99 2022-09-13 20:46:47.776578 2022-09-13 20:46:48.108889 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +17 236 13 1 9.99 2022-09-13 20:43:27.96608 2022-09-13 20:43:28.307589 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +24 234 22 1 14.99 2022-09-13 20:44:51.870759 2022-09-13 20:44:53.43091 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +27 236 20 1 9.99 2022-09-13 20:45:21.971254 2022-09-13 20:45:22.81613 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +25 234 18 1 14.99 2022-09-13 20:44:51.970477 2022-09-13 20:44:53.65498 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +34 234 27 1 14.99 2022-09-13 20:46:47.874037 2022-09-13 20:46:48.560334 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +26 234 21 1 14.99 2022-09-13 20:44:52.001684 2022-09-13 20:44:53.849221 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +32 234 23 1 14.99 2022-09-13 20:46:42.742771 2022-09-13 20:46:43.043268 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +35 234 26 1 14.99 2022-09-13 20:46:47.935215 2022-09-13 20:46:48.624158 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +29 236 22 1 9.99 2022-09-13 20:45:22.22858 2022-09-13 20:45:23.324954 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +43 234 32 1 14.99 2022-09-13 20:48:45.037503 2022-09-13 20:48:46.463152 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +37 236 26 1 9.99 2022-09-13 20:47:18.511908 2022-09-13 20:47:19.243035 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +39 236 27 1 9.99 2022-09-13 20:47:18.638282 2022-09-13 20:47:19.313414 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +40 234 28 1 14.99 2022-09-13 20:48:42.352813 2022-09-13 20:48:43.146383 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +45 236 31 1 9.99 2022-09-13 20:49:13.453841 2022-09-13 20:49:13.811563 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +46 236 30 1 9.99 2022-09-13 20:49:13.510551 2022-09-13 20:49:14.179381 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +44 236 28 1 9.99 2022-09-13 20:49:13.285772 2022-09-13 20:49:14.296414 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +56 234 42 1 14.99 2022-09-13 20:52:31.139324 2022-09-13 20:52:32.412199 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +75 234 50 1 14.99 2022-09-13 20:56:20.142008 2022-09-13 20:56:21.642173 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +47 236 32 1 9.99 2022-09-13 20:49:14.359853 2022-09-13 20:49:15.606806 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +61 236 42 1 9.99 2022-09-13 20:53:01.45346 2022-09-13 20:53:02.095736 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +57 234 38 1 14.99 2022-09-13 20:52:31.386917 2022-09-13 20:52:32.748613 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +65 234 45 1 14.99 2022-09-13 20:54:22.566046 2022-09-13 20:54:23.163103 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +60 236 39 1 9.99 2022-09-13 20:53:01.361555 2022-09-13 20:53:02.179532 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +48 234 33 1 14.99 2022-09-13 20:50:33.662894 2022-09-13 20:50:33.947669 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +64 234 43 1 14.99 2022-09-13 20:54:22.523549 2022-09-13 20:54:23.405786 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +62 236 41 1 9.99 2022-09-13 20:53:01.602896 2022-09-13 20:53:02.45003 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +81 236 52 1 9.99 2022-09-13 20:56:51.127219 2022-09-13 20:56:51.554956 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +59 234 40 1 14.99 2022-09-13 20:52:31.5348 2022-09-13 20:52:32.755039 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +63 236 38 1 9.99 2022-09-13 20:53:01.850918 2022-09-13 20:53:02.64684 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +55 234 41 1 14.99 2022-09-13 20:52:31.119837 2022-09-13 20:52:31.748556 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +74 234 48 1 14.99 2022-09-13 20:56:20.118571 2022-09-13 20:56:21.668928 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +49 234 35 1 14.99 2022-09-13 20:50:39.226287 2022-09-13 20:50:40.055416 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +79 236 50 1 9.99 2022-09-13 20:56:50.721588 2022-09-13 20:56:51.807577 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +50 234 36 1 14.99 2022-09-13 20:50:39.473184 2022-09-13 20:50:40.282371 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +73 234 49 1 14.99 2022-09-13 20:56:20.003682 2022-09-13 20:56:20.416573 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +51 234 34 1 14.99 2022-09-13 20:50:39.480747 2022-09-13 20:50:40.334234 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +66 234 44 1 14.99 2022-09-13 20:54:22.743446 2022-09-13 20:54:23.578999 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +69 236 45 1 9.99 2022-09-13 20:54:53.036372 2022-09-13 20:54:53.655685 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +84 236 54 1 9.99 2022-09-13 20:58:44.226183 2022-09-13 20:58:44.487666 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +70 236 44 1 9.99 2022-09-13 20:54:53.180092 2022-09-13 20:54:53.770228 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +52 236 35 1 9.99 2022-09-13 20:51:09.744356 2022-09-13 20:51:10.666085 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +53 236 34 1 9.99 2022-09-13 20:51:09.937982 2022-09-13 20:51:10.813828 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +54 236 36 1 9.99 2022-09-13 20:51:10.005167 2022-09-13 20:51:10.890725 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +58 234 39 1 14.99 2022-09-13 20:52:31.529798 2022-09-13 20:52:32.397012 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +67 234 46 1 14.99 2022-09-13 20:54:26.822761 2022-09-13 20:54:27.422543 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +82 234 54 1 14.99 2022-09-13 20:58:14.094521 2022-09-13 20:58:14.35307 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +71 236 46 1 9.99 2022-09-13 20:54:57.395904 2022-09-13 20:54:57.759013 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +72 236 47 1 9.99 2022-09-13 20:54:57.421686 2022-09-13 20:54:57.935448 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +68 234 47 1 14.99 2022-09-13 20:54:26.866765 2022-09-13 20:54:27.468938 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +77 234 51 1 14.99 2022-09-13 20:56:20.759088 2022-09-13 20:56:22.105599 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +85 236 55 1 9.99 2022-09-13 20:58:47.233066 2022-09-13 20:58:47.527631 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +83 234 55 1 14.99 2022-09-13 20:58:16.463383 2022-09-13 20:58:16.723359 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +80 236 48 1 9.99 2022-09-13 20:56:50.845036 2022-09-13 20:56:52.044859 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +76 234 52 1 14.99 2022-09-13 20:56:20.705899 2022-09-13 20:56:22.31521 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +78 236 49 1 9.99 2022-09-13 20:56:50.35591 2022-09-13 20:56:50.963731 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +97 233 75 1 19.99 2024-02-10 14:20:39.241437 2024-02-10 14:20:39.368219 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +94 233 72 1 19.99 2024-02-10 06:06:53.710221 2024-02-10 06:06:53.829881 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +86 233 63 1 19.99 2024-02-09 22:51:14.814042 2024-02-09 22:51:15.025202 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +91 233 69 1 19.99 2024-02-09 22:56:07.137133 2024-02-09 22:56:07.263582 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +109 233 88 1 19.99 2024-02-12 00:21:54.13095 2024-02-12 00:21:54.343282 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +104 233 83 1 19.99 2024-02-11 09:54:49.54716 2024-02-11 09:54:49.763438 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +87 233 65 1 19.99 2024-02-09 22:52:13.228499 2024-02-09 22:52:13.408791 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +100 233 78 1 19.99 2024-02-10 21:00:27.886811 2024-02-10 21:00:28.016494 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +98 233 76 1 19.99 2024-02-10 15:55:27.873126 2024-02-10 15:55:27.99897 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +92 233 70 1 19.99 2024-02-09 23:12:38.378524 2024-02-09 23:12:38.511702 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +88 233 66 1 19.99 2024-02-09 22:53:11.71279 2024-02-09 22:53:11.835838 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +95 233 73 1 19.99 2024-02-10 12:00:19.185378 2024-02-10 12:00:19.305563 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +89 233 67 1 19.99 2024-02-09 22:54:10.165411 2024-02-09 22:54:10.30183 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +103 233 82 1 19.99 2024-02-11 06:00:07.832419 2024-02-11 06:00:08.154046 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +96 233 74 1 19.99 2024-02-10 12:55:46.691273 2024-02-10 12:55:46.828459 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +90 233 68 1 19.99 2024-02-09 22:55:08.610802 2024-02-09 22:55:08.766615 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +93 233 71 1 19.99 2024-02-10 02:50:50.183423 2024-02-10 02:50:50.306346 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +101 233 79 1 19.99 2024-02-10 23:02:31.00298 2024-02-10 23:02:31.122301 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +99 233 77 1 19.99 2024-02-10 16:56:27.420579 2024-02-10 16:56:27.554357 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +106 233 85 1 19.99 2024-02-11 15:06:12.575158 2024-02-11 15:06:12.897132 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +111 233 90 1 19.99 2024-02-12 06:13:14.769475 2024-02-12 06:13:14.957853 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +108 233 87 1 19.99 2024-02-11 21:01:59.370754 2024-02-11 21:01:59.564476 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +105 233 84 1 19.99 2024-02-11 13:55:27.153207 2024-02-11 13:55:27.352058 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +102 233 81 1 19.99 2024-02-11 02:45:37.277511 2024-02-11 02:45:37.46245 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +110 233 89 1 19.99 2024-02-12 02:43:53.741419 2024-02-12 02:43:53.947335 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +107 233 86 1 19.99 2024-02-11 20:00:56.843553 2024-02-11 20:00:57.102547 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +112 233 92 1 19.99 2024-02-12 09:00:28.010476 2024-02-12 09:00:28.20592 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +113 233 94 1 19.99 2024-02-12 10:48:51.111268 2024-02-12 10:48:51.301664 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +114 233 96 1 19.99 2024-02-12 12:23:48.887943 2024-02-12 12:23:49.054334 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +115 233 97 1 19.99 2024-02-12 13:11:07.098992 2024-02-12 13:11:07.263577 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +116 233 98 1 19.99 2024-02-12 13:12:04.125489 2024-02-12 13:12:04.235097 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +117 233 99 1 19.99 2024-02-12 13:13:01.245414 2024-02-12 13:13:01.352138 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +118 233 100 1 19.99 2024-02-12 13:13:58.536806 2024-02-12 13:13:58.640037 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +119 233 101 1 19.99 2024-02-12 13:14:55.533865 2024-02-12 13:14:55.652969 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +120 233 102 1 19.99 2024-02-12 13:15:52.414089 2024-02-12 13:15:52.535847 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +134 233 116 1 19.99 2024-02-12 13:29:08.734805 2024-02-12 13:29:08.838355 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +121 233 103 1 19.99 2024-02-12 13:16:49.554859 2024-02-12 13:16:49.665515 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +129 233 111 1 19.99 2024-02-12 13:24:24.654102 2024-02-12 13:24:24.756504 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +148 233 130 1 19.99 2024-02-12 13:42:25.118118 2024-02-12 13:42:25.217217 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +122 233 104 1 19.99 2024-02-12 13:17:46.377729 2024-02-12 13:17:46.483372 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +135 233 117 1 19.99 2024-02-12 13:30:05.608356 2024-02-12 13:30:05.712984 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +144 233 126 1 19.99 2024-02-12 13:38:37.855843 2024-02-12 13:38:37.979165 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +130 233 112 1 19.99 2024-02-12 13:25:21.52198 2024-02-12 13:25:21.631047 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +123 233 105 1 19.99 2024-02-12 13:18:43.307736 2024-02-12 13:18:43.421383 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +140 233 122 1 19.99 2024-02-12 13:34:50.113031 2024-02-12 13:34:50.263986 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +163 233 145 1 19.99 2024-02-12 13:56:38.828629 2024-02-12 13:56:38.956733 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +136 233 118 1 19.99 2024-02-12 13:31:02.382713 2024-02-12 13:31:02.489589 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +124 233 106 1 19.99 2024-02-12 13:19:40.285061 2024-02-12 13:19:40.395445 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +131 233 113 1 19.99 2024-02-12 13:26:18.402699 2024-02-12 13:26:18.516261 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +158 233 140 1 19.99 2024-02-12 13:51:54.121196 2024-02-12 13:51:54.265975 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +154 233 136 1 19.99 2024-02-12 13:48:06.539991 2024-02-12 13:48:06.645123 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +125 233 107 1 19.99 2024-02-12 13:20:37.152941 2024-02-12 13:20:37.252988 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +141 233 123 1 19.99 2024-02-12 13:35:46.9826 2024-02-12 13:35:47.085373 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +132 233 114 1 19.99 2024-02-12 13:27:15.147342 2024-02-12 13:27:15.252081 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +126 233 108 1 19.99 2024-02-12 13:21:34.060814 2024-02-12 13:21:34.177693 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +137 233 119 1 19.99 2024-02-12 13:31:59.332128 2024-02-12 13:31:59.44603 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +152 233 134 1 19.99 2024-02-12 13:46:12.283423 2024-02-12 13:46:12.396554 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +145 233 127 1 19.99 2024-02-12 13:39:34.672558 2024-02-12 13:39:34.805182 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +133 233 115 1 19.99 2024-02-12 13:28:11.97941 2024-02-12 13:28:12.084099 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +127 233 109 1 19.99 2024-02-12 13:22:31.007072 2024-02-12 13:22:31.123144 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +149 233 131 1 19.99 2024-02-12 13:43:21.935156 2024-02-12 13:43:22.137525 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +138 233 120 1 19.99 2024-02-12 13:32:56.469475 2024-02-12 13:32:56.579121 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +128 233 110 1 19.99 2024-02-12 13:23:27.793633 2024-02-12 13:23:27.908075 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +142 233 124 1 19.99 2024-02-12 13:36:43.80094 2024-02-12 13:36:43.919627 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +146 233 128 1 19.99 2024-02-12 13:40:31.445485 2024-02-12 13:40:31.547854 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +157 233 139 1 19.99 2024-02-12 13:50:57.173585 2024-02-12 13:50:57.270467 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +150 233 132 1 19.99 2024-02-12 13:44:18.628939 2024-02-12 13:44:18.7296 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +139 233 121 1 19.99 2024-02-12 13:33:53.30163 2024-02-12 13:33:53.416396 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +143 233 125 1 19.99 2024-02-12 13:37:40.818773 2024-02-12 13:37:40.940587 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +155 233 137 1 19.99 2024-02-12 13:49:03.40849 2024-02-12 13:49:03.511864 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +147 233 129 1 19.99 2024-02-12 13:41:28.168405 2024-02-12 13:41:28.284808 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +153 233 135 1 19.99 2024-02-12 13:47:09.508732 2024-02-12 13:47:09.622975 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +160 233 142 1 19.99 2024-02-12 13:53:48.027061 2024-02-12 13:53:48.140341 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +151 233 133 1 19.99 2024-02-12 13:45:15.43635 2024-02-12 13:45:15.534818 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +165 233 147 1 19.99 2024-02-12 13:58:32.464046 2024-02-12 13:58:32.566422 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +162 233 144 1 19.99 2024-02-12 13:55:41.760542 2024-02-12 13:55:41.861262 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +159 233 141 1 19.99 2024-02-12 13:52:51.199666 2024-02-12 13:52:51.306927 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +156 233 138 1 19.99 2024-02-12 13:50:00.261739 2024-02-12 13:50:00.37143 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +164 233 146 1 19.99 2024-02-12 13:57:35.664444 2024-02-12 13:57:35.766232 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +161 233 143 1 19.99 2024-02-12 13:54:44.937718 2024-02-12 13:54:45.039169 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +166 233 148 1 19.99 2024-02-12 13:59:29.341343 2024-02-12 13:59:29.453285 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +167 233 149 1 19.99 2024-02-12 14:00:26.129069 2024-02-12 14:00:26.244558 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +168 233 150 1 19.99 2024-02-12 14:01:23.133242 2024-02-12 14:01:23.243246 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +169 233 151 1 19.99 2024-02-12 14:02:19.946368 2024-02-12 14:02:20.147296 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +170 233 152 1 19.99 2024-02-12 14:03:16.739712 2024-02-12 14:03:16.848959 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +171 233 153 1 19.99 2024-02-12 14:04:13.697611 2024-02-12 14:04:13.801329 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +172 233 154 1 19.99 2024-02-12 14:05:10.515119 2024-02-12 14:05:10.622206 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +173 233 155 1 19.99 2024-02-12 14:06:07.509873 2024-02-12 14:06:07.624805 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +174 233 156 1 19.99 2024-02-12 14:07:04.337643 2024-02-12 14:07:04.448964 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +175 233 157 1 19.99 2024-02-12 14:08:01.223547 2024-02-12 14:08:01.330001 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +176 233 158 1 19.99 2024-02-12 14:08:57.998738 2024-02-12 14:08:58.113216 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +178 233 160 1 19.99 2024-02-12 14:10:51.875151 2024-02-12 14:10:51.979395 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +179 233 161 1 19.99 2024-02-12 14:11:48.703453 2024-02-12 14:11:48.822901 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +177 233 159 1 19.99 2024-02-12 14:09:54.974181 2024-02-12 14:09:55.084288 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +193 233 175 1 19.99 2024-02-12 14:25:05.416143 2024-02-12 14:25:05.523931 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +180 233 162 1 19.99 2024-02-12 14:12:45.645839 2024-02-12 14:12:45.754215 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +188 233 170 1 19.99 2024-02-12 14:20:20.869722 2024-02-12 14:20:20.973185 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +207 233 189 1 19.99 2024-02-12 14:38:22.03444 2024-02-12 14:38:22.152662 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +181 233 163 1 19.99 2024-02-12 14:13:42.653686 2024-02-12 14:13:42.759518 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +194 233 176 1 19.99 2024-02-12 14:26:02.268315 2024-02-12 14:26:02.381086 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +203 233 185 1 19.99 2024-02-12 14:34:34.242382 2024-02-12 14:34:34.343195 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +189 233 171 1 19.99 2024-02-12 14:21:18.246986 2024-02-12 14:21:18.369366 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +182 233 164 1 19.99 2024-02-12 14:14:39.516705 2024-02-12 14:14:39.617974 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +199 233 181 1 19.99 2024-02-12 14:30:46.729879 2024-02-12 14:30:46.829104 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +222 233 204 1 19.99 2024-02-12 14:52:35.81558 2024-02-12 14:52:35.930271 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +195 233 177 1 19.99 2024-02-12 14:26:59.111789 2024-02-12 14:26:59.217872 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +183 233 165 1 19.99 2024-02-12 14:15:36.356371 2024-02-12 14:15:36.462083 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +190 233 172 1 19.99 2024-02-12 14:22:14.940165 2024-02-12 14:22:15.045358 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +217 233 199 1 19.99 2024-02-12 14:47:51.211831 2024-02-12 14:47:51.323557 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +213 233 195 1 19.99 2024-02-12 14:44:03.845805 2024-02-12 14:44:03.972469 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +184 233 166 1 19.99 2024-02-12 14:16:33.314378 2024-02-12 14:16:33.435633 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +200 233 182 1 19.99 2024-02-12 14:31:43.578473 2024-02-12 14:31:43.681674 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +191 233 173 1 19.99 2024-02-12 14:23:11.802312 2024-02-12 14:23:12.012971 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +185 233 167 1 19.99 2024-02-12 14:17:30.323676 2024-02-12 14:17:30.425565 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +196 233 178 1 19.99 2024-02-12 14:27:56.020711 2024-02-12 14:27:56.121873 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +211 233 193 1 19.99 2024-02-12 14:42:09.744181 2024-02-12 14:42:09.855437 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +204 233 186 1 19.99 2024-02-12 14:35:31.136703 2024-02-12 14:35:31.239646 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +192 233 174 1 19.99 2024-02-12 14:24:08.617469 2024-02-12 14:24:08.743832 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +186 233 168 1 19.99 2024-02-12 14:18:27.20803 2024-02-12 14:18:27.305466 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +208 233 190 1 19.99 2024-02-12 14:39:19.042622 2024-02-12 14:39:19.14411 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +197 233 179 1 19.99 2024-02-12 14:28:52.930046 2024-02-12 14:28:53.034809 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +187 233 169 1 19.99 2024-02-12 14:19:24.003162 2024-02-12 14:19:24.109693 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +201 233 183 1 19.99 2024-02-12 14:32:40.435593 2024-02-12 14:32:40.542456 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +205 233 187 1 19.99 2024-02-12 14:36:28.116952 2024-02-12 14:36:28.238607 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +216 233 198 1 19.99 2024-02-12 14:46:54.513642 2024-02-12 14:46:54.628192 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +209 233 191 1 19.99 2024-02-12 14:40:16.021666 2024-02-12 14:40:16.125155 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +198 233 180 1 19.99 2024-02-12 14:29:50.027113 2024-02-12 14:29:50.137759 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +202 233 184 1 19.99 2024-02-12 14:33:37.415839 2024-02-12 14:33:37.52049 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +214 233 196 1 19.99 2024-02-12 14:45:00.794985 2024-02-12 14:45:00.896791 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +206 233 188 1 19.99 2024-02-12 14:37:25.110249 2024-02-12 14:37:25.214256 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +212 233 194 1 19.99 2024-02-12 14:43:07.074918 2024-02-12 14:43:07.176608 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +219 233 201 1 19.99 2024-02-12 14:49:44.964065 2024-02-12 14:49:45.084184 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +210 233 192 1 19.99 2024-02-12 14:41:12.893262 2024-02-12 14:41:12.995353 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +224 233 206 1 19.99 2024-02-12 14:54:29.629904 2024-02-12 14:54:29.739541 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +221 233 203 1 19.99 2024-02-12 14:51:38.918878 2024-02-12 14:51:39.033649 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +218 233 200 1 19.99 2024-02-12 14:48:48.034011 2024-02-12 14:48:48.137989 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +215 233 197 1 19.99 2024-02-12 14:45:57.636494 2024-02-12 14:45:57.738588 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +223 233 205 1 19.99 2024-02-12 14:53:32.627249 2024-02-12 14:53:32.740311 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +220 233 202 1 19.99 2024-02-12 14:50:41.950448 2024-02-12 14:50:42.089355 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +225 233 207 1 19.99 2024-02-12 14:55:26.505953 2024-02-12 14:55:26.617187 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +226 233 208 1 19.99 2024-02-12 14:56:23.358229 2024-02-12 14:56:23.474517 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +227 233 209 1 19.99 2024-02-12 14:57:20.194152 2024-02-12 14:57:20.293988 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +228 233 210 1 19.99 2024-02-12 14:58:16.995831 2024-02-12 14:58:17.205472 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +229 233 211 1 19.99 2024-02-12 14:59:13.911437 2024-02-12 14:59:14.03972 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +230 233 212 1 19.99 2024-02-12 15:00:10.651639 2024-02-12 15:00:10.796021 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +231 233 213 1 19.99 2024-02-12 15:01:07.713499 2024-02-12 15:01:07.817627 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +232 233 214 1 19.99 2024-02-12 15:02:04.762457 2024-02-12 15:02:04.874461 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +233 233 215 1 19.99 2024-02-12 15:03:01.641083 2024-02-12 15:03:01.759635 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +247 233 229 1 19.99 2024-02-12 15:16:18.447645 2024-02-12 15:16:18.562733 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +234 233 216 1 19.99 2024-02-12 15:03:58.436437 2024-02-12 15:03:58.541058 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +242 233 224 1 19.99 2024-02-12 15:11:33.909022 2024-02-12 15:11:34.009561 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +261 233 243 1 19.99 2024-02-12 15:29:34.878722 2024-02-12 15:29:34.984197 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +235 233 217 1 19.99 2024-02-12 15:04:55.546424 2024-02-12 15:04:55.653809 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +248 233 230 1 19.99 2024-02-12 15:17:15.372316 2024-02-12 15:17:15.476161 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +257 233 239 1 19.99 2024-02-12 15:25:47.396045 2024-02-12 15:25:47.497391 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +243 233 225 1 19.99 2024-02-12 15:12:30.807325 2024-02-12 15:12:30.927532 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +236 233 218 1 19.99 2024-02-12 15:05:52.322615 2024-02-12 15:05:52.427888 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +253 233 235 1 19.99 2024-02-12 15:21:59.693308 2024-02-12 15:21:59.811352 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +276 233 258 1 19.99 2024-02-12 15:43:47.392733 2024-02-12 15:43:47.510887 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +249 233 231 1 19.99 2024-02-12 15:18:12.174888 2024-02-12 15:18:12.288196 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +237 233 219 1 19.99 2024-02-12 15:06:49.162337 2024-02-12 15:06:49.277628 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +244 233 226 1 19.99 2024-02-12 15:13:27.546988 2024-02-12 15:13:27.655496 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +271 233 253 1 19.99 2024-02-12 15:39:03.148898 2024-02-12 15:39:03.265618 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +267 233 249 1 19.99 2024-02-12 15:35:15.568022 2024-02-12 15:35:15.684681 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +238 233 220 1 19.99 2024-02-12 15:07:46.310978 2024-02-12 15:07:46.425376 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +254 233 236 1 19.99 2024-02-12 15:22:56.673248 2024-02-12 15:22:56.776597 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +245 233 227 1 19.99 2024-02-12 15:14:24.601229 2024-02-12 15:14:24.720715 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +239 233 221 1 19.99 2024-02-12 15:08:43.213805 2024-02-12 15:08:43.321259 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +250 233 232 1 19.99 2024-02-12 15:19:09.101598 2024-02-12 15:19:09.206831 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +265 233 247 1 19.99 2024-02-12 15:33:21.924868 2024-02-12 15:33:22.041293 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +258 233 240 1 19.99 2024-02-12 15:26:44.267214 2024-02-12 15:26:44.377649 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +246 233 228 1 19.99 2024-02-12 15:15:21.432707 2024-02-12 15:15:21.53769 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +240 233 222 1 19.99 2024-02-12 15:09:40.163796 2024-02-12 15:09:40.273527 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +262 233 244 1 19.99 2024-02-12 15:30:31.649287 2024-02-12 15:30:31.775133 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +251 233 233 1 19.99 2024-02-12 15:20:06.041911 2024-02-12 15:20:06.157369 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +241 233 223 1 19.99 2024-02-12 15:10:36.974408 2024-02-12 15:10:37.083869 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +255 233 237 1 19.99 2024-02-12 15:23:53.486165 2024-02-12 15:23:53.595806 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +259 233 241 1 19.99 2024-02-12 15:27:41.069107 2024-02-12 15:27:41.173502 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +270 233 252 1 19.99 2024-02-12 15:38:06.155356 2024-02-12 15:38:06.256586 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +263 233 245 1 19.99 2024-02-12 15:31:28.435343 2024-02-12 15:31:28.539285 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +252 233 234 1 19.99 2024-02-12 15:21:02.903935 2024-02-12 15:21:03.017737 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +256 233 238 1 19.99 2024-02-12 15:24:50.540852 2024-02-12 15:24:50.65982 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +268 233 250 1 19.99 2024-02-12 15:36:12.347728 2024-02-12 15:36:12.458247 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +260 233 242 1 19.99 2024-02-12 15:28:37.960915 2024-02-12 15:28:38.077672 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +266 233 248 1 19.99 2024-02-12 15:34:18.742133 2024-02-12 15:34:18.848122 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +273 233 255 1 19.99 2024-02-12 15:40:56.878232 2024-02-12 15:40:56.982549 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +264 233 246 1 19.99 2024-02-12 15:32:25.245976 2024-02-12 15:32:25.347621 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +278 233 260 1 19.99 2024-02-12 15:45:41.047131 2024-02-12 15:45:41.149869 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +275 233 257 1 19.99 2024-02-12 15:42:50.481952 2024-02-12 15:42:50.586654 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +272 233 254 1 19.99 2024-02-12 15:40:00.035863 2024-02-12 15:40:00.153381 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +269 233 251 1 19.99 2024-02-12 15:37:09.33116 2024-02-12 15:37:09.431463 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +277 233 259 1 19.99 2024-02-12 15:44:44.252567 2024-02-12 15:44:44.358933 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +274 233 256 1 19.99 2024-02-12 15:41:53.689387 2024-02-12 15:41:53.801155 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +279 233 261 1 19.99 2024-02-12 15:46:37.934362 2024-02-12 15:46:38.057274 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +280 233 262 1 19.99 2024-02-12 15:47:34.844048 2024-02-12 15:47:34.949733 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +281 233 263 1 19.99 2024-02-12 15:48:31.728701 2024-02-12 15:48:31.826027 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +282 233 264 1 19.99 2024-02-12 15:49:28.541803 2024-02-12 15:49:28.655016 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +283 233 265 1 19.99 2024-02-12 15:50:25.385797 2024-02-12 15:50:25.494369 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +284 233 266 1 19.99 2024-02-12 15:51:22.178887 2024-02-12 15:51:22.290199 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +285 233 267 1 19.99 2024-02-12 15:52:19.077456 2024-02-12 15:52:19.212366 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +286 233 268 1 19.99 2024-02-12 15:53:15.960091 2024-02-12 15:53:16.074691 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +287 233 269 1 19.99 2024-02-12 15:54:12.949596 2024-02-12 15:54:13.075109 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +301 233 283 1 19.99 2024-02-12 16:07:31.446732 2024-02-12 16:07:31.568974 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +288 233 270 1 19.99 2024-02-12 15:55:10.210145 2024-02-12 15:55:10.322618 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +296 233 278 1 19.99 2024-02-12 16:02:46.741886 2024-02-12 16:02:46.853058 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +315 233 297 1 19.99 2024-02-12 16:20:48.767535 2024-02-12 16:20:48.869194 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +289 233 271 1 19.99 2024-02-12 15:56:07.180108 2024-02-12 15:56:07.2857 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +302 233 284 1 19.99 2024-02-12 16:08:28.490566 2024-02-12 16:08:28.59379 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +311 233 293 1 19.99 2024-02-12 16:17:01.076881 2024-02-12 16:17:01.18797 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +297 233 279 1 19.99 2024-02-12 16:03:43.783135 2024-02-12 16:03:43.886315 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +290 233 272 1 19.99 2024-02-12 15:57:04.037616 2024-02-12 15:57:04.158929 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +307 233 289 1 19.99 2024-02-12 16:13:13.147283 2024-02-12 16:13:13.268362 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +330 233 312 1 19.99 2024-02-12 16:35:03.614325 2024-02-12 16:35:03.736082 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +303 233 285 1 19.99 2024-02-12 16:09:25.396682 2024-02-12 16:09:25.506067 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +291 233 273 1 19.99 2024-02-12 15:58:01.039588 2024-02-12 15:58:01.142913 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +298 233 280 1 19.99 2024-02-12 16:04:40.752281 2024-02-12 16:04:40.856915 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +325 233 307 1 19.99 2024-02-12 16:30:18.654922 2024-02-12 16:30:18.765978 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +321 233 303 1 19.99 2024-02-12 16:26:30.952428 2024-02-12 16:26:31.066273 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +292 233 274 1 19.99 2024-02-12 15:58:58.115551 2024-02-12 15:58:58.224657 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +308 233 290 1 19.99 2024-02-12 16:14:10.097542 2024-02-12 16:14:10.204432 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +299 233 281 1 19.99 2024-02-12 16:05:37.641641 2024-02-12 16:05:37.755566 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +293 233 275 1 19.99 2024-02-12 15:59:55.543176 2024-02-12 15:59:55.663674 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +304 233 286 1 19.99 2024-02-12 16:10:22.38054 2024-02-12 16:10:22.490859 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +319 233 301 1 19.99 2024-02-12 16:24:36.972295 2024-02-12 16:24:37.094801 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +312 233 294 1 19.99 2024-02-12 16:17:57.979501 2024-02-12 16:17:58.090178 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +300 233 282 1 19.99 2024-02-12 16:06:34.465262 2024-02-12 16:06:34.570831 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +294 233 276 1 19.99 2024-02-12 16:00:52.544727 2024-02-12 16:00:52.658266 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +316 233 298 1 19.99 2024-02-12 16:21:45.737014 2024-02-12 16:21:45.843295 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +305 233 287 1 19.99 2024-02-12 16:11:19.309919 2024-02-12 16:11:19.421324 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +295 233 277 1 19.99 2024-02-12 16:01:49.652947 2024-02-12 16:01:49.7619 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +309 233 291 1 19.99 2024-02-12 16:15:07.110313 2024-02-12 16:15:07.212275 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +313 233 295 1 19.99 2024-02-12 16:18:54.919752 2024-02-12 16:18:55.042297 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +324 233 306 1 19.99 2024-02-12 16:29:21.604131 2024-02-12 16:29:21.712294 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +317 233 299 1 19.99 2024-02-12 16:22:42.706078 2024-02-12 16:22:42.808701 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +306 233 288 1 19.99 2024-02-12 16:12:16.164174 2024-02-12 16:12:16.301523 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +310 233 292 1 19.99 2024-02-12 16:16:03.906715 2024-02-12 16:16:04.019271 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +322 233 304 1 19.99 2024-02-12 16:27:27.917576 2024-02-12 16:27:28.024591 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +314 233 296 1 19.99 2024-02-12 16:19:51.812798 2024-02-12 16:19:51.914886 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +320 233 302 1 19.99 2024-02-12 16:25:33.908846 2024-02-12 16:25:34.014416 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +327 233 309 1 19.99 2024-02-12 16:32:12.539473 2024-02-12 16:32:12.655019 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +318 233 300 1 19.99 2024-02-12 16:23:39.819009 2024-02-12 16:23:39.931128 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +332 233 314 1 19.99 2024-02-12 16:36:57.366312 2024-02-12 16:36:57.484503 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +329 233 311 1 19.99 2024-02-12 16:34:06.47996 2024-02-12 16:34:06.58576 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +326 233 308 1 19.99 2024-02-12 16:31:15.458294 2024-02-12 16:31:15.566895 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +323 233 305 1 19.99 2024-02-12 16:28:24.742802 2024-02-12 16:28:24.849979 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +331 233 313 1 19.99 2024-02-12 16:36:00.623052 2024-02-12 16:36:00.733213 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +328 233 310 1 19.99 2024-02-12 16:33:09.575872 2024-02-12 16:33:09.677009 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +333 233 315 1 19.99 2024-02-12 16:37:54.226271 2024-02-12 16:37:54.338341 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +334 233 316 1 19.99 2024-02-12 16:38:51.160709 2024-02-12 16:38:51.261482 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +335 233 317 1 19.99 2024-02-12 16:39:47.984438 2024-02-12 16:39:48.088351 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +336 233 318 1 19.99 2024-02-12 16:40:44.80692 2024-02-12 16:40:44.910432 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +337 233 319 1 19.99 2024-02-12 16:41:41.532074 2024-02-12 16:41:41.634659 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +338 233 320 1 19.99 2024-02-12 16:42:38.431221 2024-02-12 16:42:38.640236 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +339 233 321 1 19.99 2024-02-12 16:43:35.321076 2024-02-12 16:43:35.424525 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +340 233 322 1 19.99 2024-02-12 16:44:32.791013 2024-02-12 16:44:32.895186 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +341 233 323 1 19.99 2024-02-12 16:45:29.810638 2024-02-12 16:45:29.911597 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +342 233 324 1 19.99 2024-02-12 16:46:26.731973 2024-02-12 16:46:26.946154 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +343 233 325 1 19.99 2024-02-12 16:47:23.955688 2024-02-12 16:47:24.071826 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +344 233 326 1 19.99 2024-02-12 16:48:20.706959 2024-02-12 16:48:20.810657 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +358 233 340 1 19.99 2024-02-12 17:01:39.196464 2024-02-12 17:01:39.312048 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +345 233 327 1 19.99 2024-02-12 16:49:17.613527 2024-02-12 16:49:17.729667 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +353 233 335 1 19.99 2024-02-12 16:56:53.759753 2024-02-12 16:56:53.90011 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +372 233 354 1 19.99 2024-02-12 17:15:00.471743 2024-02-12 17:15:00.59319 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +346 233 328 1 19.99 2024-02-12 16:50:14.453004 2024-02-12 16:50:14.568877 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +359 233 341 1 19.99 2024-02-12 17:02:36.44811 2024-02-12 17:02:36.567646 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +368 233 350 1 19.99 2024-02-12 17:11:11.64154 2024-02-12 17:11:11.759827 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +354 233 336 1 19.99 2024-02-12 16:57:50.629099 2024-02-12 16:57:50.751794 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +347 233 329 1 19.99 2024-02-12 16:51:11.836116 2024-02-12 16:51:11.961053 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +364 233 346 1 19.99 2024-02-12 17:07:22.732365 2024-02-12 17:07:22.860257 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +387 233 369 1 19.99 2024-02-12 17:29:19.817535 2024-02-12 17:29:19.938125 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +360 233 342 1 19.99 2024-02-12 17:03:33.745307 2024-02-12 17:03:33.886178 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +348 233 330 1 19.99 2024-02-12 16:52:08.844761 2024-02-12 16:52:08.967199 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +355 233 337 1 19.99 2024-02-12 16:58:47.594012 2024-02-12 16:58:47.700152 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +382 233 364 1 19.99 2024-02-12 17:24:33.240956 2024-02-12 17:24:33.364606 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +378 233 360 1 19.99 2024-02-12 17:20:44.126992 2024-02-12 17:20:44.241309 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +349 233 331 1 19.99 2024-02-12 16:53:05.560104 2024-02-12 16:53:05.696249 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +365 233 347 1 19.99 2024-02-12 17:08:19.906075 2024-02-12 17:08:20.022334 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +356 233 338 1 19.99 2024-02-12 16:59:44.476528 2024-02-12 16:59:44.591818 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +350 233 332 1 19.99 2024-02-12 16:54:02.491194 2024-02-12 16:54:02.599011 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +361 233 343 1 19.99 2024-02-12 17:04:31.092829 2024-02-12 17:04:31.212294 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +376 233 358 1 19.99 2024-02-12 17:18:49.25869 2024-02-12 17:18:49.376797 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +369 233 351 1 19.99 2024-02-12 17:12:08.668916 2024-02-12 17:12:08.776522 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +357 233 339 1 19.99 2024-02-12 17:00:41.948702 2024-02-12 17:00:42.071906 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +351 233 333 1 19.99 2024-02-12 16:54:59.597739 2024-02-12 16:54:59.712881 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +373 233 355 1 19.99 2024-02-12 17:15:57.631753 2024-02-12 17:15:57.744649 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +362 233 344 1 19.99 2024-02-12 17:05:28.243568 2024-02-12 17:05:28.394618 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +352 233 334 1 19.99 2024-02-12 16:55:56.531007 2024-02-12 16:55:56.641204 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +366 233 348 1 19.99 2024-02-12 17:09:17.145752 2024-02-12 17:09:17.273655 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +370 233 352 1 19.99 2024-02-12 17:13:06.098765 2024-02-12 17:13:06.211169 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +381 233 363 1 19.99 2024-02-12 17:23:36.06345 2024-02-12 17:23:36.20234 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +374 233 356 1 19.99 2024-02-12 17:16:54.803555 2024-02-12 17:16:54.936239 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +363 233 345 1 19.99 2024-02-12 17:06:25.458039 2024-02-12 17:06:25.577749 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +367 233 349 1 19.99 2024-02-12 17:10:14.272686 2024-02-12 17:10:14.396495 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +379 233 361 1 19.99 2024-02-12 17:21:41.411468 2024-02-12 17:21:41.533849 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +371 233 353 1 19.99 2024-02-12 17:14:03.358811 2024-02-12 17:14:03.475244 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +377 233 359 1 19.99 2024-02-12 17:19:46.50042 2024-02-12 17:19:46.646176 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +384 233 366 1 19.99 2024-02-12 17:26:27.735909 2024-02-12 17:26:27.875284 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +375 233 357 1 19.99 2024-02-12 17:17:52.090522 2024-02-12 17:17:52.289162 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +389 233 371 1 19.99 2024-02-12 17:31:14.445283 2024-02-12 17:31:14.58317 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +386 233 368 1 19.99 2024-02-12 17:28:22.459323 2024-02-12 17:28:22.727113 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +383 233 365 1 19.99 2024-02-12 17:25:30.382914 2024-02-12 17:25:30.526809 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +380 233 362 1 19.99 2024-02-12 17:22:38.888605 2024-02-12 17:22:39.008774 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +388 233 370 1 19.99 2024-02-12 17:30:17.14561 2024-02-12 17:30:17.364909 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +385 233 367 1 19.99 2024-02-12 17:27:25.11387 2024-02-12 17:27:25.277719 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +390 233 372 1 19.99 2024-02-12 17:32:11.783739 2024-02-12 17:32:11.911702 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +391 233 373 1 19.99 2024-02-12 17:33:08.567284 2024-02-12 17:33:08.781145 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +392 233 374 1 19.99 2024-02-12 17:34:05.199559 2024-02-12 17:34:05.405094 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +393 233 375 1 19.99 2024-02-12 17:35:02.058515 2024-02-12 17:35:02.163478 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +394 233 376 1 19.99 2024-02-12 17:35:58.849064 2024-02-12 17:35:58.952062 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +395 233 377 1 19.99 2024-02-12 17:36:55.654726 2024-02-12 17:36:55.764416 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +396 233 378 1 19.99 2024-02-12 17:37:52.59575 2024-02-12 17:37:52.719433 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +397 233 379 1 19.99 2024-02-12 17:38:49.455171 2024-02-12 17:38:49.559303 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +398 233 380 1 19.99 2024-02-12 17:39:46.34081 2024-02-12 17:39:46.443154 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +412 233 394 1 19.99 2024-02-12 17:53:04.158911 2024-02-12 17:53:04.295283 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +399 233 381 1 19.99 2024-02-12 17:40:43.415912 2024-02-12 17:40:43.543095 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +407 233 389 1 19.99 2024-02-12 17:48:19.368706 2024-02-12 17:48:19.4671 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +426 233 408 1 19.99 2024-02-12 18:06:21.394833 2024-02-12 18:06:21.578813 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +400 233 382 1 19.99 2024-02-12 17:41:40.54029 2024-02-12 17:41:40.647231 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +413 233 395 1 19.99 2024-02-12 17:54:01.019699 2024-02-12 17:54:01.120804 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +422 233 404 1 19.99 2024-02-12 18:02:33.559911 2024-02-12 18:02:33.668489 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +408 233 390 1 19.99 2024-02-12 17:49:16.321515 2024-02-12 17:49:16.443407 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +401 233 383 1 19.99 2024-02-12 17:42:37.410464 2024-02-12 17:42:37.514973 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +418 233 400 1 19.99 2024-02-12 17:58:46.171411 2024-02-12 17:58:46.287468 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +441 233 423 1 19.99 2024-02-12 18:20:37.082179 2024-02-12 18:20:37.195933 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +414 233 396 1 19.99 2024-02-12 17:54:57.909993 2024-02-12 17:54:58.007252 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +402 233 384 1 19.99 2024-02-12 17:43:34.144364 2024-02-12 17:43:34.245204 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +409 233 391 1 19.99 2024-02-12 17:50:13.355388 2024-02-12 17:50:13.460368 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +436 233 418 1 19.99 2024-02-12 18:15:52.456502 2024-02-12 18:15:52.563196 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +432 233 414 1 19.99 2024-02-12 18:12:03.793585 2024-02-12 18:12:03.89816 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +403 233 385 1 19.99 2024-02-12 17:44:30.952692 2024-02-12 17:44:31.060497 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +419 233 401 1 19.99 2024-02-12 17:59:43.131965 2024-02-12 17:59:43.238235 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +410 233 392 1 19.99 2024-02-12 17:51:10.278234 2024-02-12 17:51:10.386231 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +404 233 386 1 19.99 2024-02-12 17:45:28.237379 2024-02-12 17:45:28.34033 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +415 233 397 1 19.99 2024-02-12 17:55:55.291309 2024-02-12 17:55:55.399859 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +430 233 412 1 19.99 2024-02-12 18:10:09.216351 2024-02-12 18:10:09.323663 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +423 233 405 1 19.99 2024-02-12 18:03:30.614529 2024-02-12 18:03:30.73353 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +411 233 393 1 19.99 2024-02-12 17:52:07.253398 2024-02-12 17:52:07.368918 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +405 233 387 1 19.99 2024-02-12 17:46:25.275849 2024-02-12 17:46:25.383711 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +427 233 409 1 19.99 2024-02-12 18:07:18.242765 2024-02-12 18:07:18.355108 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +416 233 398 1 19.99 2024-02-12 17:56:52.406436 2024-02-12 17:56:52.539853 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +406 233 388 1 19.99 2024-02-12 17:47:22.258476 2024-02-12 17:47:22.367136 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +420 233 402 1 19.99 2024-02-12 18:00:39.836664 2024-02-12 18:00:39.940462 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +424 233 406 1 19.99 2024-02-12 18:04:27.599462 2024-02-12 18:04:27.696576 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +435 233 417 1 19.99 2024-02-12 18:14:55.574899 2024-02-12 18:14:55.702818 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +428 233 410 1 19.99 2024-02-12 18:08:15.22996 2024-02-12 18:08:15.327674 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +417 233 399 1 19.99 2024-02-12 17:57:49.544991 2024-02-12 17:57:49.68414 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +421 233 403 1 19.99 2024-02-12 18:01:36.681295 2024-02-12 18:01:36.798024 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +433 233 415 1 19.99 2024-02-12 18:13:00.930366 2024-02-12 18:13:01.05013 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +425 233 407 1 19.99 2024-02-12 18:05:24.56843 2024-02-12 18:05:24.669563 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +431 233 413 1 19.99 2024-02-12 18:11:06.494617 2024-02-12 18:11:06.616776 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +438 233 420 1 19.99 2024-02-12 18:17:46.139842 2024-02-12 18:17:46.250435 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +429 233 411 1 19.99 2024-02-12 18:09:12.27758 2024-02-12 18:09:12.381708 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +443 233 425 1 19.99 2024-02-12 18:22:31.084576 2024-02-12 18:22:31.186796 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +440 233 422 1 19.99 2024-02-12 18:19:39.994864 2024-02-12 18:19:40.107543 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +437 233 419 1 19.99 2024-02-12 18:16:49.279756 2024-02-12 18:16:49.382447 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +434 233 416 1 19.99 2024-02-12 18:13:58.094194 2024-02-12 18:13:58.203963 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +442 233 424 1 19.99 2024-02-12 18:21:34.141694 2024-02-12 18:21:34.246765 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +439 233 421 1 19.99 2024-02-12 18:18:43.091493 2024-02-12 18:18:43.20928 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +444 233 426 1 19.99 2024-02-12 18:23:27.738951 2024-02-12 18:23:27.843473 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +445 233 427 1 19.99 2024-02-12 18:24:24.733179 2024-02-12 18:24:24.847476 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +446 233 428 1 19.99 2024-02-12 18:25:21.80558 2024-02-12 18:25:21.913929 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +447 233 429 1 19.99 2024-02-12 18:26:18.687698 2024-02-12 18:26:18.794853 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +448 233 430 1 19.99 2024-02-12 18:27:15.560961 2024-02-12 18:27:15.668799 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +449 233 431 1 19.99 2024-02-12 18:28:12.309198 2024-02-12 18:28:12.410655 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +450 233 432 1 19.99 2024-02-12 18:29:09.115574 2024-02-12 18:29:09.221654 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +451 233 433 1 19.99 2024-02-12 18:30:05.90537 2024-02-12 18:30:06.019986 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +452 233 434 1 19.99 2024-02-12 18:31:02.793316 2024-02-12 18:31:02.902964 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +453 233 435 1 19.99 2024-02-12 18:31:59.53348 2024-02-12 18:31:59.647462 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +454 233 436 1 19.99 2024-02-12 18:32:56.612183 2024-02-12 18:32:56.716992 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +468 233 450 1 19.99 2024-02-12 18:46:12.250061 2024-02-12 18:46:12.346896 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +455 233 437 1 19.99 2024-02-12 18:33:53.44756 2024-02-12 18:33:53.564336 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +463 233 445 1 19.99 2024-02-12 18:41:28.414179 2024-02-12 18:41:28.536731 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +482 233 464 1 19.99 2024-02-12 18:59:28.778523 2024-02-12 18:59:28.881245 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +456 233 438 1 19.99 2024-02-12 18:34:50.301175 2024-02-12 18:34:50.402047 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +469 233 451 1 19.99 2024-02-12 18:47:09.367599 2024-02-12 18:47:09.484827 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +478 233 460 1 19.99 2024-02-12 18:55:41.191987 2024-02-12 18:55:41.290868 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +464 233 446 1 19.99 2024-02-12 18:42:25.210294 2024-02-12 18:42:25.311916 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +457 233 439 1 19.99 2024-02-12 18:35:47.136302 2024-02-12 18:35:47.234531 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +474 233 456 1 19.99 2024-02-12 18:51:53.867301 2024-02-12 18:51:53.970817 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +497 233 479 1 19.99 2024-02-12 19:13:41.92085 2024-02-12 19:13:42.038824 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +470 233 452 1 19.99 2024-02-12 18:48:06.085957 2024-02-12 18:48:06.213888 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +458 233 440 1 19.99 2024-02-12 18:36:44.046187 2024-02-12 18:36:44.170066 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +465 233 447 1 19.99 2024-02-12 18:43:21.972223 2024-02-12 18:43:22.118217 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +492 233 474 1 19.99 2024-02-12 19:08:57.41706 2024-02-12 19:08:57.515799 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +488 233 470 1 19.99 2024-02-12 19:05:09.866826 2024-02-12 19:05:09.978407 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +459 233 441 1 19.99 2024-02-12 18:37:40.867054 2024-02-12 18:37:40.983124 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +475 233 457 1 19.99 2024-02-12 18:52:50.727185 2024-02-12 18:52:50.844837 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +466 233 448 1 19.99 2024-02-12 18:44:18.808353 2024-02-12 18:44:18.911931 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +460 233 442 1 19.99 2024-02-12 18:38:37.619355 2024-02-12 18:38:37.763369 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +471 233 453 1 19.99 2024-02-12 18:49:02.840323 2024-02-12 18:49:02.952788 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +486 233 468 1 19.99 2024-02-12 19:03:16.113092 2024-02-12 19:03:16.212491 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +479 233 461 1 19.99 2024-02-12 18:56:38.146765 2024-02-12 18:56:38.257321 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +467 233 449 1 19.99 2024-02-12 18:45:15.533819 2024-02-12 18:45:15.633735 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +461 233 443 1 19.99 2024-02-12 18:39:34.629148 2024-02-12 18:39:34.737226 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +483 233 465 1 19.99 2024-02-12 19:00:25.618628 2024-02-12 19:00:25.728664 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +472 233 454 1 19.99 2024-02-12 18:49:59.614854 2024-02-12 18:49:59.729586 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +462 233 444 1 19.99 2024-02-12 18:40:31.521497 2024-02-12 18:40:31.629491 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +476 233 458 1 19.99 2024-02-12 18:53:47.529526 2024-02-12 18:53:47.644596 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +480 233 462 1 19.99 2024-02-12 18:57:35.066287 2024-02-12 18:57:35.167912 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +491 233 473 1 19.99 2024-02-12 19:08:00.553669 2024-02-12 19:08:00.65703 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +484 233 466 1 19.99 2024-02-12 19:01:22.399773 2024-02-12 19:01:22.515784 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +473 233 455 1 19.99 2024-02-12 18:50:56.773935 2024-02-12 18:50:56.876423 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +477 233 459 1 19.99 2024-02-12 18:54:44.40494 2024-02-12 18:54:44.528569 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +489 233 471 1 19.99 2024-02-12 19:06:06.642808 2024-02-12 19:06:06.758007 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +481 233 463 1 19.99 2024-02-12 18:58:31.912337 2024-02-12 18:58:32.018173 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +487 233 469 1 19.99 2024-02-12 19:04:12.987176 2024-02-12 19:04:13.093938 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +494 233 476 1 19.99 2024-02-12 19:10:51.190965 2024-02-12 19:10:51.291776 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +485 233 467 1 19.99 2024-02-12 19:02:19.217333 2024-02-12 19:02:19.317169 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +499 233 481 1 19.99 2024-02-12 19:15:35.906901 2024-02-12 19:15:36.014803 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +496 233 478 1 19.99 2024-02-12 19:12:44.989782 2024-02-12 19:12:45.093256 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +493 233 475 1 19.99 2024-02-12 19:09:54.382798 2024-02-12 19:09:54.497106 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +490 233 472 1 19.99 2024-02-12 19:07:03.572027 2024-02-12 19:07:03.687275 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +498 233 480 1 19.99 2024-02-12 19:14:38.834383 2024-02-12 19:14:38.961909 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +495 233 477 1 19.99 2024-02-12 19:11:48.140874 2024-02-12 19:11:48.247688 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +500 233 482 1 19.99 2024-02-12 19:16:32.74519 2024-02-12 19:16:32.857599 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +501 233 483 1 19.99 2024-02-12 19:17:29.606169 2024-02-12 19:17:29.720118 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +502 233 484 1 19.99 2024-02-12 19:18:26.44618 2024-02-12 19:18:26.556659 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +503 233 485 1 19.99 2024-02-12 19:19:23.346143 2024-02-12 19:19:23.457836 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +504 233 486 1 19.99 2024-02-12 19:20:20.058491 2024-02-12 19:20:20.178703 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +505 233 487 1 19.99 2024-02-12 19:21:16.858128 2024-02-12 19:21:16.959507 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +506 233 488 1 19.99 2024-02-12 19:22:13.948301 2024-02-12 19:22:14.053909 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +507 233 489 1 19.99 2024-02-12 19:23:10.936279 2024-02-12 19:23:11.040815 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +508 233 490 1 19.99 2024-02-12 19:24:08.125213 2024-02-12 19:24:08.239934 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +522 233 504 1 19.99 2024-02-12 19:37:27.295774 2024-02-12 19:37:27.424493 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +509 233 491 1 19.99 2024-02-12 19:25:05.198897 2024-02-12 19:25:05.30753 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +517 233 499 1 19.99 2024-02-12 19:32:41.919656 2024-02-12 19:32:42.042857 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +536 233 518 1 19.99 2024-02-12 19:50:45.353349 2024-02-12 19:50:45.478862 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +510 233 492 1 19.99 2024-02-12 19:26:02.430303 2024-02-12 19:26:02.549548 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +523 233 505 1 19.99 2024-02-12 19:38:24.198256 2024-02-12 19:38:24.321054 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +532 233 514 1 19.99 2024-02-12 19:46:57.511613 2024-02-12 19:46:57.615706 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +518 233 500 1 19.99 2024-02-12 19:33:39.039768 2024-02-12 19:33:39.176847 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +511 233 493 1 19.99 2024-02-12 19:26:59.651857 2024-02-12 19:26:59.768791 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +528 233 510 1 19.99 2024-02-12 19:43:09.405056 2024-02-12 19:43:09.525798 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +551 233 533 1 19.99 2024-02-12 20:04:59.681536 2024-02-12 20:04:59.789982 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +524 233 506 1 19.99 2024-02-12 19:39:21.132294 2024-02-12 19:39:21.235019 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +512 233 494 1 19.99 2024-02-12 19:27:56.696432 2024-02-12 19:27:56.796282 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +519 233 501 1 19.99 2024-02-12 19:34:36.078751 2024-02-12 19:34:36.192367 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +546 233 528 1 19.99 2024-02-12 20:00:14.966708 2024-02-12 20:00:15.076124 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +542 233 524 1 19.99 2024-02-12 19:56:27.052789 2024-02-12 19:56:27.167523 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +513 233 495 1 19.99 2024-02-12 19:28:53.55534 2024-02-12 19:28:53.662284 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +529 233 511 1 19.99 2024-02-12 19:44:06.338083 2024-02-12 19:44:06.444762 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +520 233 502 1 19.99 2024-02-12 19:35:33.182076 2024-02-12 19:35:33.300697 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +514 233 496 1 19.99 2024-02-12 19:29:50.541809 2024-02-12 19:29:50.66466 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +525 233 507 1 19.99 2024-02-12 19:40:18.208103 2024-02-12 19:40:18.394303 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +540 233 522 1 19.99 2024-02-12 19:54:33.367585 2024-02-12 19:54:33.478329 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +533 233 515 1 19.99 2024-02-12 19:47:54.443571 2024-02-12 19:47:54.548255 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +521 233 503 1 19.99 2024-02-12 19:36:30.229834 2024-02-12 19:36:30.343816 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +515 233 497 1 19.99 2024-02-12 19:30:47.864553 2024-02-12 19:30:47.974215 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +537 233 519 1 19.99 2024-02-12 19:51:42.715982 2024-02-12 19:51:42.844858 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +526 233 508 1 19.99 2024-02-12 19:41:15.332874 2024-02-12 19:41:15.444698 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +516 233 498 1 19.99 2024-02-12 19:31:44.934869 2024-02-12 19:31:45.058903 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +530 233 512 1 19.99 2024-02-12 19:45:03.202425 2024-02-12 19:45:03.379477 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +534 233 516 1 19.99 2024-02-12 19:48:51.379037 2024-02-12 19:48:51.483904 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +545 233 527 1 19.99 2024-02-12 19:59:18.005512 2024-02-12 19:59:18.126397 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +538 233 520 1 19.99 2024-02-12 19:52:39.616337 2024-02-12 19:52:39.719763 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +527 233 509 1 19.99 2024-02-12 19:42:12.440191 2024-02-12 19:42:12.54811 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +531 233 513 1 19.99 2024-02-12 19:46:00.610855 2024-02-12 19:46:00.716448 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +543 233 525 1 19.99 2024-02-12 19:57:23.765474 2024-02-12 19:57:23.868293 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +535 233 517 1 19.99 2024-02-12 19:49:48.427742 2024-02-12 19:49:48.530889 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +541 233 523 1 19.99 2024-02-12 19:55:30.272773 2024-02-12 19:55:30.374976 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +548 233 530 1 19.99 2024-02-12 20:02:08.886702 2024-02-12 20:02:08.991812 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +539 233 521 1 19.99 2024-02-12 19:53:36.480975 2024-02-12 19:53:36.590177 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +553 233 535 1 19.99 2024-02-12 20:06:53.52031 2024-02-12 20:06:53.626987 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +550 233 532 1 19.99 2024-02-12 20:04:02.843204 2024-02-12 20:04:02.958264 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +547 233 529 1 19.99 2024-02-12 20:01:11.886249 2024-02-12 20:01:11.990883 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +544 233 526 1 19.99 2024-02-12 19:58:20.939676 2024-02-12 19:58:21.056033 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +552 233 534 1 19.99 2024-02-12 20:05:56.551668 2024-02-12 20:05:56.659502 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +549 233 531 1 19.99 2024-02-12 20:03:05.969704 2024-02-12 20:03:06.089548 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +554 233 536 1 19.99 2024-02-12 20:07:50.408878 2024-02-12 20:07:50.512907 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +555 233 537 1 19.99 2024-02-12 20:08:48.166478 2024-02-12 20:08:48.381049 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +556 233 538 1 19.99 2024-02-12 20:09:44.938402 2024-02-12 20:09:45.059824 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +557 233 539 1 19.99 2024-02-12 20:10:42.013387 2024-02-12 20:10:42.172558 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +558 233 64 2 19.99 2024-02-12 20:11:00.084526 2024-02-12 20:11:56.682664 USD 2.75 \N 0.00 0.00 0.00 0.00 39.9800 0.00 0.00 \N \N +560 233 541 1 19.99 2024-02-12 20:12:36.878406 2024-02-12 20:12:36.981524 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +559 233 540 1 19.99 2024-02-12 20:11:39.256678 2024-02-12 20:11:39.36753 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +561 236 541 1 9.99 2024-02-12 20:12:46.838834 2024-02-12 20:12:47.029673 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +562 240 541 1 12.99 2024-02-12 20:13:08.565666 2024-02-12 20:13:08.741172 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +564 233 543 1 19.99 2024-02-12 20:15:21.933832 2024-02-12 20:15:22.052281 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +565 236 543 1 9.99 2024-02-12 20:15:31.867409 2024-02-12 20:15:32.042058 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +567 234 545 1 14.99 2024-02-12 20:17:26.455153 2024-02-12 20:17:26.628328 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +568 240 545 1 12.99 2024-02-12 20:17:48.736596 2024-02-12 20:17:48.905754 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +563 238 541 1 18.99 2024-02-12 20:13:30.699685 2024-02-12 20:13:30.859651 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +581 236 554 1 9.99 2024-02-12 21:26:39.69904 2024-02-12 21:26:39.877011 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +605 244 567 1 4.13 2024-02-12 21:32:33.631135 2024-02-12 21:32:33.752662 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +566 233 545 1 19.99 2024-02-12 20:17:05.145649 2024-02-12 20:17:05.252051 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +572 233 549 2 19.99 2024-02-12 20:22:12.377378 2024-02-12 20:23:06.192683 USD 2.75 \N 0.00 0.00 0.00 0.00 39.9800 0.00 0.00 \N \N +573 236 549 1 9.99 2024-02-12 20:22:22.497342 2024-02-12 20:22:22.669676 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +574 234 549 2 14.99 2024-02-12 20:22:43.717843 2024-02-12 20:23:27.749421 USD 1.14 \N 0.00 0.00 0.00 0.00 29.9800 0.00 0.00 \N \N +587 233 562 1 19.99 2024-02-12 21:27:02.377023 2024-02-12 21:27:02.567031 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +582 242 562 1 11.01 2024-02-12 21:26:42.161456 2024-02-12 21:26:42.277665 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +575 233 551 1 19.99 2024-02-12 20:24:59.105677 2024-02-12 20:24:59.21939 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +607 246 574 1 19.92 2024-02-12 21:32:42.75967 2024-02-12 21:32:42.946907 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +599 245 570 1 19.84 2024-02-12 21:31:57.154129 2024-02-12 21:31:57.271548 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +577 234 552 1 14.99 2024-02-12 20:40:21.54637 2024-02-12 20:40:21.697879 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +569 233 547 1 19.99 2024-02-12 20:19:40.910578 2024-02-12 20:19:41.04148 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +570 239 547 1 5.99 2024-02-12 20:20:02.593072 2024-02-12 20:20:02.789183 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +571 236 547 1 9.99 2024-02-12 20:20:24.764045 2024-02-12 20:20:24.929598 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +596 236 556 1 9.99 2024-02-12 21:28:29.407053 2024-02-12 21:28:29.585446 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +601 239 576 1 5.99 2024-02-12 21:32:02.859589 2024-02-12 21:32:02.983182 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +578 239 554 1 5.99 2024-02-12 21:26:29.514586 2024-02-12 21:26:29.660729 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +604 238 576 1 18.99 2024-02-12 21:32:22.988588 2024-02-12 21:32:23.160619 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +593 236 560 1 9.99 2024-02-12 21:27:28.352683 2024-02-12 21:27:28.473714 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +583 235 563 1 5.00 2024-02-12 21:26:43.480781 2024-02-12 21:26:43.653773 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +589 236 563 1 9.99 2024-02-12 21:27:05.543428 2024-02-12 21:27:05.757362 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +602 244 570 1 4.13 2024-02-12 21:32:17.401805 2024-02-12 21:32:17.58237 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +585 236 557 1 9.99 2024-02-12 21:26:46.864461 2024-02-12 21:26:47.042549 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +580 234 557 1 14.99 2024-02-12 21:26:37.011621 2024-02-12 21:26:37.155228 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +579 237 555 1 3.50 2024-02-12 21:26:35.1662 2024-02-12 21:26:35.29658 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +584 236 555 1 9.99 2024-02-12 21:26:44.945291 2024-02-12 21:26:45.17303 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +588 240 555 1 12.99 2024-02-12 21:27:05.077096 2024-02-12 21:27:05.263334 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +590 239 557 1 5.99 2024-02-12 21:27:07.027328 2024-02-12 21:27:07.208979 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +592 239 558 1 5.99 2024-02-12 21:27:23.380723 2024-02-12 21:27:23.508374 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +595 245 558 1 19.84 2024-02-12 21:28:24.814678 2024-02-12 21:28:25.008267 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +597 236 558 1 9.99 2024-02-12 21:28:34.729741 2024-02-12 21:28:34.901737 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +586 238 554 1 18.99 2024-02-12 21:27:00.019107 2024-02-12 21:27:00.188156 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +594 239 556 1 5.99 2024-02-12 21:28:19.323197 2024-02-12 21:28:19.506888 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +591 233 556 1 19.99 2024-02-12 21:27:17.325387 2024-02-12 21:27:17.445043 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +598 234 568 2 14.99 2024-02-12 21:31:54.875875 2024-02-12 21:32:16.613399 USD 1.14 \N 0.00 0.00 0.00 0.00 29.9800 0.00 0.00 \N \N +610 235 576 1 5.00 2024-02-12 21:32:45.176276 2024-02-12 21:32:45.353756 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +614 234 585 1 14.99 2024-02-12 21:36:42.578311 2024-02-12 21:36:42.687055 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +606 233 568 1 19.99 2024-02-12 21:32:38.750077 2024-02-12 21:32:38.934034 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +615 237 584 1 3.50 2024-02-12 21:36:43.18254 2024-02-12 21:36:43.485731 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +612 236 575 1 9.99 2024-02-12 21:33:56.324674 2024-02-12 21:33:56.506738 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +609 241 573 2 10.00 2024-02-12 21:32:44.730984 2024-02-12 21:33:44.802688 USD 1.30 \N 0.00 0.00 0.00 0.00 20.0000 0.00 0.00 \N \N +611 236 573 1 9.99 2024-02-12 21:33:54.627713 2024-02-12 21:33:54.790593 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +600 245 574 1 19.84 2024-02-12 21:32:00.67904 2024-02-12 21:32:00.793637 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +603 236 574 1 9.99 2024-02-12 21:32:20.70869 2024-02-12 21:32:21.03722 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +608 239 575 2 5.99 2024-02-12 21:32:43.913413 2024-02-12 21:33:46.55181 USD 0.49 \N 0.00 0.00 0.00 0.00 11.9800 0.00 0.00 \N \N +616 233 587 1 19.99 2024-02-12 21:36:44.947773 2024-02-12 21:36:45.099637 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +620 236 589 1 9.99 2024-02-12 21:36:57.599522 2024-02-12 21:36:57.775771 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +621 236 590 1 9.99 2024-02-12 21:36:58.192942 2024-02-12 21:36:58.387965 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +618 241 590 1 10.00 2024-02-12 21:36:48.112886 2024-02-12 21:36:48.225433 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +619 236 585 1 9.99 2024-02-12 21:36:52.63844 2024-02-12 21:36:52.818885 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +617 244 589 1 4.13 2024-02-12 21:36:47.640819 2024-02-12 21:36:47.758708 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +613 240 583 1 12.99 2024-02-12 21:36:40.588493 2024-02-12 21:36:40.729249 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +622 236 583 1 9.99 2024-02-12 21:37:00.740731 2024-02-12 21:37:00.942626 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +623 234 584 1 14.99 2024-02-12 21:37:04.864903 2024-02-12 21:37:05.214459 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +656 242 599 1 11.01 2024-02-12 21:46:14.385846 2024-02-12 21:46:14.562724 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +625 241 585 1 10.00 2024-02-12 21:37:12.95868 2024-02-12 21:37:13.134118 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +661 237 620 1 3.50 2024-02-12 21:49:30.507938 2024-02-12 21:49:30.641212 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +626 233 582 1 19.99 2024-02-12 21:37:14.051256 2024-02-12 21:37:14.163947 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +655 236 602 1 9.99 2024-02-12 21:45:21.995385 2024-02-12 21:45:22.191588 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +642 235 601 1 5.00 2024-02-12 21:44:08.616814 2024-02-12 21:44:08.729878 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +667 245 623 1 19.84 2024-02-12 21:50:16.615205 2024-02-12 21:50:16.72755 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +634 244 588 1 4.13 2024-02-12 21:38:35.730294 2024-02-12 21:38:35.919784 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +629 241 586 1 10.00 2024-02-12 21:37:28.483022 2024-02-12 21:37:28.603776 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +632 233 586 1 19.99 2024-02-12 21:38:25.263403 2024-02-12 21:38:25.55556 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +633 236 586 1 9.99 2024-02-12 21:38:35.723917 2024-02-12 21:38:35.917124 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +628 235 591 1 5.00 2024-02-12 21:37:27.829811 2024-02-12 21:37:27.93758 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +648 245 601 1 19.84 2024-02-12 21:45:09.107378 2024-02-12 21:45:09.297928 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +652 236 601 1 9.99 2024-02-12 21:45:18.866182 2024-02-12 21:45:19.05911 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +635 238 588 1 18.99 2024-02-12 21:39:40.32219 2024-02-12 21:39:40.4851 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +644 235 600 1 5.00 2024-02-12 21:44:11.469157 2024-02-12 21:44:11.701691 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +649 242 600 1 11.01 2024-02-12 21:45:10.252634 2024-02-12 21:45:10.422123 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +653 236 600 1 9.99 2024-02-12 21:45:20.125381 2024-02-12 21:45:20.341342 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +646 244 603 1 4.13 2024-02-12 21:44:12.332638 2024-02-12 21:44:12.566364 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +636 236 588 1 9.99 2024-02-12 21:40:39.610876 2024-02-12 21:40:39.778108 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +631 245 588 1 19.84 2024-02-12 21:37:31.5888 2024-02-12 21:37:31.716 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +627 238 590 1 18.99 2024-02-12 21:37:20.31294 2024-02-12 21:37:20.48659 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +624 234 587 1 14.99 2024-02-12 21:37:06.551666 2024-02-12 21:37:06.750221 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +630 242 587 1 11.01 2024-02-12 21:37:28.65016 2024-02-12 21:37:28.982173 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +637 242 598 1 11.01 2024-02-12 21:43:17.29138 2024-02-12 21:43:17.418432 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +639 245 598 1 19.84 2024-02-12 21:43:39.901038 2024-02-12 21:43:40.071637 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +638 240 604 1 12.99 2024-02-12 21:43:29.407618 2024-02-12 21:43:29.531308 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +640 235 604 1 5.00 2024-02-12 21:43:49.585483 2024-02-12 21:43:49.828644 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +645 244 604 1 4.13 2024-02-12 21:44:11.763297 2024-02-12 21:44:11.938823 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +650 237 603 1 3.50 2024-02-12 21:45:11.08045 2024-02-12 21:45:11.290108 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +654 236 603 1 9.99 2024-02-12 21:45:21.145611 2024-02-12 21:45:21.335036 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +643 233 602 1 19.99 2024-02-12 21:44:10.690135 2024-02-12 21:44:10.797832 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +651 242 602 1 11.01 2024-02-12 21:45:12.121797 2024-02-12 21:45:12.326182 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +663 236 618 1 9.99 2024-02-12 21:49:39.291038 2024-02-12 21:49:39.469648 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +679 239 629 1 5.99 2024-02-12 21:53:12.598595 2024-02-12 21:53:12.785083 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +666 240 616 1 12.99 2024-02-12 21:50:11.258435 2024-02-12 21:50:11.434522 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +641 236 599 2 9.99 2024-02-12 21:44:06.954147 2024-02-12 21:45:18.547581 USD 1.10 \N 0.00 0.00 0.00 0.00 19.9800 0.00 0.00 \N \N +647 233 599 1 19.99 2024-02-12 21:45:08.488197 2024-02-12 21:45:08.683982 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +659 239 618 1 5.99 2024-02-12 21:49:29.329461 2024-02-12 21:49:29.452425 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +674 236 628 1 9.99 2024-02-12 21:52:56.384343 2024-02-12 21:52:56.57222 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +668 241 622 1 10.00 2024-02-12 21:50:18.964436 2024-02-12 21:50:19.085431 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +660 235 619 1 5.00 2024-02-12 21:49:30.204586 2024-02-12 21:49:30.316491 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +665 242 618 1 11.01 2024-02-12 21:49:59.531369 2024-02-12 21:49:59.717491 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +658 241 617 1 10.00 2024-02-12 21:49:27.543558 2024-02-12 21:49:27.65971 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +664 241 619 1 10.00 2024-02-12 21:49:52.643796 2024-02-12 21:49:52.809812 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +657 237 615 1 3.50 2024-02-12 21:49:25.256118 2024-02-12 21:49:25.363565 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +662 236 615 1 9.99 2024-02-12 21:49:35.298332 2024-02-12 21:49:35.558934 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +669 245 628 1 19.84 2024-02-12 21:52:45.168631 2024-02-12 21:52:45.285197 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +676 237 635 1 3.50 2024-02-12 21:52:58.366599 2024-02-12 21:52:58.486619 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +671 237 630 1 3.50 2024-02-12 21:52:51.662047 2024-02-12 21:52:51.776048 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +678 236 635 1 9.99 2024-02-12 21:53:08.381594 2024-02-12 21:53:08.677559 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +680 245 631 1 19.84 2024-02-12 21:53:16.458082 2024-02-12 21:53:16.640888 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +670 246 629 1 19.92 2024-02-12 21:52:50.281097 2024-02-12 21:52:50.407092 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +672 237 631 1 3.50 2024-02-12 21:52:54.178086 2024-02-12 21:52:54.301501 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +673 235 632 1 5.00 2024-02-12 21:52:54.217701 2024-02-12 21:52:54.332774 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +677 236 632 1 9.99 2024-02-12 21:53:04.149882 2024-02-12 21:53:04.317132 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +675 244 634 1 4.13 2024-02-12 21:52:57.067885 2024-02-12 21:52:57.269448 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +681 235 628 1 5.00 2024-02-12 21:53:16.724218 2024-02-12 21:53:17.062355 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +682 234 632 1 14.99 2024-02-12 21:53:26.210913 2024-02-12 21:53:26.389839 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +708 244 670 1 4.13 2024-02-12 22:03:08.299871 2024-02-12 22:03:08.429196 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +715 233 671 1 19.99 2024-02-12 22:03:51.302256 2024-02-12 22:03:51.429198 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +706 234 668 1 14.99 2024-02-12 22:03:06.221875 2024-02-12 22:03:06.327587 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +705 235 665 1 5.00 2024-02-12 22:03:03.478368 2024-02-12 22:03:03.598931 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +684 234 633 1 14.99 2024-02-12 21:53:43.042529 2024-02-12 21:53:43.158785 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +689 237 646 1 3.50 2024-02-12 21:57:48.966847 2024-02-12 21:57:49.08318 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +694 236 646 1 9.99 2024-02-12 21:57:58.750826 2024-02-12 21:57:58.932424 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +697 241 646 1 10.00 2024-02-12 21:58:20.815576 2024-02-12 21:58:20.981383 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +688 239 645 1 5.99 2024-02-12 21:57:43.972503 2024-02-12 21:57:44.094692 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +692 237 649 1 3.50 2024-02-12 21:57:55.745224 2024-02-12 21:57:55.995043 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +683 236 629 1 9.99 2024-02-12 21:53:34.835001 2024-02-12 21:53:35.014317 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +690 235 647 1 5.00 2024-02-12 21:57:51.15369 2024-02-12 21:57:51.264319 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +696 240 647 1 12.99 2024-02-12 21:58:13.54075 2024-02-12 21:58:13.711057 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +691 242 648 2 11.01 2024-02-12 21:57:54.825754 2024-02-12 21:58:17.081838 USD 1.22 \N 0.00 0.00 0.00 0.00 22.0200 0.00 0.00 \N \N +686 239 633 1 5.99 2024-02-12 21:54:41.646674 2024-02-12 21:54:41.812655 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +710 236 668 1 9.99 2024-02-12 22:03:16.046998 2024-02-12 22:03:16.212602 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +721 242 679 1 11.01 2024-02-12 22:07:01.295409 2024-02-12 22:07:01.468018 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +698 239 649 1 5.99 2024-02-12 21:58:25.660631 2024-02-12 21:58:25.833292 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +693 244 650 1 4.13 2024-02-12 21:57:56.234637 2024-02-12 21:57:56.42019 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +685 245 637 1 19.84 2024-02-12 21:53:45.685425 2024-02-12 21:53:45.798588 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +687 233 637 1 19.99 2024-02-12 21:54:47.061481 2024-02-12 21:54:47.250176 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +709 236 665 1 9.99 2024-02-12 22:03:13.332293 2024-02-12 22:03:13.551988 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +717 235 679 1 5.00 2024-02-12 22:06:31.402577 2024-02-12 22:06:31.524404 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +704 240 662 1 12.99 2024-02-12 22:02:55.272717 2024-02-12 22:02:55.424543 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +699 245 651 1 19.84 2024-02-12 21:58:40.302743 2024-02-12 21:58:40.441667 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +695 236 649 1 9.99 2024-02-12 21:58:05.514927 2024-02-12 21:58:05.690657 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +711 245 662 1 19.84 2024-02-12 22:03:18.160959 2024-02-12 22:03:18.346525 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +707 242 667 1 11.01 2024-02-12 22:03:06.92901 2024-02-12 22:03:07.153057 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +712 235 667 1 5.00 2024-02-12 22:03:26.959539 2024-02-12 22:03:27.127046 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +701 234 652 1 14.99 2024-02-12 21:58:46.826395 2024-02-12 21:58:46.934087 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +703 239 652 1 5.99 2024-02-12 21:59:45.729406 2024-02-12 21:59:45.9033 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +700 238 654 1 18.99 2024-02-12 21:58:41.141854 2024-02-12 21:58:41.334429 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +702 234 654 1 14.99 2024-02-12 21:59:43.937868 2024-02-12 21:59:44.104245 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +713 235 670 1 5.00 2024-02-12 22:03:30.434716 2024-02-12 22:03:30.619024 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +724 235 677 1 5.00 2024-02-12 22:07:12.670303 2024-02-12 22:07:12.936798 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +726 244 680 1 4.13 2024-02-12 22:07:17.172481 2024-02-12 22:07:17.400854 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +714 241 665 1 10.00 2024-02-12 22:03:33.506296 2024-02-12 22:03:33.686247 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +728 237 681 1 3.50 2024-02-12 22:07:22.294506 2024-02-12 22:07:22.422533 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +729 236 675 1 9.99 2024-02-12 22:08:12.388613 2024-02-12 22:08:12.566695 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +722 238 675 2 18.99 2024-02-12 22:07:01.850464 2024-02-12 22:08:02.880114 USD 1.99 \N 0.00 0.00 0.00 0.00 37.9800 0.00 0.00 \N \N +723 238 676 1 18.99 2024-02-12 22:07:09.195126 2024-02-12 22:07:09.428305 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +719 236 679 1 9.99 2024-02-12 22:06:41.233593 2024-02-12 22:06:41.421491 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +727 238 682 1 18.99 2024-02-12 22:07:21.968012 2024-02-12 22:07:22.071767 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +718 244 684 1 4.13 2024-02-12 22:06:35.712331 2024-02-12 22:06:35.838345 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +716 241 677 1 10.00 2024-02-12 22:06:30.372196 2024-02-12 22:06:30.478172 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +725 244 678 1 4.13 2024-02-12 22:07:16.908541 2024-02-12 22:07:17.038334 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +720 246 677 1 19.92 2024-02-12 22:06:50.406913 2024-02-12 22:06:50.584165 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +731 236 678 2 9.99 2024-02-12 22:08:19.206058 2024-02-12 22:08:29.268242 USD 1.10 \N 0.00 0.00 0.00 0.00 19.9800 0.00 0.00 \N \N +733 240 681 1 12.99 2024-02-12 22:08:24.665211 2024-02-12 22:08:24.829054 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +730 242 676 1 11.01 2024-02-12 22:08:13.595746 2024-02-12 22:08:13.78463 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +732 244 682 1 4.13 2024-02-12 22:08:19.500726 2024-02-12 22:08:19.695582 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +734 234 675 1 14.99 2024-02-12 22:09:12.971791 2024-02-12 22:09:13.170497 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +735 246 691 1 19.92 2024-02-12 22:11:54.870031 2024-02-12 22:11:54.979028 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +751 234 697 1 14.99 2024-02-12 22:12:49.252612 2024-02-12 22:12:49.361629 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +754 241 697 1 10.00 2024-02-12 22:13:56.239295 2024-02-12 22:13:56.416353 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +745 244 694 1 4.13 2024-02-12 22:12:29.819412 2024-02-12 22:12:29.990561 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +738 239 694 1 5.99 2024-02-12 22:11:59.826293 2024-02-12 22:12:00.009262 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +737 237 695 1 3.50 2024-02-12 22:11:59.74463 2024-02-12 22:11:59.943432 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +740 236 695 1 9.99 2024-02-12 22:12:09.661285 2024-02-12 22:12:09.968667 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +736 234 692 1 14.99 2024-02-12 22:11:56.359373 2024-02-12 22:11:56.47759 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +746 234 698 1 14.99 2024-02-12 22:12:32.652908 2024-02-12 22:12:32.835754 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +739 242 698 1 11.01 2024-02-12 22:12:03.312223 2024-02-12 22:12:03.424442 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +744 235 692 1 5.00 2024-02-12 22:12:18.454019 2024-02-12 22:12:18.686096 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +747 236 692 1 9.99 2024-02-12 22:12:40.695111 2024-02-12 22:12:40.862717 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +766 233 710 1 19.99 2024-02-12 22:17:56.784071 2024-02-12 22:17:56.902802 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +768 236 710 1 9.99 2024-02-12 22:19:07.078477 2024-02-12 22:19:07.427507 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +758 233 708 1 19.99 2024-02-12 22:17:12.042107 2024-02-12 22:17:12.273636 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +741 236 694 1 9.99 2024-02-12 22:12:09.750595 2024-02-12 22:12:10.063969 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +763 236 708 1 9.99 2024-02-12 22:17:23.984218 2024-02-12 22:17:24.204463 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +742 236 698 1 9.99 2024-02-12 22:12:13.149711 2024-02-12 22:12:13.337294 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +759 235 709 1 5.00 2024-02-12 22:17:12.373906 2024-02-12 22:17:13.841891 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +755 237 705 1 3.50 2024-02-12 22:17:07.420425 2024-02-12 22:17:07.542181 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +749 233 696 1 19.99 2024-02-12 22:12:46.102434 2024-02-12 22:12:46.217911 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +743 242 691 1 11.01 2024-02-12 22:12:15.233867 2024-02-12 22:12:15.413711 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +753 242 699 1 11.01 2024-02-12 22:13:52.984295 2024-02-12 22:13:53.299638 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +761 236 705 1 9.99 2024-02-12 22:17:19.354822 2024-02-12 22:17:19.678036 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +764 238 705 1 18.99 2024-02-12 22:17:41.753147 2024-02-12 22:17:41.930578 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +756 244 706 1 4.13 2024-02-12 22:17:10.711896 2024-02-12 22:17:10.837248 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +770 245 722 1 19.84 2024-02-12 22:22:02.163136 2024-02-12 22:22:02.502757 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +762 236 706 1 9.99 2024-02-12 22:17:22.438822 2024-02-12 22:17:22.648992 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +750 244 699 1 4.13 2024-02-12 22:12:47.226519 2024-02-12 22:12:47.351228 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +748 242 693 1 11.01 2024-02-12 22:12:45.677526 2024-02-12 22:12:45.791342 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +752 234 693 1 14.99 2024-02-12 22:13:52.583917 2024-02-12 22:13:52.777192 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +765 239 706 1 5.99 2024-02-12 22:17:42.622462 2024-02-12 22:17:42.965931 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +760 240 712 2 12.99 2024-02-12 22:17:16.724465 2024-02-12 22:17:39.82074 USD 0.99 \N 0.00 0.00 0.00 0.00 25.9800 0.00 0.00 \N \N +769 236 721 1 9.99 2024-02-12 22:22:01.853799 2024-02-12 22:22:02.181655 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +772 246 727 1 19.92 2024-02-12 22:22:07.180673 2024-02-12 22:22:07.415656 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +757 239 707 1 5.99 2024-02-12 22:17:11.488235 2024-02-12 22:17:11.600193 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +767 239 710 1 5.99 2024-02-12 22:18:56.069587 2024-02-12 22:18:56.239654 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +784 238 724 1 18.99 2024-02-12 22:23:48.010085 2024-02-12 22:23:48.289895 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +776 236 727 1 9.99 2024-02-12 22:22:17.898757 2024-02-12 22:22:18.064837 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +777 234 722 1 14.99 2024-02-12 22:22:23.573066 2024-02-12 22:22:23.874945 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +774 234 729 1 14.99 2024-02-12 22:22:08.174368 2024-02-12 22:22:08.347674 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +781 235 727 1 5.00 2024-02-12 22:22:37.951494 2024-02-12 22:22:38.118978 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +779 239 729 1 5.99 2024-02-12 22:22:30.72274 2024-02-12 22:22:30.88827 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +778 237 721 1 3.50 2024-02-12 22:22:26.011096 2024-02-12 22:22:26.197556 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +782 237 724 1 3.50 2024-02-12 22:22:47.024598 2024-02-12 22:22:47.137802 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +771 237 726 1 3.50 2024-02-12 22:22:06.061606 2024-02-12 22:22:06.359322 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +783 235 725 1 5.00 2024-02-12 22:22:47.25938 2024-02-12 22:22:47.396048 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +775 236 726 1 9.99 2024-02-12 22:22:16.169337 2024-02-12 22:22:16.366249 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +773 235 728 1 5.00 2024-02-12 22:22:07.735501 2024-02-12 22:22:07.986537 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +780 234 726 1 14.99 2024-02-12 22:22:35.796709 2024-02-12 22:22:35.965449 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +785 236 724 1 9.99 2024-02-12 22:23:58.899111 2024-02-12 22:23:59.106832 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +786 239 735 1 5.99 2024-02-12 22:26:32.090397 2024-02-12 22:26:32.26328 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +789 241 740 1 10.00 2024-02-12 22:26:36.970042 2024-02-12 22:26:37.469688 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +788 240 738 1 12.99 2024-02-12 22:26:34.643972 2024-02-12 22:26:34.862965 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +787 244 736 2 4.13 2024-02-12 22:26:34.207566 2024-02-12 22:27:05.126918 USD 1.10 \N 0.00 0.00 0.00 0.00 8.2600 0.00 0.00 \N \N +790 234 741 1 14.99 2024-02-12 22:26:39.137715 2024-02-12 22:26:39.257257 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +791 242 743 1 11.01 2024-02-12 22:26:41.64173 2024-02-12 22:26:41.752548 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +795 244 734 2 4.13 2024-02-12 22:27:09.472957 2024-02-12 22:28:08.564889 USD 1.10 \N 0.00 0.00 0.00 0.00 8.2600 0.00 0.00 \N \N +792 236 736 1 9.99 2024-02-12 22:26:44.805412 2024-02-12 22:26:44.979231 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +815 236 756 1 9.99 2024-02-12 22:32:57.920406 2024-02-12 22:32:58.086942 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +822 246 767 1 19.92 2024-02-12 22:37:01.140916 2024-02-12 22:37:01.25117 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +800 244 748 2 4.13 2024-02-12 22:30:55.065142 2024-02-12 22:31:15.403312 USD 1.10 \N 0.00 0.00 0.00 0.00 8.2600 0.00 0.00 \N \N +801 244 750 1 4.13 2024-02-12 22:31:02.170744 2024-02-12 22:31:02.274506 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +802 235 750 1 5.00 2024-02-12 22:31:24.347284 2024-02-12 22:31:24.518637 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +843 236 783 1 9.99 2024-02-12 22:41:55.313134 2024-02-12 22:41:55.517349 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +806 237 750 1 3.50 2024-02-12 22:31:48.138276 2024-02-12 22:31:48.31587 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +828 238 763 1 18.99 2024-02-12 22:37:34.04949 2024-02-12 22:37:34.184609 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +796 234 739 1 14.99 2024-02-12 22:27:21.270811 2024-02-12 22:27:21.407511 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +803 235 749 1 5.00 2024-02-12 22:31:42.712627 2024-02-12 22:31:42.827506 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +829 240 770 1 12.99 2024-02-12 22:37:34.344911 2024-02-12 22:37:34.660391 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +814 236 749 1 9.99 2024-02-12 22:32:51.794557 2024-02-12 22:32:52.044751 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +797 240 742 1 12.99 2024-02-12 22:27:25.971345 2024-02-12 22:27:26.143066 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +793 236 738 2 9.99 2024-02-12 22:26:45.060081 2024-02-12 22:27:07.379941 USD 1.10 \N 0.00 0.00 0.00 0.00 19.9800 0.00 0.00 \N \N +794 233 743 1 19.99 2024-02-12 22:27:03.924112 2024-02-12 22:27:04.101051 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +809 234 749 1 14.99 2024-02-12 22:32:41.746923 2024-02-12 22:32:42.076094 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +804 233 752 1 19.99 2024-02-12 22:31:46.897447 2024-02-12 22:31:47.010338 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +798 236 734 1 9.99 2024-02-12 22:28:19.520885 2024-02-12 22:28:19.882935 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +818 237 749 1 3.50 2024-02-12 22:33:51.212963 2024-02-12 22:33:51.383756 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +824 241 771 1 10.00 2024-02-12 22:37:04.391833 2024-02-12 22:37:04.567799 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +799 239 742 1 5.99 2024-02-12 22:28:24.144963 2024-02-12 22:28:24.46123 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +826 236 771 1 9.99 2024-02-12 22:37:14.224942 2024-02-12 22:37:14.528708 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +833 241 769 1 10.00 2024-02-12 22:37:49.194789 2024-02-12 22:37:49.307061 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +830 235 771 1 5.00 2024-02-12 22:37:36.319192 2024-02-12 22:37:36.493606 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +821 235 765 1 5.00 2024-02-12 22:36:59.156541 2024-02-12 22:36:59.331546 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +805 240 751 1 12.99 2024-02-12 22:31:48.122114 2024-02-12 22:31:48.237391 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +834 236 768 3 9.99 2024-02-12 22:37:50.201641 2024-02-12 22:38:56.90307 USD 1.10 \N 0.00 0.00 0.00 0.00 29.9700 0.00 0.00 \N \N +813 238 751 1 18.99 2024-02-12 22:32:51.64421 2024-02-12 22:32:51.814811 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +808 235 757 1 5.00 2024-02-12 22:31:49.799453 2024-02-12 22:31:49.912836 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +827 233 765 1 19.99 2024-02-12 22:37:21.259635 2024-02-12 22:37:21.543776 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +811 239 757 1 5.99 2024-02-12 22:32:48.358137 2024-02-12 22:32:48.540977 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +816 236 757 1 9.99 2024-02-12 22:32:58.1482 2024-02-12 22:32:58.332455 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +819 237 757 1 3.50 2024-02-12 22:33:54.061622 2024-02-12 22:33:54.23084 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +812 238 752 1 18.99 2024-02-12 22:32:50.066537 2024-02-12 22:32:50.231997 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +831 241 766 1 10.00 2024-02-12 22:37:42.431143 2024-02-12 22:37:42.546078 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +817 236 752 1 9.99 2024-02-12 22:32:59.977999 2024-02-12 22:33:00.150253 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +807 234 756 1 14.99 2024-02-12 22:31:48.597342 2024-02-12 22:31:48.835147 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +810 240 756 1 12.99 2024-02-12 22:32:48.068309 2024-02-12 22:32:48.24548 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +832 245 765 1 19.84 2024-02-12 22:37:43.55384 2024-02-12 22:37:43.720505 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +836 242 781 1 11.01 2024-02-12 22:41:43.673723 2024-02-12 22:41:43.784446 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +823 233 770 1 19.99 2024-02-12 22:37:04.100207 2024-02-12 22:37:04.316682 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +835 233 780 1 19.99 2024-02-12 22:41:40.787452 2024-02-12 22:41:40.897611 USD 2.75 \N 0.00 0.00 0.00 0.00 19.9900 0.00 0.00 \N \N +820 239 764 1 5.99 2024-02-12 22:36:58.375903 2024-02-12 22:36:58.482084 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +846 234 784 1 14.99 2024-02-12 22:42:06.921379 2024-02-12 22:42:07.093852 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +847 239 782 1 5.99 2024-02-12 22:42:07.694537 2024-02-12 22:42:08.043246 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +825 236 770 1 9.99 2024-02-12 22:37:14.01348 2024-02-12 22:37:14.199275 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +844 236 785 1 9.99 2024-02-12 22:41:57.825861 2024-02-12 22:41:58.077802 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +837 234 783 1 14.99 2024-02-12 22:41:44.988312 2024-02-12 22:41:45.101082 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +842 236 780 1 9.99 2024-02-12 22:41:50.735285 2024-02-12 22:41:51.055104 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +840 241 785 1 10.00 2024-02-12 22:41:47.687671 2024-02-12 22:41:47.915353 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +838 244 782 1 4.13 2024-02-12 22:41:45.503157 2024-02-12 22:41:45.620636 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +845 237 781 1 3.50 2024-02-12 22:42:04.235292 2024-02-12 22:42:04.40459 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +841 240 788 1 12.99 2024-02-12 22:41:49.945672 2024-02-12 22:41:50.067529 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +839 242 784 1 11.01 2024-02-12 22:41:46.992773 2024-02-12 22:41:47.117656 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +849 237 779 1 3.50 2024-02-12 22:42:13.040066 2024-02-12 22:42:13.158678 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +848 241 780 1 10.00 2024-02-12 22:42:13.027451 2024-02-12 22:42:13.20421 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +850 235 783 1 5.00 2024-02-12 22:42:17.311834 2024-02-12 22:42:17.493236 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +851 235 785 1 5.00 2024-02-12 22:42:19.929463 2024-02-12 22:42:20.092868 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +860 235 802 1 5.00 2024-02-12 22:47:21.3792 2024-02-12 22:47:21.80658 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +866 241 803 1 10.00 2024-02-12 22:48:05.688158 2024-02-12 22:48:05.848774 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +856 239 797 1 5.99 2024-02-12 22:47:15.161205 2024-02-12 22:47:15.356979 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +853 244 779 1 4.13 2024-02-12 22:43:12.016765 2024-02-12 22:43:12.18889 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +861 236 797 1 9.99 2024-02-12 22:47:25.17249 2024-02-12 22:47:25.60936 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +855 234 795 1 14.99 2024-02-12 22:47:10.622422 2024-02-12 22:47:10.883339 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +882 237 810 1 3.50 2024-02-12 22:53:05.524857 2024-02-12 22:53:05.749315 USD 1.60 \N 0.00 0.00 0.00 0.00 3.5000 0.00 0.00 \N \N +859 236 795 1 9.99 2024-02-12 22:47:20.801182 2024-02-12 22:47:21.210992 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +854 236 779 1 9.99 2024-02-12 22:43:21.853881 2024-02-12 22:43:22.029934 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +852 246 784 1 19.92 2024-02-12 22:42:29.163716 2024-02-12 22:42:29.352843 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +863 242 795 1 11.01 2024-02-12 22:47:43.377782 2024-02-12 22:47:43.647156 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +880 245 810 1 19.84 2024-02-12 22:52:05.94809 2024-02-12 22:52:06.116159 USD 0.99 \N 0.00 0.00 0.00 0.00 19.8400 0.00 0.00 \N \N +862 236 802 1 9.99 2024-02-12 22:47:31.434304 2024-02-12 22:47:31.714002 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +872 236 812 1 9.99 2024-02-12 22:51:29.846682 2024-02-12 22:51:30.063834 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +864 239 802 1 5.99 2024-02-12 22:47:54.188837 2024-02-12 22:47:54.41726 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +857 241 800 1 10.00 2024-02-12 22:47:18.807837 2024-02-12 22:47:18.941275 USD 1.30 \N 0.00 0.00 0.00 0.00 10.0000 0.00 0.00 \N \N +858 244 801 1 4.13 2024-02-12 22:47:20.779724 2024-02-12 22:47:21.058972 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +877 246 812 1 19.92 2024-02-12 22:51:50.06837 2024-02-12 22:51:50.260173 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +881 240 813 1 12.99 2024-02-12 22:52:10.84498 2024-02-12 22:52:10.99035 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +868 235 809 1 5.00 2024-02-12 22:51:16.479376 2024-02-12 22:51:16.622478 USD 0.99 \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N +874 246 809 1 19.92 2024-02-12 22:51:38.989401 2024-02-12 22:51:39.337691 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +870 238 811 1 18.99 2024-02-12 22:51:19.634488 2024-02-12 22:51:20.119408 USD 1.99 \N 0.00 0.00 0.00 0.00 18.9900 0.00 0.00 \N \N +875 242 811 1 11.01 2024-02-12 22:51:42.097979 2024-02-12 22:51:42.330379 USD 1.22 \N 0.00 0.00 0.00 0.00 11.0100 0.00 0.00 \N \N +865 240 799 1 12.99 2024-02-12 22:48:01.42347 2024-02-12 22:48:01.60958 USD 0.99 \N 0.00 0.00 0.00 0.00 12.9900 0.00 0.00 \N \N +871 234 816 1 14.99 2024-02-12 22:51:21.597664 2024-02-12 22:51:21.770494 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +869 234 812 1 14.99 2024-02-12 22:51:19.513093 2024-02-12 22:51:20.032704 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +876 239 816 1 5.99 2024-02-12 22:51:43.996952 2024-02-12 22:51:44.202557 USD 0.49 \N 0.00 0.00 0.00 0.00 5.9900 0.00 0.00 \N \N +867 246 808 1 19.92 2024-02-12 22:51:15.254117 2024-02-12 22:51:15.39074 USD 1.36 \N 0.00 0.00 0.00 0.00 19.9200 0.00 0.00 \N \N +873 236 808 1 9.99 2024-02-12 22:51:36.261129 2024-02-12 22:51:36.497255 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N +878 244 808 1 4.13 2024-02-12 22:51:58.397221 2024-02-12 22:51:58.622616 USD 1.10 \N 0.00 0.00 0.00 0.00 4.1300 0.00 0.00 \N \N +879 234 814 1 14.99 2024-02-12 22:52:05.217522 2024-02-12 22:52:05.35892 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N +\. + + +-- +-- Data for Name: spree_log_entries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_log_entries (id, source_type, source_id, details, created_at, updated_at) FROM stdin; +1 Spree::Payment 479 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:14:34.033596 2024-02-12 20:14:34.033596 +2 Spree::Payment 482 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:16:13.650056 2024-02-12 20:16:13.650056 +3 Spree::Payment 485 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:18:52.739207 2024-02-12 20:18:52.739207 +4 Spree::Payment 489 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:21:23.88297 2024-02-12 20:21:23.88297 +5 Spree::Payment 494 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:24:07.700996 2024-02-12 20:24:07.700996 +6 Spree::Payment 498 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 20:25:59.865982 2024-02-12 20:25:59.865982 +7 Spree::Payment 524 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:27:46.10319 2024-02-12 21:27:46.10319 +8 Spree::Payment 516 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:28:08.30922 2024-02-12 21:28:08.30922 +9 Spree::Payment 519 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:29:18.056399 2024-02-12 21:29:18.056399 +10 Spree::Payment 531 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:32:57.521982 2024-02-12 21:32:57.521982 +11 Spree::Payment 529 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:33:18.959882 2024-02-12 21:33:18.959882 +12 Spree::Payment 534 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:33:22.877006 2024-02-12 21:33:22.877006 +13 Spree::Payment 537 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:33:25.349854 2024-02-12 21:33:25.349854 +14 Spree::Payment 535 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:34:37.853161 2024-02-12 21:34:37.853161 +15 Spree::Payment 559 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:38:00.389131 2024-02-12 21:38:00.389131 +16 Spree::Payment 558 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:38:02.441742 2024-02-12 21:38:02.441742 +17 Spree::Payment 552 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:38:04.891987 2024-02-12 21:38:04.891987 +18 Spree::Payment 553 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:38:08.298665 2024-02-12 21:38:08.298665 +19 Spree::Payment 556 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:38:08.826449 2024-02-12 21:38:08.826449 +23 Spree::Payment 574 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:46:02.06076 2024-02-12 21:46:02.06076 +25 Spree::Payment 576 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:46:04.3588 2024-02-12 21:46:04.3588 +26 Spree::Payment 572 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:47:17.087015 2024-02-12 21:47:17.087015 +29 Spree::Payment 590 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:50:33.922155 2024-02-12 21:50:33.922155 +30 Spree::Payment 595 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:50:37.661422 2024-02-12 21:50:37.661422 +33 Spree::Payment 610 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:53:56.982393 2024-02-12 21:53:56.982393 +34 Spree::Payment 617 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:54:07.783333 2024-02-12 21:54:07.783333 +36 Spree::Payment 613 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:54:23.95545 2024-02-12 21:54:23.95545 +38 Spree::Payment 633 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:58:25.810357 2024-02-12 21:58:25.810357 +40 Spree::Payment 634 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:59:00.982347 2024-02-12 21:59:00.982347 +42 Spree::Payment 636 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:59:21.085945 2024-02-12 21:59:21.085945 +45 Spree::Payment 661 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:03:56.142991 2024-02-12 22:03:56.142991 +46 Spree::Payment 656 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:04:16.574322 2024-02-12 22:04:16.574322 +20 Spree::Payment 555 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:39:19.032134 2024-02-12 21:39:19.032134 +21 Spree::Payment 571 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:44:20.119592 2024-02-12 21:44:20.119592 +22 Spree::Payment 577 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:44:51.933366 2024-02-12 21:44:51.933366 +24 Spree::Payment 573 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:46:03.360134 2024-02-12 21:46:03.360134 +27 Spree::Payment 592 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:50:07.855219 2024-02-12 21:50:07.855219 +28 Spree::Payment 594 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:50:32.822482 2024-02-12 21:50:32.822482 +31 Spree::Payment 612 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:53:31.771063 2024-02-12 21:53:31.771063 +32 Spree::Payment 616 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:53:37.212972 2024-02-12 21:53:37.212972 +35 Spree::Payment 611 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:54:15.086972 2024-02-12 21:54:15.086972 +37 Spree::Payment 619 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:55:50.00726 2024-02-12 21:55:50.00726 +39 Spree::Payment 638 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:58:36.371058 2024-02-12 21:58:36.371058 +41 Spree::Payment 635 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 21:59:16.894577 2024-02-12 21:59:16.894577 +43 Spree::Payment 640 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:00:28.979345 2024-02-12 22:00:28.979345 +44 Spree::Payment 642 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:00:47.072654 2024-02-12 22:00:47.072654 +47 Spree::Payment 662 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:04:26.989124 2024-02-12 22:04:26.989124 +48 Spree::Payment 684 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:07:16.573496 2024-02-12 22:07:16.573496 +49 Spree::Payment 677 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:07:53.801451 2024-02-12 22:07:53.801451 +50 Spree::Payment 678 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:09:12.293076 2024-02-12 22:09:12.293076 +51 Spree::Payment 676 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:09:20.607705 2024-02-12 22:09:20.607705 +52 Spree::Payment 681 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:09:27.75373 2024-02-12 22:09:27.75373 +53 Spree::Payment 702 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:13:18.13929 2024-02-12 22:13:18.13929 +54 Spree::Payment 699 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:13:21.383356 2024-02-12 22:13:21.383356 +55 Spree::Payment 700 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:14:36.022639 2024-02-12 22:14:36.022639 +56 Spree::Payment 704 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:15:00.897915 2024-02-12 22:15:00.897915 +57 Spree::Payment 717 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:17:53.135485 2024-02-12 22:17:53.135485 +58 Spree::Payment 718 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:18:04.05069 2024-02-12 22:18:04.05069 +59 Spree::Payment 719 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:18:18.652502 2024-02-12 22:18:18.652502 +60 Spree::Payment 715 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:18:21.870058 2024-02-12 22:18:21.870058 +61 Spree::Payment 716 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:18:42.325298 2024-02-12 22:18:42.325298 +62 Spree::Payment 722 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:18:44.992069 2024-02-12 22:18:44.992069 +63 Spree::Payment 743 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:22:48.672273 2024-02-12 22:22:48.672273 +64 Spree::Payment 737 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:23:03.832756 2024-02-12 22:23:03.832756 +65 Spree::Payment 744 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:23:10.831022 2024-02-12 22:23:10.831022 +66 Spree::Payment 741 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:23:35.39301 2024-02-12 22:23:35.39301 +67 Spree::Payment 761 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:27:16.995887 2024-02-12 22:27:16.995887 +68 Spree::Payment 762 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:27:19.261127 2024-02-12 22:27:19.261127 +69 Spree::Payment 758 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:27:48.441339 2024-02-12 22:27:48.441339 +70 Spree::Payment 764 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:28:05.43404 2024-02-12 22:28:05.43404 +71 Spree::Payment 773 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:32:17.845592 2024-02-12 22:32:17.845592 +72 Spree::Payment 776 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:32:28.455569 2024-02-12 22:32:28.455569 +74 Spree::Payment 777 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:33:56.059101 2024-02-12 22:33:56.059101 +75 Spree::Payment 782 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:35:00.090884 2024-02-12 22:35:00.090884 +79 Spree::Payment 800 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:38:36.144715 2024-02-12 22:38:36.144715 +81 Spree::Payment 797 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:39:39.941224 2024-02-12 22:39:39.941224 +87 Spree::Payment 842 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:47:59.344513 2024-02-12 22:47:59.344513 +88 Spree::Payment 843 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:48:01.033039 2024-02-12 22:48:01.033039 +73 Spree::Payment 781 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:33:41.103482 2024-02-12 22:33:41.103482 +80 Spree::Payment 795 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:38:45.497667 2024-02-12 22:38:45.497667 +82 Spree::Payment 826 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:42:30.305472 2024-02-12 22:42:30.305472 +83 Spree::Payment 821 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:42:57.649313 2024-02-12 22:42:57.649313 +85 Spree::Payment 820 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:43:10.44737 2024-02-12 22:43:10.44737 +76 Spree::Payment 793 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:37:38.642786 2024-02-12 22:37:38.642786 +77 Spree::Payment 796 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:37:41.475625 2024-02-12 22:37:41.475625 +84 Spree::Payment 823 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:43:00.403771 2024-02-12 22:43:00.403771 +89 Spree::Payment 839 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:48:28.723143 2024-02-12 22:48:28.723143 +78 Spree::Payment 799 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:38:14.517616 2024-02-12 22:38:14.517616 +86 Spree::Payment 822 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:43:32.220458 2024-02-12 22:43:32.220458 +90 Spree::Payment 837 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:48:45.587937 2024-02-12 22:48:45.587937 +91 Spree::Payment 855 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:52:19.186297 2024-02-12 22:52:19.186297 +92 Spree::Payment 857 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:52:22.402969 2024-02-12 22:52:22.402969 +93 Spree::Payment 861 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:52:24.301151 2024-02-12 22:52:24.301151 +94 Spree::Payment 854 --- !ruby/object:ActiveMerchant::Billing::Response\nparams: {}\nmessage: 'Bogus Gateway: Forced success'\nsuccess: true\ntest: true\nauthorization: '12345'\nfraud_review: \nerror_code: \nemv_authorization: \nnetwork_transaction_id: \navs_result:\n code: D\n message: Street address and postal code match.\n street_match: Y\n postal_match: Y\ncvv_result:\n code: \n message: \n 2024-02-12 22:52:58.192309 2024-02-12 22:52:58.192309 +\. + + +-- +-- Data for Name: spree_menu_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_menu_items (id, name, subtitle, destination, new_window, item_type, linked_resource_type, linked_resource_id, code, parent_id, lft, rgt, depth, menu_id, created_at, updated_at) FROM stdin; +178 Faldas y blusas \N \N f Link Spree::Taxon 11 \N 173 341 342 2 8 2022-07-12 18:16:18.253333 2022-07-12 18:16:18.324457 +181 Chaquetas y abrigos \N \N f Link Spree::Taxon 14 \N 173 347 348 2 8 2022-07-12 18:16:18.617836 2022-07-12 18:16:18.687751 +176 Faldas \N \N f Link Spree::Taxon 9 \N 173 337 338 2 8 2022-07-12 18:16:18.029379 2022-07-12 18:16:18.103467 +177 Vestidos \N \N f Link Spree::Taxon 10 \N 173 339 340 2 8 2022-07-12 18:16:18.139141 2022-07-12 18:16:18.21771 +173 Hombres \N \N f Link Spree::Taxon 3 \N 8 336 349 1 8 2022-07-12 18:16:17.683957 2022-07-12 18:16:18.697248 +179 Suéteres \N \N f Link Spree::Taxon 12 \N 173 343 344 2 8 2022-07-12 18:16:18.359706 2022-07-12 18:16:18.474985 +180 Tops y camisetas \N \N f Link Spree::Taxon 13 \N 173 345 346 2 8 2022-07-12 18:16:18.510987 2022-07-12 18:16:18.581515 +184 Suéteres \N \N f Link Spree::Taxon 7 \N 174 355 356 2 8 2022-07-12 18:16:18.949087 2022-07-12 18:16:19.032075 +182 Camisas \N \N f Link Spree::Taxon 5 \N 174 351 352 2 8 2022-07-12 18:16:18.72249 2022-07-12 18:16:18.798276 +183 Camisetas \N \N f Link Spree::Taxon 6 \N 174 353 354 2 8 2022-07-12 18:16:18.83438 2022-07-12 18:16:18.908502 +187 Sudaderas \N \N f Link Spree::Taxon 16 \N 175 363 364 2 8 2022-07-12 18:16:19.299722 2022-07-12 18:16:19.375513 +185 Chaquetas y abrigos \N \N f Link Spree::Taxon 8 \N 174 357 358 2 8 2022-07-12 18:16:19.06704 2022-07-12 18:16:19.151727 +174 Mujeres \N \N f Link Spree::Taxon 2 \N 8 350 359 1 8 2022-07-12 18:16:17.797328 2022-07-12 18:16:19.161327 +186 Tops \N \N f Link Spree::Taxon 15 \N 175 361 362 2 8 2022-07-12 18:16:19.188723 2022-07-12 18:16:19.263099 +188 Pantalones \N \N f Link Spree::Taxon 17 \N 175 365 366 2 8 2022-07-12 18:16:19.411302 2022-07-12 18:16:19.485267 +175 Ropa de deporte \N \N f Link Spree::Taxon 4 \N 8 360 367 1 8 2022-07-12 18:16:17.91015 2022-07-12 18:16:19.494948 +13 Women \N \N f Link Spree::Taxon 3 \N 1 2 23 1 1 2022-07-12 18:15:59.925184 2022-07-12 18:16:02.13462 +198 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 195 386 387 3 9 2022-07-12 18:16:20.52199 2022-07-12 18:16:21.77083 +199 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 195 388 389 3 9 2022-07-12 18:16:20.646449 2022-07-12 18:16:21.77083 +195 Promos \N \N f Container URL \N promo 189 385 390 2 9 2022-07-12 18:16:20.182725 2022-07-12 18:16:21.77083 +200 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 196 404 405 3 9 2022-07-12 18:16:20.757251 2022-07-12 18:16:22.224639 +196 Promos \N \N f Container URL \N promo 190 403 408 2 9 2022-07-12 18:16:20.27005 2022-07-12 18:16:22.224639 +193 Catégories \N \N f Container URL \N category 190 393 402 2 9 2022-07-12 18:16:20.016185 2022-07-12 18:16:22.291893 +204 Jupes \N \N f Link Spree::Taxon 9 \N 192 372 373 3 9 2022-07-12 18:16:21.186861 2022-07-12 18:16:21.256082 +205 Robes \N \N f Link Spree::Taxon 10 \N 192 374 375 3 9 2022-07-12 18:16:21.293218 2022-07-12 18:16:21.372249 +208 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 192 380 381 3 9 2022-07-12 18:16:21.629632 2022-07-12 18:16:21.703473 +206 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 192 376 377 3 9 2022-07-12 18:16:21.410973 2022-07-12 18:16:21.487201 +207 Chandails \N \N f Link Spree::Taxon 12 \N 192 378 379 3 9 2022-07-12 18:16:21.524698 2022-07-12 18:16:21.595532 +191 Tenue de sport \N \N f Link Spree::Taxon 4 \N 9 410 425 1 9 2022-07-12 18:16:19.790662 2022-07-12 18:16:22.692378 +209 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 192 382 383 3 9 2022-07-12 18:16:21.748815 2022-07-12 18:16:21.826487 +192 Catégories \N \N f Container URL \N category 189 371 384 2 9 2022-07-12 18:16:19.923142 2022-07-12 18:16:21.836655 +189 Femmes \N \N f Link Spree::Taxon 3 \N 9 370 391 1 9 2022-07-12 18:16:19.525924 2022-07-12 18:16:21.836655 +194 Catégories \N \N f Container URL \N category 191 411 418 2 9 2022-07-12 18:16:20.0989 2022-07-12 18:16:22.692378 +201 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 196 406 407 3 9 2022-07-12 18:16:20.859316 2022-07-12 18:16:22.224639 +190 Hommes \N \N f Link Spree::Taxon 2 \N 9 392 409 1 9 2022-07-12 18:16:19.640314 2022-07-12 18:16:22.291893 +203 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 197 422 423 3 9 2022-07-12 18:16:21.079808 2022-07-12 18:16:22.60417 +197 Promos \N \N f Container URL \N promo 191 419 424 2 9 2022-07-12 18:16:20.406712 2022-07-12 18:16:22.60417 +202 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 197 420 421 3 9 2022-07-12 18:16:20.971732 2022-07-12 18:16:22.60417 +19 Promos \N \N f Container URL \N promo 13 17 22 2 1 2022-07-12 18:16:00.532599 2022-07-12 18:16:02.068813 +17 Categories \N \N f Container URL \N category 14 25 34 2 1 2022-07-12 18:16:00.361292 2022-07-12 18:16:02.586171 +21 Promos \N \N f Container URL \N promo 15 51 56 2 1 2022-07-12 18:16:00.705167 2022-07-12 18:16:02.857474 +18 Categories \N \N f Container URL \N category 15 43 50 2 1 2022-07-12 18:16:00.447117 2022-07-12 18:16:02.923833 +212 Chandails \N \N f Link Spree::Taxon 7 \N 193 398 399 3 9 2022-07-12 18:16:22.089573 2022-07-12 18:16:22.163575 +210 Chemises \N \N f Link Spree::Taxon 5 \N 193 394 395 3 9 2022-07-12 18:16:21.864325 2022-07-12 18:16:21.94185 +29 Dresses \N \N f Link Spree::Taxon 10 \N 16 6 7 3 1 2022-07-12 18:16:01.589901 2022-07-12 18:16:01.657924 +211 T-Shirts \N \N f Link Spree::Taxon 6 \N 193 396 397 3 9 2022-07-12 18:16:21.979421 2022-07-12 18:16:22.054213 +214 Hauts \N \N f Link Spree::Taxon 15 \N 194 412 413 3 9 2022-07-12 18:16:22.320972 2022-07-12 18:16:22.425981 +213 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 193 400 401 3 9 2022-07-12 18:16:22.203234 2022-07-12 18:16:22.280063 +215 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 194 414 415 3 9 2022-07-12 18:16:22.463356 2022-07-12 18:16:22.539545 +216 Pantalon \N \N f Link Spree::Taxon 17 \N 194 416 417 3 9 2022-07-12 18:16:22.583214 2022-07-12 18:16:22.657813 +220 Jupes \N \N f Link Spree::Taxon 9 \N 217 429 430 2 10 2022-07-12 18:16:23.090728 2022-07-12 18:16:23.163458 +28 Skirts \N \N f Link Spree::Taxon 9 \N 16 4 5 3 1 2022-07-12 18:16:01.484159 2022-07-12 18:16:01.554403 +221 Robes \N \N f Link Spree::Taxon 10 \N 217 431 432 2 10 2022-07-12 18:16:23.199227 2022-07-12 18:16:23.275844 +222 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 217 433 434 2 10 2022-07-12 18:16:23.316196 2022-07-12 18:16:23.396775 +31 Sweaters \N \N f Link Spree::Taxon 12 \N 16 10 11 3 1 2022-07-12 18:16:01.79645 2022-07-12 18:16:01.867842 +35 T-Shirts \N \N f Link Spree::Taxon 6 \N 17 28 29 3 1 2022-07-12 18:16:02.268207 2022-07-12 18:16:02.339678 +30 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 16 8 9 3 1 2022-07-12 18:16:01.691851 2022-07-12 18:16:01.761453 +32 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 16 12 13 3 1 2022-07-12 18:16:01.914618 2022-07-12 18:16:02.007106 +34 Shirts \N \N f Link Spree::Taxon 5 \N 17 26 27 3 1 2022-07-12 18:16:02.160211 2022-07-12 18:16:02.232295 +223 Chandails \N \N f Link Spree::Taxon 12 \N 217 435 436 2 10 2022-07-12 18:16:23.44502 2022-07-12 18:16:23.526019 +218 Hommes \N \N f Link Spree::Taxon 2 \N 10 442 451 1 10 2022-07-12 18:16:22.860569 2022-07-12 18:16:24.236757 +219 Tenue de sport \N \N f Link Spree::Taxon 4 \N 10 452 459 1 10 2022-07-12 18:16:22.979937 2022-07-12 18:16:24.660146 +22 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 19 18 19 3 1 2022-07-12 18:16:00.797958 2022-07-12 18:16:02.068813 +23 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 19 20 21 3 1 2022-07-12 18:16:00.913934 2022-07-12 18:16:02.068813 +33 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 16 14 15 3 1 2022-07-12 18:16:02.047314 2022-07-12 18:16:02.124898 +16 Categories \N \N f Container URL \N category 13 3 16 2 1 2022-07-12 18:16:00.276838 2022-07-12 18:16:02.13462 +38 Tops \N \N f Link Spree::Taxon 15 \N 18 44 45 3 1 2022-07-12 18:16:02.613424 2022-07-12 18:16:02.688582 +37 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 17 32 33 3 1 2022-07-12 18:16:02.498918 2022-07-12 18:16:02.575232 +14 Men \N \N f Link Spree::Taxon 2 \N 1 24 41 1 1 2022-07-12 18:16:00.048126 2022-07-12 18:16:02.586171 +36 Sweaters \N \N f Link Spree::Taxon 7 \N 17 30 31 3 1 2022-07-12 18:16:02.376106 2022-07-12 18:16:02.451163 +24 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 20 36 37 3 1 2022-07-12 18:16:01.018374 2022-07-12 18:16:02.519255 +25 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 20 38 39 3 1 2022-07-12 18:16:01.132199 2022-07-12 18:16:02.519255 +20 Promos \N \N f Container URL \N promo 14 35 40 2 1 2022-07-12 18:16:00.618361 2022-07-12 18:16:02.519255 +40 Pants \N \N f Link Spree::Taxon 17 \N 18 48 49 3 1 2022-07-12 18:16:02.837329 2022-07-12 18:16:02.914037 +1 Main Menu \N \N f Container URL \N \N \N 1 58 0 1 2022-07-12 18:15:59.143421 2022-07-12 18:16:02.923833 +15 Sportswear \N \N f Link Spree::Taxon 4 \N 1 42 57 1 1 2022-07-12 18:16:00.160437 2022-07-12 18:16:02.923833 +39 Sweatshirts \N \N f Link Spree::Taxon 16 \N 18 46 47 3 1 2022-07-12 18:16:02.723834 2022-07-12 18:16:02.79759 +27 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 21 54 55 3 1 2022-07-12 18:16:01.371349 2022-07-12 18:16:02.857474 +26 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 21 52 53 3 1 2022-07-12 18:16:01.242448 2022-07-12 18:16:02.857474 +46 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 41 65 66 2 2 2022-07-12 18:16:03.569808 2022-07-12 18:16:03.650898 +45 Dresses \N \N f Link Spree::Taxon 10 \N 41 63 64 2 2 2022-07-12 18:16:03.461418 2022-07-12 18:16:03.533974 +44 Skirts \N \N f Link Spree::Taxon 9 \N 41 61 62 2 2 2022-07-12 18:16:03.347637 2022-07-12 18:16:03.425274 +47 Sweaters \N \N f Link Spree::Taxon 12 \N 41 67 68 2 2 2022-07-12 18:16:03.689054 2022-07-12 18:16:03.763423 +48 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 41 69 70 2 2 2022-07-12 18:16:03.81649 2022-07-12 18:16:03.922173 +41 Women \N \N f Link Spree::Taxon 3 \N 2 60 73 1 2 2022-07-12 18:16:02.95408 2022-07-12 18:16:04.093336 +49 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 41 71 72 2 2 2022-07-12 18:16:04.002264 2022-07-12 18:16:04.083599 +50 Shirts \N \N f Link Spree::Taxon 5 \N 42 75 76 2 2 2022-07-12 18:16:04.119522 2022-07-12 18:16:04.189116 +228 Chandails \N \N f Link Spree::Taxon 7 \N 218 447 448 2 10 2022-07-12 18:16:24.008658 2022-07-12 18:16:24.092548 +224 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 217 437 438 2 10 2022-07-12 18:16:23.56419 2022-07-12 18:16:23.637355 +51 T-Shirts \N \N f Link Spree::Taxon 6 \N 42 77 78 2 2 2022-07-12 18:16:04.224173 2022-07-12 18:16:04.301427 +225 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 217 439 440 2 10 2022-07-12 18:16:23.676071 2022-07-12 18:16:23.748284 +217 Femmes \N \N f Link Spree::Taxon 3 \N 10 428 441 1 10 2022-07-12 18:16:22.725831 2022-07-12 18:16:23.758141 +226 Chemises \N \N f Link Spree::Taxon 5 \N 218 443 444 2 10 2022-07-12 18:16:23.784399 2022-07-12 18:16:23.854407 +52 Sweaters \N \N f Link Spree::Taxon 7 \N 42 79 80 2 2 2022-07-12 18:16:04.338662 2022-07-12 18:16:04.411605 +227 T-Shirts \N \N f Link Spree::Taxon 6 \N 218 445 446 2 10 2022-07-12 18:16:23.891601 2022-07-12 18:16:23.96507 +229 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 218 449 450 2 10 2022-07-12 18:16:24.144136 2022-07-12 18:16:24.226892 +230 Hauts \N \N f Link Spree::Taxon 15 \N 219 453 454 2 10 2022-07-12 18:16:24.271126 2022-07-12 18:16:24.344212 +53 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 42 81 82 2 2 2022-07-12 18:16:04.446423 2022-07-12 18:16:04.518213 +42 Men \N \N f Link Spree::Taxon 2 \N 2 74 83 1 2 2022-07-12 18:16:03.072454 2022-07-12 18:16:04.526998 +54 Tops \N \N f Link Spree::Taxon 15 \N 43 85 86 2 2 2022-07-12 18:16:04.552488 2022-07-12 18:16:04.621183 +56 Pants \N \N f Link Spree::Taxon 17 \N 43 89 90 2 2 2022-07-12 18:16:04.772054 2022-07-12 18:16:04.848894 +231 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 219 455 456 2 10 2022-07-12 18:16:24.40806 2022-07-12 18:16:24.483875 +232 Pantalon \N \N f Link Spree::Taxon 17 \N 219 457 458 2 10 2022-07-12 18:16:24.523788 2022-07-12 18:16:24.649127 +43 Sportswear \N \N f Link Spree::Taxon 4 \N 2 84 91 1 2 2022-07-12 18:16:03.211917 2022-07-12 18:16:04.857691 +2 Footer Menu \N \N f Container URL \N \N \N 59 92 0 2 2022-07-12 18:15:59.22014 2022-07-12 18:16:04.857691 +55 Sweatshirts \N \N f Link Spree::Taxon 16 \N 43 87 88 2 2 2022-07-12 18:16:04.655247 2022-07-12 18:16:04.733997 +233 Women \N \N f Link Spree::Taxon 3 \N 11 462 483 1 11 2022-07-12 18:16:24.6929 2022-07-12 18:16:27.277341 +236 Categories \N \N f Container URL \N category 233 463 476 2 11 2022-07-12 18:16:25.114871 2022-07-12 18:16:27.277341 +237 Categories \N \N f Container URL \N category 234 485 494 2 11 2022-07-12 18:16:25.260085 2022-07-12 18:16:27.833857 +242 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 239 478 479 3 11 2022-07-12 18:16:25.741152 2022-07-12 18:16:27.162605 +243 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 239 480 481 3 11 2022-07-12 18:16:25.845486 2022-07-12 18:16:27.162605 +239 Promos \N \N f Container URL \N promo 233 477 482 2 11 2022-07-12 18:16:25.495716 2022-07-12 18:16:27.162605 +69 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 64 130 131 3 3 2022-07-12 18:16:06.054858 2022-07-12 18:16:07.653824 +64 Promos \N \N f Container URL \N promo 58 127 132 2 3 2022-07-12 18:16:05.533674 2022-07-12 18:16:07.653824 +248 Skirts \N \N f Link Spree::Taxon 9 \N 236 464 465 3 11 2022-07-12 18:16:26.490512 2022-07-12 18:16:26.568946 +249 Dresses \N \N f Link Spree::Taxon 10 \N 236 466 467 3 11 2022-07-12 18:16:26.607277 2022-07-12 18:16:26.691129 +244 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 240 496 497 3 11 2022-07-12 18:16:25.958286 2022-07-12 18:16:27.69065 +245 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 240 498 499 3 11 2022-07-12 18:16:26.065757 2022-07-12 18:16:27.69065 +240 Promos \N \N f Container URL \N promo 234 495 500 2 11 2022-07-12 18:16:25.582515 2022-07-12 18:16:27.69065 +68 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 64 128 129 3 3 2022-07-12 18:16:05.948452 2022-07-12 18:16:07.653824 +234 Men \N \N f Link Spree::Taxon 2 \N 11 484 501 1 11 2022-07-12 18:16:24.909047 2022-07-12 18:16:27.833857 +241 Promos \N \N f Container URL \N promo 235 511 516 2 11 2022-07-12 18:16:25.66031 2022-07-12 18:16:28.194392 +238 Categories \N \N f Container URL \N category 235 503 510 2 11 2022-07-12 18:16:25.378174 2022-07-12 18:16:28.260935 +67 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 63 112 113 3 3 2022-07-12 18:16:05.839121 2022-07-12 18:16:07.222827 +63 Promos \N \N f Container URL \N promo 57 109 114 2 3 2022-07-12 18:16:05.453159 2022-07-12 18:16:07.222827 +66 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 63 110 111 3 3 2022-07-12 18:16:05.691651 2022-07-12 18:16:07.222827 +71 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 65 146 147 3 3 2022-07-12 18:16:06.501372 2022-07-12 18:16:08.011218 +62 Catégories \N \N f Container URL \N category 59 135 142 2 3 2022-07-12 18:16:05.37491 2022-07-12 18:16:08.093736 +72 Jupes \N \N f Link Spree::Taxon 9 \N 60 96 97 3 3 2022-07-12 18:16:06.60538 2022-07-12 18:16:06.675428 +73 Robes \N \N f Link Spree::Taxon 10 \N 60 98 99 3 3 2022-07-12 18:16:06.709929 2022-07-12 18:16:06.778611 +253 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 236 474 475 3 11 2022-07-12 18:16:27.116728 2022-07-12 18:16:27.266463 +250 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 236 468 469 3 11 2022-07-12 18:16:26.733256 2022-07-12 18:16:26.81566 +74 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 60 100 101 3 3 2022-07-12 18:16:06.81252 2022-07-12 18:16:06.881393 +75 Chandails \N \N f Link Spree::Taxon 12 \N 60 102 103 3 3 2022-07-12 18:16:06.940046 2022-07-12 18:16:07.052828 +76 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 60 104 105 3 3 2022-07-12 18:16:07.09216 2022-07-12 18:16:07.166314 +252 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 236 472 473 3 11 2022-07-12 18:16:26.988478 2022-07-12 18:16:27.073753 +251 Sweaters \N \N f Link Spree::Taxon 12 \N 236 470 471 3 11 2022-07-12 18:16:26.857262 2022-07-12 18:16:26.939308 +79 T-Shirts \N \N f Link Spree::Taxon 6 \N 61 120 121 3 3 2022-07-12 18:16:07.421984 2022-07-12 18:16:07.497292 +77 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 60 106 107 3 3 2022-07-12 18:16:07.20316 2022-07-12 18:16:07.275165 +60 Catégories \N \N f Container URL \N category 57 95 108 2 3 2022-07-12 18:16:05.219714 2022-07-12 18:16:07.284538 +57 Femmes \N \N f Link Spree::Taxon 3 \N 3 94 115 1 3 2022-07-12 18:16:04.88517 2022-07-12 18:16:07.284538 +78 Chemises \N \N f Link Spree::Taxon 5 \N 61 118 119 3 3 2022-07-12 18:16:07.31263 2022-07-12 18:16:07.384427 +255 T-Shirts \N \N f Link Spree::Taxon 6 \N 237 488 489 3 11 2022-07-12 18:16:27.426164 2022-07-12 18:16:27.500721 +254 Shirts \N \N f Link Spree::Taxon 5 \N 237 486 487 3 11 2022-07-12 18:16:27.305543 2022-07-12 18:16:27.389067 +80 Chandails \N \N f Link Spree::Taxon 7 \N 61 122 123 3 3 2022-07-12 18:16:07.533449 2022-07-12 18:16:07.601037 +65 Promos \N \N f Container URL \N promo 59 143 148 2 3 2022-07-12 18:16:05.613224 2022-07-12 18:16:08.011218 +70 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 65 144 145 3 3 2022-07-12 18:16:06.233898 2022-07-12 18:16:08.011218 +256 Sweaters \N \N f Link Spree::Taxon 7 \N 237 490 491 3 11 2022-07-12 18:16:27.537085 2022-07-12 18:16:27.615277 +59 Tenue de sport \N \N f Link Spree::Taxon 4 \N 3 134 149 1 3 2022-07-12 18:16:05.103421 2022-07-12 18:16:08.093736 +257 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 237 492 493 3 11 2022-07-12 18:16:27.658187 2022-07-12 18:16:27.77581 +258 Tops \N \N f Link Spree::Taxon 15 \N 238 504 505 3 11 2022-07-12 18:16:27.923179 2022-07-12 18:16:28.009045 +259 Sweatshirts \N \N f Link Spree::Taxon 16 \N 238 506 507 3 11 2022-07-12 18:16:28.050368 2022-07-12 18:16:28.132145 +265 Dresses \N \N f Link Spree::Taxon 10 \N 261 523 524 2 12 2022-07-12 18:16:28.952803 2022-07-12 18:16:29.048613 +246 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 241 512 513 3 11 2022-07-12 18:16:26.242962 2022-07-12 18:16:28.194392 +247 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 241 514 515 3 11 2022-07-12 18:16:26.368249 2022-07-12 18:16:28.194392 +260 Pants \N \N f Link Spree::Taxon 17 \N 238 508 509 3 11 2022-07-12 18:16:28.17246 2022-07-12 18:16:28.250547 +11 Main Menu \N \N f Container URL \N \N \N 461 518 0 11 2022-07-12 18:15:59.791958 2022-07-12 18:16:28.260935 +235 Sportswear \N \N f Link Spree::Taxon 4 \N 11 502 517 1 11 2022-07-12 18:16:25.013426 2022-07-12 18:16:28.260935 +264 Skirts \N \N f Link Spree::Taxon 9 \N 261 521 522 2 12 2022-07-12 18:16:28.704003 2022-07-12 18:16:28.84461 +266 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 261 525 526 2 12 2022-07-12 18:16:29.107446 2022-07-12 18:16:29.247452 +267 Sweaters \N \N f Link Spree::Taxon 12 \N 261 527 528 2 12 2022-07-12 18:16:29.307422 2022-07-12 18:16:29.513812 +4 Footer Menu \N \N f Container URL \N \N \N 151 184 0 4 2022-07-12 18:15:59.351844 2022-07-12 18:16:09.875256 +268 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 261 529 530 2 12 2022-07-12 18:16:29.568456 2022-07-12 18:16:29.698394 +269 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 261 531 532 2 12 2022-07-12 18:16:29.740986 2022-07-12 18:16:29.826098 +261 Women \N \N f Link Spree::Taxon 3 \N 12 520 533 1 12 2022-07-12 18:16:28.290205 2022-07-12 18:16:29.837157 +270 Shirts \N \N f Link Spree::Taxon 5 \N 262 535 536 2 12 2022-07-12 18:16:29.867127 2022-07-12 18:16:29.979811 +271 T-Shirts \N \N f Link Spree::Taxon 6 \N 262 537 538 2 12 2022-07-12 18:16:30.057084 2022-07-12 18:16:30.171433 +272 Sweaters \N \N f Link Spree::Taxon 7 \N 262 539 540 2 12 2022-07-12 18:16:30.239274 2022-07-12 18:16:30.321534 +273 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 262 541 542 2 12 2022-07-12 18:16:30.361799 2022-07-12 18:16:30.446263 +262 Men \N \N f Link Spree::Taxon 2 \N 12 534 543 1 12 2022-07-12 18:16:28.421665 2022-07-12 18:16:30.457717 +263 Sportswear \N \N f Link Spree::Taxon 4 \N 12 544 551 1 12 2022-07-12 18:16:28.5416 2022-07-12 18:16:30.914075 +3 Main Menu \N \N f Container URL \N \N \N 93 150 0 3 2022-07-12 18:15:59.2857 2022-07-12 18:16:08.093736 +276 Pants \N \N f Link Spree::Taxon 17 \N 263 549 550 2 12 2022-07-12 18:16:30.804071 2022-07-12 18:16:30.897248 +274 Tops \N \N f Link Spree::Taxon 15 \N 263 545 546 2 12 2022-07-12 18:16:30.488522 2022-07-12 18:16:30.610162 +81 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 61 124 125 3 3 2022-07-12 18:16:07.634685 2022-07-12 18:16:07.704586 +12 Footer Menu \N \N f Container URL \N \N \N 519 552 0 12 2022-07-12 18:15:59.858026 2022-07-12 18:16:30.914075 +61 Catégories \N \N f Container URL \N category 58 117 126 2 3 2022-07-12 18:16:05.295846 2022-07-12 18:16:07.714091 +58 Hommes \N \N f Link Spree::Taxon 2 \N 3 116 133 1 3 2022-07-12 18:16:04.99253 2022-07-12 18:16:07.714091 +275 Sweatshirts \N \N f Link Spree::Taxon 16 \N 263 547 548 2 12 2022-07-12 18:16:30.650545 2022-07-12 18:16:30.757938 +82 Hauts \N \N f Link Spree::Taxon 15 \N 62 136 137 3 3 2022-07-12 18:16:07.739879 2022-07-12 18:16:07.810092 +83 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 62 138 139 3 3 2022-07-12 18:16:07.844326 2022-07-12 18:16:07.931703 +88 Jupes \N \N f Link Spree::Taxon 9 \N 85 153 154 2 4 2022-07-12 18:16:08.464494 2022-07-12 18:16:08.543847 +84 Pantalon \N \N f Link Spree::Taxon 17 \N 62 140 141 3 3 2022-07-12 18:16:07.973213 2022-07-12 18:16:08.083199 +90 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 85 157 158 2 4 2022-07-12 18:16:08.689086 2022-07-12 18:16:08.760486 +89 Robes \N \N f Link Spree::Taxon 10 \N 85 155 156 2 4 2022-07-12 18:16:08.582004 2022-07-12 18:16:08.653533 +92 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 85 161 162 2 4 2022-07-12 18:16:08.916718 2022-07-12 18:16:08.996008 +91 Chandails \N \N f Link Spree::Taxon 12 \N 85 159 160 2 4 2022-07-12 18:16:08.795268 2022-07-12 18:16:08.873268 +94 Chemises \N \N f Link Spree::Taxon 5 \N 86 167 168 2 4 2022-07-12 18:16:09.152042 2022-07-12 18:16:09.22416 +93 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 85 163 164 2 4 2022-07-12 18:16:09.041799 2022-07-12 18:16:09.11485 +85 Femmes \N \N f Link Spree::Taxon 3 \N 4 152 165 1 4 2022-07-12 18:16:08.123484 2022-07-12 18:16:09.124892 +96 Chandails \N \N f Link Spree::Taxon 7 \N 86 171 172 2 4 2022-07-12 18:16:09.368805 2022-07-12 18:16:09.438882 +95 T-Shirts \N \N f Link Spree::Taxon 6 \N 86 169 170 2 4 2022-07-12 18:16:09.261081 2022-07-12 18:16:09.333466 +97 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 86 173 174 2 4 2022-07-12 18:16:09.47464 2022-07-12 18:16:09.548105 +86 Hommes \N \N f Link Spree::Taxon 2 \N 4 166 175 1 4 2022-07-12 18:16:08.237913 2022-07-12 18:16:09.558251 +98 Hauts \N \N f Link Spree::Taxon 15 \N 87 177 178 2 4 2022-07-12 18:16:09.583726 2022-07-12 18:16:09.656647 +99 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 87 179 180 2 4 2022-07-12 18:16:09.692311 2022-07-12 18:16:09.762977 +100 Pantalon \N \N f Link Spree::Taxon 17 \N 87 181 182 2 4 2022-07-12 18:16:09.797261 2022-07-12 18:16:09.865739 +87 Tenue de sport \N \N f Link Spree::Taxon 4 \N 4 176 183 1 4 2022-07-12 18:16:08.346974 2022-07-12 18:16:09.875256 +116 die Röcke \N \N f Link Spree::Taxon 9 \N 104 188 189 3 5 2022-07-12 18:16:11.423866 2022-07-12 18:16:11.493519 +117 Kleider \N \N f Link Spree::Taxon 10 \N 104 190 191 3 5 2022-07-12 18:16:11.529248 2022-07-12 18:16:11.599326 +111 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 107 204 205 3 5 2022-07-12 18:16:10.869315 2022-07-12 18:16:12.006089 +107 Promos \N \N f Container URL \N promo 101 201 206 2 5 2022-07-12 18:16:10.490291 2022-07-12 18:16:12.006089 +110 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 107 202 203 3 5 2022-07-12 18:16:10.765806 2022-07-12 18:16:12.006089 +113 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 108 222 223 3 5 2022-07-12 18:16:11.095844 2022-07-12 18:16:12.424421 +105 Kategorien \N \N f Container URL \N category 102 209 218 2 5 2022-07-12 18:16:10.321303 2022-07-12 18:16:12.487164 +102 Männer \N \N f Link Spree::Taxon 2 \N 5 208 225 1 5 2022-07-12 18:16:10.015362 2022-07-12 18:16:12.487164 +118 Röcke und Blusen \N \N f Link Spree::Taxon 11 \N 104 192 193 3 5 2022-07-12 18:16:11.634012 2022-07-12 18:16:11.704194 +119 Pullovers \N \N f Link Spree::Taxon 12 \N 104 194 195 3 5 2022-07-12 18:16:11.73996 2022-07-12 18:16:11.808621 +104 Kategorien \N \N f Container URL \N category 101 187 200 2 5 2022-07-12 18:16:10.234709 2022-07-12 18:16:12.065465 +108 Promos \N \N f Container URL \N promo 102 219 224 2 5 2022-07-12 18:16:10.602541 2022-07-12 18:16:12.424421 +112 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 108 220 221 3 5 2022-07-12 18:16:10.979669 2022-07-12 18:16:12.424421 +106 Kategorien \N \N f Container URL \N category 103 227 234 2 5 2022-07-12 18:16:10.408599 2022-07-12 18:16:12.809825 +103 Sportbekleidung \N \N f Link Spree::Taxon 4 \N 5 226 241 1 5 2022-07-12 18:16:10.12224 2022-07-12 18:16:12.809825 +109 Promos \N \N f Container URL \N promo 103 235 240 2 5 2022-07-12 18:16:10.682816 2022-07-12 18:16:12.742372 +114 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 109 236 237 3 5 2022-07-12 18:16:11.21019 2022-07-12 18:16:12.742372 +120 Tops und T-Shirts \N \N f Link Spree::Taxon 13 \N 104 196 197 3 5 2022-07-12 18:16:11.873201 2022-07-12 18:16:11.949605 +127 Sweatshirts \N \N f Link Spree::Taxon 16 \N 106 230 231 3 5 2022-07-12 18:16:12.61591 2022-07-12 18:16:12.686681 +121 Jacken und Mäntel \N \N f Link Spree::Taxon 14 \N 104 198 199 3 5 2022-07-12 18:16:11.985858 2022-07-12 18:16:12.05675 +101 Frauen \N \N f Link Spree::Taxon 3 \N 5 186 207 1 5 2022-07-12 18:16:09.90295 2022-07-12 18:16:12.065465 +122 Hemden \N \N f Link Spree::Taxon 5 \N 105 210 211 3 5 2022-07-12 18:16:12.091517 2022-07-12 18:16:12.159741 +123 T-Shirts \N \N f Link Spree::Taxon 6 \N 105 212 213 3 5 2022-07-12 18:16:12.194667 2022-07-12 18:16:12.266682 +124 Pullovers \N \N f Link Spree::Taxon 7 \N 105 214 215 3 5 2022-07-12 18:16:12.301724 2022-07-12 18:16:12.370008 +125 Jacken und Mäntel \N \N f Link Spree::Taxon 8 \N 105 216 217 3 5 2022-07-12 18:16:12.405098 2022-07-12 18:16:12.477752 +126 Tops \N \N f Link Spree::Taxon 15 \N 106 228 229 3 5 2022-07-12 18:16:12.512584 2022-07-12 18:16:12.582008 +115 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 109 238 239 3 5 2022-07-12 18:16:11.314381 2022-07-12 18:16:12.742372 +128 Hose \N \N f Link Spree::Taxon 17 \N 106 232 233 3 5 2022-07-12 18:16:12.721614 2022-07-12 18:16:12.800166 +5 Main Menu \N \N f Container URL \N \N \N 185 242 0 5 2022-07-12 18:15:59.415524 2022-07-12 18:16:12.809825 +133 Kleider \N \N f Link Spree::Taxon 10 \N 129 247 248 2 6 2022-07-12 18:16:13.294889 2022-07-12 18:16:13.366046 +132 die Röcke \N \N f Link Spree::Taxon 9 \N 129 245 246 2 6 2022-07-12 18:16:13.191497 2022-07-12 18:16:13.260142 +139 T-Shirts \N \N f Link Spree::Taxon 6 \N 130 261 262 2 6 2022-07-12 18:16:13.957477 2022-07-12 18:16:14.026105 +134 Röcke und Blusen \N \N f Link Spree::Taxon 11 \N 129 249 250 2 6 2022-07-12 18:16:13.402349 2022-07-12 18:16:13.472809 +135 Pullovers \N \N f Link Spree::Taxon 12 \N 129 251 252 2 6 2022-07-12 18:16:13.508149 2022-07-12 18:16:13.576544 +138 Hemden \N \N f Link Spree::Taxon 5 \N 130 259 260 2 6 2022-07-12 18:16:13.854035 2022-07-12 18:16:13.922754 +136 Tops und T-Shirts \N \N f Link Spree::Taxon 13 \N 129 253 254 2 6 2022-07-12 18:16:13.610237 2022-07-12 18:16:13.67762 +137 Jacken und Mäntel \N \N f Link Spree::Taxon 14 \N 129 255 256 2 6 2022-07-12 18:16:13.74701 2022-07-12 18:16:13.816978 +129 Frauen \N \N f Link Spree::Taxon 3 \N 6 244 257 1 6 2022-07-12 18:16:12.839446 2022-07-12 18:16:13.826884 +141 Jacken und Mäntel \N \N f Link Spree::Taxon 8 \N 130 265 266 2 6 2022-07-12 18:16:14.168722 2022-07-12 18:16:14.241009 +130 Männer \N \N f Link Spree::Taxon 2 \N 6 258 267 1 6 2022-07-12 18:16:12.948813 2022-07-12 18:16:14.254641 +140 Pullovers \N \N f Link Spree::Taxon 7 \N 130 263 264 2 6 2022-07-12 18:16:14.06157 2022-07-12 18:16:14.133058 +142 Tops \N \N f Link Spree::Taxon 15 \N 131 269 270 2 6 2022-07-12 18:16:14.284798 2022-07-12 18:16:14.355243 +143 Sweatshirts \N \N f Link Spree::Taxon 16 \N 131 271 272 2 6 2022-07-12 18:16:14.390811 2022-07-12 18:16:14.461711 +144 Hose \N \N f Link Spree::Taxon 17 \N 131 273 274 2 6 2022-07-12 18:16:14.496562 2022-07-12 18:16:14.566241 +6 Footer Menu \N \N f Container URL \N \N \N 243 276 0 6 2022-07-12 18:15:59.477991 2022-07-12 18:16:14.576037 +131 Sportbekleidung \N \N f Link Spree::Taxon 4 \N 6 268 275 1 6 2022-07-12 18:16:13.053144 2022-07-12 18:16:14.576037 +147 Ropa de deporte \N \N f Link Spree::Taxon 4 \N 7 318 333 1 7 2022-07-12 18:16:14.849262 2022-07-12 18:16:17.652974 +160 Faldas \N \N f Link Spree::Taxon 9 \N 148 280 281 3 7 2022-07-12 18:16:16.176558 2022-07-12 18:16:16.280832 +154 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 151 294 295 3 7 2022-07-12 18:16:15.479161 2022-07-12 18:16:16.804815 +155 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 151 296 297 3 7 2022-07-12 18:16:15.606188 2022-07-12 18:16:16.804815 +157 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 152 314 315 3 7 2022-07-12 18:16:15.840292 2022-07-12 18:16:17.270174 +152 Promos \N \N f Container URL \N promo 146 311 316 2 7 2022-07-12 18:16:15.305912 2022-07-12 18:16:17.270174 +149 Categorías \N \N f Container URL \N category 146 301 310 2 7 2022-07-12 18:16:15.047777 2022-07-12 18:16:17.328097 +146 Mujeres \N \N f Link Spree::Taxon 2 \N 7 300 317 1 7 2022-07-12 18:16:14.740433 2022-07-12 18:16:17.328097 +153 Promos \N \N f Container URL \N promo 147 327 332 2 7 2022-07-12 18:16:15.391376 2022-07-12 18:16:17.588794 +150 Categorías \N \N f Container URL \N category 147 319 326 2 7 2022-07-12 18:16:15.131401 2022-07-12 18:16:17.652974 +7 Main Menu \N \N f Container URL \N \N \N 277 334 0 7 2022-07-12 18:15:59.540908 2022-07-12 18:16:17.652974 +163 Suéteres \N \N f Link Spree::Taxon 12 \N 148 286 287 3 7 2022-07-12 18:16:16.557279 2022-07-12 18:16:16.634484 +165 Chaquetas y abrigos \N \N f Link Spree::Taxon 14 \N 148 290 291 3 7 2022-07-12 18:16:16.782451 2022-07-12 18:16:16.880138 +148 Categorías \N \N f Container URL \N category 145 279 292 2 7 2022-07-12 18:16:14.963312 2022-07-12 18:16:16.890465 +161 Vestidos \N \N f Link Spree::Taxon 10 \N 148 282 283 3 7 2022-07-12 18:16:16.316112 2022-07-12 18:16:16.393489 +162 Faldas y blusas \N \N f Link Spree::Taxon 11 \N 148 284 285 3 7 2022-07-12 18:16:16.431737 2022-07-12 18:16:16.51697 +145 Hombres \N \N f Link Spree::Taxon 3 \N 7 278 299 1 7 2022-07-12 18:16:14.612494 2022-07-12 18:16:16.890465 +164 Tops y camisetas \N \N f Link Spree::Taxon 13 \N 148 288 289 3 7 2022-07-12 18:16:16.670529 2022-07-12 18:16:16.743458 +151 Promos \N \N f Container URL \N promo 145 293 298 2 7 2022-07-12 18:16:15.215554 2022-07-12 18:16:16.804815 +168 Suéteres \N \N f Link Spree::Taxon 7 \N 149 306 307 3 7 2022-07-12 18:16:17.149096 2022-07-12 18:16:17.217896 +166 Camisas \N \N f Link Spree::Taxon 5 \N 149 302 303 3 7 2022-07-12 18:16:16.915994 2022-07-12 18:16:16.986171 +167 Camisetas \N \N f Link Spree::Taxon 6 \N 149 304 305 3 7 2022-07-12 18:16:17.022571 2022-07-12 18:16:17.113366 +8 Footer Menu \N \N f Container URL \N \N \N 335 368 0 8 2022-07-12 18:15:59.602112 2022-07-12 18:16:19.494948 +156 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 152 312 313 3 7 2022-07-12 18:16:15.726256 2022-07-12 18:16:17.270174 +169 Chaquetas y abrigos \N \N f Link Spree::Taxon 8 \N 149 308 309 3 7 2022-07-12 18:16:17.250783 2022-07-12 18:16:17.318879 +170 Tops \N \N f Link Spree::Taxon 15 \N 150 320 321 3 7 2022-07-12 18:16:17.359002 2022-07-12 18:16:17.428223 +171 Sudaderas \N \N f Link Spree::Taxon 16 \N 150 322 323 3 7 2022-07-12 18:16:17.464596 2022-07-12 18:16:17.535584 +172 Pantalones \N \N f Link Spree::Taxon 17 \N 150 324 325 3 7 2022-07-12 18:16:17.570096 2022-07-12 18:16:17.642996 +158 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 153 328 329 3 7 2022-07-12 18:16:15.949081 2022-07-12 18:16:17.588794 +159 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 153 330 331 3 7 2022-07-12 18:16:16.06217 2022-07-12 18:16:17.588794 +9 Main Menu \N \N f Container URL \N \N \N 369 426 0 9 2022-07-12 18:15:59.662146 2022-07-12 18:16:22.692378 +10 Footer Menu \N \N f Container URL \N \N \N 427 460 0 10 2022-07-12 18:15:59.726973 2022-07-12 18:16:24.660146 +\. + + +-- +-- Data for Name: spree_menus; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_menus (id, name, location, locale, store_id, created_at, updated_at) FROM stdin; +3 Main Menu header fr 1 2022-07-12 18:15:59.278193 2022-07-12 18:16:08.096182 +8 Footer Menu footer es 2 2022-07-12 18:15:59.595654 2022-07-12 18:16:19.497937 +9 Main Menu header fr 2 2022-07-12 18:15:59.655887 2022-07-12 18:16:22.695835 +12 Footer Menu footer en 3 2022-07-12 18:15:59.850698 2022-07-12 18:16:30.918084 +6 Footer Menu footer de 2 2022-07-12 18:15:59.471447 2022-07-12 18:16:14.578473 +1 Main Menu header en 1 2022-07-12 18:15:59.112649 2022-07-12 18:16:02.926622 +7 Main Menu header es 2 2022-07-12 18:15:59.534298 2022-07-12 18:16:17.655939 +4 Footer Menu footer fr 1 2022-07-12 18:15:59.344559 2022-07-12 18:16:09.877427 +10 Footer Menu footer fr 2 2022-07-12 18:15:59.719748 2022-07-12 18:16:24.662992 +5 Main Menu header de 2 2022-07-12 18:15:59.408425 2022-07-12 18:16:12.812342 +11 Main Menu header en 3 2022-07-12 18:15:59.78479 2022-07-12 18:16:28.263516 +2 Footer Menu footer en 1 2022-07-12 18:15:59.212098 2022-07-12 18:16:04.860126 +\. + + +-- +-- Data for Name: spree_oauth_access_grants; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_oauth_access_grants (id, resource_owner_id, application_id, token, expires_in, redirect_uri, created_at, revoked_at, scopes, resource_owner_type) FROM stdin; +\. + + +-- +-- Data for Name: spree_oauth_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_oauth_access_tokens (id, resource_owner_id, application_id, token, refresh_token, expires_in, revoked_at, created_at, scopes, previous_refresh_token, resource_owner_type) FROM stdin; +1 1 1 b84602d1aee3f43be73c5de6d8b9e5eb5bb5100aaf6bcbaa04e430d043fd7947 \N \N \N 2022-07-12 18:19:31.696499 admin Spree::User +2 2 1 67a069f660192e3ee50211a2380902ff9bc0f9fbc1d77bddd76cad619a02c794 \N \N \N 2022-09-02 16:11:18.640547 admin Spree::User +\. + + +-- +-- Data for Name: spree_oauth_applications; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_oauth_applications (id, name, uid, secret, redirect_uri, scopes, confidential, created_at, updated_at) FROM stdin; +1 Admin Panel K2iYvzyIbnMTYcWvXdb9Hvmcl17IwbIkYu4fx0Q_1JU $2a$12$85A8XIJqto3p/9GYFRtPTO4PRIkTFqMCNy9p41NIaF6yULV3/3IRi admin t 2022-07-12 18:19:31.671114 2022-07-12 18:19:31.671114 +\. + + +-- +-- Data for Name: spree_option_type_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_option_type_prototypes (id, prototype_id, option_type_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_option_types; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_option_types (id, name, presentation, "position", created_at, updated_at, filterable, public_metadata, private_metadata) FROM stdin; +1 color Color 1 2022-07-12 18:13:13.145688 2022-07-12 18:13:13.770891 t \N \N +2 length Length 2 2022-07-12 18:13:13.169901 2022-07-12 18:13:13.853424 t \N \N +3 size Size 3 2022-07-12 18:13:13.188637 2022-07-12 18:13:14.004039 t \N \N +\. + + +-- +-- Data for Name: spree_option_value_variants; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_option_value_variants (id, variant_id, option_value_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_option_values; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_option_values (id, "position", name, presentation, option_type_id, created_at, updated_at, public_metadata, private_metadata) FROM stdin; +1 1 white #FFFFFF 1 2022-07-12 18:13:13.230717 2022-07-12 18:13:13.230717 \N \N +2 2 purple #800080 1 2022-07-12 18:13:13.283786 2022-07-12 18:13:13.283786 \N \N +3 3 red #FF0000 1 2022-07-12 18:13:13.313767 2022-07-12 18:13:13.313767 \N \N +4 4 black #000000 1 2022-07-12 18:13:13.342159 2022-07-12 18:13:13.342159 \N \N +5 5 brown #8B4513 1 2022-07-12 18:13:13.370351 2022-07-12 18:13:13.370351 \N \N +6 6 green #228C22 1 2022-07-12 18:13:13.398116 2022-07-12 18:13:13.398116 \N \N +7 7 grey #808080 1 2022-07-12 18:13:13.425584 2022-07-12 18:13:13.425584 \N \N +8 8 orange #FF8800 1 2022-07-12 18:13:13.454228 2022-07-12 18:13:13.454228 \N \N +9 9 burgundy #A8003B 1 2022-07-12 18:13:13.481586 2022-07-12 18:13:13.481586 \N \N +10 10 beige #E1C699 1 2022-07-12 18:13:13.509184 2022-07-12 18:13:13.509184 \N \N +11 11 mint #AAF0D1 1 2022-07-12 18:13:13.537742 2022-07-12 18:13:13.537742 \N \N +12 12 blue #0000FF 1 2022-07-12 18:13:13.564972 2022-07-12 18:13:13.564972 \N \N +13 13 dark_blue #00008b 1 2022-07-12 18:13:13.592373 2022-07-12 18:13:13.592373 \N \N +14 14 khaki #BDB76B 1 2022-07-12 18:13:13.619919 2022-07-12 18:13:13.619919 \N \N +15 15 yellow #FFFF00 1 2022-07-12 18:13:13.649318 2022-07-12 18:13:13.649318 \N \N +16 16 light_blue #add8e6 1 2022-07-12 18:13:13.676746 2022-07-12 18:13:13.676746 \N \N +17 17 pink #FFA6C9 1 2022-07-12 18:13:13.704771 2022-07-12 18:13:13.704771 \N \N +18 18 lila #cf9de6 1 2022-07-12 18:13:13.733176 2022-07-12 18:13:13.733176 \N \N +19 19 ecru #F4F2D6 1 2022-07-12 18:13:13.760093 2022-07-12 18:13:13.760093 \N \N +20 1 mini Mini 2 2022-07-12 18:13:13.788773 2022-07-12 18:13:13.788773 \N \N +21 2 midi Midi 2 2022-07-12 18:13:13.816447 2022-07-12 18:13:13.816447 \N \N +22 3 maxi Maxi 2 2022-07-12 18:13:13.843596 2022-07-12 18:13:13.843596 \N \N +23 1 xs XS 3 2022-07-12 18:13:13.876729 2022-07-12 18:13:13.876729 \N \N +24 2 s S 3 2022-07-12 18:13:13.905509 2022-07-12 18:13:13.905509 \N \N +25 3 m M 3 2022-07-12 18:13:13.935471 2022-07-12 18:13:13.935471 \N \N +26 4 l L 3 2022-07-12 18:13:13.964814 2022-07-12 18:13:13.964814 \N \N +27 5 xl XL 3 2022-07-12 18:13:13.993532 2022-07-12 18:13:13.993532 \N \N +\. + + +-- +-- Data for Name: spree_order_promotions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_order_promotions (id, order_id, promotion_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_orders; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_orders (id, number, item_total, total, state, adjustment_total, user_id, completed_at, bill_address_id, ship_address_id, payment_total, shipment_state, payment_state, email, special_instructions, created_at, updated_at, currency, last_ip_address, created_by_id, shipment_total, additional_tax_total, promo_total, channel, included_tax_total, item_count, approver_id, approved_at, confirmation_delivered, considered_risky, token, canceled_at, canceler_id, store_id, state_lock_version, taxable_adjustment_total, non_taxable_adjustment_total, store_owner_notification_delivered, public_metadata, private_metadata) FROM stdin; +2 R987654321 0.00 0.00 canceled 0.00 \N 2022-07-11 18:15:53.281705 2 1 0.00 \N void spree@example.com \N 2022-07-12 18:15:52.636207 2022-09-02 16:14:11.491892 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f poKaeWdp_inQUfj83neBvA1657649752636 2022-09-02 16:14:11.496515 2 1 0 0.00 0.00 \N \N \N +3 R691665949 20.00 20.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-02 16:37:05.152169 2022-09-02 17:23:28.937959 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f UCMORL6RsgD5KSCfX1ccUA1662136625088 \N \N 1 0 0.00 0.00 \N \N \N +1 R123456789 0.00 0.00 canceled 0.00 \N 2022-07-11 18:15:53.267702 \N \N 0.00 \N void spree@example.com \N 2022-07-12 18:15:52.595288 2022-09-02 18:27:34.308335 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 6kwqk1CtUk2kXQ-eZ_8gNQ1657649752595 2022-09-02 16:15:04.926634 2 1 0 0.00 0.00 \N \N \N +4 R346838356 5.00 5.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-02 18:24:21.981797 2022-09-02 18:42:33.844218 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f hq9AnjpYeNJMsEOsENgKow1662143061896 \N \N 1 0 0.00 0.00 \N \N \N +5 R204709928 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-08 15:30:50.413539 2022-09-08 15:30:50.413539 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f HiSmJq5m74bASbPgs9hKzg1662651050359 \N \N 1 0 0.00 0.00 \N \N \N +6 R927290377 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-08 18:46:13.239791 2022-09-08 18:46:13.239791 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f tOproEPa7Tg_egjcghuBuA1662662773144 \N \N 1 0 0.00 0.00 \N \N \N +8 R216180865 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.537857 2022-09-13 20:40:39.537857 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WAdND3JbK2OWo0hSSfR9PQ1663101639463 \N \N 1 0 0.00 0.00 \N \N \N +9 R709661596 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.762272 2022-09-13 20:40:39.762272 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WWWk5s-DvvV5FIIHTU3eLA1663101639628 \N \N 1 0 0.00 0.00 \N \N \N +24 R035858575 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:23.250422 2022-09-13 20:46:23.250422 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f OoyVku4wMIEdkc97j0poww1663101983113 \N \N 1 0 0.00 0.00 \N \N \N +14 R114707512 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:37.176246 2022-09-13 20:43:28.302536 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f jsu3Rw2WAHmGWoLQOHvTFw1663101757144 \N \N 1 0 0.00 0.00 \N \N \N +19 R741717240 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.048317 2022-09-13 20:45:22.032435 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f kUky6yRrdse2KgnIY_zUeg1663101871967 \N \N 1 0 0.00 0.00 \N \N \N +16 R848546931 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.168432 2022-09-13 20:43:28.639448 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f XaB3s8LiapCQJAlj7MhRNA1663101758092 \N \N 1 0 0.00 0.00 \N \N \N +7 R390334667 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.456166 2022-09-13 20:41:04.250772 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f CnMT62wvwWCbZu3dOVn_Rg1663101639207 \N \N 1 0 0.00 0.00 \N \N \N +15 R255191158 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.11464 2022-09-13 20:43:28.783291 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f wOR-iN7YNFOhyEC2H2b7qA1663101758041 \N \N 1 0 0.00 0.00 \N \N \N +29 R787811537 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:22.46273 2022-09-13 20:48:22.46273 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Hl6Ljr5p4rANMBxef6lE9w1663102102302 \N \N 1 0 0.00 0.00 \N \N \N +20 R419288521 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.236312 2022-09-13 20:45:21.980026 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f CIgK0fBkGeTaaTT40O-jqw1663101872187 \N \N 1 0 0.00 0.00 \N \N \N +17 R847096189 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.809459 2022-09-13 20:43:28.474413 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f OFk8MRGtK2lSvOvQb29x1w1663101758777 \N \N 1 0 0.00 0.00 \N \N \N +11 R840723731 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.242559 2022-09-13 20:41:34.811024 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f aaQwC1swzSxillt95Z9U-Q1663101640049 \N \N 1 0 0.00 0.00 \N \N \N +12 R552721805 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.410356 2022-09-13 20:41:34.885387 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f sOSjPvDn_4SVm1ODygyB2w1663101640340 \N \N 1 0 0.00 0.00 \N \N \N +10 R442325408 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.262394 2022-09-13 20:41:34.745041 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f kc0nVrRKOAIaSVbX1l7N8g1663101639848 \N \N 1 0 0.00 0.00 \N \N \N +13 R075587510 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:36.837657 2022-09-13 20:43:27.970977 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f tUjHW5ZklQ-YWswl7e-M2w1663101756810 \N \N 1 0 0.00 0.00 \N \N \N +26 R005638160 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.758835 2022-09-13 20:47:18.536939 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f eghZAxpzP9ZF-79b2TLUqw1663101988724 \N \N 1 0 0.00 0.00 \N \N \N +23 R123653711 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:23.137053 2022-09-13 20:47:13.047994 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 6K9qzvpJWhJZSILd0b9XRA1663101983035 \N \N 1 0 0.00 0.00 \N \N \N +22 R124150150 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.869556 2022-09-13 20:45:22.247319 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 0-Kb1UqsxqCwPoUnUF6Jnw1663101872834 \N \N 1 0 0.00 0.00 \N \N \N +18 R276779589 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:31.867248 2022-09-13 20:45:22.630709 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Q8d7eCTpl8hURcVQ13u_kw1663101871824 \N \N 1 0 0.00 0.00 \N \N \N +32 R805165245 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:25.538708 2022-09-13 20:49:14.374306 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f WJbh-8HUtQU9Q_2w19gB-w1663102105498 \N \N 1 0 0.00 0.00 \N \N \N +21 R487927726 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.238569 2022-09-13 20:45:22.852748 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f VWxfagS9M-othhNGGhdbYg1663101872146 \N \N 1 0 0.00 0.00 \N \N \N +27 R689531836 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.861055 2022-09-13 20:47:18.653873 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f B3xGVyUzmqwQDdt8XpBBfA1663101988817 \N \N 1 0 0.00 0.00 \N \N \N +25 R469727062 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.225082 2022-09-13 20:47:18.636142 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f IMTOga4JFry9gZbZCZ5InA1663101988194 \N \N 1 0 0.00 0.00 \N \N \N +31 R918936651 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:24.377543 2022-09-13 20:49:13.460962 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f oFetZmmPbKEgp65ZmPKXTA1663102104314 \N \N 1 0 0.00 0.00 \N \N \N +34 R999519556 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.305181 2022-09-13 20:51:09.962408 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Mabl_1Azd_Og6nu21PMeww1663102219258 \N \N 1 0 0.00 0.00 \N \N \N +30 R404535964 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:23.120556 2022-09-13 20:49:13.524533 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f QintnT3ioOgN_HjlDv8_Sw1663102103069 \N \N 1 0 0.00 0.00 \N \N \N +28 R782062766 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:22.199099 2022-09-13 20:49:13.29202 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 52PGI5HOOZ8o4TwhQGn99Q1663102102025 \N \N 1 0 0.00 0.00 \N \N \N +37 R157365849 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.951978 2022-09-13 20:50:19.951978 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f MHvj7GIMgQoWSCuO9levtg1663102219924 \N \N 1 0 0.00 0.00 \N \N \N +51 R380396795 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.983842 2022-09-13 20:56:20.790026 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f -fczciKKzou470GRdTcBmg1663102560923 \N \N 1 0 0.00 0.00 \N \N \N +40 R977050395 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.099499 2022-09-13 20:52:31.556158 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f bV5XprPbqOMzjaVfJLSLDQ1663102332061 \N \N 1 0 0.00 0.00 \N \N \N +33 R619989406 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:13.522459 2022-09-13 20:50:33.669029 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f m2v3_sm11feeJhUt-UEz_A1663102213496 \N \N 1 0 0.00 0.00 \N \N \N +46 R942455379 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:07.804113 2022-09-13 20:54:57.40555 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f beL5LxYTxktnXDfD_KcGrA1663102447773 \N \N 1 0 0.00 0.00 \N \N \N +53 R163749863 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:54.037515 2022-09-13 20:57:54.037515 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f vGzlnFRg7GIXQAXK5o2srA1663102673965 \N \N 1 0 0.00 0.00 \N \N \N +47 R919350832 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:08.242242 2022-09-13 20:54:57.427924 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 5K0c6NNThPxX5HdgNnKk2A1663102448208 \N \N 1 0 0.00 0.00 \N \N \N +43 R702931003 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:03.216732 2022-09-13 20:54:22.531404 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f IEiRkYakl_lqd71lBJ_sHg1663102443181 \N \N 1 0 0.00 0.00 \N \N \N +42 R251855715 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.935808 2022-09-13 20:53:01.462396 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f IN_fT1XvJ89V3I9C5BBAPQ1663102332895 \N \N 1 0 0.00 0.00 \N \N \N +39 R121101079 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:11.780082 2022-09-13 20:53:01.369656 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Yw3uqe6EFMnbPE9PBSR5eA1663102331702 \N \N 1 0 0.00 0.00 \N \N \N +35 R454858211 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.408387 2022-09-13 20:51:09.753958 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f nzd04T10DGTH8vgcacTCUw1663102219344 \N \N 1 0 0.00 0.00 \N \N \N +41 R175818178 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.33814 2022-09-13 20:53:01.614702 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 2fRdrWj2jgdZqrRXghkP_g1663102332276 \N \N 1 0 0.00 0.00 \N \N \N +36 R813463955 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.613804 2022-09-13 20:51:10.02892 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 4GXX8bvaO1TkJJsfXzWEfw1663102219529 \N \N 1 0 0.00 0.00 \N \N \N +38 R790389214 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:11.645945 2022-09-13 20:53:01.87249 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f AS_thu3KZ7np_YyT76tGbg1663102331614 \N \N 1 0 0.00 0.00 \N \N \N +56 R227725774 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:57.553134 2022-09-13 20:57:57.553134 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WPsT4tWCYNgQQgn4mpVZuQ1663102677500 \N \N 1 0 0.00 0.00 \N \N \N +49 R630607112 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.753713 2022-09-13 20:56:50.362021 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f gt_KsmYAtc-p3YwlWRv1Uw1663102560640 \N \N 1 0 0.00 0.00 \N \N \N +57 R809829761 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:58.409555 2022-09-13 20:57:58.409555 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 8hWA5kBCnXxS3sXkPuMa5Q1663102678374 \N \N 1 0 0.00 0.00 \N \N \N +59 R413562029 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:50.013503 2022-09-13 20:59:50.013503 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f eIOJZSic0r5wkSFtgEikZA1663102789969 \N \N 1 0 0.00 0.00 \N \N \N +45 R884650335 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:04.725441 2022-09-13 20:54:53.046874 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f -c86IosJv_oWOdDNYqWPwA1663102444692 \N \N 1 0 0.00 0.00 \N \N \N +60 R481040826 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:50.313256 2022-09-13 20:59:50.313256 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WVRrNglck1NF9CIr7oiqbw1663102790270 \N \N 1 0 0.00 0.00 \N \N \N +61 R228396864 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:53.865872 2022-09-13 20:59:53.865872 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ESP1i8ZuJCX2-Hpc86tlsw1663102793842 \N \N 1 0 0.00 0.00 \N \N \N +62 R105697463 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:54.243963 2022-09-13 20:59:54.243963 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f G2PioUiSHiJ0nlLj2xR0Uw1663102794213 \N \N 1 0 0.00 0.00 \N \N \N +44 R428557957 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:03.570992 2022-09-13 20:54:53.192396 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 2C16kXLPyEHygUbkJz3Ynw1663102443532 \N \N 1 0 0.00 0.00 \N \N \N +52 R306200982 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:02.207068 2022-09-13 20:56:51.134566 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f _oSakoLE6W3vDIPmqOkfIQ1663102562162 \N \N 1 0 0.00 0.00 \N \N \N +54 R566260232 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:54.219118 2022-09-13 20:58:44.231271 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Xma4hmQTnewPUayW9KGVvg1663102674167 \N \N 1 0 0.00 0.00 \N \N \N +50 R754500801 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.812035 2022-09-13 20:56:50.742709 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f B7EBl-2KLKIB6SkQrEkWtQ1663102560718 \N \N 1 0 0.00 0.00 \N \N \N +48 R399669374 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:55:59.659483 2022-09-13 20:56:50.865579 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f mSCMrawCu6sEr6_0FCgefw1663102559627 \N \N 1 0 0.00 0.00 \N \N \N +55 R136591560 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:57.302156 2022-09-13 20:58:47.238481 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f aGVqHvNNHC3tFScoAI91uw1663102677257 \N \N 1 0 0.00 0.00 \N \N \N +58 R283485621 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:49.372146 2022-09-13 20:59:49.372146 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f b8s-7S3PJJthFjAATl56kg1663102789324 \N \N 1 0 0.00 0.00 \N \N \N +68 R781940380 19.99 24.99 delivery 0.00 \N \N 11 12 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:54:49.852559 2024-02-09 22:55:09.522629 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BRTmwRx9GtYDBA0KmBOH7g1707519289843 \N \N 1 0 0.00 0.00 \N \N \N +548 R398671370 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:21:24.582948 2024-02-12 20:21:45.674508 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 20So4AaEjCbUwSYKJcqzrA1707769284575 \N \N 1 0 0.00 0.00 \N \N \N +65 R738819175 19.99 24.99 delivery 0.00 \N \N 5 6 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:51:54.539012 2024-02-09 22:52:14.44423 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4QN35WhwBViD5lCvKqzGnw1707519114528 \N \N 1 0 0.00 0.00 \N \N \N +63 R237726793 19.99 24.99 delivery 0.00 \N \N 3 4 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:50:55.46771 2024-02-09 22:51:16.157319 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2PwQ2gfMXjonjNvUZM986w1707519055427 \N \N 1 0 0.00 0.00 \N \N \N +625 R871353129 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:50:33.462427 2024-02-12 21:50:57.31808 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Kv4cQMsKAUxfJU87LVjJTQ1707774633454 \N \N 1 0 0.00 0.00 \N \N \N +66 R540666846 19.99 24.99 delivery 0.00 \N \N 7 8 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:52:52.901293 2024-02-09 22:53:12.571533 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oGwJHfkktMn4MP_6zs8S8g1707519172891 \N \N 1 0 0.00 0.00 \N \N \N +256 R114160970 19.99 24.99 delivery 0.00 \N \N 379 380 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:41:35.111171 2024-02-12 15:41:54.53391 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RAJ3Nblpd295B2XhNAkbrg1707752495102 \N \N 1 0 0.00 0.00 \N \N \N +69 R907575103 19.99 24.99 delivery 0.00 \N \N 13 14 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:55:48.333766 2024-02-09 22:56:08.004646 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3ztNcik0t-WFayRzZt2fkg1707519348324 \N \N 1 0 0.00 0.00 \N \N \N +67 R941719051 19.99 24.99 delivery 0.00 \N \N 9 10 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:53:51.418136 2024-02-09 22:54:11.032015 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zy224xa_bxM6P4g70Atq1w1707519231407 \N \N 1 0 0.00 0.00 \N \N \N +70 R198858543 19.99 24.99 delivery 0.00 \N \N 15 16 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-09 22:56:47.881109 2024-02-09 23:12:39.266478 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BODUl-fjQtJB-aIkNl92Yw1707519407863 \N \N 1 0 0.00 0.00 \N \N \N +72 R914522791 19.99 24.99 delivery 0.00 \N \N 19 20 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 04:22:36.019096 2024-02-10 06:06:54.586451 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f i_AIq4DqoUrDnLGzfBLDNA1707538955988 \N \N 1 0 0.00 0.00 \N \N \N +71 R664882166 19.99 24.99 delivery 0.00 \N \N 17 18 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 01:00:17.495433 2024-02-10 02:50:51.653716 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rTlNn8EZHMTwvSgMygrLSw1707526817465 \N \N 1 0 0.00 0.00 \N \N \N +73 R913619818 19.99 24.99 delivery 0.00 \N \N 21 22 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 08:12:43.690866 2024-02-10 12:00:20.0357 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Oh-HbNHHeflCuArhZTU91A1707552763658 \N \N 1 0 0.00 0.00 \N \N \N +74 R290641064 19.99 24.99 delivery 0.00 \N \N 23 24 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 12:30:55.005925 2024-02-10 12:55:47.528051 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VJqEcFOh3xDeM2jL-FevMQ1707568254994 \N \N 1 0 0.00 0.00 \N \N \N +75 R231272337 19.99 24.99 delivery 0.00 \N \N 25 26 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 13:50:08.353201 2024-02-10 14:20:40.108403 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f h6WGxYe-o7p3uj4aH6S5rg1707573008307 \N \N 1 0 0.00 0.00 \N \N \N +76 R821412572 19.99 24.99 delivery 0.00 \N \N 27 28 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 14:41:05.920321 2024-02-10 15:55:28.764383 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f d0rOTFJ3KD2RDiL0O3BbMQ1707576065889 \N \N 1 0 0.00 0.00 \N \N \N +136 R562336983 19.99 24.99 delivery 0.00 \N \N 139 140 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:47:47.916801 2024-02-12 13:48:07.260915 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Ikk2llbcSuhz0BXrMIfWag1707745667908 \N \N 1 0 0.00 0.00 \N \N \N +79 R023903923 19.99 24.99 delivery 0.00 \N \N 33 34 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 22:29:01.898965 2024-02-10 23:02:31.841428 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f AcVbpUX2yhf2JV2-YrkQSw1707604141889 \N \N 1 0 0.00 0.00 \N \N \N +80 R165934286 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-11 01:04:43.821446 2024-02-11 01:04:43.821446 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f AyHd5rn5mOg5jzFzfDXLJg1707613483788 \N \N 1 0 0.00 0.00 \N \N \N +92 R312923679 19.99 24.99 delivery 0.00 \N \N 55 56 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 09:00:09.033471 2024-02-12 09:00:29.135798 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DBZEL8bchJd8Ja2_AKXXVQ1707728409024 \N \N 1 0 0.00 0.00 \N \N \N +93 R892472290 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 10:48:31.924855 2024-02-12 10:48:31.924855 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f aH7lDhFdtubFLhHbgX3KSQ1707734911888 \N \N 1 0 0.00 0.00 \N \N \N +77 R292860138 19.99 24.99 delivery 0.00 \N \N 29 30 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 16:04:56.21816 2024-02-10 16:56:28.350093 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6QwWL0_FJ-VDAU13nEMr8g1707581096209 \N \N 1 0 0.00 0.00 \N \N \N +195 R408709434 19.99 24.99 delivery 0.00 \N \N 257 258 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:43:45.307719 2024-02-12 14:44:04.614976 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f geSJRZsanR_oqLSs3E5qTA1707749025298 \N \N 1 0 0.00 0.00 \N \N \N +90 R211035670 19.99 24.99 delivery 0.00 \N \N 53 54 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 06:12:55.460526 2024-02-12 06:13:16.099855 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 31W7Yc7v3MHpexqCuxs3xg1707718375451 \N \N 1 0 0.00 0.00 \N \N \N +85 R585969740 19.99 24.99 delivery 0.00 \N \N 43 44 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 15:05:52.027805 2024-02-11 15:06:13.9093 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f raCfknh0m5SAsyRJaTe2Og1707663951995 \N \N 1 0 0.00 0.00 \N \N \N +685 R298349816 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:07:17.233404 2024-02-12 22:07:17.484003 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f dwGe-lZmclG83fRmVmgB9Q1707775637222 \N \N 1 0 0.00 0.00 \N \N \N +81 R038020688 19.99 24.99 delivery 0.00 \N \N 35 36 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 02:45:19.750061 2024-02-11 02:45:38.587522 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PqtOIUGY-dZtNjom29SrCg1707619519741 \N \N 1 0 0.00 0.00 \N \N \N +626 R741671592 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:50:34.570509 2024-02-12 21:50:55.521593 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f W2NIbDu2JcmKmwsQABr66g1707774634562 \N \N 1 0 0.00 0.00 \N \N \N +83 R884227771 19.99 24.99 delivery 0.00 \N \N 39 40 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 09:54:28.575639 2024-02-11 09:54:50.852297 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f c9GI3v9lrR2NWJJ4Gpx67Q1707645268565 \N \N 1 0 0.00 0.00 \N \N \N +78 R600193930 19.99 24.99 delivery 0.00 \N \N 31 32 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-10 17:57:40.191329 2024-02-10 21:00:28.890637 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CZ4haQVYbklsfLpQlA6OqQ1707587860160 \N \N 1 0 0.00 0.00 \N \N \N +91 R573313548 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 09:00:08.967939 2024-02-12 09:00:08.967939 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f LHpI0BeTYjyE-q__Qu8N3A1707728408935 \N \N 1 0 0.00 0.00 \N \N \N +87 R653077171 19.99 24.99 delivery 0.00 \N \N 47 48 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 21:01:39.96623 2024-02-11 21:02:00.521662 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Znu62nP82Usi4njpp8JCCA1707685299956 \N \N 1 0 0.00 0.00 \N \N \N +82 R666727669 19.99 24.99 delivery 0.00 \N \N 37 38 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 04:36:57.331198 2024-02-11 06:00:09.131354 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f f9L1lJWHIR4hP2L5gv4UOg1707626217321 \N \N 1 0 0.00 0.00 \N \N \N +84 R759248207 19.99 24.99 delivery 0.00 \N \N 41 42 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 13:55:07.545584 2024-02-11 13:55:28.383105 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f z0nwXLuZ0rNRuuw_mIRSgA1707659707536 \N \N 1 0 0.00 0.00 \N \N \N +89 R456241397 19.99 24.99 delivery 0.00 \N \N 51 52 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 02:43:34.70096 2024-02-12 02:43:55.046293 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f acIT_A6y9ocMZkuVfC6Xbg1707705814668 \N \N 1 0 0.00 0.00 \N \N \N +86 R082282936 19.99 24.99 delivery 0.00 \N \N 45 46 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-11 20:00:37.458737 2024-02-11 20:00:58.082338 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 39N9W-AJP6ZskeO1ENufNQ1707681637448 \N \N 1 0 0.00 0.00 \N \N \N +97 R038295021 19.99 24.99 delivery 0.00 \N \N 61 62 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:10:48.272911 2024-02-12 13:11:08.273441 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yMZi4gcrRTbPikzncGJmKg1707743448246 \N \N 1 0 0.00 0.00 \N \N \N +88 R572870629 19.99 24.99 delivery 0.00 \N \N 49 50 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 00:21:34.998424 2024-02-12 00:21:55.532546 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HI6ofTlmEI91c02kX0DPRw1707697294966 \N \N 1 0 0.00 0.00 \N \N \N +99 R875475162 19.99 24.99 delivery 0.00 \N \N 65 66 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:12:42.619434 2024-02-12 13:13:02.019073 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f u88SWt1gqRs1z6w3qNhYuQ1707743562610 \N \N 1 0 0.00 0.00 \N \N \N +98 R340807786 19.99 24.99 delivery 0.00 \N \N 63 64 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:11:45.647327 2024-02-12 13:12:05.079775 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BfCulaXYciDyJKvkrynIYw1707743505637 \N \N 1 0 0.00 0.00 \N \N \N +94 R129050790 19.99 24.99 delivery 0.00 \N \N 57 58 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 10:48:33.153358 2024-02-12 10:48:53.010388 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f iEFfN1uf48RCY-fOIIrplQ1707734913098 \N \N 1 0 0.00 0.00 \N \N \N +95 R053947214 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 12:23:29.317059 2024-02-12 12:23:29.317059 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f HfEjDdYpqAjJN9_erSFYnQ1707740609285 \N \N 1 0 0.00 0.00 \N \N \N +96 R318019119 19.99 24.99 delivery 0.00 \N \N 59 60 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 12:23:30.476417 2024-02-12 12:23:49.806575 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BVM3oq9efqEI8cbq15Kcbw1707740610464 \N \N 1 0 0.00 0.00 \N \N \N +100 R929720826 19.99 24.99 delivery 0.00 \N \N 67 68 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:13:39.924747 2024-02-12 13:13:59.259167 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5K3ta4bIpRyvLyq3AgEhmw1707743619916 \N \N 1 0 0.00 0.00 \N \N \N +101 R568308873 19.99 24.99 delivery 0.00 \N \N 69 70 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:14:36.946107 2024-02-12 13:14:56.399696 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f aIo2wLNCbDlFufb06-ZFag1707743676936 \N \N 1 0 0.00 0.00 \N \N \N +102 R430851204 19.99 24.99 delivery 0.00 \N \N 71 72 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:15:33.8993 2024-02-12 13:15:53.312259 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Re06OFTdTvH7iwKCE_Oulg1707743733889 \N \N 1 0 0.00 0.00 \N \N \N +103 R405297068 19.99 24.99 delivery 0.00 \N \N 73 74 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:16:30.904141 2024-02-12 13:16:50.33067 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rCPSPEa8zBjFY8Cx0_YjeQ1707743790896 \N \N 1 0 0.00 0.00 \N \N \N +104 R758098747 19.99 24.99 delivery 0.00 \N \N 75 76 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:17:27.782761 2024-02-12 13:17:47.103109 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1VAq9tQjcLBTRCbzn8ucJw1707743847775 \N \N 1 0 0.00 0.00 \N \N \N +105 R970928710 19.99 24.99 delivery 0.00 \N \N 77 78 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:18:24.730288 2024-02-12 13:18:44.051281 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3YH2_7lyMveyyHkb3ee4lw1707743904722 \N \N 1 0 0.00 0.00 \N \N \N +111 R882173597 19.99 24.99 delivery 0.00 \N \N 89 90 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:24:06.077392 2024-02-12 13:24:25.469503 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f EVlZXXQXbFp97zIYFtwL6Q1707744246069 \N \N 1 0 0.00 0.00 \N \N \N +106 R849208226 19.99 24.99 delivery 0.00 \N \N 79 80 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:19:21.695279 2024-02-12 13:19:41.0458 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3Jjc_Rvkfcp8eO4ux7WzEg1707743961686 \N \N 1 0 0.00 0.00 \N \N \N +117 R800143634 19.99 24.99 delivery 0.00 \N \N 101 102 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:29:46.903435 2024-02-12 13:30:06.357625 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f IQeOdp0svcun8syftJQs4w1707744586894 \N \N 1 0 0.00 0.00 \N \N \N +137 R533909461 19.99 24.99 delivery 0.00 \N \N 141 142 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:48:44.770516 2024-02-12 13:49:04.127132 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MGkWPBoWE2RxIa5iG4FtWw1707745724761 \N \N 1 0 0.00 0.00 \N \N \N +109 R307966482 19.99 24.99 delivery 0.00 \N \N 85 86 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:22:12.352985 2024-02-12 13:22:31.751328 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hTVgzyodlubB3ULd62qDqQ1707744132345 \N \N 1 0 0.00 0.00 \N \N \N +120 R701866678 19.99 24.99 delivery 0.00 \N \N 107 108 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:32:37.855573 2024-02-12 13:32:57.20035 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f iJIN3seiEmOX_puhSxEwzQ1707744757845 \N \N 1 0 0.00 0.00 \N \N \N +107 R700974544 19.99 24.99 delivery 0.00 \N \N 81 82 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:20:18.594183 2024-02-12 13:20:37.979943 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wVZMTxbi7sSh5ILtK1f3NQ1707744018584 \N \N 1 0 0.00 0.00 \N \N \N +196 R146338293 19.99 24.99 delivery 0.00 \N \N 259 260 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:44:42.055183 2024-02-12 14:45:01.52761 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1zj3yJ1HhYjXffSXcWejxg1707749082044 \N \N 1 0 0.00 0.00 \N \N \N +125 R615798992 19.99 24.99 delivery 0.00 \N \N 117 118 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:37:22.239453 2024-02-12 13:37:41.654606 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VAapLm7Q6wza6ivE0JQKNA1707745042230 \N \N 1 0 0.00 0.00 \N \N \N +119 R809003333 19.99 24.99 delivery 0.00 \N \N 105 106 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:31:40.663045 2024-02-12 13:32:00.082098 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Uf4QihifV6G7P1E-pJpwzw1707744700655 \N \N 1 0 0.00 0.00 \N \N \N +112 R114300892 19.99 24.99 delivery 0.00 \N \N 91 92 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:25:02.895639 2024-02-12 13:25:22.255458 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f XlQ9DnHpLySDvoqtGLaEMg1707744302886 \N \N 1 0 0.00 0.00 \N \N \N +110 R158891488 19.99 24.99 delivery 0.00 \N \N 87 88 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:23:09.263781 2024-02-12 13:23:28.529138 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _xOOH-1Ywde8Du-MZZ98kg1707744189256 \N \N 1 0 0.00 0.00 \N \N \N +627 R566306731 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:50:38.12675 2024-02-12 21:50:59.319643 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f bGOQgLwxNoz7yzhlXvRAdQ1707774638118 \N \N 1 0 0.00 0.00 \N \N \N +108 R702956621 19.99 24.99 delivery 0.00 \N \N 83 84 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:21:15.521076 2024-02-12 13:21:34.816679 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xhIdW-fXmQBjAcDmMjN3Tg1707744075512 \N \N 1 0 0.00 0.00 \N \N \N +114 R419130260 19.99 24.99 delivery 0.00 \N \N 95 96 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:26:56.645629 2024-02-12 13:27:15.874168 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f schO0ZiIBX0zV8Bo5MN25Q1707744416626 \N \N 1 0 0.00 0.00 \N \N \N +116 R077590451 19.99 24.99 delivery 0.00 \N \N 99 100 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:28:50.179649 2024-02-12 13:29:09.474504 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f aIKQ4lZR-4aCCA8psGWhRw1707744530169 \N \N 1 0 0.00 0.00 \N \N \N +113 R344342992 19.99 24.99 delivery 0.00 \N \N 93 94 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:25:59.764941 2024-02-12 13:26:19.15508 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yxBTvuHq6et--xH2keSQdA1707744359756 \N \N 1 0 0.00 0.00 \N \N \N +118 R783028798 19.99 24.99 delivery 0.00 \N \N 103 104 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:30:43.76363 2024-02-12 13:31:03.113315 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Ne7BzvfcYACrTZE88buxqg1707744643754 \N \N 1 0 0.00 0.00 \N \N \N +115 R729665501 19.99 24.99 delivery 0.00 \N \N 97 98 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:27:53.359991 2024-02-12 13:28:12.703927 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f h0pn4CZyKaQx5ra3iOw1nQ1707744473348 \N \N 1 0 0.00 0.00 \N \N \N +127 R961272267 19.99 24.99 delivery 0.00 \N \N 121 122 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:39:16.110404 2024-02-12 13:39:35.519715 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f WplqTw-S0AB23dWGT7DnUw1707745156102 \N \N 1 0 0.00 0.00 \N \N \N +122 R342289784 19.99 24.99 delivery 0.00 \N \N 111 112 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:34:31.479488 2024-02-12 13:34:50.953644 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f iNrPGmeu-eemuWZnrjfT-Q1707744871471 \N \N 1 0 0.00 0.00 \N \N \N +121 R783267091 19.99 24.99 delivery 0.00 \N \N 109 110 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:33:34.753507 2024-02-12 13:33:54.048332 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8Xmna5FyMcAd-Ybnz7piFg1707744814745 \N \N 1 0 0.00 0.00 \N \N \N +123 R857131233 19.99 24.99 delivery 0.00 \N \N 113 114 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:35:28.430615 2024-02-12 13:35:47.68453 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f SG9YSjl8gNSX5g028xwkbA1707744928422 \N \N 1 0 0.00 0.00 \N \N \N +126 R227504895 19.99 24.99 delivery 0.00 \N \N 119 120 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:38:19.242454 2024-02-12 13:38:38.667297 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hKWFVEqE_p4YW-Qdz_3MkA1707745099232 \N \N 1 0 0.00 0.00 \N \N \N +124 R160210212 19.99 24.99 delivery 0.00 \N \N 115 116 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:36:25.17827 2024-02-12 13:36:44.527059 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f FJukP5YPkXel7GHfz_YD9w1707744985158 \N \N 1 0 0.00 0.00 \N \N \N +128 R937146838 19.99 24.99 delivery 0.00 \N \N 123 124 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:40:12.828249 2024-02-12 13:40:32.16253 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 34NmZEg-iljyKj7dhlzvRg1707745212821 \N \N 1 0 0.00 0.00 \N \N \N +129 R978224907 19.99 24.99 delivery 0.00 \N \N 125 126 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:41:09.64011 2024-02-12 13:41:28.877498 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Oj2IezZTp8D2I0n3EPf--g1707745269626 \N \N 1 0 0.00 0.00 \N \N \N +130 R054688193 19.99 24.99 delivery 0.00 \N \N 127 128 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:42:06.460476 2024-02-12 13:42:25.845236 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -5bNxOeShO-WuLkPnreYzw1707745326453 \N \N 1 0 0.00 0.00 \N \N \N +131 R746186041 19.99 24.99 delivery 0.00 \N \N 129 130 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:43:03.28077 2024-02-12 13:43:22.743663 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DbbB63f4qkSLpGUrpEca3w1707745383270 \N \N 1 0 0.00 0.00 \N \N \N +132 R950680305 19.99 24.99 delivery 0.00 \N \N 131 132 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:44:00.129505 2024-02-12 13:44:19.355724 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f z-qx9_Yf7T_deOd2uakFQQ1707745440121 \N \N 1 0 0.00 0.00 \N \N \N +133 R462369958 19.99 24.99 delivery 0.00 \N \N 133 134 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:44:56.855623 2024-02-12 13:45:16.146493 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Ntpg3ioopw1lj0ugTnF4fA1707745496847 \N \N 1 0 0.00 0.00 \N \N \N +140 R642219834 19.99 24.99 delivery 0.00 \N \N 147 148 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:51:35.554889 2024-02-12 13:51:54.966123 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f dcA8vlAxUKUINcYjggsLWQ1707745895544 \N \N 1 0 0.00 0.00 \N \N \N +255 R167688336 19.99 24.99 delivery 0.00 \N \N 377 378 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:40:38.32319 2024-02-12 15:40:57.613934 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f LhHCz0ROhqQfhk9YJIkuMA1707752438315 \N \N 1 0 0.00 0.00 \N \N \N +148 R666778406 19.99 24.99 delivery 0.00 \N \N 163 164 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:59:10.751379 2024-02-12 13:59:30.067911 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Otp14IlFz1zjwUYYjPsVWg1707746350742 \N \N 1 0 0.00 0.00 \N \N \N +135 R969959405 19.99 24.99 delivery 0.00 \N \N 137 138 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:46:50.940179 2024-02-12 13:47:10.236448 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0zp-ybcSfq6eMQVlY8YuBg1707745610931 \N \N 1 0 0.00 0.00 \N \N \N +197 R622684645 19.99 24.99 delivery 0.00 \N \N 261 262 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:45:39.092979 2024-02-12 14:45:58.341661 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f o1h4EpbXO_rUqyL8CdHNCA1707749139084 \N \N 1 0 0.00 0.00 \N \N \N +134 R071348771 19.99 24.99 delivery 0.00 \N \N 135 136 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:45:53.705987 2024-02-12 13:46:12.99564 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4wx3WTBzm8k4aSMFrV6e3g1707745553697 \N \N 1 0 0.00 0.00 \N \N \N +202 R062981091 19.99 24.99 delivery 0.00 \N \N 271 272 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:50:23.328764 2024-02-12 14:50:42.778666 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f go8hhS7DD0WNEaMLMWX5zQ1707749423320 \N \N 1 0 0.00 0.00 \N \N \N +143 R541699698 19.99 24.99 delivery 0.00 \N \N 153 154 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:54:26.321309 2024-02-12 13:54:45.680043 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4K1V_IuZwP-WATm-KngyAQ1707746066313 \N \N 1 0 0.00 0.00 \N \N \N +138 R361482218 19.99 24.99 delivery 0.00 \N \N 143 144 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:49:41.698275 2024-02-12 13:50:01.007994 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 57lOwwMjNyPwGnryE807Jg1707745781690 \N \N 1 0 0.00 0.00 \N \N \N +141 R001548470 19.99 24.99 delivery 0.00 \N \N 149 150 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:52:32.56392 2024-02-12 13:52:51.92911 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 81-uPnYXWsk7vtksY4UWhw1707745952555 \N \N 1 0 0.00 0.00 \N \N \N +145 R547881595 19.99 24.99 delivery 0.00 \N \N 157 158 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:56:20.172359 2024-02-12 13:56:39.599057 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0GNAIcOvZNRJ8WfbV1Zy_Q1707746180162 \N \N 1 0 0.00 0.00 \N \N \N +139 R212257170 19.99 24.99 delivery 0.00 \N \N 145 146 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:50:38.643292 2024-02-12 13:50:57.880158 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f uGvmKMsYEISH-krQRCl15A1707745838634 \N \N 1 0 0.00 0.00 \N \N \N +156 R268024550 19.99 24.99 delivery 0.00 \N \N 179 180 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:06:45.751476 2024-02-12 14:07:05.05409 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f bcXusm-xheqjz2aYMOLV2A1707746805743 \N \N 1 0 0.00 0.00 \N \N \N +152 R302888383 19.99 24.99 delivery 0.00 \N \N 171 172 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:02:58.164228 2024-02-12 14:03:17.465715 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f d80ljuUNdUxMKPWdDLu95A1707746578155 \N \N 1 0 0.00 0.00 \N \N \N +142 R498545328 19.99 24.99 delivery 0.00 \N \N 151 152 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:53:29.515075 2024-02-12 13:53:48.816251 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f p0ZN9ry0FUllAEFvfiuH4g1707746009507 \N \N 1 0 0.00 0.00 \N \N \N +147 R386457116 19.99 24.99 delivery 0.00 \N \N 161 162 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:58:13.927375 2024-02-12 13:58:33.19124 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f KuPJwywlJwbFJoDCjFU5uw1707746293903 \N \N 1 0 0.00 0.00 \N \N \N +144 R896223472 19.99 24.99 delivery 0.00 \N \N 155 156 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:55:23.236401 2024-02-12 13:55:42.490482 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f uxGonBtxm6zfkKxwc-DgWQ1707746123228 \N \N 1 0 0.00 0.00 \N \N \N +151 R296363790 19.99 24.99 delivery 0.00 \N \N 169 170 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:02:01.418367 2024-02-12 14:02:20.820069 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RJkeCjaW0e2nLNYlyw_qLw1707746521410 \N \N 1 0 0.00 0.00 \N \N \N +150 R957249935 19.99 24.99 delivery 0.00 \N \N 167 168 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:01:04.412439 2024-02-12 14:01:23.899475 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tHVvALmu4-sceRGRrDQSXQ1707746464400 \N \N 1 0 0.00 0.00 \N \N \N +146 R888231073 19.99 24.99 delivery 0.00 \N \N 159 160 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 13:57:17.057688 2024-02-12 13:57:36.490918 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hTWXtmAeM4HgQYM8IsCf8w1707746237049 \N \N 1 0 0.00 0.00 \N \N \N +149 R244896194 19.99 24.99 delivery 0.00 \N \N 165 166 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:00:07.638409 2024-02-12 14:00:26.868152 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rVJA_foFYcCxWN-Psq2iKw1707746407626 \N \N 1 0 0.00 0.00 \N \N \N +153 R707254416 19.99 24.99 delivery 0.00 \N \N 173 174 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:03:55.043363 2024-02-12 14:04:14.428382 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UGoN3T5zB-vBwVZVRORXZw1707746635035 \N \N 1 0 0.00 0.00 \N \N \N +154 R701063986 19.99 24.99 delivery 0.00 \N \N 175 176 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:04:51.969825 2024-02-12 14:05:11.218665 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5UG9VGt5H3iP1UD-XFIKaQ1707746691959 \N \N 1 0 0.00 0.00 \N \N \N +155 R207380895 19.99 24.99 delivery 0.00 \N \N 177 178 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:05:48.794985 2024-02-12 14:06:08.251711 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Bt7zdbN6Kc_aAZax9GwxkQ1707746748787 \N \N 1 0 0.00 0.00 \N \N \N +159 R945425467 19.99 24.99 delivery 0.00 \N \N 185 186 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:09:36.388125 2024-02-12 14:09:55.69678 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f WzruYguf7L-PvKNBTWkhHg1707746976376 \N \N 1 0 0.00 0.00 \N \N \N +157 R769724978 19.99 24.99 delivery 0.00 \N \N 181 182 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:07:42.587757 2024-02-12 14:08:01.961272 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JPJKpSNEMlyh2b0QhRC1LQ1707746862579 \N \N 1 0 0.00 0.00 \N \N \N +158 R002484666 19.99 24.99 delivery 0.00 \N \N 183 184 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:08:39.511874 2024-02-12 14:08:58.739678 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GFy4MlN75UOiAcg0nQITMw1707746919503 \N \N 1 0 0.00 0.00 \N \N \N +160 R248282864 19.99 24.99 delivery 0.00 \N \N 187 188 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:10:33.24888 2024-02-12 14:10:52.596295 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MxI6a2wavpdDonsaS9PuIg1707747033241 \N \N 1 0 0.00 0.00 \N \N \N +161 R049735290 19.99 24.99 delivery 0.00 \N \N 189 190 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:11:30.118858 2024-02-12 14:11:49.446578 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pLdpW85XpEA_q_QBvmTWaQ1707747090111 \N \N 1 0 0.00 0.00 \N \N \N +162 R097483871 19.99 24.99 delivery 0.00 \N \N 191 192 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:12:26.979215 2024-02-12 14:12:46.353924 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8EhJjGERh_XtNSIiNhVy5w1707747146970 \N \N 1 0 0.00 0.00 \N \N \N +163 R256743733 19.99 24.99 delivery 0.00 \N \N 193 194 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:13:24.042037 2024-02-12 14:13:43.395552 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f KrwI51OZwTy9IsIqZaJQVQ1707747204015 \N \N 1 0 0.00 0.00 \N \N \N +166 R678085656 19.99 24.99 delivery 0.00 \N \N 199 200 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:16:14.646097 2024-02-12 14:16:34.055025 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f fJE1Rk5-NvB4e3eT6O0Dmw1707747374620 \N \N 1 0 0.00 0.00 \N \N \N +176 R122513119 19.99 24.99 delivery 0.00 \N \N 219 220 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:25:43.693808 2024-02-12 14:26:03.098927 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _H4lw7RFbdzcz4RBvShB1Q1707747943673 \N \N 1 0 0.00 0.00 \N \N \N +342 R764068547 19.99 24.99 delivery 0.00 \N \N 551 552 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:03:15.155719 2024-02-12 17:03:34.959163 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Ai_jzEGP8LOYIuuJV8qwGA1707757395145 \N \N 1 0 0.00 0.00 \N \N \N +164 R407863453 19.99 24.99 delivery 0.00 \N \N 195 196 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:14:20.898384 2024-02-12 14:14:40.211717 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VJI3cVYAQn9GywUvCFHvCg1707747260889 \N \N 1 0 0.00 0.00 \N \N \N +686 R643026143 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:07:54.580524 2024-02-12 22:08:18.783001 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f XsKaiTExIjOSBv33S6wUxQ1707775674571 \N \N 1 0 0.00 0.00 \N \N \N +171 R893485718 19.99 24.99 delivery 0.00 \N \N 209 210 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:20:59.516415 2024-02-12 14:21:19.003325 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 63xrM2x_TI6WA7doCX-NiA1707747659500 \N \N 1 0 0.00 0.00 \N \N \N +173 R624793432 19.99 24.99 delivery 0.00 \N \N 213 214 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:22:53.237345 2024-02-12 14:23:12.668103 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wms72BgD6iT999HbjI3KbA1707747773229 \N \N 1 0 0.00 0.00 \N \N \N +169 R527403839 19.99 24.99 delivery 0.00 \N \N 205 206 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:19:05.380055 2024-02-12 14:19:24.723203 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MIZPh_RqbBXEYydvlwMQEQ1707747545371 \N \N 1 0 0.00 0.00 \N \N \N +167 R991967439 19.99 24.99 delivery 0.00 \N \N 201 202 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:17:11.648467 2024-02-12 14:17:31.065938 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Rmryi5sP-0HO2Iqz94Ld9Q1707747431639 \N \N 1 0 0.00 0.00 \N \N \N +701 R242284591 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:13:22.096882 2024-02-12 22:13:48.342828 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ReizrRyzWGaIwSmC8SMPhQ1707776002088 \N \N 1 0 0.00 0.00 \N \N \N +165 R087844673 19.99 24.99 delivery 0.00 \N \N 197 198 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:15:17.755985 2024-02-12 14:15:37.105144 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5fHLfD7E61UU0zzV1zj6tA1707747317747 \N \N 1 0 0.00 0.00 \N \N \N +184 R022349489 19.99 24.99 delivery 0.00 \N \N 235 236 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:33:18.703906 2024-02-12 14:33:38.149612 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f aan_xGTqaYCPsEGNp02Zdg1707748398694 \N \N 1 0 0.00 0.00 \N \N \N +175 R114912626 19.99 24.99 delivery 0.00 \N \N 217 218 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:24:46.855484 2024-02-12 14:25:06.151686 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ytlxilFErs1iR_T8D4P7eA1707747886845 \N \N 1 0 0.00 0.00 \N \N \N +180 R653671862 19.99 24.99 delivery 0.00 \N \N 227 228 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:29:31.200926 2024-02-12 14:29:50.781495 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ER8murGTPU0M6VJrUgEa4Q1707748171193 \N \N 1 0 0.00 0.00 \N \N \N +168 R508388784 19.99 24.99 delivery 0.00 \N \N 203 204 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:18:08.639306 2024-02-12 14:18:27.902629 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f EzVO4ts8WFhB5SyF0XSRbQ1707747488631 \N \N 1 0 0.00 0.00 \N \N \N +170 R713136180 19.99 24.99 delivery 0.00 \N \N 207 208 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:20:02.221887 2024-02-12 14:20:21.601744 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f cs8zGxsChr6rvXNIO2orAQ1707747602214 \N \N 1 0 0.00 0.00 \N \N \N +172 R137975450 19.99 24.99 delivery 0.00 \N \N 211 212 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:21:56.325232 2024-02-12 14:22:15.650842 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _v0m263OM2HilTSnvQ9z0w1707747716316 \N \N 1 0 0.00 0.00 \N \N \N +179 R507551371 19.99 24.99 delivery 0.00 \N \N 225 226 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:28:34.257144 2024-02-12 14:28:53.668441 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f FSKUykH5s4fyzFfDhxtNSA1707748114249 \N \N 1 0 0.00 0.00 \N \N \N +174 R107504749 19.99 24.99 delivery 0.00 \N \N 215 216 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:23:49.992978 2024-02-12 14:24:09.389903 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vwvUWAdayHHndqR0t9G7jg1707747829985 \N \N 1 0 0.00 0.00 \N \N \N +178 R068113046 19.99 24.99 delivery 0.00 \N \N 223 224 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:27:37.436593 2024-02-12 14:27:56.72299 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CPa6RJAvI3FQxsFLiaS50w1707748057428 \N \N 1 0 0.00 0.00 \N \N \N +177 R366301516 19.99 24.99 delivery 0.00 \N \N 221 222 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:26:40.497871 2024-02-12 14:26:59.819965 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qk40ivT5693G1k0n6UAsOQ1707748000489 \N \N 1 0 0.00 0.00 \N \N \N +181 R651583389 19.99 24.99 delivery 0.00 \N \N 229 230 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:30:28.118307 2024-02-12 14:30:47.419551 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VVB8qcWOn_kB3IXkSCYocQ1707748228109 \N \N 1 0 0.00 0.00 \N \N \N +182 R166534773 19.99 24.99 delivery 0.00 \N \N 231 232 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:31:24.930687 2024-02-12 14:31:44.302676 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zZIt-gafT0J2Drfg7PXUJQ1707748284922 \N \N 1 0 0.00 0.00 \N \N \N +183 R029242891 19.99 24.99 delivery 0.00 \N \N 233 234 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:32:21.737671 2024-02-12 14:32:41.142802 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f iGAZr617i_QkZSJUHtslsA1707748341727 \N \N 1 0 0.00 0.00 \N \N \N +187 R291149603 19.99 24.99 delivery 0.00 \N \N 241 242 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:36:09.55019 2024-02-12 14:36:28.975638 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -tHayqsruIbEsCK2T0GdJA1707748569542 \N \N 1 0 0.00 0.00 \N \N \N +185 R326179680 19.99 24.99 delivery 0.00 \N \N 237 238 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:34:15.672457 2024-02-12 14:34:34.9678 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f AiI4hmWU6uE8q84y1uCeRg1707748455664 \N \N 1 0 0.00 0.00 \N \N \N +186 R122647851 19.99 24.99 delivery 0.00 \N \N 239 240 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:35:12.510627 2024-02-12 14:35:31.873373 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1Y1AN8kT4iJyb_couFG5JA1707748512502 \N \N 1 0 0.00 0.00 \N \N \N +188 R605918511 19.99 24.99 delivery 0.00 \N \N 243 244 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:37:06.463241 2024-02-12 14:37:25.830962 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1aUNuprjvaB7UVYJ7ME1QA1707748626454 \N \N 1 0 0.00 0.00 \N \N \N +189 R479960601 19.99 24.99 delivery 0.00 \N \N 245 246 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:38:03.474571 2024-02-12 14:38:22.900311 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f OiyGC8YRcLJNkm3UNugyJw1707748683465 \N \N 1 0 0.00 0.00 \N \N \N +190 R618077032 19.99 24.99 delivery 0.00 \N \N 247 248 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:39:00.383958 2024-02-12 14:39:19.80385 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f te5OjvAdBU-NCSeFjvwc9Q1707748740375 \N \N 1 0 0.00 0.00 \N \N \N +215 R783988273 19.99 24.99 delivery 0.00 \N \N 297 298 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:02:43.075678 2024-02-12 15:03:02.408909 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f AXec7LTjRTxnQ7Ezl8iCkA1707750163067 \N \N 1 0 0.00 0.00 \N \N \N +191 R346070681 19.99 24.99 delivery 0.00 \N \N 249 250 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:39:57.510227 2024-02-12 14:40:16.874327 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f T2H0btV_UNfhfGgZEAFsyQ1707748797501 \N \N 1 0 0.00 0.00 \N \N \N +200 R535398250 19.99 24.99 delivery 0.00 \N \N 267 268 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:48:29.472404 2024-02-12 14:48:48.755238 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f dNl7QIQ90dsp19PsmF2Uqg1707749309464 \N \N 1 0 0.00 0.00 \N \N \N +194 R104560921 19.99 24.99 delivery 0.00 \N \N 255 256 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:42:48.424598 2024-02-12 14:43:07.828136 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f k_ituuoCS1zNzKNvdErQyw1707748968414 \N \N 1 0 0.00 0.00 \N \N \N +192 R679960910 19.99 24.99 delivery 0.00 \N \N 251 252 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:40:54.327477 2024-02-12 14:41:13.614892 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zFhq0kzF9vQ-2b9icd1__Q1707748854319 \N \N 1 0 0.00 0.00 \N \N \N +201 R940901382 19.99 24.99 delivery 0.00 \N \N 269 270 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:49:26.336446 2024-02-12 14:49:45.714612 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oLAdcQvR7Ap-_upA0CAeEw1707749366329 \N \N 1 0 0.00 0.00 \N \N \N +198 R315248350 19.99 24.99 delivery 0.00 \N \N 263 264 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:46:35.898367 2024-02-12 14:46:55.269134 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 9Su481xYsH47-jfwI5QBQw1707749195891 \N \N 1 0 0.00 0.00 \N \N \N +209 R449299420 19.99 24.99 delivery 0.00 \N \N 285 286 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:57:01.623171 2024-02-12 14:57:21.07037 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -CfdSPw8ASYbc2Dwyu-jlA1707749821615 \N \N 1 0 0.00 0.00 \N \N \N +203 R779141377 19.99 24.99 delivery 0.00 \N \N 273 274 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:51:20.314635 2024-02-12 14:51:39.663181 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f L7vcoULaa9DEy-G8-CQkCA1707749480306 \N \N 1 0 0.00 0.00 \N \N \N +257 R285595287 19.99 24.99 delivery 0.00 \N \N 381 382 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:42:31.984391 2024-02-12 15:42:51.234866 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4x-vQgVzK8nGy0nSH3RV8A1707752551976 \N \N 1 0 0.00 0.00 \N \N \N +193 R916905069 19.99 24.99 delivery 0.00 \N \N 253 254 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:41:51.114215 2024-02-12 14:42:10.494587 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f XJ6PwYp4Er6MpLkgwTv7Cg1707748911103 \N \N 1 0 0.00 0.00 \N \N \N +204 R798671647 19.99 24.99 delivery 0.00 \N \N 275 276 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:52:17.210365 2024-02-12 14:52:36.547015 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hUQWwk6c9pSZ8oVdqCnKRA1707749537202 \N \N 1 0 0.00 0.00 \N \N \N +207 R946900803 19.99 24.99 delivery 0.00 \N \N 281 282 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:55:07.874661 2024-02-12 14:55:27.249388 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UYgJBsjin0npI2WqM3_cAw1707749707865 \N \N 1 0 0.00 0.00 \N \N \N +205 R706513982 19.99 24.99 delivery 0.00 \N \N 277 278 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:53:14.077202 2024-02-12 14:53:33.374359 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HZo54fU8PLwdfw588s-jLw1707749594068 \N \N 1 0 0.00 0.00 \N \N \N +199 R219893130 19.99 24.99 delivery 0.00 \N \N 265 266 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:47:32.704703 2024-02-12 14:47:51.953605 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f uf6UjezVqzBw0FnI8v9Ubg1707749252696 \N \N 1 0 0.00 0.00 \N \N \N +457 R467162203 19.99 24.99 delivery 0.00 \N \N 781 782 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:52:32.114428 2024-02-12 18:52:51.504634 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PlhwZiRTeG_sHfFxE1AjQA1707763952106 \N \N 1 0 0.00 0.00 \N \N \N +206 R219627356 19.99 24.99 delivery 0.00 \N \N 279 280 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:54:10.954617 2024-02-12 14:54:30.359449 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ydtX3dIVYme7uItoz5Lj0w1707749650946 \N \N 1 0 0.00 0.00 \N \N \N +761 R984177734 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:33:56.572926 2024-02-12 22:34:18.175592 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f U4_AFzMupvxMe0y4tziO2g1707777236564 \N \N 1 0 0.00 0.00 \N \N \N +208 R753727231 19.99 24.99 delivery 0.00 \N \N 283 284 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:56:04.728199 2024-02-12 14:56:24.090138 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5nozYRvZZrz_JXs_1sOyFg1707749764719 \N \N 1 0 0.00 0.00 \N \N \N +212 R128672393 19.99 24.99 delivery 0.00 \N \N 291 292 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:59:52.150866 2024-02-12 15:00:11.450014 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hiCC0EaE-1UCWIQn0N1Rrw1707749992143 \N \N 1 0 0.00 0.00 \N \N \N +211 R448557306 19.99 24.99 delivery 0.00 \N \N 289 290 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:58:55.260372 2024-02-12 14:59:14.768985 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 7tNf1bGpvB22JB1tPsD3hQ1707749935252 \N \N 1 0 0.00 0.00 \N \N \N +217 R377192255 19.99 24.99 delivery 0.00 \N \N 301 302 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:04:36.706491 2024-02-12 15:04:56.27939 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wqLILKZToOzbt9hZThDOJQ1707750276699 \N \N 1 0 0.00 0.00 \N \N \N +210 R616046423 19.99 24.99 delivery 0.00 \N \N 287 288 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 14:57:58.407658 2024-02-12 14:58:17.853415 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f TMVreL-3u6JwijmZ39kmKg1707749878398 \N \N 1 0 0.00 0.00 \N \N \N +213 R564240377 19.99 24.99 delivery 0.00 \N \N 293 294 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:00:49.065913 2024-02-12 15:01:08.546729 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f W2cKDBfhsFYiLOgBueBGpw1707750049058 \N \N 1 0 0.00 0.00 \N \N \N +216 R180813772 19.99 24.99 delivery 0.00 \N \N 299 300 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:03:39.883701 2024-02-12 15:03:59.163664 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f kD6vmhehs0KXfUNmFb4OGA1707750219876 \N \N 1 0 0.00 0.00 \N \N \N +214 R060998714 19.99 24.99 delivery 0.00 \N \N 295 296 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:01:46.082281 2024-02-12 15:02:05.609841 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f LxON_3XFHZVjsIBR-e6hYA1707750106074 \N \N 1 0 0.00 0.00 \N \N \N +218 R985117127 19.99 24.99 delivery 0.00 \N \N 303 304 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:05:33.819408 2024-02-12 15:05:53.046654 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f o4OHk4ixI1eYiLfXBjZo2g1707750333811 \N \N 1 0 0.00 0.00 \N \N \N +219 R693634692 19.99 24.99 delivery 0.00 \N \N 305 306 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:06:30.55735 2024-02-12 15:06:49.999071 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DI_XkjzpTzDPjWVyS46-ag1707750390549 \N \N 1 0 0.00 0.00 \N \N \N +220 R731215598 19.99 24.99 delivery 0.00 \N \N 307 308 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:07:27.532715 2024-02-12 15:07:47.060288 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4-ElQhiGQNYRbM8xSYklrA1707750447524 \N \N 1 0 0.00 0.00 \N \N \N +221 R653595674 19.99 24.99 delivery 0.00 \N \N 309 310 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:08:24.682312 2024-02-12 15:08:43.954025 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pvJCm34bDp-w5v2drUBO_g1707750504674 \N \N 1 0 0.00 0.00 \N \N \N +222 R004729785 19.99 24.99 delivery 0.00 \N \N 311 312 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:09:21.541685 2024-02-12 15:09:40.880704 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wC766JkbeFvniJhM3cjISw1707750561532 \N \N 1 0 0.00 0.00 \N \N \N +238 R424201795 19.99 24.99 delivery 0.00 \N \N 343 344 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:24:32.001425 2024-02-12 15:24:51.288842 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f SdRwN_wwW50TfbuqHnVNdA1707751471991 \N \N 1 0 0.00 0.00 \N \N \N +223 R530726351 19.99 24.99 delivery 0.00 \N \N 313 314 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:10:18.37285 2024-02-12 15:10:37.745336 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rKDap4dhSxybhnHK0sdMAQ1707750618364 \N \N 1 0 0.00 0.00 \N \N \N +224 R760845361 19.99 24.99 delivery 0.00 \N \N 315 316 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:11:15.251577 2024-02-12 15:11:34.627333 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HUo6Hwb5eKllho30fDzZCg1707750675243 \N \N 1 0 0.00 0.00 \N \N \N +232 R923364138 19.99 24.99 delivery 0.00 \N \N 331 332 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:18:50.47509 2024-02-12 15:19:09.808189 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2m1lR3RR8dhkGawDeZnrmQ1707751130466 \N \N 1 0 0.00 0.00 \N \N \N +225 R004631579 19.99 24.99 delivery 0.00 \N \N 317 318 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:12:12.269288 2024-02-12 15:12:31.637748 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vaMozopYnHeXeoaoOJYm0g1707750732240 \N \N 1 0 0.00 0.00 \N \N \N +343 R315018207 19.99 24.99 delivery 0.00 \N \N 553 554 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:04:12.468335 2024-02-12 17:04:31.885643 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6GqXlVzBQlMPqlKYG2qDcA1707757452453 \N \N 1 0 0.00 0.00 \N \N \N +760 R260875305 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:33:41.70327 2024-02-12 22:34:06.148245 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f LNMZARdgRl8ge9Rw_ToMZw1707777221694 \N \N 1 0 0.00 0.00 \N \N \N +230 R774568947 19.99 24.99 delivery 0.00 \N \N 327 328 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:16:56.680199 2024-02-12 15:17:16.102251 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f mx2SPVK_xDvFr6nU-bxIAw1707751016672 \N \N 1 0 0.00 0.00 \N \N \N +237 R775298103 19.99 24.99 delivery 0.00 \N \N 341 342 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:23:34.897594 2024-02-12 15:23:54.23212 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5NT7m0C3LDp9aZqPjV_Irw1707751414889 \N \N 1 0 0.00 0.00 \N \N \N +228 R108316697 19.99 24.99 delivery 0.00 \N \N 323 324 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:15:02.828611 2024-02-12 15:15:22.167809 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yJvOt8BCuMJD5z0Uj5VbYg1707750902820 \N \N 1 0 0.00 0.00 \N \N \N +226 R148667384 19.99 24.99 delivery 0.00 \N \N 319 320 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:13:09.101028 2024-02-12 15:13:28.289421 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f kLe1RvM1pPBEjqLpR9wKvA1707750789091 \N \N 1 0 0.00 0.00 \N \N \N +762 R528876177 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:35:00.826468 2024-02-12 22:35:22.304853 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 8zQ6Ggz2aP_jQJYUhO8IUg1707777300817 \N \N 1 0 0.00 0.00 \N \N \N +234 R373742045 19.99 24.99 delivery 0.00 \N \N 335 336 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:20:44.283364 2024-02-12 15:21:03.774303 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qHIYupeyHQuNnCueBiprAA1707751244275 \N \N 1 0 0.00 0.00 \N \N \N +243 R664473715 19.99 24.99 delivery 0.00 \N \N 353 354 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:29:16.187826 2024-02-12 15:29:35.717014 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f bFW1bNg4fVb-jqZQ5A-B_A1707751756179 \N \N 1 0 0.00 0.00 \N \N \N +227 R948814407 19.99 24.99 delivery 0.00 \N \N 321 322 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:14:06.031323 2024-02-12 15:14:25.35404 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f kbkhlkued3QrFmKkPtKsUw1707750846024 \N \N 1 0 0.00 0.00 \N \N \N +231 R054380332 19.99 24.99 delivery 0.00 \N \N 329 330 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:17:53.649976 2024-02-12 15:18:12.918351 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6bo1Mx4Q15Skfbzc8CFtEQ1707751073642 \N \N 1 0 0.00 0.00 \N \N \N +229 R606779162 19.99 24.99 delivery 0.00 \N \N 325 326 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:15:59.765046 2024-02-12 15:16:19.227876 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f cTRpItWo7dgDemlW9Ml-9Q1707750959755 \N \N 1 0 0.00 0.00 \N \N \N +236 R916993502 19.99 24.99 delivery 0.00 \N \N 339 340 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:22:38.051642 2024-02-12 15:22:57.439536 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 53dppNq2eqmUs7faVEhnuA1707751358043 \N \N 1 0 0.00 0.00 \N \N \N +233 R798943036 19.99 24.99 delivery 0.00 \N \N 333 334 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:19:47.349338 2024-02-12 15:20:06.784776 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2wPfgZWJpXMqvEtFE4UZkg1707751187338 \N \N 1 0 0.00 0.00 \N \N \N +235 R397800589 19.99 24.99 delivery 0.00 \N \N 337 338 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:21:41.158495 2024-02-12 15:22:00.420256 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f N4N7St9VlrVhnb9ejjyLlA1707751301150 \N \N 1 0 0.00 0.00 \N \N \N +245 R148782343 19.99 24.99 delivery 0.00 \N \N 357 358 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:31:09.888019 2024-02-12 15:31:29.228882 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f t5k02aK31wYFCcDHDBP0Ow1707751869880 \N \N 1 0 0.00 0.00 \N \N \N +240 R900848274 19.99 24.99 delivery 0.00 \N \N 347 348 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:26:25.63716 2024-02-12 15:26:44.996412 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f fw7MgTK4iGjTP8f-P16EQw1707751585629 \N \N 1 0 0.00 0.00 \N \N \N +239 R192869495 19.99 24.99 delivery 0.00 \N \N 345 346 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:25:28.755267 2024-02-12 15:25:48.118688 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f nU7V8xdORPRgxLZ9NvFVkA1707751528745 \N \N 1 0 0.00 0.00 \N \N \N +241 R840599581 19.99 24.99 delivery 0.00 \N \N 349 350 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:27:22.52211 2024-02-12 15:27:41.779925 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gQk1q5GFLTnHRy3fkwedKw1707751642514 \N \N 1 0 0.00 0.00 \N \N \N +244 R404661631 19.99 24.99 delivery 0.00 \N \N 355 356 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:30:13.098104 2024-02-12 15:30:32.393996 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f S2kZkZ2jQlZHezGR5ko4fw1707751813089 \N \N 1 0 0.00 0.00 \N \N \N +242 R005686198 19.99 24.99 delivery 0.00 \N \N 351 352 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:28:19.338025 2024-02-12 15:28:38.721375 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JsvzhLIq630k4zRu-KULQg1707751699329 \N \N 1 0 0.00 0.00 \N \N \N +246 R042712890 19.99 24.99 delivery 0.00 \N \N 359 360 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:32:06.659971 2024-02-12 15:32:25.964964 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f l2mCBFmzEtfYC7Y-k5zZ5A1707751926650 \N \N 1 0 0.00 0.00 \N \N \N +247 R508758020 19.99 24.99 delivery 0.00 \N \N 361 362 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:33:03.334431 2024-02-12 15:33:22.656379 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 7YkhOBQohP5edUL-WMFFBw1707751983325 \N \N 1 0 0.00 0.00 \N \N \N +248 R620574368 19.99 24.99 delivery 0.00 \N \N 363 364 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:34:00.130504 2024-02-12 15:34:19.525796 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f YMjvzOeh2PRUfZVzjnaVdA1707752040122 \N \N 1 0 0.00 0.00 \N \N \N +249 R257951634 19.99 24.99 delivery 0.00 \N \N 365 366 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:34:56.968946 2024-02-12 15:35:16.338572 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pnsYuNJggsz1FEzFGEKjWg1707752096961 \N \N 1 0 0.00 0.00 \N \N \N +250 R206654935 19.99 24.99 delivery 0.00 \N \N 367 368 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:35:53.776656 2024-02-12 15:36:13.187472 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f lW98z8Hl0AOaj-aGdS99SQ1707752153768 \N \N 1 0 0.00 0.00 \N \N \N +251 R009755761 19.99 24.99 delivery 0.00 \N \N 369 370 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:36:50.610369 2024-02-12 15:37:10.056534 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f eYBYFUwb-lpne2IGeuT1QQ1707752210601 \N \N 1 0 0.00 0.00 \N \N \N +258 R921717952 19.99 24.99 delivery 0.00 \N \N 383 384 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:43:28.793313 2024-02-12 15:43:48.127205 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 35feNI36aaeM5PE1LJ3GYA1707752608785 \N \N 1 0 0.00 0.00 \N \N \N +267 R489551484 19.99 24.99 delivery 0.00 \N \N 401 402 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:52:00.438873 2024-02-12 15:52:19.848291 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6oUuakYMms7H5sWdlo5QRA1707753120420 \N \N 1 0 0.00 0.00 \N \N \N +261 R204981300 19.99 24.99 delivery 0.00 \N \N 389 390 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:46:19.337073 2024-02-12 15:46:38.761141 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f w2EQtOqWDcxLjsyM-EJ5vQ1707752779328 \N \N 1 0 0.00 0.00 \N \N \N +252 R756426081 19.99 24.99 delivery 0.00 \N \N 371 372 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:37:47.580061 2024-02-12 15:38:06.895028 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rtyMqxLZVPvw76OMPP8pMQ1707752267572 \N \N 1 0 0.00 0.00 \N \N \N +253 R156450546 19.99 24.99 delivery 0.00 \N \N 373 374 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:38:44.379349 2024-02-12 15:39:03.929567 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ZaSlmgU8MZYDmxIBHG64_w1707752324370 \N \N 1 0 0.00 0.00 \N \N \N +259 R628571667 19.99 24.99 delivery 0.00 \N \N 385 386 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:44:25.682856 2024-02-12 15:44:44.966988 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CdvtP-wqoLJsy9ssu02Qmg1707752665674 \N \N 1 0 0.00 0.00 \N \N \N +730 R976392874 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:22:49.114758 2024-02-12 22:22:49.240748 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Bh2KeXKLuPgWwKDZzU16Cg1707776569107 \N \N 1 0 0.00 0.00 \N \N \N +275 R853513715 19.99 24.99 delivery 0.00 \N \N 417 418 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:59:36.918757 2024-02-12 15:59:56.329201 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f V0VJicTERQkgjHEUOCl7yQ1707753576910 \N \N 1 0 0.00 0.00 \N \N \N +262 R013078027 19.99 24.99 delivery 0.00 \N \N 391 392 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:47:16.23238 2024-02-12 15:47:35.561945 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ac05eIk8JwE_az76uEROzA1707752836219 \N \N 1 0 0.00 0.00 \N \N \N +636 R707920095 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:52:29.263958 2024-02-12 21:52:41.470997 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f YHwgutGeL4_JH_jo7mrblA1707774749255 \N \N 1 0 0.00 0.00 \N \N \N +271 R784548618 19.99 24.99 delivery 0.00 \N \N 409 410 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:55:48.47171 2024-02-12 15:56:07.916745 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f AovH2HkY_o1upPVZRMoZkg1707753348461 \N \N 1 0 0.00 0.00 \N \N \N +254 R242111196 19.99 24.99 delivery 0.00 \N \N 375 376 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:39:41.486656 2024-02-12 15:40:00.773794 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f OCd_BrXpfeGCg6MAF_HY4w1707752381477 \N \N 1 0 0.00 0.00 \N \N \N +715 R947918759 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:18:04.537184 2024-02-12 22:18:29.821984 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f rBzh3e8Y1e6Vkr920Yl25Q1707776284529 \N \N 1 0 0.00 0.00 \N \N \N +264 R387781097 19.99 24.99 delivery 0.00 \N \N 395 396 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:49:09.963582 2024-02-12 15:49:29.3991 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f x_b_HNsAaNYE8yX8EV0C0g1707752949955 \N \N 1 0 0.00 0.00 \N \N \N +260 R834593849 19.99 24.99 delivery 0.00 \N \N 387 388 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:45:22.558714 2024-02-12 15:45:41.769147 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f trl42awrmYRVVXFXlND8Bw1707752722550 \N \N 1 0 0.00 0.00 \N \N \N +266 R034807783 19.99 24.99 delivery 0.00 \N \N 399 400 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:51:03.588353 2024-02-12 15:51:22.911184 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f nbYrm4tarjIVkBUBBtWp6A1707753063580 \N \N 1 0 0.00 0.00 \N \N \N +270 R961308614 19.99 24.99 delivery 0.00 \N \N 407 408 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:54:51.503456 2024-02-12 15:55:11.075041 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f n--DUfoklRFofUfSpXVffg1707753291492 \N \N 1 0 0.00 0.00 \N \N \N +263 R930755714 19.99 24.99 delivery 0.00 \N \N 393 394 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:48:13.129262 2024-02-12 15:48:32.452045 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f NZyTIMW1KJ0DQpBMBXnVvA1707752893120 \N \N 1 0 0.00 0.00 \N \N \N +269 R575577526 19.99 24.99 delivery 0.00 \N \N 405 406 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:53:54.386449 2024-02-12 15:54:13.774898 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xbZEmA-VlZs4OdTvwUQLuQ1707753234376 \N \N 1 0 0.00 0.00 \N \N \N +265 R699754643 19.99 24.99 delivery 0.00 \N \N 397 398 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:50:06.79721 2024-02-12 15:50:26.125496 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oh-8MQqM_liCXTColWb-ww1707753006789 \N \N 1 0 0.00 0.00 \N \N \N +268 R445125174 19.99 24.99 delivery 0.00 \N \N 403 404 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:52:57.292182 2024-02-12 15:53:16.713189 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pNJyxBR2iLlFs6H94_FwXg1707753177282 \N \N 1 0 0.00 0.00 \N \N \N +272 R276251111 19.99 24.99 delivery 0.00 \N \N 411 412 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:56:45.48666 2024-02-12 15:57:04.806275 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RZ1YJv7-NsOoCuUxepy5Ng1707753405478 \N \N 1 0 0.00 0.00 \N \N \N +273 R310857802 19.99 24.99 delivery 0.00 \N \N 413 414 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:57:42.421871 2024-02-12 15:58:01.778151 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 9kgaQPkwPHEFyPKIhZCLBA1707753462413 \N \N 1 0 0.00 0.00 \N \N \N +278 R302740725 19.99 24.99 delivery 0.00 \N \N 423 424 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:02:28.114885 2024-02-12 16:02:47.47249 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8EgK2_5xe9GbJDWCQWXplQ1707753748107 \N \N 1 0 0.00 0.00 \N \N \N +274 R604276937 19.99 24.99 delivery 0.00 \N \N 415 416 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 15:58:39.42176 2024-02-12 15:58:58.877254 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f y0UOIbMJ94pfrUPfTa2BIg1707753519412 \N \N 1 0 0.00 0.00 \N \N \N +276 R178527961 19.99 24.99 delivery 0.00 \N \N 419 420 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:00:33.922091 2024-02-12 16:00:53.321237 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f cFSXsAYw5SwFF5-DgUQjlA1707753633914 \N \N 1 0 0.00 0.00 \N \N \N +277 R681112014 19.99 24.99 delivery 0.00 \N \N 421 422 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:01:30.963984 2024-02-12 16:01:50.39194 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f YoegSNWgYL6HhO27_VJ6CQ1707753690956 \N \N 1 0 0.00 0.00 \N \N \N +279 R018795899 19.99 24.99 delivery 0.00 \N \N 425 426 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:03:25.142917 2024-02-12 16:03:44.528809 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f uAkppaXHoAMxSDgQ9wKJow1707753805133 \N \N 1 0 0.00 0.00 \N \N \N +280 R086960967 19.99 24.99 delivery 0.00 \N \N 427 428 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:04:22.183406 2024-02-12 16:04:41.585212 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f l7OzUUl_bxz4oubNdP5Kww1707753862174 \N \N 1 0 0.00 0.00 \N \N \N +281 R313376320 19.99 24.99 delivery 0.00 \N \N 429 430 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:05:19.104526 2024-02-12 16:05:38.378069 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Igyx-P_jXnRwnJ-FQ0BjmQ1707753919096 \N \N 1 0 0.00 0.00 \N \N \N +282 R894700885 19.99 24.99 delivery 0.00 \N \N 431 432 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:06:15.901839 2024-02-12 16:06:35.193057 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ZXBbhbB7H7FAbFHQvf2grA1707753975893 \N \N 1 0 0.00 0.00 \N \N \N +285 R099163615 19.99 24.99 delivery 0.00 \N \N 437 438 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:09:06.801771 2024-02-12 16:09:26.14734 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vI8UttKjKn2duo3v5q_g5g1707754146792 \N \N 1 0 0.00 0.00 \N \N \N +295 R959321787 19.99 24.99 delivery 0.00 \N \N 457 458 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:18:36.409077 2024-02-12 16:18:55.679451 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gkxB99m_ve6sascjkjcFPQ1707754716389 \N \N 1 0 0.00 0.00 \N \N \N +344 R479824758 19.99 24.99 delivery 0.00 \N \N 555 556 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:05:09.692676 2024-02-12 17:05:29.119541 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f dbp8MTBX25fPRgAotWFxIg1707757509682 \N \N 1 0 0.00 0.00 \N \N \N +283 R617098235 19.99 24.99 delivery 0.00 \N \N 433 434 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:07:12.799918 2024-02-12 16:07:32.242176 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _9U4_tTkaHXpJ0N5zo5JTQ1707754032792 \N \N 1 0 0.00 0.00 \N \N \N +290 R135019107 19.99 24.99 delivery 0.00 \N \N 447 448 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:13:51.507388 2024-02-12 16:14:10.843969 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MeOxIltfC_z5tipTYRCGDw1707754431498 \N \N 1 0 0.00 0.00 \N \N \N +458 R415964870 19.99 24.99 delivery 0.00 \N \N 783 784 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:53:28.953177 2024-02-12 18:53:48.241046 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xkQkLmstmpDUzcszomO4qg1707764008944 \N \N 1 0 0.00 0.00 \N \N \N +292 R176546221 19.99 24.99 delivery 0.00 \N \N 451 452 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:15:45.354909 2024-02-12 16:16:04.679203 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HeMOSO73JCjA78cJD9ClKA1707754545346 \N \N 1 0 0.00 0.00 \N \N \N +288 R029054132 19.99 24.99 delivery 0.00 \N \N 443 444 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:11:57.622266 2024-02-12 16:12:17.033964 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f kOCch-Wx9q6eG91DFTqSIA1707754317613 \N \N 1 0 0.00 0.00 \N \N \N +286 R223318516 19.99 24.99 delivery 0.00 \N \N 439 440 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:10:03.822698 2024-02-12 16:10:23.140183 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f bRRXb4Z8agHx0zdgDWNO8Q1707754203814 \N \N 1 0 0.00 0.00 \N \N \N +284 R460591125 19.99 24.99 delivery 0.00 \N \N 435 436 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:08:09.826777 2024-02-12 16:08:29.221741 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f q73DDDJLMmSW2n2aZ4WC0A1707754089818 \N \N 1 0 0.00 0.00 \N \N \N +303 R416422981 19.99 24.99 delivery 0.00 \N \N 473 474 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:26:12.270237 2024-02-12 16:26:31.83262 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rIx6UoajmyeYbig8GToHQA1707755172260 \N \N 1 0 0.00 0.00 \N \N \N +294 R134414330 19.99 24.99 delivery 0.00 \N \N 455 456 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:17:39.402399 2024-02-12 16:17:58.714962 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zaYxL0QiECyQeJ6DsvbfaA1707754659394 \N \N 1 0 0.00 0.00 \N \N \N +299 R600627157 19.99 24.99 delivery 0.00 \N \N 465 466 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:22:24.17179 2024-02-12 16:22:43.444916 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tlSBriNnn_KKDiNDw4E4yw1707754944163 \N \N 1 0 0.00 0.00 \N \N \N +287 R171418543 19.99 24.99 delivery 0.00 \N \N 441 442 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:11:00.719803 2024-02-12 16:11:20.083872 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f TFpha_YCNjLEyB6U6cg-Wg1707754260711 \N \N 1 0 0.00 0.00 \N \N \N +289 R710188799 19.99 24.99 delivery 0.00 \N \N 445 446 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:12:54.531718 2024-02-12 16:13:14.015329 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RdhMPtEOh-z072MI1wBTew1707754374521 \N \N 1 0 0.00 0.00 \N \N \N +291 R362672401 19.99 24.99 delivery 0.00 \N \N 449 450 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:14:48.51716 2024-02-12 16:15:07.850563 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5A7IJlI__9LRP4tm-s1NTA1707754488509 \N \N 1 0 0.00 0.00 \N \N \N +298 R664225706 19.99 24.99 delivery 0.00 \N \N 463 464 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:21:27.228623 2024-02-12 16:21:46.499336 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f J-wX68evcUNGkt9sGRC1ig1707754887199 \N \N 1 0 0.00 0.00 \N \N \N +293 R046533761 19.99 24.99 delivery 0.00 \N \N 453 454 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:16:42.449266 2024-02-12 16:17:01.87772 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gk2WWrOiKueQxkbYg0GuQQ1707754602439 \N \N 1 0 0.00 0.00 \N \N \N +297 R169009287 19.99 24.99 delivery 0.00 \N \N 461 462 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:20:30.154373 2024-02-12 16:20:49.507337 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f FxYUTUUOLOqLVfBIklmtig1707754830147 \N \N 1 0 0.00 0.00 \N \N \N +296 R990735192 19.99 24.99 delivery 0.00 \N \N 459 460 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:19:33.248677 2024-02-12 16:19:52.557619 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 9rLor_yoJ3t9AtzQg-wzZA1707754773239 \N \N 1 0 0.00 0.00 \N \N \N +300 R095684583 19.99 24.99 delivery 0.00 \N \N 467 468 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:23:21.16395 2024-02-12 16:23:40.706275 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f fBdJj3Ujza6Ef1PtVyi37w1707755001155 \N \N 1 0 0.00 0.00 \N \N \N +301 R753190549 19.99 24.99 delivery 0.00 \N \N 469 470 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:24:18.330422 2024-02-12 16:24:37.759502 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HNxGRzL_2Q-oC9Qj-uSEog1707755058322 \N \N 1 0 0.00 0.00 \N \N \N +306 R739367090 19.99 24.99 delivery 0.00 \N \N 479 480 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:29:03.125613 2024-02-12 16:29:22.337169 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4_Ig4RUHr0ji7rEGQjkA5Q1707755343116 \N \N 1 0 0.00 0.00 \N \N \N +302 R740857312 19.99 24.99 delivery 0.00 \N \N 471 472 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:25:15.303932 2024-02-12 16:25:34.667834 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f N4nlkgqxnTCKvLgJRzBSUg1707755115295 \N \N 1 0 0.00 0.00 \N \N \N +304 R857625750 19.99 24.99 delivery 0.00 \N \N 475 476 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:27:09.32161 2024-02-12 16:27:28.659992 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DxDxDs7N77RRiZYozJ-kiQ1707755229314 \N \N 1 0 0.00 0.00 \N \N \N +305 R581215020 19.99 24.99 delivery 0.00 \N \N 477 478 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:28:06.197385 2024-02-12 16:28:25.496342 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _Pqu0KbABzShX4gHB5XkYQ1707755286189 \N \N 1 0 0.00 0.00 \N \N \N +307 R690223020 19.99 24.99 delivery 0.00 \N \N 481 482 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:30:00.002876 2024-02-12 16:30:19.426397 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gq_TJtUj3R-PNnf89lch2g1707755399988 \N \N 1 0 0.00 0.00 \N \N \N +308 R195418822 19.99 24.99 delivery 0.00 \N \N 483 484 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:30:56.891484 2024-02-12 16:31:16.204908 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ltV547tUkOnUpOmMHeIj5A1707755456882 \N \N 1 0 0.00 0.00 \N \N \N +309 R334649597 19.99 24.99 delivery 0.00 \N \N 485 486 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:31:53.834389 2024-02-12 16:32:13.288291 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Etroq1BQVHZOQnxVk2nlpg1707755513826 \N \N 1 0 0.00 0.00 \N \N \N +310 R388262075 19.99 24.99 delivery 0.00 \N \N 487 488 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:32:50.873402 2024-02-12 16:33:10.314419 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f M6rw2YvUuvCHT7xJfcv7VQ1707755570865 \N \N 1 0 0.00 0.00 \N \N \N +325 R606051311 19.99 24.99 delivery 0.00 \N \N 517 518 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:47:05.263395 2024-02-12 16:47:24.763792 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Y5XNyUd1F5TYLHkt1mm_uw1707756425254 \N \N 1 0 0.00 0.00 \N \N \N +345 R515732877 19.99 24.99 delivery 0.00 \N \N 557 558 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:06:06.883257 2024-02-12 17:06:26.395548 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Mg5LbZ97y5XKwDnjQus2Lg1707757566873 \N \N 1 0 0.00 0.00 \N \N \N +319 R829520657 19.99 24.99 delivery 0.00 \N \N 505 506 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:41:23.000939 2024-02-12 16:41:42.26175 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xHByvHfjm6eYokaOe_CX9Q1707756082992 \N \N 1 0 0.00 0.00 \N \N \N +317 R093895482 19.99 24.99 delivery 0.00 \N \N 501 502 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:39:29.372998 2024-02-12 16:39:48.716219 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f KLb-uZOplxXBkrqdh3r4pA1707755969365 \N \N 1 0 0.00 0.00 \N \N \N +314 R460102534 19.99 24.99 delivery 0.00 \N \N 495 496 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:36:38.797251 2024-02-12 16:36:58.129917 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 7792OuydLL44bM6PFgGuUw1707755798788 \N \N 1 0 0.00 0.00 \N \N \N +311 R244978369 19.99 24.99 delivery 0.00 \N \N 489 490 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:33:47.85544 2024-02-12 16:34:07.232615 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BRIvSok_Ek5--aawedAw5A1707755627846 \N \N 1 0 0.00 0.00 \N \N \N +324 R846013645 19.99 24.99 delivery 0.00 \N \N 515 516 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:46:08.197489 2024-02-12 16:46:27.593021 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CRYvLRTkIJsHUhe3JboB8w1707756368189 \N \N 1 0 0.00 0.00 \N \N \N +321 R472646771 19.99 24.99 delivery 0.00 \N \N 509 510 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:43:16.699546 2024-02-12 16:43:36.039297 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zZjlaEl3hEV_YoRFYUUQOw1707756196691 \N \N 1 0 0.00 0.00 \N \N \N +315 R686487745 19.99 24.99 delivery 0.00 \N \N 497 498 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:37:35.681784 2024-02-12 16:37:55.067086 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Q83tA8JGG3NvyJzc28UW6g1707755855673 \N \N 1 0 0.00 0.00 \N \N \N +312 R087320293 19.99 24.99 delivery 0.00 \N \N 491 492 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:34:44.95795 2024-02-12 16:35:04.378442 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f OjI4xk8DhCoL2BJE4kxoeA1707755684949 \N \N 1 0 0.00 0.00 \N \N \N +313 R795204734 19.99 24.99 delivery 0.00 \N \N 493 494 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:35:41.946422 2024-02-12 16:36:01.351162 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Y1l72lnUFfDzxiUQk4H46Q1707755741938 \N \N 1 0 0.00 0.00 \N \N \N +316 R515799596 19.99 24.99 delivery 0.00 \N \N 499 500 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:38:32.445708 2024-02-12 16:38:51.870828 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f h08ifabEMm8vP6WSHYo2Ig1707755912436 \N \N 1 0 0.00 0.00 \N \N \N +330 R602939153 19.99 24.99 delivery 0.00 \N \N 527 528 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:51:50.203286 2024-02-12 16:52:09.609098 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RzVlEuULRhAR-UabksS5kQ1707756710193 \N \N 1 0 0.00 0.00 \N \N \N +318 R631365170 19.99 24.99 delivery 0.00 \N \N 503 504 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:40:26.27585 2024-02-12 16:40:45.631584 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f bBmms4rdUlX4ZF0o7chswg1707756026255 \N \N 1 0 0.00 0.00 \N \N \N +323 R837608301 19.99 24.99 delivery 0.00 \N \N 513 514 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:45:11.204426 2024-02-12 16:45:30.545819 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8qkhomMmdlPRUEnMhwGngA1707756311196 \N \N 1 0 0.00 0.00 \N \N \N +320 R234494865 19.99 24.99 delivery 0.00 \N \N 507 508 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:42:19.768532 2024-02-12 16:42:39.252452 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vEzhgSMlDtHmuA_t5s9SHA1707756139760 \N \N 1 0 0.00 0.00 \N \N \N +322 R081697822 19.99 24.99 delivery 0.00 \N \N 511 512 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:44:13.892365 2024-02-12 16:44:33.539843 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f EG2F5ukQGlu_-h1BbYDu3A1707756253882 \N \N 1 0 0.00 0.00 \N \N \N +332 R836782538 19.99 24.99 delivery 0.00 \N \N 531 532 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:53:43.944757 2024-02-12 16:54:03.255508 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f b5LNwOiWDVW0oxZuNi4rDA1707756823935 \N \N 1 0 0.00 0.00 \N \N \N +327 R231916567 19.99 24.99 delivery 0.00 \N \N 521 522 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:48:59.059599 2024-02-12 16:49:18.391078 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oY2IG-mNQU8Dn__fBhNq5w1707756539052 \N \N 1 0 0.00 0.00 \N \N \N +326 R421291811 19.99 24.99 delivery 0.00 \N \N 519 520 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:48:02.17935 2024-02-12 16:48:21.423746 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f whXfVmFwz_E_LNtSBxa1GA1707756482171 \N \N 1 0 0.00 0.00 \N \N \N +328 R731430818 19.99 24.99 delivery 0.00 \N \N 523 524 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:49:55.961951 2024-02-12 16:50:15.184518 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f lXhjvMKfHZEjxg0Aimi1Zw1707756595952 \N \N 1 0 0.00 0.00 \N \N \N +331 R709480863 19.99 24.99 delivery 0.00 \N \N 529 530 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:52:46.994762 2024-02-12 16:53:06.371156 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f FTG-zP8c-2LuykTnshaA4g1707756766985 \N \N 1 0 0.00 0.00 \N \N \N +329 R652995314 19.99 24.99 delivery 0.00 \N \N 525 526 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:50:53.054052 2024-02-12 16:51:12.636306 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f unJDp3CJj_58bv-AzPyZhg1707756653045 \N \N 1 0 0.00 0.00 \N \N \N +333 R644997542 19.99 24.99 delivery 0.00 \N \N 533 534 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:54:40.957465 2024-02-12 16:55:00.359182 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f E5TfteqlsbtT-GEC4Mhrcg1707756880949 \N \N 1 0 0.00 0.00 \N \N \N +334 R862051574 19.99 24.99 delivery 0.00 \N \N 535 536 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:55:37.890134 2024-02-12 16:55:57.269361 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 9qDyuJvo2nSqUazrpdFFkA1707756937881 \N \N 1 0 0.00 0.00 \N \N \N +335 R723764983 19.99 24.99 delivery 0.00 \N \N 537 538 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:56:35.118971 2024-02-12 16:56:54.578667 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Nkw_-50HIQ4t_PJD5LnJUw1707756995110 \N \N 1 0 0.00 0.00 \N \N \N +336 R350094170 19.99 24.99 delivery 0.00 \N \N 539 540 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:57:32.014136 2024-02-12 16:57:51.381521 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f jIgQd3qldC7ocE7robUW3g1707757052004 \N \N 1 0 0.00 0.00 \N \N \N +337 R837820231 19.99 24.99 delivery 0.00 \N \N 541 542 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:58:29.036971 2024-02-12 16:58:48.326966 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rAIPagsXUAtasNJwbL_YZg1707757109026 \N \N 1 0 0.00 0.00 \N \N \N +338 R304171055 19.99 24.99 delivery 0.00 \N \N 543 544 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 16:59:25.890427 2024-02-12 16:59:45.247856 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f afx_rQkJlAPj1SBUCTFk0A1707757165882 \N \N 1 0 0.00 0.00 \N \N \N +339 R193463643 19.99 24.99 delivery 0.00 \N \N 545 546 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:00:23.335111 2024-02-12 17:00:42.74218 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f z11o95TJMalehGnRMbIOmw1707757223326 \N \N 1 0 0.00 0.00 \N \N \N +349 R938200509 19.99 24.99 delivery 0.00 \N \N 565 566 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:09:55.699404 2024-02-12 17:10:15.18159 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ePX2AIHGU2beonL38rEdNw1707757795690 \N \N 1 0 0.00 0.00 \N \N \N +355 R146005653 19.99 24.99 delivery 0.00 \N \N 577 578 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:15:39.037558 2024-02-12 17:15:58.510091 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gmPOaIUz1s6dW2-VZoIWbQ1707758139028 \N \N 1 0 0.00 0.00 \N \N \N +346 R150480118 19.99 24.99 delivery 0.00 \N \N 559 560 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:07:04.146024 2024-02-12 17:07:23.558212 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -YU5JhV83sxI1BBHgdujSg1707757624136 \N \N 1 0 0.00 0.00 \N \N \N +340 R470237145 19.99 24.99 delivery 0.00 \N \N 547 548 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:01:20.537994 2024-02-12 17:01:40.034563 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f jfHHeJpOSL3JEp0c_fgq4g1707757280528 \N \N 1 0 0.00 0.00 \N \N \N +347 R203786698 19.99 24.99 delivery 0.00 \N \N 561 562 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:08:01.342077 2024-02-12 17:08:20.745777 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GD-7rrbaNAXq6v85u28cAw1707757681331 \N \N 1 0 0.00 0.00 \N \N \N +350 R562722862 19.99 24.99 delivery 0.00 \N \N 567 568 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:10:52.924447 2024-02-12 17:11:12.465376 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3Xz9Fdp4M8zPdNOqdTvD5w1707757852916 \N \N 1 0 0.00 0.00 \N \N \N +348 R359771779 19.99 24.99 delivery 0.00 \N \N 563 564 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:08:58.487285 2024-02-12 17:09:17.974906 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f TURaEOVWXBsWaSjVe5IH9w1707757738477 \N \N 1 0 0.00 0.00 \N \N \N +341 R388649759 19.99 24.99 delivery 0.00 \N \N 549 550 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:02:17.797932 2024-02-12 17:02:37.39986 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RCDHKf5EEpI7pm1Z1Ihv9g1707757337788 \N \N 1 0 0.00 0.00 \N \N \N +363 R174175858 19.99 24.99 delivery 0.00 \N \N 593 594 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:23:17.446144 2024-02-12 17:23:36.884932 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8GEMAkyzay0qt9c7kMQ-qA1707758597435 \N \N 1 0 0.00 0.00 \N \N \N +352 R201011527 19.99 24.99 delivery 0.00 \N \N 571 572 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:12:47.361453 2024-02-12 17:13:06.929969 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zoqTTmvL7QgppOmkKCs-hg1707757967352 \N \N 1 0 0.00 0.00 \N \N \N +359 R639962934 19.99 24.99 delivery 0.00 \N \N 585 586 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:19:27.899679 2024-02-12 17:19:47.356081 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f LWpBZOia6l-p5f3zhzTsoA1707758367891 \N \N 1 0 0.00 0.00 \N \N \N +354 R747884299 19.99 24.99 delivery 0.00 \N \N 575 576 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:14:41.901842 2024-02-12 17:15:01.259552 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 8cMkRgzZXrP_v-tuzCiUlA1707758081893 \N \N 1 0 0.00 0.00 \N \N \N +351 R296643295 19.99 24.99 delivery 0.00 \N \N 569 570 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:11:50.143451 2024-02-12 17:12:09.449612 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xR_23PI_LVHPEk_5uS-CEg1707757910134 \N \N 1 0 0.00 0.00 \N \N \N +358 R878686277 19.99 24.99 delivery 0.00 \N \N 583 584 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:18:30.725332 2024-02-12 17:18:50.077242 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Vm3Fi_Vqm6KIPlKatfrUKQ1707758310715 \N \N 1 0 0.00 0.00 \N \N \N +357 R884611121 19.99 24.99 delivery 0.00 \N \N 581 582 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:17:33.450445 2024-02-12 17:17:53.034058 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f lspVfBTjC7hgIox_UxEV3A1707758253441 \N \N 1 0 0.00 0.00 \N \N \N +353 R349536818 19.99 24.99 delivery 0.00 \N \N 573 574 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:13:44.755704 2024-02-12 17:14:04.135191 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -r_hOZrWyiQSVtDKJJN6Eg1707758024747 \N \N 1 0 0.00 0.00 \N \N \N +356 R420768050 19.99 24.99 delivery 0.00 \N \N 579 580 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:16:36.275374 2024-02-12 17:16:55.612848 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ydnE_sEpkYCOGi3qgrJFDg1707758196265 \N \N 1 0 0.00 0.00 \N \N \N +360 R728615286 19.99 24.99 delivery 0.00 \N \N 587 588 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:20:25.553695 2024-02-12 17:20:45.034978 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MmY3b0mPCxYMJod0Ny6lJA1707758425531 \N \N 1 0 0.00 0.00 \N \N \N +361 R262607953 19.99 24.99 delivery 0.00 \N \N 589 590 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:21:22.7586 2024-02-12 17:21:42.240465 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tiVQyC7NVGsUdAP2-IRLmw1707758482749 \N \N 1 0 0.00 0.00 \N \N \N +366 R844818410 19.99 24.99 delivery 0.00 \N \N 599 600 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:26:08.950139 2024-02-12 17:26:28.681393 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Y0aLcG2mglk3AmLSdNLdpg1707758768942 \N \N 1 0 0.00 0.00 \N \N \N +362 R279431641 19.99 24.99 delivery 0.00 \N \N 591 592 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:22:20.216648 2024-02-12 17:22:39.770224 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pCZCIAhe9x3XXenMmgjxLg1707758540205 \N \N 1 0 0.00 0.00 \N \N \N +364 R770518614 19.99 24.99 delivery 0.00 \N \N 595 596 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:24:14.636837 2024-02-12 17:24:34.027892 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f S8W4GxGLuij9Kra1yK-88Q1707758654625 \N \N 1 0 0.00 0.00 \N \N \N +365 R470875058 19.99 24.99 delivery 0.00 \N \N 597 598 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:25:11.767515 2024-02-12 17:25:31.191046 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6B6MH5Nm-CYOF_kMapmEPg1707758711759 \N \N 1 0 0.00 0.00 \N \N \N +367 R704513459 19.99 24.99 delivery 0.00 \N \N 601 602 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:27:06.484927 2024-02-12 17:27:26.112389 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2k-fDU82PEEw9Ce632UTNA1707758826476 \N \N 1 0 0.00 0.00 \N \N \N +368 R578002747 19.99 24.99 delivery 0.00 \N \N 603 604 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:28:03.812437 2024-02-12 17:28:23.665507 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yz_wl1uCgoe9CTPLTwSI9A1707758883803 \N \N 1 0 0.00 0.00 \N \N \N +369 R471843707 19.99 24.99 delivery 0.00 \N \N 605 606 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:29:01.180028 2024-02-12 17:29:20.873224 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1o6F1ULkoviYIEl7vzqa6g1707758941171 \N \N 1 0 0.00 0.00 \N \N \N +370 R618459106 19.99 24.99 delivery 0.00 \N \N 607 608 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:29:58.603759 2024-02-12 17:30:18.221883 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _jMtB182k65cSoqZ4bSIBw1707758998593 \N \N 1 0 0.00 0.00 \N \N \N +373 R365855512 19.99 24.99 delivery 0.00 \N \N 613 614 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:32:49.986065 2024-02-12 17:33:09.399553 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f E8GIsOFeffcPxw_gzFXLHw1707759169978 \N \N 1 0 0.00 0.00 \N \N \N +383 R649509464 19.99 24.99 delivery 0.00 \N \N 633 634 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:42:18.840017 2024-02-12 17:42:38.150513 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f T21yq8FVdfQbfeLRcYrcBw1707759738831 \N \N 1 0 0.00 0.00 \N \N \N +459 R515785889 19.99 24.99 delivery 0.00 \N \N 785 786 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:54:25.783096 2024-02-12 18:54:45.155311 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f jSxXcYLtCUy6NHW0X0G01g1707764065774 \N \N 1 0 0.00 0.00 \N \N \N +371 R601760961 19.99 24.99 delivery 0.00 \N \N 609 610 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:30:55.785612 2024-02-12 17:31:15.474707 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f s5cMndBvwQQ4D5QW-ImIrw1707759055777 \N \N 1 0 0.00 0.00 \N \N \N +378 R346676313 19.99 24.99 delivery 0.00 \N \N 623 624 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:37:33.943591 2024-02-12 17:37:53.406819 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f QfC--RMNLDit3fZPGi114g1707759453935 \N \N 1 0 0.00 0.00 \N \N \N +380 R702020046 19.99 24.99 delivery 0.00 \N \N 627 628 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:39:27.810745 2024-02-12 17:39:47.10328 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GkszyjHdnqTE8FbVOSeBIA1707759567801 \N \N 1 0 0.00 0.00 \N \N \N +376 R758386982 19.99 24.99 delivery 0.00 \N \N 619 620 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:35:40.182944 2024-02-12 17:35:59.573266 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UgF4uHxv-XfRM3WTVADYgg1707759340175 \N \N 1 0 0.00 0.00 \N \N \N +374 R116530920 19.99 24.99 delivery 0.00 \N \N 615 616 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:33:46.66904 2024-02-12 17:34:06.04827 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tGrT3vppTMu6TnZPSQj9XQ1707759226660 \N \N 1 0 0.00 0.00 \N \N \N +372 R506123542 19.99 24.99 delivery 0.00 \N \N 611 612 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:31:53.10138 2024-02-12 17:32:12.625978 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pOUEjDuQrk-Sv0p8HTtAyg1707759113092 \N \N 1 0 0.00 0.00 \N \N \N +391 R776042415 19.99 24.99 delivery 0.00 \N \N 649 650 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:49:54.757168 2024-02-12 17:50:14.07994 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rOHSMwEiOa6ffEDdzYSsMw1707760194747 \N \N 1 0 0.00 0.00 \N \N \N +382 R604780773 19.99 24.99 delivery 0.00 \N \N 631 632 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:41:21.898753 2024-02-12 17:41:41.260243 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qU6W6x0s5WYewh5E0U8X2A1707759681890 \N \N 1 0 0.00 0.00 \N \N \N +387 R665415382 19.99 24.99 delivery 0.00 \N \N 641 642 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:46:06.652542 2024-02-12 17:46:26.030337 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f EARZKJuC0ZsdWPWKK82fjA1707759966643 \N \N 1 0 0.00 0.00 \N \N \N +375 R474901103 19.99 24.99 delivery 0.00 \N \N 617 618 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:34:43.386787 2024-02-12 17:35:02.771674 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f v1xRIqennw-oYtwbquNoyw1707759283377 \N \N 1 0 0.00 0.00 \N \N \N +377 R407637638 19.99 24.99 delivery 0.00 \N \N 621 622 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:36:37.035946 2024-02-12 17:36:56.38674 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CcnlCBKQzK0HLEtvW7T8Uw1707759397028 \N \N 1 0 0.00 0.00 \N \N \N +379 R175562940 19.99 24.99 delivery 0.00 \N \N 625 626 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:38:30.858032 2024-02-12 17:38:50.18444 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _l7iyjcqiVUxSRegHnfQXw1707759510840 \N \N 1 0 0.00 0.00 \N \N \N +386 R852035633 19.99 24.99 delivery 0.00 \N \N 639 640 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:45:09.624015 2024-02-12 17:45:28.993135 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f IYSL63I3XqjS3ohPaTr5EQ1707759909614 \N \N 1 0 0.00 0.00 \N \N \N +381 R119170494 19.99 24.99 delivery 0.00 \N \N 629 630 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:40:24.714944 2024-02-12 17:40:44.28834 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f H3xvcnAEe7e2oCVct7kJEw1707759624706 \N \N 1 0 0.00 0.00 \N \N \N +385 R761627920 19.99 24.99 delivery 0.00 \N \N 637 638 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:44:12.40196 2024-02-12 17:44:31.692715 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VR_biOAgkfjvuUR67_Jveg1707759852392 \N \N 1 0 0.00 0.00 \N \N \N +384 R063993825 19.99 24.99 delivery 0.00 \N \N 635 636 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:43:15.667175 2024-02-12 17:43:34.859612 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tmnyfsQh8tSk6mvibeUWtw1707759795659 \N \N 1 0 0.00 0.00 \N \N \N +388 R344379263 19.99 24.99 delivery 0.00 \N \N 643 644 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:47:03.691662 2024-02-12 17:47:23.037433 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DUsk6oVqJdeaonF-ygDJLg1707760023683 \N \N 1 0 0.00 0.00 \N \N \N +389 R984652807 19.99 24.99 delivery 0.00 \N \N 645 646 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:48:00.7318 2024-02-12 17:48:20.085651 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f DYXBCt2zn3fgC8nDImXxPw1707760080724 \N \N 1 0 0.00 0.00 \N \N \N +394 R674774389 19.99 24.99 delivery 0.00 \N \N 655 656 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:52:45.599225 2024-02-12 17:53:04.951746 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f SUr5yriQtt_x9rdeIAGjZQ1707760365590 \N \N 1 0 0.00 0.00 \N \N \N +390 R314500811 19.99 24.99 delivery 0.00 \N \N 647 648 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:48:57.595535 2024-02-12 17:49:17.188165 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f cCGDbSxAj5H6aUSzNpTcVA1707760137587 \N \N 1 0 0.00 0.00 \N \N \N +392 R485835918 19.99 24.99 delivery 0.00 \N \N 651 652 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:50:51.607896 2024-02-12 17:51:11.017686 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oYplpRU9Ydqf-aUowRIBpA1707760251600 \N \N 1 0 0.00 0.00 \N \N \N +393 R199478312 19.99 24.99 delivery 0.00 \N \N 653 654 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:51:48.545061 2024-02-12 17:52:07.989749 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0RoRECTV7sfkFBmyIlM-IQ1707760308536 \N \N 1 0 0.00 0.00 \N \N \N +395 R609748357 19.99 24.99 delivery 0.00 \N \N 657 658 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:53:42.464824 2024-02-12 17:54:01.725376 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HVNZW765fiEzjDrcguunkw1707760422456 \N \N 1 0 0.00 0.00 \N \N \N +396 R491555035 19.99 24.99 delivery 0.00 \N \N 659 660 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:54:39.283901 2024-02-12 17:54:58.632684 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f y-xEE20R7W8v6ji-pQyDWw1707760479276 \N \N 1 0 0.00 0.00 \N \N \N +397 R414626641 19.99 24.99 delivery 0.00 \N \N 661 662 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:55:36.63424 2024-02-12 17:55:56.046949 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UravVC2mDraXHD12ee7tag1707760536625 \N \N 1 0 0.00 0.00 \N \N \N +398 R071665049 19.99 24.99 delivery 0.00 \N \N 663 664 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:56:33.730425 2024-02-12 17:56:53.261913 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f D0ClgUKM7hBBX3M8veIunQ1707760593721 \N \N 1 0 0.00 0.00 \N \N \N +401 R980213991 19.99 24.99 delivery 0.00 \N \N 669 670 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:59:24.500051 2024-02-12 17:59:43.985238 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ZpEEgFDhslB23xvK0pgMJQ1707760764490 \N \N 1 0 0.00 0.00 \N \N \N +460 R969871877 19.99 24.99 delivery 0.00 \N \N 787 788 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:55:22.638723 2024-02-12 18:55:41.929239 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zlMrp1bG_xiO_14FFeDfNg1707764122630 \N \N 1 0 0.00 0.00 \N \N \N +411 R327800889 19.99 24.99 delivery 0.00 \N \N 689 690 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:08:53.66617 2024-02-12 18:09:13.118881 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f SLr27CqT3D2b8JQwLYHVxA1707761333658 \N \N 1 0 0.00 0.00 \N \N \N +462 R567074213 19.99 24.99 delivery 0.00 \N \N 791 792 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:57:16.384792 2024-02-12 18:57:35.778203 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f od08JeHLgDRGg-9XFgOhRw1707764236376 \N \N 1 0 0.00 0.00 \N \N \N +399 R894195001 19.99 24.99 delivery 0.00 \N \N 665 666 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:57:31.013545 2024-02-12 17:57:50.44895 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qvH0GnRV_bHI6NHVysC_og1707760651005 \N \N 1 0 0.00 0.00 \N \N \N +406 R390061930 19.99 24.99 delivery 0.00 \N \N 679 680 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:04:08.943811 2024-02-12 18:04:28.345093 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PQD-G0Q8s2QIjmk-aEsWxg1707761048933 \N \N 1 0 0.00 0.00 \N \N \N +408 R177302736 19.99 24.99 delivery 0.00 \N \N 683 684 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:06:02.824212 2024-02-12 18:06:22.348121 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Q7xA2LSCwHxiBcIVqN6CQw1707761162815 \N \N 1 0 0.00 0.00 \N \N \N +404 R999241448 19.99 24.99 delivery 0.00 \N \N 675 676 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:02:14.956113 2024-02-12 18:02:34.278551 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f bWXXSAUPsyss_kfjB8aPeQ1707760934948 \N \N 1 0 0.00 0.00 \N \N \N +402 R271004293 19.99 24.99 delivery 0.00 \N \N 671 672 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:00:21.334272 2024-02-12 18:00:40.570943 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f TTRldNT-BRrRq0509lr1Ag1707760821326 \N \N 1 0 0.00 0.00 \N \N \N +400 R183788569 19.99 24.99 delivery 0.00 \N \N 667 668 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 17:58:27.709472 2024-02-12 17:58:46.902788 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Z_0axCR1OBv-g7QVSU_sFg1707760707701 \N \N 1 0 0.00 0.00 \N \N \N +419 R024077973 19.99 24.99 delivery 0.00 \N \N 705 706 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:16:30.767669 2024-02-12 18:16:50.100061 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gnbgla9TTYwNsk579QHHRQ1707761790759 \N \N 1 0 0.00 0.00 \N \N \N +410 R769960681 19.99 24.99 delivery 0.00 \N \N 687 688 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:07:56.514718 2024-02-12 18:08:15.946815 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0YarKHw3rAW-8Z1dbFoiyQ1707761276507 \N \N 1 0 0.00 0.00 \N \N \N +415 R805526021 19.99 24.99 delivery 0.00 \N \N 697 698 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:12:42.391126 2024-02-12 18:13:01.717094 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oV-Kw3N8nhF4uULv4iRsvQ1707761562382 \N \N 1 0 0.00 0.00 \N \N \N +403 R325274063 19.99 24.99 delivery 0.00 \N \N 673 674 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:01:18.15494 2024-02-12 18:01:37.435012 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0aCFEBuuy-YSYVZrxdFEVg1707760878143 \N \N 1 0 0.00 0.00 \N \N \N +405 R648962920 19.99 24.99 delivery 0.00 \N \N 677 678 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:03:11.963382 2024-02-12 18:03:31.354624 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f k8l1JPSPxA_PzBjrp5IFSQ1707760991954 \N \N 1 0 0.00 0.00 \N \N \N +407 R116877600 19.99 24.99 delivery 0.00 \N \N 681 682 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:05:05.948249 2024-02-12 18:05:25.291255 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6jt9qQhJlsCkYoTp7NbRzg1707761105939 \N \N 1 0 0.00 0.00 \N \N \N +414 R561770545 19.99 24.99 delivery 0.00 \N \N 695 696 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:11:45.15827 2024-02-12 18:12:04.552462 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f dpEeiKXa7wwIupF4IPv-pQ1707761505145 \N \N 1 0 0.00 0.00 \N \N \N +409 R924493976 19.99 24.99 delivery 0.00 \N \N 685 686 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:06:59.689867 2024-02-12 18:07:19.005864 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ur6gfGDb6_rQ4e7cbf8veQ1707761219682 \N \N 1 0 0.00 0.00 \N \N \N +413 R363124180 19.99 24.99 delivery 0.00 \N \N 693 694 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:10:47.813517 2024-02-12 18:11:07.331571 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2eHyX7QbUEIWJQdFHeVERw1707761447803 \N \N 1 0 0.00 0.00 \N \N \N +412 R518811297 19.99 24.99 delivery 0.00 \N \N 691 692 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:09:50.489726 2024-02-12 18:10:09.951603 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1IuA27GkvOCJ85QLPJLGbA1707761390479 \N \N 1 0 0.00 0.00 \N \N \N +416 R432141209 19.99 24.99 delivery 0.00 \N \N 699 700 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:13:39.525594 2024-02-12 18:13:58.972476 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xJFtUJPO-TPDaJvXyD15xw1707761619518 \N \N 1 0 0.00 0.00 \N \N \N +417 R269046542 19.99 24.99 delivery 0.00 \N \N 701 702 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:14:36.970594 2024-02-12 18:14:56.36618 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f sVKlVpCdZ58x1rf9zrPGsA1707761676962 \N \N 1 0 0.00 0.00 \N \N \N +422 R486669350 19.99 24.99 delivery 0.00 \N \N 711 712 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:19:21.383891 2024-02-12 18:19:40.816244 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f lEln-fhyydDTHNDNPxvLjw1707761961376 \N \N 1 0 0.00 0.00 \N \N \N +418 R146521599 19.99 24.99 delivery 0.00 \N \N 703 704 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:15:33.929757 2024-02-12 18:15:53.180574 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yBQwTs985HQROsW2CcR17g1707761733921 \N \N 1 0 0.00 0.00 \N \N \N +420 R318831524 19.99 24.99 delivery 0.00 \N \N 707 708 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:17:27.553575 2024-02-12 18:17:46.882309 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f aEt33lXHcdQ_O20ja5_jKA1707761847545 \N \N 1 0 0.00 0.00 \N \N \N +421 R588738965 19.99 24.99 delivery 0.00 \N \N 709 710 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:18:24.42906 2024-02-12 18:18:43.865576 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f EdQDZKT7pfwhf87TtmsSxw1707761904421 \N \N 1 0 0.00 0.00 \N \N \N +423 R696975079 19.99 24.99 delivery 0.00 \N \N 713 714 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:20:18.508224 2024-02-12 18:20:37.979855 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f lEjP0Gd6ggg4qBpyQftA8w1707762018500 \N \N 1 0 0.00 0.00 \N \N \N +424 R272053730 19.99 24.99 delivery 0.00 \N \N 715 716 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:21:15.500792 2024-02-12 18:21:34.873792 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -CqN9zicSUl5ZyIRJHi0mw1707762075491 \N \N 1 0 0.00 0.00 \N \N \N +425 R322761371 19.99 24.99 delivery 0.00 \N \N 717 718 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:22:12.395632 2024-02-12 18:22:31.801302 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qdPMGpoGHIyAg788YUC8Dw1707762132387 \N \N 1 0 0.00 0.00 \N \N \N +426 R175391471 19.99 24.99 delivery 0.00 \N \N 719 720 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:23:09.288923 2024-02-12 18:23:28.557204 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hdu9mqFAuZKBsXh-IE94QQ1707762189280 \N \N 1 0 0.00 0.00 \N \N \N +432 R203232311 19.99 24.99 delivery 0.00 \N \N 731 732 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:28:50.544417 2024-02-12 18:29:09.846504 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JxLXnFr_YJYRDhV3boK-xg1707762530536 \N \N 1 0 0.00 0.00 \N \N \N +427 R135647489 19.99 24.99 delivery 0.00 \N \N 721 722 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:24:06.038755 2024-02-12 18:24:25.585134 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UPdb5n05lm0rWgWjnHpWOw1707762246028 \N \N 1 0 0.00 0.00 \N \N \N +438 R255061061 19.99 24.99 delivery 0.00 \N \N 743 744 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:34:31.610476 2024-02-12 18:34:51.032774 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JtIOkTglHhcUesyrY35ZUw1707762871601 \N \N 1 0 0.00 0.00 \N \N \N +430 R826816647 19.99 24.99 delivery 0.00 \N \N 727 728 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:26:56.955205 2024-02-12 18:27:16.39656 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f drLKg5-te4B5_kFvZSJ5eA1707762416946 \N \N 1 0 0.00 0.00 \N \N \N +441 R700231773 19.99 24.99 delivery 0.00 \N \N 749 750 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:37:22.363872 2024-02-12 18:37:41.614416 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oWE-SVJgxykUYIZnI2aP4w1707763042355 \N \N 1 0 0.00 0.00 \N \N \N +428 R772039243 19.99 24.99 delivery 0.00 \N \N 723 724 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:25:03.154644 2024-02-12 18:25:22.549776 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f QFw66Ogo8TxPjxQOcL21zA1707762303145 \N \N 1 0 0.00 0.00 \N \N \N +446 R059229288 19.99 24.99 delivery 0.00 \N \N 759 760 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:42:06.604163 2024-02-12 18:42:25.92904 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hwL55E-rj3oG_VH-AW0K_A1707763326596 \N \N 1 0 0.00 0.00 \N \N \N +440 R542846855 19.99 24.99 delivery 0.00 \N \N 747 748 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:36:25.410733 2024-02-12 18:36:44.807598 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 12KOLzJVMyU7Vl_vmr-Rkg1707762985401 \N \N 1 0 0.00 0.00 \N \N \N +433 R144405111 19.99 24.99 delivery 0.00 \N \N 733 734 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:29:47.328244 2024-02-12 18:30:06.673332 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -784CDjaLQJXuZzxLTUZug1707762587319 \N \N 1 0 0.00 0.00 \N \N \N +431 R992265708 19.99 24.99 delivery 0.00 \N \N 729 730 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:27:53.793722 2024-02-12 18:28:13.051159 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 7AnQTdNnj66WOtH_P4NHoQ1707762473784 \N \N 1 0 0.00 0.00 \N \N \N +429 R048211639 19.99 24.99 delivery 0.00 \N \N 725 726 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:26:00.120837 2024-02-12 18:26:19.425114 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f R_8Gn6rXZK_tSlYild-i0Q1707762360113 \N \N 1 0 0.00 0.00 \N \N \N +435 R675470273 19.99 24.99 delivery 0.00 \N \N 737 738 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:31:41.015502 2024-02-12 18:32:00.271002 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JFYghl4AnLmc4pa-nQtP-Q1707762701005 \N \N 1 0 0.00 0.00 \N \N \N +437 R603383240 19.99 24.99 delivery 0.00 \N \N 741 742 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:33:34.905986 2024-02-12 18:33:54.290221 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f G4Aa4MtnT8rJ6RrbHW-HLw1707762814897 \N \N 1 0 0.00 0.00 \N \N \N +434 R617674423 19.99 24.99 delivery 0.00 \N \N 735 736 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:30:44.165565 2024-02-12 18:31:03.542209 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Xp9W4P4WpJ9WIQvvwRhJMw1707762644157 \N \N 1 0 0.00 0.00 \N \N \N +439 R497673876 19.99 24.99 delivery 0.00 \N \N 745 746 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:35:28.573585 2024-02-12 18:35:47.859644 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f UAWQtIB_ZDjQP2D-Vz_5LA1707762928565 \N \N 1 0 0.00 0.00 \N \N \N +436 R105895328 19.99 24.99 delivery 0.00 \N \N 739 740 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:32:37.97975 2024-02-12 18:32:57.333635 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f KSMpqdn5b8f5RnzM_rb45w1707762757971 \N \N 1 0 0.00 0.00 \N \N \N +448 R039503100 19.99 24.99 delivery 0.00 \N \N 763 764 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:44:00.351762 2024-02-12 18:44:19.539293 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f N_N6D8HV959lhWutd6q0rA1707763440343 \N \N 1 0 0.00 0.00 \N \N \N +443 R941044617 19.99 24.99 delivery 0.00 \N \N 753 754 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:39:15.851788 2024-02-12 18:39:35.388984 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pEehR0HHaVuBz7FCTbkPYg1707763155843 \N \N 1 0 0.00 0.00 \N \N \N +442 R934828629 19.99 24.99 delivery 0.00 \N \N 751 752 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:38:19.16791 2024-02-12 18:38:38.497655 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f e0gRpAd6KFbb8Fxi1tCvbg1707763099160 \N \N 1 0 0.00 0.00 \N \N \N +444 R733531291 19.99 24.99 delivery 0.00 \N \N 755 756 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:40:12.888342 2024-02-12 18:40:32.246611 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f BFPZ7L6HuG_miPyG8mVBSw1707763212880 \N \N 1 0 0.00 0.00 \N \N \N +447 R372771732 19.99 24.99 delivery 0.00 \N \N 761 762 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:43:03.411542 2024-02-12 18:43:23.026775 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vAJsEM1IzEMRXh12tSL3Xg1707763383403 \N \N 1 0 0.00 0.00 \N \N \N +445 R094464551 19.99 24.99 delivery 0.00 \N \N 757 758 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:41:09.841426 2024-02-12 18:41:29.199343 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Bz5iFIYYTcqIhxST9K46yg1707763269833 \N \N 1 0 0.00 0.00 \N \N \N +449 R455704270 19.99 24.99 delivery 0.00 \N \N 765 766 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:44:56.869472 2024-02-12 18:45:16.2367 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f v8sCK8hFpdJlOVhJL7MCZQ1707763496860 \N \N 1 0 0.00 0.00 \N \N \N +450 R490544977 19.99 24.99 delivery 0.00 \N \N 767 768 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:45:53.701798 2024-02-12 18:46:12.977432 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rwwrXDpIMvBGRY-y6DZi7Q1707763553693 \N \N 1 0 0.00 0.00 \N \N \N +451 R889225253 19.99 24.99 delivery 0.00 \N \N 769 770 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:46:50.818024 2024-02-12 18:47:10.287848 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GyN8ChFdlCo14nD1Zi6Ksg1707763610810 \N \N 1 0 0.00 0.00 \N \N \N +452 R563349899 19.99 24.99 delivery 0.00 \N \N 771 772 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:47:47.519533 2024-02-12 18:48:06.974605 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wnAEhBb_64E2JFhVxHcXyQ1707763667512 \N \N 1 0 0.00 0.00 \N \N \N +453 R040911749 19.99 24.99 delivery 0.00 \N \N 773 774 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:48:44.361844 2024-02-12 18:49:03.577243 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CTW2U3stXI6NB1YDFBfsWg1707763724353 \N \N 1 0 0.00 0.00 \N \N \N +454 R095356470 19.99 24.99 delivery 0.00 \N \N 775 776 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:49:41.063865 2024-02-12 18:50:00.352357 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 9o55DFh9XSIlaHUvGaDX_g1707763781056 \N \N 1 0 0.00 0.00 \N \N \N +461 R373061892 19.99 24.99 delivery 0.00 \N \N 789 790 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:56:19.448063 2024-02-12 18:56:38.878561 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f XED1ivezZdzBHBHGX6M7AQ1707764179439 \N \N 1 0 0.00 0.00 \N \N \N +772 R461859259 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:36:37.530039 2024-02-12 22:36:48.444071 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f f6aDRHxjSyKdP2TT91bizg1707777397522 \N \N 1 0 0.00 0.00 \N \N \N +467 R239428907 19.99 24.99 delivery 0.00 \N \N 801 802 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:02:00.636306 2024-02-12 19:02:19.922064 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f XFsgOsT9KiLmJM8Q8BeGtw1707764520627 \N \N 1 0 0.00 0.00 \N \N \N +676 R707313624 30.00 35.00 complete 0.00 \N 2024-02-12 22:09:20.980576 2675 2676 0.00 pending balance_due nshilliday22@flavors.me \N 2024-02-12 22:05:55.408787 2024-02-12 22:09:20.980576 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f Z4wkrimHMftRt5NWPPhymg1707775555379 \N \N 1 0 0.00 0.00 \N \N \N +465 R369545139 19.99 24.99 delivery 0.00 \N \N 797 798 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:00:07.03656 2024-02-12 19:00:26.353213 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f q2cAH74DcP8H96381rkdwg1707764407027 \N \N 1 0 0.00 0.00 \N \N \N +455 R104590161 19.99 24.99 delivery 0.00 \N \N 777 778 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:50:38.015661 2024-02-12 18:50:57.494841 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6dB8owUpU8A9sGSHEJ8Fdg1707763838006 \N \N 1 0 0.00 0.00 \N \N \N +474 R542828775 19.99 24.99 delivery 0.00 \N \N 815 816 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:08:38.871587 2024-02-12 19:08:58.118629 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f dNMFa81VeTIZyjl4FzRWlQ1707764918863 \N \N 1 0 0.00 0.00 \N \N \N +463 R642988811 19.99 24.99 delivery 0.00 \N \N 793 794 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:58:13.393088 2024-02-12 18:58:32.63948 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zsltykfPnUnodWtXg_JLzw1707764293385 \N \N 1 0 0.00 0.00 \N \N \N +473 R707542971 19.99 24.99 delivery 0.00 \N \N 813 814 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:07:41.901022 2024-02-12 19:08:01.295101 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f XIV_cHmn6Vld1VTX1JzgGA1707764861889 \N \N 1 0 0.00 0.00 \N \N \N +468 R707174053 19.99 24.99 delivery 0.00 \N \N 803 804 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:02:57.46052 2024-02-12 19:03:16.838703 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f T-y10ButlRmfWwo5T6nWug1707764577452 \N \N 1 0 0.00 0.00 \N \N \N +456 R127386903 19.99 24.99 delivery 0.00 \N \N 779 780 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:51:35.190282 2024-02-12 18:51:54.69103 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _5YrdNmKJP5AxpF3OjtOvA1707763895181 \N \N 1 0 0.00 0.00 \N \N \N +470 R311485708 19.99 24.99 delivery 0.00 \N \N 807 808 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:04:51.203932 2024-02-12 19:05:10.640767 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tEcuKFuj1oWQfhMYiyUACA1707764691196 \N \N 1 0 0.00 0.00 \N \N \N +466 R971817574 19.99 24.99 delivery 0.00 \N \N 799 800 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:01:03.862849 2024-02-12 19:01:23.247496 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Ait3bD56Y1U0JlON6Fe7OQ1707764463854 \N \N 1 0 0.00 0.00 \N \N \N +464 R329354884 19.99 24.99 delivery 0.00 \N \N 795 796 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 18:59:10.187003 2024-02-12 18:59:29.520628 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JiX-xgeFlh0gwvkVITTt5Q1707764350179 \N \N 1 0 0.00 0.00 \N \N \N +774 R450337698 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:37:41.868586 2024-02-12 22:38:06.11276 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WAA_ZmBszqZFiBttQfzN_A1707777461861 \N \N 1 0 0.00 0.00 \N \N \N +479 R795144851 19.99 24.99 delivery 0.00 \N \N 825 826 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:13:23.18726 2024-02-12 19:13:42.693948 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f jVf6QzD6iAmcTWQZZ7yjUg1707765203178 \N \N 1 0 0.00 0.00 \N \N \N +469 R334898170 19.99 24.99 delivery 0.00 \N \N 805 806 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:03:54.328157 2024-02-12 19:04:13.715342 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xHvXqpa9FTGO7CeB93G_8Q1707764634319 \N \N 1 0 0.00 0.00 \N \N \N +472 R561182518 19.99 24.99 delivery 0.00 \N \N 811 812 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:06:44.89735 2024-02-12 19:07:04.305988 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f kSbpL2i_dN6ssNHT07ahgw1707764804889 \N \N 1 0 0.00 0.00 \N \N \N +471 R316301560 19.99 24.99 delivery 0.00 \N \N 809 810 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:05:48.018887 2024-02-12 19:06:07.378413 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oYko80ppzev0TQ7bEu2L_Q1707764748011 \N \N 1 0 0.00 0.00 \N \N \N +481 R843519445 19.99 24.99 delivery 0.00 \N \N 829 830 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:15:17.297469 2024-02-12 19:15:36.683052 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5DFc15gPnX3XVZCy8uex3w1707765317277 \N \N 1 0 0.00 0.00 \N \N \N +476 R537248014 19.99 24.99 delivery 0.00 \N \N 819 820 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:10:32.54731 2024-02-12 19:10:51.928346 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2ZxV_4BZOI2OwEq9aPYu4g1707765032536 \N \N 1 0 0.00 0.00 \N \N \N +475 R795123548 19.99 24.99 delivery 0.00 \N \N 817 818 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:09:35.716054 2024-02-12 19:09:55.103371 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f U5-cb9DOYJOPSojXWxdb1Q1707764975708 \N \N 1 0 0.00 0.00 \N \N \N +477 R091846131 19.99 24.99 delivery 0.00 \N \N 821 822 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:11:29.487908 2024-02-12 19:11:48.889702 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f v0IjLgS1-lrbsTo1KLJZ6w1707765089479 \N \N 1 0 0.00 0.00 \N \N \N +480 R901611240 19.99 24.99 delivery 0.00 \N \N 827 828 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:14:20.229418 2024-02-12 19:14:39.644935 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xyb6Ri17Z4fX3auYVqd5iw1707765260221 \N \N 1 0 0.00 0.00 \N \N \N +478 R605404771 19.99 24.99 delivery 0.00 \N \N 823 824 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:12:26.40112 2024-02-12 19:12:45.725981 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hH8-79xYw5Aapn0enYSSlw1707765146393 \N \N 1 0 0.00 0.00 \N \N \N +482 R297368084 19.99 24.99 delivery 0.00 \N \N 831 832 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:16:14.196687 2024-02-12 19:16:33.512951 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f -B5WuBX4wpdshlwIPnHo1w1707765374187 \N \N 1 0 0.00 0.00 \N \N \N +483 R055496448 19.99 24.99 delivery 0.00 \N \N 833 834 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:17:11.05773 2024-02-12 19:17:30.348999 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f sN7iK2pS_Uv2UaVkR7iPAw1707765431050 \N \N 1 0 0.00 0.00 \N \N \N +484 R834202208 19.99 24.99 delivery 0.00 \N \N 835 836 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:18:07.890429 2024-02-12 19:18:27.236742 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f wIFG6rv4U5mq6CQ8uXn3CA1707765487881 \N \N 1 0 0.00 0.00 \N \N \N +485 R509480154 19.99 24.99 delivery 0.00 \N \N 837 838 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:19:04.753972 2024-02-12 19:19:24.119741 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GwKxLgcYJakkygbfw3V__A1707765544745 \N \N 1 0 0.00 0.00 \N \N \N +486 R169317276 19.99 24.99 delivery 0.00 \N \N 839 840 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:20:01.592362 2024-02-12 19:20:20.829788 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Rerwff-rETOcKYq6wkYxyA1707765601583 \N \N 1 0 0.00 0.00 \N \N \N +487 R685676040 19.99 24.99 delivery 0.00 \N \N 841 842 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:20:58.301975 2024-02-12 19:21:17.590082 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3sUqSN8NAKy4z6Ulj5tf5w1707765658294 \N \N 1 0 0.00 0.00 \N \N \N +490 R226727922 19.99 24.99 delivery 0.00 \N \N 847 848 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:23:49.467205 2024-02-12 19:24:08.871136 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PeuwlFuPCZ1Uehk8p4sZQQ1707765829459 \N \N 1 0 0.00 0.00 \N \N \N +500 R529693711 19.99 24.99 delivery 0.00 \N \N 867 868 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:33:20.44599 2024-02-12 19:33:39.837549 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0RsHsyHKzCuVWjApLl3kqA1707766400436 \N \N 1 0 0.00 0.00 \N \N \N +687 R714788991 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:09:12.785123 2024-02-12 22:09:37.422433 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Qq1YeudekNgW3eoGUy2oyg1707775752777 \N \N 1 0 0.00 0.00 \N \N \N +488 R997640778 19.99 24.99 delivery 0.00 \N \N 843 844 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:21:55.281018 2024-02-12 19:22:14.849758 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f T656K9-RTywqi3e0xdvGhA1707765715270 \N \N 1 0 0.00 0.00 \N \N \N +495 R092314358 19.99 24.99 delivery 0.00 \N \N 857 858 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:28:34.976429 2024-02-12 19:28:54.286971 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f YTwX_1Tl339JiKxEui2-vw1707766114968 \N \N 1 0 0.00 0.00 \N \N \N +716 R383113760 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:18:19.182878 2024-02-12 22:18:40.487229 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f wIZ54oxPnrmDKYZOYaC9FQ1707776299156 \N \N 1 0 0.00 0.00 \N \N \N +497 R207056632 19.99 24.99 delivery 0.00 \N \N 861 862 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:30:29.12971 2024-02-12 19:30:48.643039 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 38YZVPESGAI-iCmakmGSpQ1707766229120 \N \N 1 0 0.00 0.00 \N \N \N +493 R094371406 19.99 24.99 delivery 0.00 \N \N 853 854 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:26:40.93199 2024-02-12 19:27:00.535815 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 7jPzk-9yd-OhR-bEU94zCA1707766000923 \N \N 1 0 0.00 0.00 \N \N \N +491 R559349866 19.99 24.99 delivery 0.00 \N \N 849 850 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:24:46.609513 2024-02-12 19:25:05.99998 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f vq5y_TOKuCSU9yCVKNE8vg1707765886601 \N \N 1 0 0.00 0.00 \N \N \N +630 R094437650 3.50 8.50 complete 0.00 \N 2024-02-12 21:53:32.086242 2545 2546 0.00 pending balance_due dheyballn@zimbio.com \N 2024-02-12 21:52:18.859431 2024-02-12 21:53:32.086242 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f n5ubRoikZggxLExSfdBeSw1707774738851 \N \N 1 0 0.00 0.00 \N \N \N +489 R782672857 19.99 24.99 delivery 0.00 \N \N 845 846 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:22:52.39377 2024-02-12 19:23:11.658674 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rCPTzpDlfd4Rqbosd7xXQw1707765772385 \N \N 1 0 0.00 0.00 \N \N \N +508 R871649810 19.99 24.99 delivery 0.00 \N \N 883 884 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:40:56.728947 2024-02-12 19:41:16.10268 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f tYPf5qQkFISCEC-OfwSvEQ1707766856718 \N \N 1 0 0.00 0.00 \N \N \N +499 R547228966 19.99 24.99 delivery 0.00 \N \N 865 866 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:32:23.366999 2024-02-12 19:32:42.733746 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f HXinTRhZC-ULquVNMQ0CHw1707766343357 \N \N 1 0 0.00 0.00 \N \N \N +504 R104702771 19.99 24.99 delivery 0.00 \N \N 875 876 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:37:08.741903 2024-02-12 19:37:28.063933 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ip4tdfGvzqE8tWqTQomGjQ1707766628733 \N \N 1 0 0.00 0.00 \N \N \N +492 R163265825 19.99 24.99 delivery 0.00 \N \N 851 852 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:25:43.761609 2024-02-12 19:26:03.190714 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Uvoj9aLWoaPiDuIVv9EWUA1707765943752 \N \N 1 0 0.00 0.00 \N \N \N +494 R521565682 19.99 24.99 delivery 0.00 \N \N 855 856 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:27:37.963508 2024-02-12 19:27:57.468555 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MsXxG1cgA6UxgSg-xDaMrw1707766057955 \N \N 1 0 0.00 0.00 \N \N \N +496 R586855955 19.99 24.99 delivery 0.00 \N \N 859 860 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:29:32.052913 2024-02-12 19:29:51.349942 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2S3GfJoEa4xv2oyvI4w7Zw1707766172044 \N \N 1 0 0.00 0.00 \N \N \N +503 R950956768 19.99 24.99 delivery 0.00 \N \N 873 874 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:36:11.667947 2024-02-12 19:36:30.971171 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f fFaf7XhNyEIF7u1gFT7nDg1707766571660 \N \N 1 0 0.00 0.00 \N \N \N +498 R434396311 19.99 24.99 delivery 0.00 \N \N 863 864 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:31:26.452851 2024-02-12 19:31:45.705327 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 05cYBg2wGf9LuFF_yZ-KhA1707766286445 \N \N 1 0 0.00 0.00 \N \N \N +502 R060550043 19.99 24.99 delivery 0.00 \N \N 871 872 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:35:14.605138 2024-02-12 19:35:33.972113 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gMU4-k9rjj3-FXlxVuAtqg1707766514595 \N \N 1 0 0.00 0.00 \N \N \N +501 R378822675 19.99 24.99 delivery 0.00 \N \N 869 870 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:34:17.381865 2024-02-12 19:34:36.932435 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JUpH1kwxurQC4rgWp8tQtQ1707766457374 \N \N 1 0 0.00 0.00 \N \N \N +505 R746076154 19.99 24.99 delivery 0.00 \N \N 877 878 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:38:05.582592 2024-02-12 19:38:25.086876 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Dn6xZbq8lLbl4WBSo7y6mg1707766685575 \N \N 1 0 0.00 0.00 \N \N \N +506 R596535621 19.99 24.99 delivery 0.00 \N \N 879 880 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:39:02.606993 2024-02-12 19:39:21.869543 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f xBatg8xTgOW9_OhhYlewYA1707766742599 \N \N 1 0 0.00 0.00 \N \N \N +511 R451783788 19.99 24.99 delivery 0.00 \N \N 889 890 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:43:47.733555 2024-02-12 19:44:07.106239 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 25T4tft67detnrwWHQCtdw1707767027725 \N \N 1 0 0.00 0.00 \N \N \N +507 R706829992 19.99 24.99 delivery 0.00 \N \N 881 882 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:39:59.557378 2024-02-12 19:40:19.128958 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6uX7_W7bP1iEzhqBOCS2cg1707766799549 \N \N 1 0 0.00 0.00 \N \N \N +509 R444411263 19.99 24.99 delivery 0.00 \N \N 885 886 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:41:53.830827 2024-02-12 19:42:13.217687 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PkLkcxr8cCig8hvIRLSFTQ1707766913822 \N \N 1 0 0.00 0.00 \N \N \N +510 R668493879 19.99 24.99 delivery 0.00 \N \N 887 888 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:42:50.868725 2024-02-12 19:43:10.203678 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f hMBZ15gEFsVwsENAjuC8Sw1707766970859 \N \N 1 0 0.00 0.00 \N \N \N +512 R293378578 19.99 24.99 delivery 0.00 \N \N 891 892 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:44:44.686166 2024-02-12 19:45:04.091821 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f CCzx1T4G565wOFbqKmCrvw1707767084677 \N \N 1 0 0.00 0.00 \N \N \N +513 R394851056 19.99 24.99 delivery 0.00 \N \N 893 894 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:45:41.934879 2024-02-12 19:46:01.460551 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f c0YrYeuvGpawd71oNgWjWQ1707767141926 \N \N 1 0 0.00 0.00 \N \N \N +514 R358733366 19.99 24.99 delivery 0.00 \N \N 895 896 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:46:38.934436 2024-02-12 19:46:58.214267 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f rJt8P_rp2iGWMe4fuDXiSQ1707767198926 \N \N 1 0 0.00 0.00 \N \N \N +515 R001084081 19.99 24.99 delivery 0.00 \N \N 897 898 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:47:35.781013 2024-02-12 19:47:55.170468 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GA1ZaUBFil5Epp5r5H8okA1707767255773 \N \N 1 0 0.00 0.00 \N \N \N +552 R658686660 14.99 19.99 delivery 0.00 \N \N 2339 2340 0.00 \N \N nkhan1m@globo.com \N 2024-02-12 20:25:01.813259 2024-02-12 21:24:22.979257 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 5F2zsXM8WBVBjVv4KVZgvA1707769501788 \N \N 1 0 0.00 0.00 \N \N \N +518 R008589215 19.99 24.99 delivery 0.00 \N \N 903 904 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:50:26.671545 2024-02-12 19:50:46.24187 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PQO5eLnvq0FnNrwuUGCF-w1707767426662 \N \N 1 0 0.00 0.00 \N \N \N +732 R948252069 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:23:11.369301 2024-02-12 22:23:35.725819 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f dbYdDGyFMcSo0A2vg5xQlQ1707776591362 \N \N 1 0 0.00 0.00 \N \N \N +717 R025171265 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:18:22.480526 2024-02-12 22:18:46.686632 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f TwIKCRz3mFkkrTFBxfwHjg1707776302473 \N \N 1 0 0.00 0.00 \N \N \N +562 R689553387 31.00 36.00 delivery 0.00 \N \N 2359 2360 0.00 \N \N mbordiss1h@eventbrite.com \N 2024-02-12 21:26:10.043453 2024-02-12 21:27:03.381794 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f 4H0qUy6uJRG82o0--y9iBA1707773170033 \N \N 1 0 0.00 0.00 \N \N \N +516 R163964227 19.99 24.99 delivery 0.00 \N \N 899 900 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:48:32.808042 2024-02-12 19:48:52.143751 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Rjw0ybSmM0ahU6clvrW8PQ1707767312801 \N \N 1 0 0.00 0.00 \N \N \N +558 R867932058 35.82 40.82 complete 0.00 \N 2024-02-12 21:29:18.52798 2379 2380 0.00 pending balance_due kbraven4@google.ca \N 2024-02-12 21:26:04.818867 2024-02-12 21:29:18.52798 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f WDY9Hs0ceEiBYLua68lRhg1707773164808 \N \N 1 0 0.00 0.00 \N \N \N +731 R368312538 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:23:04.466806 2024-02-12 22:23:29.244373 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Kw0fwi_YwLVhDV7mn30Gww1707776584458 \N \N 1 0 0.00 0.00 \N \N \N +566 R272024828 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:29:18.859682 2024-02-12 21:29:19.015347 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f BlLVmMaGDeTl6FPdBVnoRw1707773358851 \N \N 1 0 0.00 0.00 \N \N \N +520 R124741037 19.99 24.99 delivery 0.00 \N \N 907 908 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:52:21.029043 2024-02-12 19:52:40.338171 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6fEldHFsAhOYFmndlSIUUg1707767541020 \N \N 1 0 0.00 0.00 \N \N \N +744 R029334388 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:27:17.654733 2024-02-12 22:27:17.837908 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 6M7WEvWSP5FRB42o3P1nYw1707776837646 \N \N 1 0 0.00 0.00 \N \N \N +517 R832175526 19.99 24.99 delivery 0.00 \N \N 901 902 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:49:29.787224 2024-02-12 19:49:49.165572 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f KuDBOdFzQ3roL2-kA1RPxg1707767369778 \N \N 1 0 0.00 0.00 \N \N \N +631 R258803788 23.34 28.34 complete 0.00 \N 2024-02-12 21:54:24.231612 2563 2564 0.00 pending balance_due hpyrke1s@vk.com \N 2024-02-12 21:52:21.832158 2024-02-12 21:54:24.231612 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f wG-Dt-4tDAclGQeVZqUTYQ1707774741825 \N \N 1 0 0.00 0.00 \N \N \N +635 R511212988 13.49 18.49 complete 0.00 \N 2024-02-12 21:54:08.049766 2559 2560 0.00 pending balance_due mshimonic@ucsd.edu \N 2024-02-12 21:52:28.29289 2024-02-12 21:54:08.049766 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f y7wMBznuEHjPTLqYEOhvYw1707774748284 \N \N 1 0 0.00 0.00 \N \N \N +549 R102410401 79.95 84.95 complete 0.00 \N 2024-02-12 20:24:08.08911 995 996 0.00 pending balance_due voverill5@ebay.co.uk \N 2024-02-12 20:21:53.806503 2024-02-12 20:24:08.08911 USD \N \N 5.00 0.00 0.00 spree 0.00 5 \N \N t f OMvnOJgH-8vHM1Sv3-sryw1707769313797 \N \N 1 0 0.00 0.00 \N \N \N +551 R175993000 19.99 24.99 complete 0.00 \N 2024-02-12 20:26:00.037359 999 1000 0.00 pending balance_due csainteauy@vk.com \N 2024-02-12 20:24:40.460414 2024-02-12 20:26:00.037359 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f BA3G5Pj4ib7KzSIZn-wYyw1707769480450 \N \N 1 0 0.00 0.00 \N \N \N +572 R368280835 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:31:28.955941 2024-02-12 21:31:40.938136 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f xXF9Dw__itZyI2hEk7o3_w1707773488948 \N \N 1 0 0.00 0.00 \N \N \N +569 R126163984 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:31:25.502862 2024-02-12 21:32:35.854855 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f PjTKh8-PMRGOefjk251yKg1707773485494 \N \N 1 0 0.00 0.00 \N \N \N +570 R804956393 23.97 28.97 complete 0.00 \N 2024-02-12 21:32:57.788323 2391 2392 0.00 pending balance_due dkitson1j@cnbc.com \N 2024-02-12 21:31:27.330097 2024-02-12 21:32:57.788323 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f BbjCcfCPsiwfJFnpCyJkpg1707773487323 \N \N 1 0 0.00 0.00 \N \N \N +629 R510705379 35.90 40.90 complete 0.00 \N 2024-02-12 21:54:15.44223 2569 2570 0.00 pending balance_due mpriestman9@goodreads.com \N 2024-02-12 21:52:17.562306 2024-02-12 21:54:15.44223 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f jeX-DQmXo7RYVODzudOZBg1707774737554 \N \N 1 0 0.00 0.00 \N \N \N +640 R599196377 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:53:57.753497 2024-02-12 21:54:21.587802 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ewFs-X2YTw5W6OBK04UMhw1707774837746 \N \N 1 0 0.00 0.00 \N \N \N +641 R118936588 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:54:08.379082 2024-02-12 21:54:29.435588 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f OR3-LEyeIrV2GAqtKKwo_Q1707774848369 \N \N 1 0 0.00 0.00 \N \N \N +568 R221693391 49.97 54.97 complete 0.00 \N 2024-02-12 21:33:19.238728 2399 2400 0.00 pending balance_due akiossel1z@patch.com \N 2024-02-12 21:31:22.647116 2024-02-12 21:33:19.238728 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f 0fj0EbI-cD44E-pufY1YEQ1707773482637 \N \N 1 0 0.00 0.00 \N \N \N +653 R307660344 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:57:28.683522 2024-02-12 21:58:33.986858 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f LtcPoSnmZQVEu01NQSGr5g1707775048674 \N \N 1 0 0.00 0.00 \N \N \N +577 R822381296 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:32:58.023057 2024-02-12 21:33:22.384156 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ifM-ZIQHWFWsubonOWJ4QA1707773578004 \N \N 1 0 0.00 0.00 \N \N \N +574 R570078204 49.75 54.75 complete 0.00 \N 2024-02-12 21:33:23.277284 2401 2402 0.00 pending balance_due lgrigor1d@dedecms.com \N 2024-02-12 21:31:31.4871 2024-02-12 21:33:23.277284 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f -BTDt45HwUJsg61kDfdtlA1707773491478 \N \N 1 0 0.00 0.00 \N \N \N +580 R517897300 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:33:26.016379 2024-02-12 21:33:50.065629 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ZZKY4F6e7AvnEpdvq_Jr-w1707773606007 \N \N 1 0 0.00 0.00 \N \N \N +573 R765460322 29.99 34.99 complete 0.00 \N 2024-02-12 21:34:38.135237 2415 2416 0.00 pending balance_due wmaskreyq@ycombinator.com \N 2024-02-12 21:31:31.332355 2024-02-12 21:34:38.135237 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f HBA4OrAGNiR0tFQierMHfQ1707773491323 \N \N 1 0 0.00 0.00 \N \N \N +590 R254647979 38.98 43.98 complete 0.00 \N 2024-02-12 21:38:00.765344 2449 2450 0.00 pending balance_due cstivers19@eepurl.com \N 2024-02-12 21:36:19.775784 2024-02-12 21:38:00.765344 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f ujFVIA35bNhIoR46x0hnSw1707773779767 \N \N 1 0 0.00 0.00 \N \N \N +575 R725382695 21.97 26.97 address 0.00 \N \N 2419 2420 0.00 \N \N zyardyx@studiopress.com \N 2024-02-12 21:31:31.931188 2024-02-12 21:34:50.381113 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f NRy5nUJ6DN3AQgj3HVWjXA1707773491923 \N \N 1 0 0.00 0.00 \N \N \N +582 R471914446 19.99 24.99 delivery 0.00 \N \N 2447 2448 0.00 \N \N hedmands1@stanford.edu \N 2024-02-12 21:35:57.997803 2024-02-12 21:37:14.837356 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 6nxLYOmo-XqT_rmz0NK9qg1707773757982 \N \N 1 0 0.00 0.00 \N \N \N +587 R347102480 45.99 50.99 complete 0.00 \N 2024-02-12 21:38:09.34686 2455 2456 0.00 pending balance_due ecollar1o@bravesites.com \N 2024-02-12 21:36:16.555299 2024-02-12 21:38:09.34686 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f MhOuTqg4lJW2ALkgMF3nrw1707773776548 \N \N 1 0 0.00 0.00 \N \N \N +519 R567748269 19.99 24.99 delivery 0.00 \N \N 905 906 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:51:24.117725 2024-02-12 19:51:43.52557 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 1HlvIG7wx0zI77MddlfWBw1707767484105 \N \N 1 0 0.00 0.00 \N \N \N +540 R858565447 19.99 24.99 delivery 0.00 \N \N 949 950 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:11:20.653898 2024-02-12 20:11:40.070963 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f v-FE1-M3v2AlVOwjojm0zw1707768680626 \N \N 1 0 0.00 0.00 \N \N \N +523 R658919364 19.99 24.99 delivery 0.00 \N \N 913 914 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:55:11.631836 2024-02-12 19:55:31.013829 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VI15RtxZRoM-knqg0AmBwA1707767711624 \N \N 1 0 0.00 0.00 \N \N \N +533 R953729876 19.99 24.99 delivery 0.00 \N \N 933 934 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:04:41.125326 2024-02-12 20:05:00.439018 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f g41fQOf6JKoB_TlHRSPX0g1707768281117 \N \N 1 0 0.00 0.00 \N \N \N +64 R364396888 39.98 44.98 delivery 0.00 \N \N 997 998 0.00 \N \N fdesport1l@whitehouse.gov \N 2024-02-09 22:50:56.909564 2024-02-12 20:24:42.494492 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f oQ7uWI-Hs2vRx_4UTy7mTw1707519056899 \N \N 1 0 0.00 0.00 \N \N \N +521 R907901474 19.99 24.99 delivery 0.00 \N \N 909 910 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:53:17.865515 2024-02-12 19:53:37.246504 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f cl3dUgdRlDoAXs6DvDDX2Q1707767597856 \N \N 1 0 0.00 0.00 \N \N \N +528 R310030734 19.99 24.99 delivery 0.00 \N \N 923 924 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:59:56.323979 2024-02-12 20:00:15.700869 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f zHDQYS0Z9MKAu1lM7CIoDQ1707767996315 \N \N 1 0 0.00 0.00 \N \N \N +550 R276219107 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:24:08.351002 2024-02-12 20:24:32.314515 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f dA-jqido0QtmGCyExUzD4A1707769448334 \N \N 1 0 0.00 0.00 \N \N \N +530 R702940466 19.99 24.99 delivery 0.00 \N \N 927 928 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:01:50.30035 2024-02-12 20:02:09.61474 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f nrLvow205bGvzL_10ngbvw1707768110292 \N \N 1 0 0.00 0.00 \N \N \N +526 R902682193 19.99 24.99 delivery 0.00 \N \N 919 920 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:58:02.378227 2024-02-12 19:58:21.763339 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f pEYI0Bxxes7cFny3vmoLhQ1707767882368 \N \N 1 0 0.00 0.00 \N \N \N +524 R314657910 19.99 24.99 delivery 0.00 \N \N 915 916 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:56:08.560477 2024-02-12 19:56:27.770716 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f Uwl906prYYm6IrRlZWV3Cw1707767768552 \N \N 1 0 0.00 0.00 \N \N \N +522 R329450347 19.99 24.99 delivery 0.00 \N \N 911 912 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:54:14.746086 2024-02-12 19:54:34.105524 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f oqv12m1CSEuuu-DIw3bhFw1707767654737 \N \N 1 0 0.00 0.00 \N \N \N +764 R251259737 5.99 10.99 complete 0.00 \N 2024-02-12 22:37:38.952398 2877 2878 0.00 pending balance_due pweemsa@alexa.com \N 2024-02-12 22:36:27.580752 2024-02-12 22:37:38.952398 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f QJcBBlbaP0-VOWduDKeLdQ1707777387573 \N \N 1 0 0.00 0.00 \N \N \N +532 R521954950 19.99 24.99 delivery 0.00 \N \N 931 932 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:03:44.310161 2024-02-12 20:04:03.573512 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f qo0jX98M1APH4hWTKxJdSA1707768224302 \N \N 1 0 0.00 0.00 \N \N \N +537 R628264820 19.99 24.99 delivery 0.00 \N \N 941 942 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:08:29.514828 2024-02-12 20:08:49.103557 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f O1sJ8-iPOV4RhqOaJvQC_w1707768509505 \N \N 1 0 0.00 0.00 \N \N \N +525 R571870200 19.99 24.99 delivery 0.00 \N \N 917 918 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:57:05.230396 2024-02-12 19:57:24.477307 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f FyM1qpoOQm9cnx88LJOv7w1707767825222 \N \N 1 0 0.00 0.00 \N \N \N +527 R099978310 19.99 24.99 delivery 0.00 \N \N 921 922 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 19:58:59.394035 2024-02-12 19:59:18.813258 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f L9YQidgQKT9k_iYIK_3_ug1707767939386 \N \N 1 0 0.00 0.00 \N \N \N +560 R911444544 9.99 14.99 delivery 0.00 \N \N 2371 2372 0.00 \N \N mwyss10@nymag.com \N 2024-02-12 21:26:08.317159 2024-02-12 21:27:29.39587 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 19HQ7kkxw8BgY5VYFLK7PQ1707773168307 \N \N 1 0 0.00 0.00 \N \N \N +529 R222683768 19.99 24.99 delivery 0.00 \N \N 925 926 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:00:53.276139 2024-02-12 20:01:12.616536 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f F0CXq9DgAGF5gJ_RdA_H1Q1707768053267 \N \N 1 0 0.00 0.00 \N \N \N +536 R885136812 19.99 24.99 delivery 0.00 \N \N 939 940 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:07:31.837778 2024-02-12 20:07:51.157344 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f RbxaJcIsE4PhMT6-S-sYaQ1707768451829 \N \N 1 0 0.00 0.00 \N \N \N +531 R080895332 19.99 24.99 delivery 0.00 \N \N 929 930 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:02:47.26359 2024-02-12 20:03:06.732932 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f _yjQnBQLk4g9WV7v8jSiXQ1707768167255 \N \N 1 0 0.00 0.00 \N \N \N +535 R118925589 19.99 24.99 delivery 0.00 \N \N 937 938 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:06:34.820692 2024-02-12 20:06:54.273641 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f MEOI76Z1gFeH6arKV16_9A1707768394812 \N \N 1 0 0.00 0.00 \N \N \N +534 R835807105 19.99 24.99 delivery 0.00 \N \N 935 936 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:05:37.904178 2024-02-12 20:05:57.285167 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yqjI--mr3PJP8kgdH8DkPw1707768337895 \N \N 1 0 0.00 0.00 \N \N \N +538 R778526418 19.99 24.99 delivery 0.00 \N \N 943 944 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:09:26.511586 2024-02-12 20:09:45.873343 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f v7jj-6A6OHrxmIJa1tt0Cg1707768566503 \N \N 1 0 0.00 0.00 \N \N \N +539 R532133061 19.99 24.99 delivery 0.00 \N \N 945 946 0.00 \N \N jade@ddtraining.datadoghq.com \N 2024-02-12 20:10:23.444378 2024-02-12 20:10:42.855528 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f PK661cwyAMYdtsOCbhvATA1707768623434 \N \N 1 0 0.00 0.00 \N \N \N +542 R355852266 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:14:35.094765 2024-02-12 20:14:55.501346 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f JvorkzhylbLYmWpZt9CKrQ1707768875082 \N \N 1 0 0.00 0.00 \N \N \N +541 R518908861 61.96 66.96 complete 0.00 \N 2024-02-12 20:14:34.705154 959 960 0.00 pending balance_due jade@ddtraining.datadoghq.com \N 2024-02-12 20:12:18.146516 2024-02-12 20:14:34.705154 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N t f H9jqZXRUcbj8CImJDp4eLQ1707768738136 \N \N 1 0 0.00 0.00 \N \N \N +543 R750324907 29.98 34.98 complete 0.00 \N 2024-02-12 20:16:13.927448 963 964 0.00 pending balance_due jade@ddtraining.datadoghq.com \N 2024-02-12 20:15:03.496016 2024-02-12 20:16:13.927448 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f YRX9PGeomW4T1wsIvPxrMg1707768903488 \N \N 1 0 0.00 0.00 \N \N \N +544 R661742728 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:16:14.1248 2024-02-12 20:16:38.528103 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f GYGLDSW3TWvlJzsHeYqBsA1707768974117 \N \N 1 0 0.00 0.00 \N \N \N +545 R309314539 47.97 52.97 complete 0.00 \N 2024-02-12 20:18:53.139595 969 970 0.00 pending balance_due jade@ddtraining.datadoghq.com \N 2024-02-12 20:16:46.548737 2024-02-12 20:18:53.139595 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f DjOkyWe5ah9CviQgecl08g1707769006539 \N \N 1 0 0.00 0.00 \N \N \N +675 R371225997 62.96 67.96 address 0.00 \N \N 2689 2690 0.00 \N \N lgeneses@eventbrite.com \N 2024-02-12 22:05:45.403857 2024-02-12 22:10:18.148591 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N f f 8h5sCJoCqGzBJ4XzQhS34A1707775545395 \N \N 1 0 0.00 0.00 \N \N \N +546 R166679915 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:18:53.426649 2024-02-12 20:19:14.385146 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f o2dN9dWP1qBQapr4ZLDbSg1707769133418 \N \N 1 0 0.00 0.00 \N \N \N +547 R681572809 35.97 40.97 complete 0.00 \N 2024-02-12 20:21:24.334976 979 980 0.00 pending balance_due ho2m@abc.net.au \N 2024-02-12 20:19:22.578065 2024-02-12 20:21:24.334976 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f jhEMpE-RLxyYUV_vN9eiPw1707769162569 \N \N 1 0 0.00 0.00 \N \N \N +553 R380990190 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 20:26:00.233343 2024-02-12 20:26:00.343422 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f A6ZsCAgubzmRfeHhL6RZAw1707769560226 \N \N 1 0 0.00 0.00 \N \N \N +555 R105636621 26.48 31.48 complete 0.00 \N 2024-02-12 21:28:08.719693 2361 2362 0.00 pending balance_due voverill5@ebay.co.uk \N 2024-02-12 21:25:59.338133 2024-02-12 21:28:08.719693 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f YmUsj9R0Q7sxkHLW0kpDbg1707773159329 \N \N 1 0 0.00 0.00 \N \N \N +559 R632589393 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:26:07.725451 2024-02-12 21:26:21.478171 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f s8DGeq9Pf98hmnYRz-BYQg1707773167715 \N \N 1 0 0.00 0.00 \N \N \N +561 R661079017 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:26:09.504272 2024-02-12 21:26:25.097708 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Kr6-QNis3nbOTaP58sXZBA1707773169494 \N \N 1 0 0.00 0.00 \N \N \N +557 R772220856 30.97 35.97 delivery 0.00 \N \N 2365 2366 0.00 \N \N mwallbrookr@craigslist.org \N 2024-02-12 21:26:04.561723 2024-02-12 21:27:08.233627 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f ZQZZFHKH066Wp12FgpAA1A1707773164551 \N \N 1 0 0.00 0.00 \N \N \N +628 R484849491 34.83 39.83 complete 0.00 \N 2024-02-12 21:53:57.362866 2565 2566 0.00 pending balance_due ekenward3@biglobe.ne.jp \N 2024-02-12 21:52:10.158706 2024-02-12 21:53:57.362866 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f 9p_EX8ZtgeRp0EO26U7eSg1707774730150 \N \N 1 0 0.00 0.00 \N \N \N +637 R405350842 39.83 44.83 complete 0.00 \N 2024-02-12 21:55:50.296883 2577 2578 0.00 pending balance_due nseton24@issuu.com \N 2024-02-12 21:52:29.740322 2024-02-12 21:55:50.296883 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f jzV1P7vZNQyl5W6rCS3r6w1707774749728 \N \N 1 0 0.00 0.00 \N \N \N +565 R712992794 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:28:09.042363 2024-02-12 21:28:09.204751 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f lxcnKDFE73OSA3g1WGfbYg1707773289034 \N \N 1 0 0.00 0.00 \N \N \N +571 R675782894 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:31:28.851811 2024-02-12 21:31:41.524075 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f W_gDMUK3mL2rJeOi6D-N5g1707773488843 \N \N 1 0 0.00 0.00 \N \N \N +642 R969978890 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:54:15.805189 2024-02-12 21:54:39.969131 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f C-2b7C-ZcvU3rSqXegWvFg1707774855797 \N \N 1 0 0.00 0.00 \N \N \N +563 R539904408 14.99 19.99 complete 0.00 \N 2024-02-12 21:27:46.419047 2363 2364 0.00 pending balance_due mtolchard13@fema.gov \N 2024-02-12 21:26:10.643498 2024-02-12 21:27:46.419047 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f -k_Xly9nLyLnd--tKvlgbA1707773170628 \N \N 1 0 0.00 0.00 \N \N \N +564 R901161527 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:27:46.847651 2024-02-12 21:27:47.02965 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f K1ycpT0X7BJFCh9e1-DJGw1707773266840 \N \N 1 0 0.00 0.00 \N \N \N +693 R467610670 26.00 31.00 complete 0.00 \N 2024-02-12 22:14:36.591814 2725 2726 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 22:11:28.782161 2024-02-12 22:14:36.591814 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f POEKtn1zvgDDJUnogTxWjA1707775888773 \N \N 1 0 0.00 0.00 \N \N \N +718 R235903141 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:18:42.90683 2024-02-12 22:18:43.027083 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f OUSzmgHghCK4yGS8FbaH3g1707776322900 \N \N 1 0 0.00 0.00 \N \N \N +554 R452435251 34.97 39.97 delivery 0.00 \N \N 2357 2358 0.00 \N \N dkingswood28@epa.gov \N 2024-02-12 21:25:49.723246 2024-02-12 21:27:01.099905 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f UonhY_0_4W6zWN32vmZW9w1707773149713 \N \N 1 0 0.00 0.00 \N \N \N +719 R916130422 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:18:45.384474 2024-02-12 22:18:45.49831 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f KdIKmDTzV6sgKDnT5lt6bg1707776325376 \N \N 1 0 0.00 0.00 \N \N \N +556 R909339773 35.97 40.97 delivery 0.00 \N \N 2377 2378 0.00 \N \N ggrierson11@mit.edu \N 2024-02-12 21:26:02.056087 2024-02-12 21:28:30.594367 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f 5sW_jWlH1STMtSlv7a56iw1707773162045 \N \N 1 0 0.00 0.00 \N \N \N +576 R880994081 29.98 34.98 complete 0.00 \N 2024-02-12 21:33:25.741028 2407 2408 0.00 pending balance_due mwallbrookr@craigslist.org \N 2024-02-12 21:31:32.918125 2024-02-12 21:33:25.741028 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f yqnVRcPR_VZsT-pEwYWtfA1707773492910 \N \N 1 0 0.00 0.00 \N \N \N +567 R460939905 4.13 9.13 address 0.00 \N \N 2409 2410 0.00 \N \N ho2m@abc.net.au \N 2024-02-12 21:31:12.401607 2024-02-12 21:33:28.480613 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 20And4iWSlOwszhDlvVz9Q1707773472393 \N \N 1 0 0.00 0.00 \N \N \N +578 R905090896 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:33:19.447219 2024-02-12 21:33:43.677124 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f mQfbb6MQJ1VEzVedhGIwFg1707773599439 \N \N 1 0 0.00 0.00 \N \N \N +579 R921777222 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:33:23.554394 2024-02-12 21:33:47.775449 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 4ZsXUWgXRSyJwLJI8I_Qpg1707773603545 \N \N 1 0 0.00 0.00 \N \N \N +581 R602357248 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:34:38.344865 2024-02-12 21:35:02.953675 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f TKo1b2VeryJkBX9cyNUk8A1707773678336 \N \N 1 0 0.00 0.00 \N \N \N +583 R942334100 22.98 27.98 complete 0.00 \N 2024-02-12 21:38:05.162572 2439 2440 0.00 pending balance_due djeeks1i@stumbleupon.com \N 2024-02-12 21:36:08.015121 2024-02-12 21:38:05.162572 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f Nc06vvtuHnOKTM-mtJSobA1707773768006 \N \N 1 0 0.00 0.00 \N \N \N +584 R245102773 18.49 23.49 complete 0.00 \N 2024-02-12 21:38:08.593699 2441 2442 0.00 pending balance_due lgallaherl@naver.com \N 2024-02-12 21:36:12.182886 2024-02-12 21:38:08.593699 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f Ea1Vihwl9GOHSUxJSaPusg1707773772174 \N \N 1 0 0.00 0.00 \N \N \N +585 R701991714 34.98 39.98 delivery 0.00 \N \N 2445 2446 0.00 \N \N bdufaire1p@theglobeandmail.com \N 2024-02-12 21:36:13.07745 2024-02-12 21:37:13.999892 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f o4oex6YLcGaAdJ4a6YURnA1707773773069 \N \N 1 0 0.00 0.00 \N \N \N +597 R632288911 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:39:19.764019 2024-02-12 21:39:44.263637 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f mU-80p7jmaOGY_v1T1Go3g1707773959756 \N \N 1 0 0.00 0.00 \N \N \N +689 R924424629 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:09:28.276067 2024-02-12 22:09:49.794421 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f NRKKOk1OXLYCIIVRRUD_yg1707775768268 \N \N 1 0 0.00 0.00 \N \N \N +591 R057336910 5.00 10.00 address 0.00 \N \N 2459 2460 0.00 \N \N dkitson1j@cnbc.com \N 2024-02-12 21:36:20.3731 2024-02-12 21:38:22.392562 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f JgYHFJbnXDXGVa8VwJqB6w1707773780365 \N \N 1 0 0.00 0.00 \N \N \N +595 R437518748 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:38:08.892189 2024-02-12 21:38:30.720054 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f hskptwmdFu_toD-kf7Tgqg1707773888879 \N \N 1 0 0.00 0.00 \N \N \N +596 R809981615 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:38:09.60326 2024-02-12 21:38:33.8332 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Gj3QaV_u4DU0DoDVJxNHpQ1707773889596 \N \N 1 0 0.00 0.00 \N \N \N +622 R307756522 10.00 15.00 delivery 0.00 \N \N 2535 2536 0.00 \N \N bosiaghail2a@joomla.org \N 2024-02-12 21:49:03.160057 2024-02-12 21:50:19.76378 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f nSz6pMho_4hCbFDQry_HeQ1707774543151 \N \N 1 0 0.00 0.00 \N \N \N +616 R382405607 12.99 17.99 address 0.00 \N \N 2537 2538 0.00 \N \N rdanilevich26@soundcloud.com \N 2024-02-12 21:48:55.192697 2024-02-12 21:51:05.465457 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f e3N2yKf1KhP32TcVEBveXQ1707774535185 \N \N 1 0 0.00 0.00 \N \N \N +623 R745223183 19.84 24.84 address 0.00 \N \N 2539 2540 0.00 \N \N gspinellou@yolasite.com \N 2024-02-12 21:49:03.723437 2024-02-12 21:51:11.720018 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f goGgStTo0d0EOBnulSgL1A1707774543715 \N \N 1 0 0.00 0.00 \N \N \N +599 R229962534 50.98 55.98 complete 0.00 \N 2024-02-12 21:47:17.554733 2511 2512 0.00 pending balance_due amorad16@nasa.gov \N 2024-02-12 21:42:49.659425 2024-02-12 21:47:17.554733 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N t f cB5GmLnLOolZ6Jc0giPh5A1707774169652 \N \N 1 0 0.00 0.00 \N \N \N +592 R002877839 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:38:01.022603 2024-02-12 21:38:01.134811 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f QGDYc37WVHxHm2snzkXI7A1707773881014 \N \N 1 0 0.00 0.00 \N \N \N +634 R923902236 4.13 9.13 complete 0.00 \N 2024-02-12 21:53:37.409268 2553 2554 0.00 pending balance_due pcottrellz@qq.com \N 2024-02-12 21:52:28.000192 2024-02-12 21:53:37.409268 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f ah1B3X4ioVdAlhZKf_WqNw1707774747992 \N \N 1 0 0.00 0.00 \N \N \N +688 R786444070 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:09:21.201267 2024-02-12 22:09:42.753304 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f sXg3qPnpwOXWGQmzeIxasg1707775761193 \N \N 1 0 0.00 0.00 \N \N \N +605 R546609889 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:42:59.241474 2024-02-12 21:43:13.153717 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f kYQ7pdBsnBAVaaFdPUTg6A1707774179232 \N \N 1 0 0.00 0.00 \N \N \N +586 R616414190 39.98 44.98 complete 0.00 \N 2024-02-12 21:39:19.509887 2465 2466 0.00 pending balance_due hkersaw2q@surveymonkey.com \N 2024-02-12 21:36:15.19403 2024-02-12 21:39:19.509887 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f DzvTVRDkt_tgZQBLYGJ0Tg1707773775184 \N \N 1 0 0.00 0.00 \N \N \N +606 R421270316 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:42:59.983762 2024-02-12 21:43:14.274242 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f CY5pvNUWfFiefAvCg_Qljw1707774179976 \N \N 1 0 0.00 0.00 \N \N \N +589 R412582770 14.12 19.12 complete 0.00 \N 2024-02-12 21:38:02.718479 2435 2436 0.00 pending balance_due tgarrood14@wufoo.com \N 2024-02-12 21:36:19.470089 2024-02-12 21:38:02.718479 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f 31rPuEHq6VyPdA2dNXLI8w1707773779460 \N \N 1 0 0.00 0.00 \N \N \N +593 R000908847 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:38:02.958617 2024-02-12 21:38:03.066144 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f lKevuv0VfGrla1xJi8Nt7g1707773882951 \N \N 1 0 0.00 0.00 \N \N \N +594 R465455457 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:38:05.4045 2024-02-12 21:38:05.492833 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f mzvd1oiz4vrM5FMBmPzmog1707773885396 \N \N 1 0 0.00 0.00 \N \N \N +607 R429798467 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:43:01.275706 2024-02-12 21:43:15.274525 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f U5r1B8nW7jcHiHPxMCbk9Q1707774181269 \N \N 1 0 0.00 0.00 \N \N \N +723 R732908069 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:21:33.124013 2024-02-12 22:22:40.564065 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f c3EYGQpE_CpZ-Fzcoumkng1707776493115 \N \N 1 0 0.00 0.00 \N \N \N +588 R592590519 52.95 57.95 delivery 0.00 \N \N 2469 2470 0.00 \N \N kskynner8@rakuten.co.jp \N 2024-02-12 21:36:18.477559 2024-02-12 21:40:40.656836 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N f f h86g5J_-6wozbBVUr6n6cw1707773778467 \N \N 1 0 0.00 0.00 \N \N \N +598 R903425350 30.85 35.85 complete 0.00 \N 2024-02-12 21:44:20.435771 2475 2476 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 21:42:42.156506 2024-02-12 21:44:20.435771 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f dPNI63HWldvWQ6WuaiHmZg1707774162148 \N \N 1 0 0.00 0.00 \N \N \N +608 R439609413 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:44:20.774989 2024-02-12 21:44:44.759403 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f RNv927BZIkTjhrW2nf1NGw1707774260765 \N \N 1 0 0.00 0.00 \N \N \N +604 R114735000 22.12 27.12 complete 0.00 \N 2024-02-12 21:44:52.30676 2487 2488 0.00 pending balance_due ecarluccij@weibo.com \N 2024-02-12 21:42:58.946451 2024-02-12 21:44:52.30676 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f FMqUo-oaqgQ9JwIxDSBj2w1707774178937 \N \N 1 0 0.00 0.00 \N \N \N +609 R111011943 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:44:52.541178 2024-02-12 21:44:52.634798 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f XhmgTvw1STCyHy3FLUm1yg1707774292533 \N \N 1 0 0.00 0.00 \N \N \N +600 R791410449 26.00 31.00 complete 0.00 \N 2024-02-12 21:46:03.758323 2505 2506 0.00 pending balance_due grobert2n@canalblog.com \N 2024-02-12 21:42:52.138867 2024-02-12 21:46:03.758323 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f 4NMzcjEHkCgUSRb34_Z3tw1707774172131 \N \N 1 0 0.00 0.00 \N \N \N +611 R281310468 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:46:04.004003 2024-02-12 21:46:04.143522 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f N1KGVxl1ZkdQrp3Mh9pgPQ1707774363997 \N \N 1 0 0.00 0.00 \N \N \N +613 R303990968 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:47:17.814569 2024-02-12 21:47:39.495279 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 3PGDP9W5hacLVb3rrGASGQ1707774437806 \N \N 1 0 0.00 0.00 \N \N \N +602 R156226871 40.99 45.99 delivery 0.00 \N \N 2509 2510 0.00 \N \N amorad16@nasa.gov \N 2024-02-12 21:42:56.74401 2024-02-12 21:45:23.127259 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f GA_QPj6hbr125MNNIOTRug1707774176737 \N \N 1 0 0.00 0.00 \N \N \N +601 R118869474 34.83 39.83 complete 0.00 \N 2024-02-12 21:46:02.421891 2503 2504 0.00 pending balance_due bosiaghail2a@joomla.org \N 2024-02-12 21:42:54.796826 2024-02-12 21:46:02.421891 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f 3i3CJBwtSlidrYKAIlP6eg1707774174788 \N \N 1 0 0.00 0.00 \N \N \N +610 R945752258 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:46:02.686528 2024-02-12 21:46:02.807886 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f l0gxdcyun1cAyYjjLl9MWQ1707774362679 \N \N 1 0 0.00 0.00 \N \N \N +603 R679777197 17.62 22.62 complete 0.00 \N 2024-02-12 21:46:04.762918 2507 2508 0.00 pending balance_due lpennone17@over-blog.com \N 2024-02-12 21:42:58.738072 2024-02-12 21:46:04.762918 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f BJ4B5Cg__6AIMtfsc24K7A1707774178729 \N \N 1 0 0.00 0.00 \N \N \N +612 R508941696 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:46:04.986161 2024-02-12 21:46:05.098674 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f KS-6mQ86zyOTTdY2hJYQqw1707774364978 \N \N 1 0 0.00 0.00 \N \N \N +614 R112089660 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:48:46.032485 2024-02-12 21:49:55.456475 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f MEP6Wd1doQH1bMejEHN8gg1707774526023 \N \N 1 0 0.00 0.00 \N \N \N +621 R353205424 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:49:00.876385 2024-02-12 21:50:05.67479 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f NcFqe4VakjNjla6wVjCHdA1707774540868 \N \N 1 0 0.00 0.00 \N \N \N +632 R804996628 29.98 34.98 delivery 0.00 \N \N 2567 2568 0.00 \N \N bdeane2d@domainmarket.com \N 2024-02-12 21:52:23.175534 2024-02-12 21:53:27.209436 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f YiJabzJyuMxI0eQ2zU_jNw1707774743167 \N \N 1 0 0.00 0.00 \N \N \N +647 R660489366 17.99 22.99 complete 0.00 \N 2024-02-12 21:59:17.18138 2597 2598 0.00 pending balance_due dkitson1j@cnbc.com \N 2024-02-12 21:57:20.206393 2024-02-12 21:59:17.18138 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f aq57Nph4GcaMYeWVIzp4rA1707775040198 \N \N 1 0 0.00 0.00 \N \N \N +680 R836289104 4.13 9.13 address 0.00 \N \N 2671 2672 0.00 \N \N gspinellou@yolasite.com \N 2024-02-12 22:06:03.566677 2024-02-12 22:08:11.226152 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 2-Ai4CxqK9DaGyyoebT6jg1707775563558 \N \N 1 0 0.00 0.00 \N \N \N +617 R971578837 10.00 15.00 complete 0.00 \N 2024-02-12 21:50:08.053686 2515 2516 0.00 pending balance_due mpriestman9@goodreads.com \N 2024-02-12 21:48:55.889471 2024-02-12 21:50:08.053686 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f 6ahu5OCpI_c4StvbsryiLw1707774535881 \N \N 1 0 0.00 0.00 \N \N \N +615 R334638913 13.49 18.49 complete 0.00 \N 2024-02-12 21:50:34.264172 2523 2524 0.00 pending balance_due mknowlson2l@nationalgeographic.com \N 2024-02-12 21:48:52.391477 2024-02-12 21:50:34.264172 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f Tcb-kiJop0XozgAfBWEGxw1707774532382 \N \N 1 0 0.00 0.00 \N \N \N +678 R433347606 24.11 29.11 complete 0.00 \N 2024-02-12 22:09:12.56621 2683 2684 0.00 pending balance_due dkitson1j@cnbc.com \N 2024-02-12 22:06:00.763345 2024-02-12 22:09:12.56621 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f xyzlTqiYBL2DoaJZL8T_bQ1707775560755 \N \N 1 0 0.00 0.00 \N \N \N +649 R755695415 19.48 24.48 delivery 0.00 \N \N 2603 2604 0.00 \N \N egregorattif@lulu.com \N 2024-02-12 21:57:26.076793 2024-02-12 21:58:26.715808 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f waVLrdjyKsLLPW6Byg3Wzg1707775046068 \N \N 1 0 0.00 0.00 \N \N \N +643 R811715501 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:54:24.553936 2024-02-12 21:54:45.729263 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f i9kXkJUARv6JdqNkBTYLHw1707774864545 \N \N 1 0 0.00 0.00 \N \N \N +656 R142980643 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:58:36.858648 2024-02-12 21:58:37.025808 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f LkbE9FjoPiVNHJU4IOJgOw1707775116849 \N \N 1 0 0.00 0.00 \N \N \N +633 R111174038 20.98 25.98 address 0.00 \N \N 2579 2580 0.00 \N \N veirwinw@aboutads.info \N 2024-02-12 21:52:26.451459 2024-02-12 21:55:33.049957 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f EvXeQGMbeTbGe8Ziw3ps-w1707774746444 \N \N 1 0 0.00 0.00 \N \N \N +681 R866846704 16.49 21.49 complete 0.00 \N 2024-02-12 22:09:28.029761 2681 2682 0.00 pending balance_due fdesport1l@whitehouse.gov \N 2024-02-12 22:06:04.698234 2024-02-12 22:09:28.029761 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f jZfmAyazLD2LJNs8DzUXpg1707775564690 \N \N 1 0 0.00 0.00 \N \N \N +659 R103499166 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:59:21.470507 2024-02-12 21:59:42.948788 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WVepIWXg09SUYYVsrGWssQ1707775161463 \N \N 1 0 0.00 0.00 \N \N \N +651 R099809797 19.84 24.84 delivery 0.00 \N \N 2605 2606 0.00 \N \N oboman2b@theguardian.com \N 2024-02-12 21:57:28.238832 2024-02-12 21:58:41.274663 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f toHP59Mo7Pi6MB-ogBtdCg1707775048231 \N \N 1 0 0.00 0.00 \N \N \N +662 R992237740 32.83 37.83 complete 0.00 \N 2024-02-12 22:04:16.833121 2629 2630 0.00 pending balance_due trawsen2j@tiny.cc \N 2024-02-12 22:02:09.785649 2024-02-12 22:04:16.833121 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f y7tPGdpkaLhzh8bN3Wq2HA1707775329778 \N \N 1 0 0.00 0.00 \N \N \N +646 R915754216 23.49 28.49 complete 0.00 \N 2024-02-12 21:59:01.358705 2601 2602 0.00 pending balance_due ecollar1o@bravesites.com \N 2024-02-12 21:57:15.757661 2024-02-12 21:59:01.358705 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f mxYnX_HGxmVm5h-wfe77gg1707775035749 \N \N 1 0 0.00 0.00 \N \N \N +690 R864228493 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:11:13.753246 2024-02-12 22:12:24.297735 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f sFaEis2PPfjFVnqC7j1vgA1707775873744 \N \N 1 0 0.00 0.00 \N \N \N +671 R235873067 19.99 24.99 address 0.00 \N \N 2641 2642 0.00 \N \N hkersaw2q@surveymonkey.com \N 2024-02-12 22:02:31.745162 2024-02-12 22:04:45.286928 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f gA-zI-lEKzwRNPyeXP6IZw1707775351738 \N \N 1 0 0.00 0.00 \N \N \N +696 R300442178 19.99 24.99 delivery 0.00 \N \N 2719 2720 0.00 \N \N lpennone17@over-blog.com \N 2024-02-12 22:11:31.831392 2024-02-12 22:12:47.293617 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f yqUs5jLWgKoQzgVsOKz-2Q1707775891824 \N \N 1 0 0.00 0.00 \N \N \N +674 R217209510 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:04:27.502821 2024-02-12 22:04:48.553704 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Y81Cs01UIEOfDboYoRGWxg1707775467495 \N \N 1 0 0.00 0.00 \N \N \N +645 R730140608 5.99 10.99 complete 0.00 \N 2024-02-12 21:58:26.014005 2581 2582 0.00 pending balance_due pweemsa@alexa.com \N 2024-02-12 21:57:09.680817 2024-02-12 21:58:26.014005 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f xxUF-pi3h6jhMvWGJBTNwg1707775029673 \N \N 1 0 0.00 0.00 \N \N \N +652 R315791049 20.98 25.98 complete 0.00 \N 2024-02-12 22:00:29.240424 2613 2614 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 21:57:28.308538 2024-02-12 22:00:29.240424 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f RDoAcEs-rWPh2N8qyVu2Tg1707775048300 \N \N 1 0 0.00 0.00 \N \N \N +661 R847150790 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:00:47.575419 2024-02-12 22:01:09.13492 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f yX60ximMh558tipDL_4gew1707775247566 \N \N 1 0 0.00 0.00 \N \N \N +670 R886890321 9.13 14.13 address 0.00 \N \N 2639 2640 0.00 \N \N mwallbrookr@craigslist.org \N 2024-02-12 22:02:30.174763 2024-02-12 22:04:40.525852 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f jGV_KNnW4gZILful6wn3Ww1707775350160 \N \N 1 0 0.00 0.00 \N \N \N +665 R155557752 24.99 29.99 delivery 0.00 \N \N 2635 2636 0.00 \N \N ho2m@abc.net.au \N 2024-02-12 22:02:23.721296 2024-02-12 22:03:34.541345 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f Do3CFMjL_-yT8C02sJ2BZg1707775343713 \N \N 1 0 0.00 0.00 \N \N \N +669 R992987128 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:02:30.078448 2024-02-12 22:03:42.687357 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f TBpBSjkKQfaUj5QKvxxxkA1707775350070 \N \N 1 0 0.00 0.00 \N \N \N +668 R565465205 24.98 29.98 complete 0.00 \N 2024-02-12 22:03:56.443302 2627 2628 0.00 pending balance_due acoadeb@ameblo.jp \N 2024-02-12 22:02:27.76267 2024-02-12 22:03:56.443302 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f wayxn89PXhWTtvzkQt9Jpw1707775347754 \N \N 1 0 0.00 0.00 \N \N \N +667 R976918186 16.01 21.01 complete 0.00 \N 2024-02-12 22:04:27.253717 2631 2632 0.00 pending balance_due awhisson1c@deviantart.com \N 2024-02-12 22:02:27.16376 2024-02-12 22:04:27.253717 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f XY9rMe85fgBQY5NsV3Eorw1707775347155 \N \N 1 0 0.00 0.00 \N \N \N +672 R232199774 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:03:56.89194 2024-02-12 22:03:57.038531 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f fslIqRiM8BYFch99seA1bg1707775436863 \N \N 1 0 0.00 0.00 \N \N \N +673 R224760741 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:04:17.11095 2024-02-12 22:04:38.34895 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 514zPRf5Y-2MlNZjV3KErg1707775457103 \N \N 1 0 0.00 0.00 \N \N \N +650 R041993681 4.13 9.13 complete 0.00 \N 2024-02-12 21:58:36.594655 2591 2592 0.00 pending balance_due mdormank@google.com.au \N 2024-02-12 21:57:26.792999 2024-02-12 21:58:36.594655 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f SyTFSapMRIH68qixSHuwYA1707775046784 \N \N 1 0 0.00 0.00 \N \N \N +644 R034566279 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:55:50.549923 2024-02-12 21:56:12.117004 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f DW7o42zLA7gh7j3W6W1ZHw1707774950541 \N \N 1 0 0.00 0.00 \N \N \N +664 R941647058 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:02:21.236811 2024-02-12 22:02:42.085346 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f P23Z7MD1CwZi1RdoE6DT6A1707775341228 \N \N 1 0 0.00 0.00 \N \N \N +666 R523502474 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:02:26.213161 2024-02-12 22:02:47.671166 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f FMb690ONPOe_GT_Dq6sGYA1707775346201 \N \N 1 0 0.00 0.00 \N \N \N +618 R716916810 26.99 31.99 delivery 0.00 \N \N 2529 2530 0.00 \N \N tgarrood14@wufoo.com \N 2024-02-12 21:48:59.422761 2024-02-12 21:50:00.578969 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f WmKDszKvpULnuVh7_wKsOg1707774539414 \N \N 1 0 0.00 0.00 \N \N \N +624 R232386040 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:50:08.261347 2024-02-12 21:50:08.359129 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f TidGUWvExcotN5XxyY037w1707774608254 \N \N 1 0 0.00 0.00 \N \N \N +691 R830455709 30.93 35.93 delivery 0.00 \N \N 2707 2708 0.00 \N \N mdormank@google.com.au \N 2024-02-12 22:11:22.202985 2024-02-12 22:12:16.369682 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f DLd9U14iyu0RVcWeUm5Yrg1707775882184 \N \N 1 0 0.00 0.00 \N \N \N +619 R520131548 15.00 20.00 complete 0.00 \N 2024-02-12 21:50:33.123622 2527 2528 0.00 pending balance_due akiossel1z@patch.com \N 2024-02-12 21:49:00.362087 2024-02-12 21:50:33.123622 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f lPYkS_16PgNU94d12P8L3g1707774540355 \N \N 1 0 0.00 0.00 \N \N \N +663 R719564246 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:02:20.564857 2024-02-12 22:03:40.112346 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f RBU0KJp03S9WHWZ6YAtzuA1707775340555 \N \N 1 0 0.00 0.00 \N \N \N +655 R895711954 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:58:26.274834 2024-02-12 21:58:26.408423 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f FNeMbKDN0shDH_BFMVANHA1707775106267 \N \N 1 0 0.00 0.00 \N \N \N +699 R715251545 15.14 20.14 delivery 0.00 \N \N 2727 2728 0.00 \N \N epalethorpe6@spotify.com \N 2024-02-12 22:11:34.997077 2024-02-12 22:13:54.511497 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f eio9RPwoG7qJbjb_f8SXUg1707775894990 \N \N 1 0 0.00 0.00 \N \N \N +767 R125175462 19.92 24.92 complete 0.00 \N 2024-02-12 22:37:41.662593 2881 2882 0.00 pending balance_due mgargett0@yellowpages.com \N 2024-02-12 22:36:32.992582 2024-02-12 22:37:41.662593 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f Wsc9WwCyKdnumxFAlVSaCg1707777392984 \N \N 1 0 0.00 0.00 \N \N \N +620 R246400045 3.50 8.50 complete 0.00 \N 2024-02-12 21:50:37.850143 2521 2522 0.00 pending balance_due bdufaire1p@theglobeandmail.com \N 2024-02-12 21:49:00.694603 2024-02-12 21:50:37.850143 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f h72hmKcnWACbYnhdtiEBwg1707774540678 \N \N 1 0 0.00 0.00 \N \N \N +638 R842705361 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:53:32.356843 2024-02-12 21:53:32.454778 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f JekKYvk7kUMEIK4BV6tXXg1707774812349 \N \N 1 0 0.00 0.00 \N \N \N +639 R875035913 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:53:37.608829 2024-02-12 21:53:37.705003 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f zVap6EZ-bC9J6L6LHFbVhw1707774817600 \N \N 1 0 0.00 0.00 \N \N \N +694 R861356835 20.11 25.11 delivery 0.00 \N \N 2711 2712 0.00 \N \N kpietruszka2e@phpbb.com \N 2024-02-12 22:11:30.80187 2024-02-12 22:12:30.991348 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f A_5SFs-sas79Rf0Tl_Um8w1707775890783 \N \N 1 0 0.00 0.00 \N \N \N +698 R644600438 35.99 40.99 delivery 0.00 \N \N 2713 2714 0.00 \N \N gshilitone@dedecms.com \N 2024-02-12 22:11:34.252272 2024-02-12 22:12:33.818457 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f bfNP9FU9fYkI7MGqShWCuw1707775894244 \N \N 1 0 0.00 0.00 \N \N \N +648 R018568032 22.02 27.02 complete 0.00 \N 2024-02-12 21:59:21.279156 2599 2600 0.00 pending balance_due ho2m@abc.net.au \N 2024-02-12 21:57:23.527445 2024-02-12 21:59:21.279156 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f vm1ymy6BB6K7b4r3nEM4zQ1707775043519 \N \N 1 0 0.00 0.00 \N \N \N +657 R251050747 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:59:01.805218 2024-02-12 21:59:25.562815 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f XyfCBJ9FEZmRkpAD-VJ15w1707775141797 \N \N 1 0 0.00 0.00 \N \N \N +658 R915925242 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 21:59:17.429619 2024-02-12 21:59:39.539907 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f NLMKs73tspTg6YDpJqQFQA1707775157422 \N \N 1 0 0.00 0.00 \N \N \N +692 R622892945 29.98 34.98 complete 0.00 \N 2024-02-12 22:13:21.777955 2715 2716 0.00 pending balance_due bciciura1e@foxnews.com \N 2024-02-12 22:11:25.873683 2024-02-12 22:13:21.777955 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f L1HCQYggdiaUbEBnWucdRw1707775885865 \N \N 1 0 0.00 0.00 \N \N \N +654 R889380817 33.98 38.98 complete 0.00 \N 2024-02-12 22:00:47.335831 2611 2612 0.00 pending balance_due gshilitone@dedecms.com \N 2024-02-12 21:57:28.828019 2024-02-12 22:00:47.335831 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f _ToAgGaCihSAKcYiq2RdAg1707775048820 \N \N 1 0 0.00 0.00 \N \N \N +660 R685052432 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:00:29.47109 2024-02-12 22:00:54.036517 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f hwmbplCWzgijMFsHnsTF_g1707775229463 \N \N 1 0 0.00 0.00 \N \N \N +745 R607529774 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:27:19.726562 2024-02-12 22:27:19.831975 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f yeG4zzmqHNAtYV8dwdnKSQ1707776839719 \N \N 1 0 0.00 0.00 \N \N \N +697 R121642343 24.99 29.99 complete 0.00 \N 2024-02-12 22:15:01.184257 2729 2730 0.00 pending balance_due fheighwayi@google.co.uk \N 2024-02-12 22:11:34.168704 2024-02-12 22:15:01.184257 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f J-m8IpTb6U823lFd5TLtbg1707775894160 \N \N 1 0 0.00 0.00 \N \N \N +728 R084422099 5.00 10.00 complete 0.00 \N 2024-02-12 22:22:48.867981 2771 2772 0.00 pending balance_due cstivers19@eepurl.com \N 2024-02-12 22:21:38.179823 2024-02-12 22:22:48.867981 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f ItB1pMQT_q5Uwq8vExuOUg1707776498172 \N \N 1 0 0.00 0.00 \N \N \N +720 R807479884 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:21:19.492253 2024-02-12 22:22:28.672398 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f utkKZRmTqwjB8MLyL7zuKg1707776479479 \N \N 1 0 0.00 0.00 \N \N \N +724 R889528776 32.48 37.48 delivery 0.00 \N \N 2797 2798 0.00 \N \N voverill5@ebay.co.uk \N 2024-02-12 22:21:34.744192 2024-02-12 22:23:59.93242 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f Pi_8BADgT-WbATe8BRjfvw1707776494736 \N \N 1 0 0.00 0.00 \N \N \N +725 R752071692 5.00 10.00 address 0.00 \N \N 2793 2794 0.00 \N \N tgarrood14@wufoo.com \N 2024-02-12 22:21:35.584299 2024-02-12 22:23:41.743488 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3H_8CAu_WO2pybtyIK_WAA1707776495574 \N \N 1 0 0.00 0.00 \N \N \N +733 R592405080 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:23:36.252606 2024-02-12 22:23:57.298729 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 6Yni3_WifuBgURkLiQ9IaQ1707776616237 \N \N 1 0 0.00 0.00 \N \N \N +737 R011625947 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:26:05.415932 2024-02-12 22:27:12.922031 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f pUiolhcbDhkMnD-Tsf6ZlQ1707776765407 \N \N 1 0 0.00 0.00 \N \N \N +755 R014592777 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:30:30.995403 2024-02-12 22:30:48.643797 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Ic60EccMcqjFpGoZMLpkHw1707777030985 \N \N 1 0 0.00 0.00 \N \N \N +738 R821734733 32.97 37.97 complete 0.00 \N 2024-02-12 22:27:48.705829 2819 2820 0.00 pending balance_due cletixier1q@deviantart.com \N 2024-02-12 22:26:05.584583 2024-02-12 22:27:48.705829 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f FPCYRli0Y1Y7LOex0sPvRw1707776765565 \N \N 1 0 0.00 0.00 \N \N \N +736 R381397315 18.25 23.25 delivery 0.00 \N \N 2817 2818 0.00 \N \N zyardyx@studiopress.com \N 2024-02-12 22:26:02.228849 2024-02-12 22:27:05.856243 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f TJBmQOwCN2Vxp4ZxuZ16Hw1707776762220 \N \N 1 0 0.00 0.00 \N \N \N +749 R811374393 33.48 38.48 delivery 0.00 \N \N 2873 2874 0.00 \N \N egregorattif@lulu.com \N 2024-02-12 22:30:23.690946 2024-02-12 22:33:52.429073 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N f f 6DSdgCSEMktWxcAZ3XlaWw1707777023682 \N \N 1 0 0.00 0.00 \N \N \N +677 R296261895 34.92 39.92 complete 0.00 \N 2024-02-12 22:07:54.301468 2659 2660 0.00 pending balance_due kpietruszka2e@phpbb.com \N 2024-02-12 22:05:58.465872 2024-02-12 22:07:54.301468 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f HiONfEtudxDR6Z_VRf6beQ1707775558457 \N \N 1 0 0.00 0.00 \N \N \N +707 R677322729 5.99 10.99 complete 0.00 \N 2024-02-12 22:17:53.339111 2735 2736 0.00 pending balance_due scauldwell2@1und1.de \N 2024-02-12 22:16:42.035515 2024-02-12 22:17:53.339111 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f CADW_lexRmNeyvoYHZKo0Q1707776202027 \N \N 1 0 0.00 0.00 \N \N \N +714 R473449863 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:17:53.547233 2024-02-12 22:17:53.664558 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 4cU27895Cs3eE9LRS3eGaA1707776273540 \N \N 1 0 0.00 0.00 \N \N \N +765 R245668066 44.83 49.83 complete 0.00 \N 2024-02-12 22:38:45.868824 2901 2902 0.00 pending balance_due tgarrood14@wufoo.com \N 2024-02-12 22:36:29.575278 2024-02-12 22:38:45.868824 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f N1EQrMG-2GBAb2I0hskO6A1707777389566 \N \N 1 0 0.00 0.00 \N \N \N +763 R245715117 18.99 23.99 address 0.00 \N \N 2907 2908 0.00 \N \N fheaysman1n@yellowbook.com \N 2024-02-12 22:36:18.454381 2024-02-12 22:38:25.255127 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 0uIyiP5848yw6zDIDGEDgg1707777378447 \N \N 1 0 0.00 0.00 \N \N \N +684 R901900372 4.13 9.13 complete 0.00 \N 2024-02-12 22:07:16.760216 2647 2648 0.00 pending balance_due gscullardp@eepurl.com \N 2024-02-12 22:06:06.842051 2024-02-12 22:07:16.760216 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f 37m6KSQLZTocI7DbpbgEGg1707775566834 \N \N 1 0 0.00 0.00 \N \N \N +695 R999885557 13.49 18.49 complete 0.00 \N 2024-02-12 22:13:18.458884 2701 2702 0.00 pending balance_due ilevane1t@sun.com \N 2024-02-12 22:11:31.344639 2024-02-12 22:13:18.458884 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f gBxnT-vOF6QNGodB6XfbbA1707775891336 \N \N 1 0 0.00 0.00 \N \N \N +702 R664335687 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:14:37.255874 2024-02-12 22:14:37.459791 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f DTT5KF7kYR-cg3rY4rJ98w1707776077245 \N \N 1 0 0.00 0.00 \N \N \N +682 R189720974 23.12 28.12 address 0.00 \N \N 2687 2688 0.00 \N \N bdufaire1p@theglobeandmail.com \N 2024-02-12 22:06:05.849173 2024-02-12 22:09:25.028038 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f cFd1qznHh-uwN4jVXi4QHQ1707775565841 \N \N 1 0 0.00 0.00 \N \N \N +703 R761631499 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:15:01.416475 2024-02-12 22:15:23.096303 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f j8tJ5sJeyZiBPphsa1pQRg1707776101408 \N \N 1 0 0.00 0.00 \N \N \N +704 R544143139 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:16:28.159594 2024-02-12 22:16:42.70524 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f AApYuiVBoUoP8UbwZfhAyQ1707776188150 \N \N 1 0 0.00 0.00 \N \N \N +712 R960873276 25.98 30.98 complete 0.00 \N 2024-02-12 22:18:45.17698 2749 2750 0.00 pending balance_due gjory2c@dropbox.com \N 2024-02-12 22:16:46.424489 2024-02-12 22:18:45.17698 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f CcvwiWGwd794luOuCKWKmw1707776206417 \N \N 1 0 0.00 0.00 \N \N \N +709 R196648211 5.00 10.00 complete 0.00 \N 2024-02-12 22:18:18.857194 2739 2740 0.00 pending balance_due ho2m@abc.net.au \N 2024-02-12 22:16:43.118064 2024-02-12 22:18:18.857194 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f 9mQBLsZYoF8nSmApwY-HIg1707776203109 \N \N 1 0 0.00 0.00 \N \N \N +726 R266328544 28.48 33.48 complete 0.00 \N 2024-02-12 22:23:35.991513 2785 2786 0.00 pending balance_due fheighwayi@google.co.uk \N 2024-02-12 22:21:36.96505 2024-02-12 22:23:35.991513 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f VReL6ZrO2_8p1eDyenzsnw1707776496957 \N \N 1 0 0.00 0.00 \N \N \N +721 R032875009 13.49 18.49 delivery 0.00 \N \N 2781 2782 0.00 \N \N mgargett0@yellowpages.com \N 2024-02-12 22:21:30.17897 2024-02-12 22:22:26.985741 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f 0v7wVaC3eldLDpfQASctOw1707776490170 \N \N 1 0 0.00 0.00 \N \N \N +729 R463246823 20.98 25.98 complete 0.00 \N 2024-02-12 22:23:11.099793 2783 2784 0.00 pending balance_due sbeardall27@eepurl.com \N 2024-02-12 22:21:39.017881 2024-02-12 22:23:11.099793 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f FGZTvEVkwITjT2oPLJLtsA1707776499009 \N \N 1 0 0.00 0.00 \N \N \N +727 R779948698 34.91 39.91 delivery 0.00 \N \N 2787 2788 0.00 \N \N tfranca1w@pagesperso-orange.fr \N 2024-02-12 22:21:37.339031 2024-02-12 22:22:38.959035 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f zAoFJ7tcQ5jZo3oLnYyaBg1707776497331 \N \N 1 0 0.00 0.00 \N \N \N +735 R237046344 5.99 10.99 delivery 0.00 \N \N 2799 2800 0.00 \N \N bdeane2d@domainmarket.com \N 2024-02-12 22:25:58.423796 2024-02-12 22:26:33.936299 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4LMIFOAeaXmRZ2LZrILSVQ1707776758415 \N \N 1 0 0.00 0.00 \N \N \N +739 R594368236 14.99 19.99 address 0.00 \N \N 2829 2830 0.00 \N \N amoulsdale2o@hugedomains.com \N 2024-02-12 22:26:07.042538 2024-02-12 22:28:16.779513 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 3mrsoK3qFmtspwz6yNcurA1707776767033 \N \N 1 0 0.00 0.00 \N \N \N +741 R653380313 14.99 19.99 complete 0.00 \N 2024-02-12 22:27:19.453639 2807 2808 0.00 pending balance_due mwimmer23@jimdo.com \N 2024-02-12 22:26:09.520633 2024-02-12 22:27:19.453639 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f 0Vn1VUuM0BUpNyiWmdJJ-w1707776769512 \N \N 1 0 0.00 0.00 \N \N \N +743 R840212509 31.00 36.00 complete 0.00 \N 2024-02-12 22:28:05.689243 2815 2816 0.00 pending balance_due gjory2c@dropbox.com \N 2024-02-12 22:26:11.038401 2024-02-12 22:28:05.689243 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f prLdRlWk31USVmUvdzjrNg1707776771030 \N \N 1 0 0.00 0.00 \N \N \N +747 R575671689 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:28:05.93207 2024-02-12 22:28:27.163719 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f pfZnOlIp3MrCa-we55ZWhw1707776885925 \N \N 1 0 0.00 0.00 \N \N \N +758 R902699363 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:32:18.197011 2024-02-12 22:32:18.319863 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f VGEZ91W_cJHD4R8K-sdjYg1707777138188 \N \N 1 0 0.00 0.00 \N \N \N +746 R666360711 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:27:49.149293 2024-02-12 22:28:13.166926 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Wh8ftVT9P1Lj76gZXZzUDQ1707776869141 \N \N 1 0 0.00 0.00 \N \N \N +752 R196680347 48.97 53.97 delivery 0.00 \N \N 2871 2872 0.00 \N \N bhearnshawm@noaa.gov \N 2024-02-12 22:30:28.28914 2024-02-12 22:33:00.959024 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f U7Zd66HnmLyOh5kMQ-mc6A1707777028282 \N \N 1 0 0.00 0.00 \N \N \N +759 R833157388 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:32:29.059989 2024-02-12 22:32:53.483811 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f KsOR2pg8Mb-wG0OKBjY5_A1707777149052 \N \N 1 0 0.00 0.00 \N \N \N +683 R539447614 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:06:06.601817 2024-02-12 22:06:19.12198 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f pJzRJ6EBBBzziKx9hSnO2A1707775566592 \N \N 1 0 0.00 0.00 \N \N \N +700 R334792398 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:13:19.034405 2024-02-12 22:13:19.202089 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WW5fJj8Ru0KCzJUgfUlyEQ1707775999027 \N \N 1 0 0.00 0.00 \N \N \N +756 R505421107 37.97 42.97 complete 0.00 \N 2024-02-12 22:33:41.448992 2867 2868 0.00 pending balance_due gshawdforth18@tamu.edu \N 2024-02-12 22:30:32.523931 2024-02-12 22:33:41.448992 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f SZ7DMoxMgwkaWUer9Cz66g1707777032515 \N \N 1 0 0.00 0.00 \N \N \N +770 R044774964 42.97 47.97 complete 0.00 \N 2024-02-12 22:38:14.888789 2895 2896 0.00 pending balance_due acoadeb@ameblo.jp \N 2024-02-12 22:36:36.106776 2024-02-12 22:38:14.888789 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f 8i4kNGMyY8ZCcFpMGy4RNg1707777396099 \N \N 1 0 0.00 0.00 \N \N \N +776 R068501406 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:38:36.989237 2024-02-12 22:38:57.844846 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f dVk2MPOwKHFA5l_5JZ5mrg1707777516981 \N \N 1 0 0.00 0.00 \N \N \N +773 R511108580 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:37:39.297304 2024-02-12 22:38:03.145351 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f dvQuEkVzFLgUxxDyjspEdw1707777459288 \N \N 1 0 0.00 0.00 \N \N \N +754 R494219586 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:30:30.54272 2024-02-12 22:30:47.952644 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f r4UntvXj7eSGZThB-Mcn8A1707777030535 \N \N 1 0 0.00 0.00 \N \N \N +708 R626102462 29.98 34.98 complete 0.00 \N 2024-02-12 22:18:04.334971 2747 2748 0.00 pending balance_due mdormank@google.com.au \N 2024-02-12 22:16:42.178366 2024-02-12 22:18:04.334971 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f XnVez6z7drnvztc649lPjw1707776202170 \N \N 1 0 0.00 0.00 \N \N \N +711 R389279458 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:16:46.001766 2024-02-12 22:16:58.149054 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f O2clLj86f7FN6YzkXUmXyA1707776205993 \N \N 1 0 0.00 0.00 \N \N \N +706 R585772413 20.11 25.11 complete 0.00 \N 2024-02-12 22:18:42.669291 2753 2754 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 22:16:40.219218 2024-02-12 22:18:42.669291 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f qdeAacA0lMybxMpirobL6Q1707776200210 \N \N 1 0 0.00 0.00 \N \N \N +751 R735412560 31.98 36.98 complete 0.00 \N 2024-02-12 22:33:56.339209 2863 2864 0.00 pending balance_due slapenna29@smugmug.com \N 2024-02-12 22:30:27.587695 2024-02-12 22:33:56.339209 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f Yq7NdBcphnbaCge5NyL1YA1707777027579 \N \N 1 0 0.00 0.00 \N \N \N +713 R567021282 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:16:46.463145 2024-02-12 22:17:53.033909 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f OnKn-SMCNYF4rBFNJs34QA1707776206456 \N \N 1 0 0.00 0.00 \N \N \N +679 R619393329 26.00 31.00 delivery 0.00 \N \N 2653 2654 0.00 \N \N drockwill1k@amazon.co.jp \N 2024-02-12 22:06:02.010981 2024-02-12 22:07:02.381519 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f 0Y3zPR91sTxKOZ-0LKOL0w1707775562003 \N \N 1 0 0.00 0.00 \N \N \N +722 R594553621 34.83 39.83 complete 0.00 \N 2024-02-12 22:23:04.149617 2779 2780 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 22:21:30.427379 2024-02-12 22:23:04.149617 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f 8RT-Rmfvs2y3phL-tlrgwQ1707776490418 \N \N 1 0 0.00 0.00 \N \N \N +757 R549394994 24.48 29.48 complete 0.00 \N 2024-02-12 22:35:00.528566 2875 2876 0.00 pending balance_due apeterkend@cafepress.com \N 2024-02-12 22:30:33.677908 2024-02-12 22:35:00.528566 USD \N \N 5.00 0.00 0.00 spree 0.00 4 \N \N t f r6-r-sPq2x4KzhtGe-eaAA1707777033665 \N \N 1 0 0.00 0.00 \N \N \N +740 R851596999 10.00 15.00 complete 0.00 \N 2024-02-12 22:27:17.250079 2805 2806 0.00 pending balance_due gshilitone@dedecms.com \N 2024-02-12 22:26:08.025411 2024-02-12 22:27:17.250079 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f -xfIj9z_WZhn0oViSzZ4dA1707776768011 \N \N 1 0 0.00 0.00 \N \N \N +710 R757526368 35.97 40.97 address 0.00 \N \N 2761 2762 0.00 \N \N monele1v@prnewswire.com \N 2024-02-12 22:16:45.641712 2024-02-12 22:20:18.321261 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f II3sgHF5jOLqLDvf2DI4sQ1707776205633 \N \N 1 0 0.00 0.00 \N \N \N +705 R532496453 32.48 37.48 complete 0.00 \N 2024-02-12 22:18:22.238602 2751 2752 0.00 pending balance_due mwyss10@nymag.com \N 2024-02-12 22:16:36.487706 2024-02-12 22:18:22.238602 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f WRc0Rd-Kv8NcC8d5p24RMg1707776196477 \N \N 1 0 0.00 0.00 \N \N \N +734 R965735276 18.25 23.25 delivery 0.00 \N \N 2831 2832 0.00 \N \N nkhan1m@globo.com \N 2024-02-12 22:25:52.969179 2024-02-12 22:28:21.541697 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f pJ0lBNBVeP165wIKh1VBlw1707776752960 \N \N 1 0 0.00 0.00 \N \N \N +771 R739261503 24.99 29.99 complete 0.00 \N 2024-02-12 22:38:36.570243 2897 2898 0.00 pending balance_due acoadeb@ameblo.jp \N 2024-02-12 22:36:36.758373 2024-02-12 22:38:36.570243 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f JoeWwKVPDQovMOge7X5-Fw1707777396747 \N \N 1 0 0.00 0.00 \N \N \N +766 R852263453 10.00 15.00 address 0.00 \N \N 2909 2910 0.00 \N \N rjoskovitch1r@usa.gov \N 2024-02-12 22:36:29.790326 2024-02-12 22:38:36.724285 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 36tuLZI_Lv5UvnICITKb2Q1707777389782 \N \N 1 0 0.00 0.00 \N \N \N +775 R662635745 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:38:15.170741 2024-02-12 22:38:39.322601 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f J9Ol_fub3fJVv00NSazyxA1707777495162 \N \N 1 0 0.00 0.00 \N \N \N +777 R809373020 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:38:46.146687 2024-02-12 22:39:07.30024 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f kI8v3cRDisAK41WqTZMKWg1707777526139 \N \N 1 0 0.00 0.00 \N \N \N +769 R125575025 10.00 15.00 address 0.00 \N \N 2911 2912 0.00 \N \N bhearnshawm@noaa.gov \N 2024-02-12 22:36:35.740689 2024-02-12 22:38:43.646289 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f GuQSFqytM46XBFlFVa_lNw1707777395731 \N \N 1 0 0.00 0.00 \N \N \N +742 R847546815 18.98 23.98 delivery 0.00 \N \N 2833 2834 0.00 \N \N fheighwayi@google.co.uk \N 2024-02-12 22:26:09.657388 2024-02-12 22:28:25.601445 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f 1PijakkT5Ka9z8DvT__X5w1707776769650 \N \N 1 0 0.00 0.00 \N \N \N +753 R296556024 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:30:29.420342 2024-02-12 22:30:47.564877 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f qTaOr_cSOGgdrHsm9kcRiw1707777029414 \N \N 1 0 0.00 0.00 \N \N \N +750 R309486969 12.63 17.63 complete 0.00 \N 2024-02-12 22:32:28.811367 2849 2850 0.00 pending balance_due ilevane1t@sun.com \N 2024-02-12 22:30:27.051701 2024-02-12 22:32:28.811367 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f Vu23C14r9VO_BWLqFoIaGw1707777027043 \N \N 1 0 0.00 0.00 \N \N \N +748 R865587677 8.26 13.26 complete 0.00 \N 2024-02-12 22:32:18.014106 2839 2840 0.00 pending balance_due dkingswood28@epa.gov \N 2024-02-12 22:30:16.213089 2024-02-12 22:32:18.014106 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f s4hGsiMLkElDODyADPTe-Q1707777016205 \N \N 1 0 0.00 0.00 \N \N \N +783 R887922936 29.98 34.98 complete 0.00 \N 2024-02-12 22:42:58.017008 2947 2948 0.00 pending balance_due pcottrellz@qq.com \N 2024-02-12 22:41:16.852316 2024-02-12 22:42:58.017008 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f Rjg4gSmfwzPrfm8CNnlNvg1707777676844 \N \N 1 0 0.00 0.00 \N \N \N +768 R711247477 29.97 34.97 complete 0.00 \N 2024-02-12 22:39:40.147365 2915 2916 0.00 pending balance_due bdufaire1p@theglobeandmail.com \N 2024-02-12 22:36:34.519407 2024-02-12 22:39:40.147365 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f P1Z7FRaODdDXdDoQL7ORXQ1707777394512 \N \N 1 0 0.00 0.00 \N \N \N +778 R575526102 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:39:40.344501 2024-02-12 22:40:05.067803 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f jVjWGbZyu8xxA5797DWzCg1707777580336 \N \N 1 0 0.00 0.00 \N \N \N +788 R231911362 12.99 17.99 complete 0.00 \N 2024-02-12 22:42:30.552219 2929 2930 0.00 pending balance_due djeeks1i@stumbleupon.com \N 2024-02-12 22:41:22.352971 2024-02-12 22:42:30.552219 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f eJqKSwRyuqocqpJ9XeZpZg1707777682344 \N \N 1 0 0.00 0.00 \N \N \N +781 R445978088 14.51 19.51 delivery 0.00 \N \N 2937 2938 0.00 \N \N fheaysman1n@yellowbook.com \N 2024-02-12 22:41:12.344946 2024-02-12 22:42:05.149012 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f 4_spG3iDyVmASm20RaSyDQ1707777672337 \N \N 1 0 0.00 0.00 \N \N \N +786 R285638071 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:41:19.943608 2024-02-12 22:41:30.931903 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f DWuV3vg0VL3t5byBavgw1A1707777679934 \N \N 1 0 0.00 0.00 \N \N \N +787 R502290587 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:41:21.734076 2024-02-12 22:41:32.955057 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f uePiEONEqTlk45b7_92tmA1707777681725 \N \N 1 0 0.00 0.00 \N \N \N +785 R452248125 24.99 29.99 complete 0.00 \N 2024-02-12 22:43:00.764152 2949 2950 0.00 pending balance_due rjoskovitch1r@usa.gov \N 2024-02-12 22:41:19.482407 2024-02-12 22:43:00.764152 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f -x5TYHoiq06d1VbSZO2DRA1707777679473 \N \N 1 0 0.00 0.00 \N \N \N +779 R739799983 17.62 22.62 address 0.00 \N \N 2957 2958 0.00 \N \N kskynner8@rakuten.co.jp \N 2024-02-12 22:41:00.581536 2024-02-12 22:44:15.94974 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f zphJTolLoMzHWv0kLfbUQg1707777660574 \N \N 1 0 0.00 0.00 \N \N \N +791 R139189474 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:43:01.072434 2024-02-12 22:43:24.996401 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f asgasBBRoPMTIxcd54x49A1707777781064 \N \N 1 0 0.00 0.00 \N \N \N +780 R717113861 39.98 44.98 delivery 0.00 \N \N 2945 2946 0.00 \N \N pfurlonge2k@rakuten.co.jp \N 2024-02-12 22:41:08.908327 2024-02-12 22:42:14.212725 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f OnTgXlWXwQzdWk29SMDeow1707777668900 \N \N 1 0 0.00 0.00 \N \N \N +794 R360768563 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:45:13.719309 2024-02-12 22:46:42.011484 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f KZE4xblJAflo3V3hEHYCFw1707777913708 \N \N 1 0 0.00 0.00 \N \N \N +789 R020450916 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:42:30.790737 2024-02-12 22:42:30.895498 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 5flWEnbSt3tf9n925icC8Q1707777750783 \N \N 1 0 0.00 0.00 \N \N \N +790 R062855834 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:42:58.392955 2024-02-12 22:42:58.663392 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f IgxyqEjfkk5mDeVDDvF1AA1707777778385 \N \N 1 0 0.00 0.00 \N \N \N +782 R947554904 10.12 15.12 complete 0.00 \N 2024-02-12 22:43:10.730905 2941 2942 0.00 pending balance_due bdeane2d@domainmarket.com \N 2024-02-12 22:41:16.594773 2024-02-12 22:43:10.730905 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f i4WvEnID0kxKWQdaHAQF-A1707777676588 \N \N 1 0 0.00 0.00 \N \N \N +792 R765240617 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:43:10.943838 2024-02-12 22:43:32.375637 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f SYGptTJ_uCeoYO82bZ1TjQ1707777790937 \N \N 1 0 0.00 0.00 \N \N \N +796 R869665226 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:46:33.905057 2024-02-12 22:46:52.122432 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WeOTbPsGcqe5i8bd66a-9w1707777993856 \N \N 1 0 0.00 0.00 \N \N \N +784 R715193799 45.92 50.92 complete 0.00 \N 2024-02-12 22:43:32.645202 2951 2952 0.00 pending balance_due ecarluccij@weibo.com \N 2024-02-12 22:41:18.809605 2024-02-12 22:43:32.645202 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f Yo9vlljhZ3RF38bpde2pVA1707777678802 \N \N 1 0 0.00 0.00 \N \N \N +798 R229138052 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:46:38.94761 2024-02-12 22:46:55.808966 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f oKu30o659Pfy28ZnAZqllQ1707777998937 \N \N 1 0 0.00 0.00 \N \N \N +793 R080438312 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:43:32.906525 2024-02-12 22:43:53.791188 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f EqTB0zXGrgZcCkOoWY3IxA1707777812899 \N \N 1 0 0.00 0.00 \N \N \N +800 R748043359 10.00 15.00 complete 0.00 \N 2024-02-12 22:47:59.568759 2963 2964 0.00 pending balance_due ryorkston20@cnn.com \N 2024-02-12 22:46:43.915475 2024-02-12 22:47:59.568759 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f ZutP0xYiIDR2ZuEdHGpTAg1707778003903 \N \N 1 0 0.00 0.00 \N \N \N +802 R620024390 20.98 25.98 delivery 0.00 \N \N 2977 2978 0.00 \N \N ccardon1b@china.com.cn \N 2024-02-12 22:46:47.751703 2024-02-12 22:47:55.522283 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f R9VVedNTighVLB-zYEujXA1707778007739 \N \N 1 0 0.00 0.00 \N \N \N +797 R286246216 15.98 20.98 complete 0.00 \N 2024-02-12 22:48:29.128685 2971 2972 0.00 pending balance_due egregorattif@lulu.com \N 2024-02-12 22:46:37.358276 2024-02-12 22:48:29.128685 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f GAP-Ol9iIS6SIoKV2JRDpw1707777997349 \N \N 1 0 0.00 0.00 \N \N \N +804 R445980032 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:47:59.862544 2024-02-12 22:48:00.090574 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Mrda4IF1ixlGhGn8MnSN2A1707778079844 \N \N 1 0 0.00 0.00 \N \N \N +806 R366606840 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:48:29.439594 2024-02-12 22:48:50.496156 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f NEQJzbcfKRgxpudkjo67uA1707778109430 \N \N 1 0 0.00 0.00 \N \N \N +801 R090862860 4.13 9.13 complete 0.00 \N 2024-02-12 22:48:01.310518 2965 2966 0.00 pending balance_due mpatrie2r@domainmarket.com \N 2024-02-12 22:46:46.894746 2024-02-12 22:48:01.310518 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N t f a5a7GB1jo6xxNcxI1aYRAw1707778006885 \N \N 1 0 0.00 0.00 \N \N \N +809 R306025377 24.92 29.92 complete 0.00 \N 2024-02-12 22:52:19.525924 2999 3000 0.00 pending balance_due mbordiss1h@eventbrite.com \N 2024-02-12 22:50:42.540145 2024-02-12 22:52:19.525924 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f 8ZhRsty1oYy1uoGKeGhVEQ1707778242527 \N \N 1 0 0.00 0.00 \N \N \N +799 R025823335 12.99 17.99 delivery 0.00 \N \N 2979 2980 0.00 \N \N lpennone17@over-blog.com \N 2024-02-12 22:46:43.849785 2024-02-12 22:48:02.544032 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f uNMeMyE0jfoM3U-qAbfJCQ1707778003837 \N \N 1 0 0.00 0.00 \N \N \N +805 R844067614 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:48:01.601453 2024-02-12 22:48:26.526739 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f yd5FEhgm4bm8gPfFGY47kw1707778081591 \N \N 1 0 0.00 0.00 \N \N \N +795 R853644716 35.99 40.99 complete 0.00 \N 2024-02-12 22:48:46.096642 2975 2976 0.00 pending balance_due tfranca1w@pagesperso-orange.fr \N 2024-02-12 22:46:31.269376 2024-02-12 22:48:46.096642 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f RUyq2DAUbnxPPCF5PWEKvA1707777991255 \N \N 1 0 0.00 0.00 \N \N \N +803 R942836507 10.00 15.00 address 0.00 \N \N 2983 2984 0.00 \N \N dkitson1j@cnbc.com \N 2024-02-12 22:46:49.042761 2024-02-12 22:49:00.763923 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f ThUGKIif1o-Y5zusCWc5vQ1707778009032 \N \N 1 0 0.00 0.00 \N \N \N +807 R338123678 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:48:46.458375 2024-02-12 22:49:07.591956 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Nkfcs2fk1OI6HP8yNi4hlQ1707778126449 \N \N 1 0 0.00 0.00 \N \N \N +808 R137929024 34.04 39.04 complete 0.00 \N 2024-02-12 22:52:58.819036 3007 3008 0.00 pending balance_due gspinellou@yolasite.com \N 2024-02-12 22:50:39.519934 2024-02-12 22:52:58.819036 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N t f MpK9yvaObQPWO4G3QfAfBQ1707778239509 \N \N 1 0 0.00 0.00 \N \N \N +812 R129291949 44.90 49.90 delivery 0.00 \N \N 3005 3006 0.00 \N \N lravilus21@instagram.com \N 2024-02-12 22:50:46.450332 2024-02-12 22:51:51.364428 USD \N \N 5.00 0.00 0.00 spree 0.00 3 \N \N f f cugD2Y1DfFoX6zQR6PXcwQ1707778246440 \N \N 1 0 0.00 0.00 \N \N \N +811 R201631115 30.00 35.00 complete 0.00 \N 2024-02-12 22:52:22.747271 3001 3002 0.00 pending balance_due tprickett15@boston.com \N 2024-02-12 22:50:45.739645 2024-02-12 22:52:22.747271 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f I6qBepRSRwdFqSLLJ4ASgA1707778245731 \N \N 1 0 0.00 0.00 \N \N \N +814 R714021368 14.99 19.99 address 0.00 \N \N 3015 3016 0.00 \N \N voverill5@ebay.co.uk \N 2024-02-12 22:50:48.225908 2024-02-12 22:53:00.58532 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f 4-CUFZcxKs4yWiennb_YyQ1707778248216 \N \N 1 0 0.00 0.00 \N \N \N +820 R643582984 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:52:59.215778 2024-02-12 22:53:20.351591 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f cJnOKaLdtIhFfMo6mht0CA1707778379207 \N \N 1 0 0.00 0.00 \N \N \N +813 R418093289 12.99 17.99 delivery 0.00 \N \N 3013 3014 0.00 \N \N ekenward3@biglobe.ne.jp \N 2024-02-12 22:50:47.489603 2024-02-12 22:52:11.967622 USD \N \N 5.00 0.00 0.00 spree 0.00 1 \N \N f f VlUhNiZGhukT5K7cYHm9MA1707778247479 \N \N 1 0 0.00 0.00 \N \N \N +815 R433082298 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:50:49.211048 2024-02-12 22:51:05.656606 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Bg5p8JbZxlS-bRymJk0kZA1707778249202 \N \N 1 0 0.00 0.00 \N \N \N +817 R975336396 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:52:19.879696 2024-02-12 22:52:20.043107 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 9buGAXOB7QJ4F8xnDvndnA1707778339870 \N \N 1 0 0.00 0.00 \N \N \N +816 R801066544 20.98 25.98 complete 0.00 \N 2024-02-12 22:52:24.704221 3003 3004 0.00 pending balance_due ryorkston20@cnn.com \N 2024-02-12 22:50:49.478433 2024-02-12 22:52:24.704221 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N t f RTOPPHZX4l7_sjz6TkV7qw1707778249468 \N \N 1 0 0.00 0.00 \N \N \N +818 R232096178 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:52:23.106161 2024-02-12 22:52:47.561247 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f IDOC7bQvhK33fS5ypA5mLw1707778343098 \N \N 1 0 0.00 0.00 \N \N \N +819 R780253165 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2024-02-12 22:52:25.046739 2024-02-12 22:52:49.292255 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f SqdUIbk_s7GoF9fIykngkw1707778345037 \N \N 1 0 0.00 0.00 \N \N \N +810 R103798688 23.34 28.34 delivery 0.00 \N \N 3017 3018 0.00 \N \N voverill5@ebay.co.uk \N 2024-02-12 22:50:44.603021 2024-02-12 22:53:06.676255 USD \N \N 5.00 0.00 0.00 spree 0.00 2 \N \N f f SHJjUs3zUhX9gpVEiyieMg1707778244593 \N \N 1 0 0.00 0.00 \N \N \N +\. + + +-- +-- Data for Name: spree_payment_capture_events; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_payment_capture_events (id, amount, payment_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_payment_methods; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_payment_methods (id, type, name, description, active, deleted_at, created_at, updated_at, display_on, auto_capture, preferences, "position", public_metadata, private_metadata) FROM stdin; +1 Spree::Gateway::Bogus Credit Card Bogus payment gateway. t \N 2022-07-12 18:13:09.810518 2022-07-12 18:13:09.833477 both \N ---\n:dummy_key: PUBLICKEY123\n:server: test\n:test_mode: true\n 1 \N \N +2 Spree::PaymentMethod::Check Check Pay by check. t \N 2022-07-12 18:13:09.949257 2022-07-12 18:13:09.969282 both \N \N 2 \N \N +\. + + +-- +-- Data for Name: spree_payment_methods_stores; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_payment_methods_stores (payment_method_id, store_id) FROM stdin; +1 1 +1 2 +1 3 +2 1 +2 2 +2 3 +\. + + +-- +-- Data for Name: spree_payments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_payments (id, amount, order_id, source_type, source_id, payment_method_id, state, response_code, avs_response, created_at, updated_at, number, cvv_response_code, cvv_response_message, public_metadata, private_metadata, intent_client_key) FROM stdin; +1 27.49 1 Spree::CreditCard 1 1 pending 12345 \N 2022-07-12 18:15:53.741751 2022-07-12 18:15:53.741751 P5XV0ZIG \N \N \N \N \N +2 32.49 2 Spree::CreditCard 1 1 pending 12345 \N 2022-07-12 18:15:54.14059 2022-07-12 18:15:54.14059 PG2INO8P \N \N \N \N \N +3 0.00 63 Spree::CreditCard 2 1 checkout \N \N 2024-02-09 22:50:56.663175 2024-02-09 22:50:56.663175 PNG0JQA4 \N \N \N \N \N +5 0.00 65 Spree::CreditCard 4 1 checkout \N \N 2024-02-09 22:51:55.48113 2024-02-09 22:51:55.48113 PDNVGK8I \N \N \N \N \N +6 0.00 66 Spree::CreditCard 5 1 checkout \N \N 2024-02-09 22:52:53.861443 2024-02-09 22:52:53.861443 PULO6ZI1 \N \N \N \N \N +7 0.00 67 Spree::CreditCard 6 1 checkout \N \N 2024-02-09 22:53:52.344183 2024-02-09 22:53:52.344183 PZVUBMJ6 \N \N \N \N \N +8 0.00 68 Spree::CreditCard 7 1 checkout \N \N 2024-02-09 22:54:50.821039 2024-02-09 22:54:50.821039 PJ8JY1FB \N \N \N \N \N +9 0.00 69 Spree::CreditCard 8 1 checkout \N \N 2024-02-09 22:55:49.307028 2024-02-09 22:55:49.307028 POGH974D \N \N \N \N \N +10 0.00 70 Spree::CreditCard 9 1 checkout \N \N 2024-02-09 22:56:48.814721 2024-02-09 22:56:48.814721 PRJK5FC2 \N \N \N \N \N +11 0.00 71 Spree::CreditCard 10 1 checkout \N \N 2024-02-10 01:00:19.285104 2024-02-10 01:00:19.285104 P6GQGAAF \N \N \N \N \N +12 0.00 72 Spree::CreditCard 11 1 checkout \N \N 2024-02-10 04:22:37.756981 2024-02-10 04:22:37.756981 PCLEXOC5 \N \N \N \N \N +13 0.00 73 Spree::CreditCard 12 1 checkout \N \N 2024-02-10 08:12:45.366626 2024-02-10 08:12:45.366626 PBP93K1A \N \N \N \N \N +14 0.00 74 Spree::CreditCard 13 1 checkout \N \N 2024-02-10 12:30:56.128211 2024-02-10 12:30:56.128211 PVS0ZGK7 \N \N \N \N \N +15 0.00 75 Spree::CreditCard 14 1 checkout \N \N 2024-02-10 13:50:10.158728 2024-02-10 13:50:10.158728 PZRCU32E \N \N \N \N \N +16 0.00 76 Spree::CreditCard 15 1 checkout \N \N 2024-02-10 14:41:07.596164 2024-02-10 14:41:07.596164 PVHHNFFI \N \N \N \N \N +17 0.00 77 Spree::CreditCard 16 1 checkout \N \N 2024-02-10 16:04:57.476831 2024-02-10 16:04:57.476831 PFYKK1EU \N \N \N \N \N +18 0.00 78 Spree::CreditCard 17 1 checkout \N \N 2024-02-10 17:57:42.332738 2024-02-10 17:57:42.332738 PI9ZK8ZI \N \N \N \N \N +19 0.00 79 Spree::CreditCard 18 1 checkout \N \N 2024-02-10 22:29:03.235865 2024-02-10 22:29:03.235865 P6VW1BF6 \N \N \N \N \N +20 0.00 81 Spree::CreditCard 19 1 checkout \N \N 2024-02-11 02:45:20.259796 2024-02-11 02:45:20.259796 P5XF13JC \N \N \N \N \N +21 0.00 82 Spree::CreditCard 20 1 checkout \N \N 2024-02-11 05:59:47.559042 2024-02-11 05:59:47.559042 PZTB6SK7 \N \N \N \N \N +22 0.00 83 Spree::CreditCard 21 1 checkout \N \N 2024-02-11 09:54:29.500313 2024-02-11 09:54:29.500313 PGSFT3VJ \N \N \N \N \N +23 0.00 84 Spree::CreditCard 22 1 checkout \N \N 2024-02-11 13:55:09.330656 2024-02-11 13:55:09.330656 PZQD2B1M \N \N \N \N \N +24 0.00 85 Spree::CreditCard 23 1 checkout \N \N 2024-02-11 15:05:54.066022 2024-02-11 15:05:54.066022 PTV5TXHV \N \N \N \N \N +25 0.00 86 Spree::CreditCard 24 1 checkout \N \N 2024-02-11 20:00:38.696881 2024-02-11 20:00:38.696881 POWYW7Y2 \N \N \N \N \N +26 0.00 87 Spree::CreditCard 25 1 checkout \N \N 2024-02-11 21:01:41.530175 2024-02-11 21:01:41.530175 PWI8XP31 \N \N \N \N \N +27 0.00 88 Spree::CreditCard 26 1 checkout \N \N 2024-02-12 00:21:37.397256 2024-02-12 00:21:37.397256 PD8G648X \N \N \N \N \N +28 0.00 89 Spree::CreditCard 27 1 checkout \N \N 2024-02-12 02:43:36.504052 2024-02-12 02:43:36.504052 P8PPF30T \N \N \N \N \N +29 0.00 90 Spree::CreditCard 28 1 checkout \N \N 2024-02-12 06:12:56.774954 2024-02-12 06:12:56.774954 P8AQ36D0 \N \N \N \N \N +30 0.00 92 Spree::CreditCard 29 1 checkout \N \N 2024-02-12 09:00:10.384177 2024-02-12 09:00:10.384177 PAC5Z2MR \N \N \N \N \N +31 0.00 94 Spree::CreditCard 30 1 checkout \N \N 2024-02-12 10:48:35.102228 2024-02-12 10:48:35.102228 PZHB36NU \N \N \N \N \N +32 0.00 96 Spree::CreditCard 31 1 checkout \N \N 2024-02-12 12:23:30.686492 2024-02-12 12:23:30.686492 PV09HMIR \N \N \N \N \N +33 0.00 97 Spree::CreditCard 32 1 checkout \N \N 2024-02-12 13:10:49.770421 2024-02-12 13:10:49.770421 P6JR3M7V \N \N \N \N \N +34 0.00 98 Spree::CreditCard 33 1 checkout \N \N 2024-02-12 13:11:46.512599 2024-02-12 13:11:46.512599 PQD9R1A2 \N \N \N \N \N +35 0.00 99 Spree::CreditCard 34 1 checkout \N \N 2024-02-12 13:12:43.484679 2024-02-12 13:12:43.484679 PUHABTGA \N \N \N \N \N +36 0.00 100 Spree::CreditCard 35 1 checkout \N \N 2024-02-12 13:13:40.659014 2024-02-12 13:13:40.659014 PH2FDTVI \N \N \N \N \N +37 0.00 101 Spree::CreditCard 36 1 checkout \N \N 2024-02-12 13:14:37.705147 2024-02-12 13:14:37.705147 POFFSK0E \N \N \N \N \N +38 0.00 102 Spree::CreditCard 37 1 checkout \N \N 2024-02-12 13:15:34.779162 2024-02-12 13:15:34.779162 PJG1WOZB \N \N \N \N \N +39 0.00 103 Spree::CreditCard 38 1 checkout \N \N 2024-02-12 13:16:31.65075 2024-02-12 13:16:31.65075 P0KVPUSU \N \N \N \N \N +40 0.00 104 Spree::CreditCard 39 1 checkout \N \N 2024-02-12 13:17:28.558624 2024-02-12 13:17:28.558624 PRMVGIDS \N \N \N \N \N +41 0.00 105 Spree::CreditCard 40 1 checkout \N \N 2024-02-12 13:18:25.482941 2024-02-12 13:18:25.482941 P1K8WL7B \N \N \N \N \N +42 0.00 106 Spree::CreditCard 41 1 checkout \N \N 2024-02-12 13:19:22.479803 2024-02-12 13:19:22.479803 PK5VXRRJ \N \N \N \N \N +43 0.00 107 Spree::CreditCard 42 1 checkout \N \N 2024-02-12 13:20:19.363427 2024-02-12 13:20:19.363427 PAM78ABQ \N \N \N \N \N +44 0.00 108 Spree::CreditCard 43 1 checkout \N \N 2024-02-12 13:21:16.311969 2024-02-12 13:21:16.311969 PY1MKZ99 \N \N \N \N \N +45 0.00 109 Spree::CreditCard 44 1 checkout \N \N 2024-02-12 13:22:13.163705 2024-02-12 13:22:13.163705 PMBZN54T \N \N \N \N \N +46 0.00 110 Spree::CreditCard 45 1 checkout \N \N 2024-02-12 13:23:10.035871 2024-02-12 13:23:10.035871 PG30UM78 \N \N \N \N \N +47 0.00 111 Spree::CreditCard 46 1 checkout \N \N 2024-02-12 13:24:06.817836 2024-02-12 13:24:06.817836 PHTC26QO \N \N \N \N \N +48 0.00 112 Spree::CreditCard 47 1 checkout \N \N 2024-02-12 13:25:03.66905 2024-02-12 13:25:03.66905 PRX67W3X \N \N \N \N \N +49 0.00 113 Spree::CreditCard 48 1 checkout \N \N 2024-02-12 13:26:00.572093 2024-02-12 13:26:00.572093 P2VIEQSL \N \N \N \N \N +50 0.00 114 Spree::CreditCard 49 1 checkout \N \N 2024-02-12 13:26:57.381815 2024-02-12 13:26:57.381815 PDO31YPR \N \N \N \N \N +51 0.00 115 Spree::CreditCard 50 1 checkout \N \N 2024-02-12 13:27:54.121294 2024-02-12 13:27:54.121294 PB93VON0 \N \N \N \N \N +52 0.00 116 Spree::CreditCard 51 1 checkout \N \N 2024-02-12 13:28:50.951109 2024-02-12 13:28:50.951109 PEHISSHE \N \N \N \N \N +53 0.00 117 Spree::CreditCard 52 1 checkout \N \N 2024-02-12 13:29:47.706122 2024-02-12 13:29:47.706122 P76UOF75 \N \N \N \N \N +54 0.00 118 Spree::CreditCard 53 1 checkout \N \N 2024-02-12 13:30:44.54863 2024-02-12 13:30:44.54863 P811NVPA \N \N \N \N \N +55 0.00 119 Spree::CreditCard 54 1 checkout \N \N 2024-02-12 13:31:41.455063 2024-02-12 13:31:41.455063 PZPJ3LLM \N \N \N \N \N +56 0.00 120 Spree::CreditCard 55 1 checkout \N \N 2024-02-12 13:32:38.626498 2024-02-12 13:32:38.626498 P8YM03J8 \N \N \N \N \N +57 0.00 121 Spree::CreditCard 56 1 checkout \N \N 2024-02-12 13:33:35.502093 2024-02-12 13:33:35.502093 PMKMSIKY \N \N \N \N \N +58 0.00 122 Spree::CreditCard 57 1 checkout \N \N 2024-02-12 13:34:32.238767 2024-02-12 13:34:32.238767 PVYRQID8 \N \N \N \N \N +59 0.00 123 Spree::CreditCard 58 1 checkout \N \N 2024-02-12 13:35:29.188419 2024-02-12 13:35:29.188419 PCZDRRVN \N \N \N \N \N +60 0.00 124 Spree::CreditCard 59 1 checkout \N \N 2024-02-12 13:36:25.952444 2024-02-12 13:36:25.952444 PTV0KPU6 \N \N \N \N \N +64 0.00 128 Spree::CreditCard 63 1 checkout \N \N 2024-02-12 13:40:13.611527 2024-02-12 13:40:13.611527 PC9NB3FW \N \N \N \N \N +65 0.00 129 Spree::CreditCard 64 1 checkout \N \N 2024-02-12 13:41:10.388163 2024-02-12 13:41:10.388163 PZXN5GNC \N \N \N \N \N +67 0.00 131 Spree::CreditCard 66 1 checkout \N \N 2024-02-12 13:43:04.020229 2024-02-12 13:43:04.020229 PEWDUBYJ \N \N \N \N \N +68 0.00 132 Spree::CreditCard 67 1 checkout \N \N 2024-02-12 13:44:00.864094 2024-02-12 13:44:00.864094 PW1VFVCC \N \N \N \N \N +69 0.00 133 Spree::CreditCard 68 1 checkout \N \N 2024-02-12 13:44:57.608778 2024-02-12 13:44:57.608778 PIQHYPCR \N \N \N \N \N +70 0.00 134 Spree::CreditCard 69 1 checkout \N \N 2024-02-12 13:45:54.495987 2024-02-12 13:45:54.495987 P1NNDYWY \N \N \N \N \N +72 0.00 136 Spree::CreditCard 71 1 checkout \N \N 2024-02-12 13:47:48.698422 2024-02-12 13:47:48.698422 PBILITH1 \N \N \N \N \N +74 0.00 138 Spree::CreditCard 73 1 checkout \N \N 2024-02-12 13:49:42.454714 2024-02-12 13:49:42.454714 PW5U6I3P \N \N \N \N \N +75 0.00 139 Spree::CreditCard 74 1 checkout \N \N 2024-02-12 13:50:39.412156 2024-02-12 13:50:39.412156 PED7VJ5E \N \N \N \N \N +77 0.00 141 Spree::CreditCard 76 1 checkout \N \N 2024-02-12 13:52:33.379083 2024-02-12 13:52:33.379083 P3BTYLZF \N \N \N \N \N +79 0.00 143 Spree::CreditCard 78 1 checkout \N \N 2024-02-12 13:54:27.067626 2024-02-12 13:54:27.067626 PZIZSTJM \N \N \N \N \N +80 0.00 144 Spree::CreditCard 79 1 checkout \N \N 2024-02-12 13:55:23.971247 2024-02-12 13:55:23.971247 PCFHXK78 \N \N \N \N \N +61 0.00 125 Spree::CreditCard 60 1 checkout \N \N 2024-02-12 13:37:23.020648 2024-02-12 13:37:23.020648 PJMFX62O \N \N \N \N \N +62 0.00 126 Spree::CreditCard 61 1 checkout \N \N 2024-02-12 13:38:20.099098 2024-02-12 13:38:20.099098 PR2MWOG4 \N \N \N \N \N +63 0.00 127 Spree::CreditCard 62 1 checkout \N \N 2024-02-12 13:39:16.853746 2024-02-12 13:39:16.853746 P8NMOTKA \N \N \N \N \N +66 0.00 130 Spree::CreditCard 65 1 checkout \N \N 2024-02-12 13:42:07.231023 2024-02-12 13:42:07.231023 PQGXMS6L \N \N \N \N \N +71 0.00 135 Spree::CreditCard 70 1 checkout \N \N 2024-02-12 13:46:51.706138 2024-02-12 13:46:51.706138 PSTBHC7E \N \N \N \N \N +73 0.00 137 Spree::CreditCard 72 1 checkout \N \N 2024-02-12 13:48:45.505678 2024-02-12 13:48:45.505678 P123BD0Q \N \N \N \N \N +76 0.00 140 Spree::CreditCard 75 1 checkout \N \N 2024-02-12 13:51:36.355151 2024-02-12 13:51:36.355151 PE7QPWUV \N \N \N \N \N +78 0.00 142 Spree::CreditCard 77 1 checkout \N \N 2024-02-12 13:53:30.275139 2024-02-12 13:53:30.275139 P0KJRJWS \N \N \N \N \N +81 0.00 145 Spree::CreditCard 80 1 checkout \N \N 2024-02-12 13:56:20.925824 2024-02-12 13:56:20.925824 PTT3PGLX \N \N \N \N \N +82 0.00 146 Spree::CreditCard 81 1 checkout \N \N 2024-02-12 13:57:17.821815 2024-02-12 13:57:17.821815 P2DP4HTX \N \N \N \N \N +83 0.00 147 Spree::CreditCard 82 1 checkout \N \N 2024-02-12 13:58:14.637041 2024-02-12 13:58:14.637041 P85B5DWZ \N \N \N \N \N +84 0.00 148 Spree::CreditCard 83 1 checkout \N \N 2024-02-12 13:59:11.584968 2024-02-12 13:59:11.584968 PWLDFWHM \N \N \N \N \N +85 0.00 149 Spree::CreditCard 84 1 checkout \N \N 2024-02-12 14:00:08.363346 2024-02-12 14:00:08.363346 P3WBO55P \N \N \N \N \N +86 0.00 150 Spree::CreditCard 85 1 checkout \N \N 2024-02-12 14:01:05.143691 2024-02-12 14:01:05.143691 PBH8C0CF \N \N \N \N \N +87 0.00 151 Spree::CreditCard 86 1 checkout \N \N 2024-02-12 14:02:02.160432 2024-02-12 14:02:02.160432 PZD6JO4H \N \N \N \N \N +88 0.00 152 Spree::CreditCard 87 1 checkout \N \N 2024-02-12 14:02:58.909478 2024-02-12 14:02:58.909478 PKS0SVBH \N \N \N \N \N +89 0.00 153 Spree::CreditCard 88 1 checkout \N \N 2024-02-12 14:03:55.818485 2024-02-12 14:03:55.818485 PCJOLUP0 \N \N \N \N \N +90 0.00 154 Spree::CreditCard 89 1 checkout \N \N 2024-02-12 14:04:52.713138 2024-02-12 14:04:52.713138 P5NB57U9 \N \N \N \N \N +91 0.00 155 Spree::CreditCard 90 1 checkout \N \N 2024-02-12 14:05:49.559076 2024-02-12 14:05:49.559076 PWDBUO86 \N \N \N \N \N +92 0.00 156 Spree::CreditCard 91 1 checkout \N \N 2024-02-12 14:06:46.502288 2024-02-12 14:06:46.502288 P6L783NF \N \N \N \N \N +93 0.00 157 Spree::CreditCard 92 1 checkout \N \N 2024-02-12 14:07:43.34492 2024-02-12 14:07:43.34492 P33Q9RQ4 \N \N \N \N \N +94 0.00 158 Spree::CreditCard 93 1 checkout \N \N 2024-02-12 14:08:40.228384 2024-02-12 14:08:40.228384 PT9HNLQE \N \N \N \N \N +95 0.00 159 Spree::CreditCard 94 1 checkout \N \N 2024-02-12 14:09:37.132234 2024-02-12 14:09:37.132234 P3O61UVY \N \N \N \N \N +96 0.00 160 Spree::CreditCard 95 1 checkout \N \N 2024-02-12 14:10:33.980512 2024-02-12 14:10:33.980512 P2JIJE87 \N \N \N \N \N +97 0.00 161 Spree::CreditCard 96 1 checkout \N \N 2024-02-12 14:11:30.898562 2024-02-12 14:11:30.898562 PO023OJT \N \N \N \N \N +98 0.00 162 Spree::CreditCard 97 1 checkout \N \N 2024-02-12 14:12:27.75615 2024-02-12 14:12:27.75615 PCFPZ08Z \N \N \N \N \N +99 0.00 163 Spree::CreditCard 98 1 checkout \N \N 2024-02-12 14:13:24.77547 2024-02-12 14:13:24.77547 PVJ88NWI \N \N \N \N \N +100 0.00 164 Spree::CreditCard 99 1 checkout \N \N 2024-02-12 14:14:21.669162 2024-02-12 14:14:21.669162 PQYAD8JF \N \N \N \N \N +101 0.00 165 Spree::CreditCard 100 1 checkout \N \N 2024-02-12 14:15:18.528524 2024-02-12 14:15:18.528524 PHQTE13W \N \N \N \N \N +102 0.00 166 Spree::CreditCard 101 1 checkout \N \N 2024-02-12 14:16:15.366658 2024-02-12 14:16:15.366658 PW5QS2MM \N \N \N \N \N +103 0.00 167 Spree::CreditCard 102 1 checkout \N \N 2024-02-12 14:17:12.399528 2024-02-12 14:17:12.399528 P6EUIJLB \N \N \N \N \N +104 0.00 168 Spree::CreditCard 103 1 checkout \N \N 2024-02-12 14:18:09.382516 2024-02-12 14:18:09.382516 PG5KYKCN \N \N \N \N \N +105 0.00 169 Spree::CreditCard 104 1 checkout \N \N 2024-02-12 14:19:06.118268 2024-02-12 14:19:06.118268 PQBSTHK2 \N \N \N \N \N +106 0.00 170 Spree::CreditCard 105 1 checkout \N \N 2024-02-12 14:20:02.985262 2024-02-12 14:20:02.985262 PGI5SF9E \N \N \N \N \N +107 0.00 171 Spree::CreditCard 106 1 checkout \N \N 2024-02-12 14:21:00.319409 2024-02-12 14:21:00.319409 PWVIH7A0 \N \N \N \N \N +108 0.00 172 Spree::CreditCard 107 1 checkout \N \N 2024-02-12 14:21:57.04689 2024-02-12 14:21:57.04689 PS5OPNUP \N \N \N \N \N +109 0.00 173 Spree::CreditCard 108 1 checkout \N \N 2024-02-12 14:22:53.997727 2024-02-12 14:22:53.997727 PEWM7GZL \N \N \N \N \N +110 0.00 174 Spree::CreditCard 109 1 checkout \N \N 2024-02-12 14:23:50.766052 2024-02-12 14:23:50.766052 PSMOJBO6 \N \N \N \N \N +111 0.00 175 Spree::CreditCard 110 1 checkout \N \N 2024-02-12 14:24:47.613014 2024-02-12 14:24:47.613014 P0QMEZXW \N \N \N \N \N +112 0.00 176 Spree::CreditCard 111 1 checkout \N \N 2024-02-12 14:25:44.457049 2024-02-12 14:25:44.457049 PQ2L6OSD \N \N \N \N \N +113 0.00 177 Spree::CreditCard 112 1 checkout \N \N 2024-02-12 14:26:41.249013 2024-02-12 14:26:41.249013 PKOB7NPP \N \N \N \N \N +114 0.00 178 Spree::CreditCard 113 1 checkout \N \N 2024-02-12 14:27:38.170383 2024-02-12 14:27:38.170383 P4M6COZA \N \N \N \N \N +115 0.00 179 Spree::CreditCard 114 1 checkout \N \N 2024-02-12 14:28:35.00594 2024-02-12 14:28:35.00594 PATB8UD5 \N \N \N \N \N +116 0.00 180 Spree::CreditCard 115 1 checkout \N \N 2024-02-12 14:29:31.934531 2024-02-12 14:29:31.934531 PZ9Z3WIG \N \N \N \N \N +117 0.00 181 Spree::CreditCard 116 1 checkout \N \N 2024-02-12 14:30:28.862954 2024-02-12 14:30:28.862954 PCVQ9HCO \N \N \N \N \N +118 0.00 182 Spree::CreditCard 117 1 checkout \N \N 2024-02-12 14:31:25.660263 2024-02-12 14:31:25.660263 PWGH40FX \N \N \N \N \N +119 0.00 183 Spree::CreditCard 118 1 checkout \N \N 2024-02-12 14:32:22.475076 2024-02-12 14:32:22.475076 PFL7H64T \N \N \N \N \N +120 0.00 184 Spree::CreditCard 119 1 checkout \N \N 2024-02-12 14:33:19.463363 2024-02-12 14:33:19.463363 PD2M1Y6B \N \N \N \N \N +121 0.00 185 Spree::CreditCard 120 1 checkout \N \N 2024-02-12 14:34:16.42592 2024-02-12 14:34:16.42592 PZTYTRZB \N \N \N \N \N +122 0.00 186 Spree::CreditCard 121 1 checkout \N \N 2024-02-12 14:35:13.319785 2024-02-12 14:35:13.319785 P1M4W1Q7 \N \N \N \N \N +123 0.00 187 Spree::CreditCard 122 1 checkout \N \N 2024-02-12 14:36:10.304991 2024-02-12 14:36:10.304991 P7JV9CNS \N \N \N \N \N +124 0.00 188 Spree::CreditCard 123 1 checkout \N \N 2024-02-12 14:37:07.220168 2024-02-12 14:37:07.220168 PDCU092U \N \N \N \N \N +125 0.00 189 Spree::CreditCard 124 1 checkout \N \N 2024-02-12 14:38:04.230768 2024-02-12 14:38:04.230768 POPV1BW5 \N \N \N \N \N +126 0.00 190 Spree::CreditCard 125 1 checkout \N \N 2024-02-12 14:39:01.154472 2024-02-12 14:39:01.154472 PYGB6EF7 \N \N \N \N \N +127 0.00 191 Spree::CreditCard 126 1 checkout \N \N 2024-02-12 14:39:58.244503 2024-02-12 14:39:58.244503 PWGSWZMG \N \N \N \N \N +128 0.00 192 Spree::CreditCard 127 1 checkout \N \N 2024-02-12 14:40:55.050914 2024-02-12 14:40:55.050914 PSPSG8S2 \N \N \N \N \N +131 0.00 195 Spree::CreditCard 130 1 checkout \N \N 2024-02-12 14:43:46.052657 2024-02-12 14:43:46.052657 PG0J7DBT \N \N \N \N \N +132 0.00 196 Spree::CreditCard 131 1 checkout \N \N 2024-02-12 14:44:42.829704 2024-02-12 14:44:42.829704 P6AARDNA \N \N \N \N \N +133 0.00 197 Spree::CreditCard 132 1 checkout \N \N 2024-02-12 14:45:39.850271 2024-02-12 14:45:39.850271 PB0DRS7Z \N \N \N \N \N +135 0.00 199 Spree::CreditCard 134 1 checkout \N \N 2024-02-12 14:47:33.461575 2024-02-12 14:47:33.461575 PTD0PBMF \N \N \N \N \N +136 0.00 200 Spree::CreditCard 135 1 checkout \N \N 2024-02-12 14:48:30.228981 2024-02-12 14:48:30.228981 PRFB6UVV \N \N \N \N \N +129 0.00 193 Spree::CreditCard 128 1 checkout \N \N 2024-02-12 14:41:51.898592 2024-02-12 14:41:51.898592 PIO58W94 \N \N \N \N \N +130 0.00 194 Spree::CreditCard 129 1 checkout \N \N 2024-02-12 14:42:49.185761 2024-02-12 14:42:49.185761 PYKP0PEV \N \N \N \N \N +134 0.00 198 Spree::CreditCard 133 1 checkout \N \N 2024-02-12 14:46:36.68649 2024-02-12 14:46:36.68649 PPKNWVCV \N \N \N \N \N +137 0.00 201 Spree::CreditCard 136 1 checkout \N \N 2024-02-12 14:49:27.10598 2024-02-12 14:49:27.10598 P5S0F3UA \N \N \N \N \N +138 0.00 202 Spree::CreditCard 137 1 checkout \N \N 2024-02-12 14:50:24.103286 2024-02-12 14:50:24.103286 P2N0FZ4A \N \N \N \N \N +139 0.00 203 Spree::CreditCard 138 1 checkout \N \N 2024-02-12 14:51:21.196296 2024-02-12 14:51:21.196296 PWAROFB1 \N \N \N \N \N +140 0.00 204 Spree::CreditCard 139 1 checkout \N \N 2024-02-12 14:52:17.999888 2024-02-12 14:52:17.999888 P3443HP6 \N \N \N \N \N +141 0.00 205 Spree::CreditCard 140 1 checkout \N \N 2024-02-12 14:53:14.834688 2024-02-12 14:53:14.834688 PL3KNHMH \N \N \N \N \N +142 0.00 206 Spree::CreditCard 141 1 checkout \N \N 2024-02-12 14:54:11.707916 2024-02-12 14:54:11.707916 PW22JEOY \N \N \N \N \N +143 0.00 207 Spree::CreditCard 142 1 checkout \N \N 2024-02-12 14:55:08.597727 2024-02-12 14:55:08.597727 PEII94TI \N \N \N \N \N +144 0.00 208 Spree::CreditCard 143 1 checkout \N \N 2024-02-12 14:56:05.488839 2024-02-12 14:56:05.488839 P2SS5XJ1 \N \N \N \N \N +145 0.00 209 Spree::CreditCard 144 1 checkout \N \N 2024-02-12 14:57:02.427516 2024-02-12 14:57:02.427516 PPY7PD06 \N \N \N \N \N +146 0.00 210 Spree::CreditCard 145 1 checkout \N \N 2024-02-12 14:57:59.139274 2024-02-12 14:57:59.139274 PB2U3CWW \N \N \N \N \N +147 0.00 211 Spree::CreditCard 146 1 checkout \N \N 2024-02-12 14:58:56.011014 2024-02-12 14:58:56.011014 PBRGC4G7 \N \N \N \N \N +148 0.00 212 Spree::CreditCard 147 1 checkout \N \N 2024-02-12 14:59:52.880838 2024-02-12 14:59:52.880838 PZX67VEQ \N \N \N \N \N +149 0.00 213 Spree::CreditCard 148 1 checkout \N \N 2024-02-12 15:00:49.820831 2024-02-12 15:00:49.820831 PO501319 \N \N \N \N \N +150 0.00 214 Spree::CreditCard 149 1 checkout \N \N 2024-02-12 15:01:46.835039 2024-02-12 15:01:46.835039 PBU99QUB \N \N \N \N \N +151 0.00 215 Spree::CreditCard 150 1 checkout \N \N 2024-02-12 15:02:43.814243 2024-02-12 15:02:43.814243 PF3KO7Q6 \N \N \N \N \N +152 0.00 216 Spree::CreditCard 151 1 checkout \N \N 2024-02-12 15:03:40.661472 2024-02-12 15:03:40.661472 P5CVWPS7 \N \N \N \N \N +153 0.00 217 Spree::CreditCard 152 1 checkout \N \N 2024-02-12 15:04:37.492529 2024-02-12 15:04:37.492529 PVE51RD8 \N \N \N \N \N +154 0.00 218 Spree::CreditCard 153 1 checkout \N \N 2024-02-12 15:05:34.566614 2024-02-12 15:05:34.566614 PCYIN90K \N \N \N \N \N +155 0.00 219 Spree::CreditCard 154 1 checkout \N \N 2024-02-12 15:06:31.310827 2024-02-12 15:06:31.310827 PNN2Z7TZ \N \N \N \N \N +156 0.00 220 Spree::CreditCard 155 1 checkout \N \N 2024-02-12 15:07:28.312429 2024-02-12 15:07:28.312429 PNSN4DJ9 \N \N \N \N \N +157 0.00 221 Spree::CreditCard 156 1 checkout \N \N 2024-02-12 15:08:25.431572 2024-02-12 15:08:25.431572 P2G5LT8O \N \N \N \N \N +158 0.00 222 Spree::CreditCard 157 1 checkout \N \N 2024-02-12 15:09:22.303727 2024-02-12 15:09:22.303727 PNZRNZH3 \N \N \N \N \N +159 0.00 223 Spree::CreditCard 158 1 checkout \N \N 2024-02-12 15:10:19.191472 2024-02-12 15:10:19.191472 P27F7ZNZ \N \N \N \N \N +160 0.00 224 Spree::CreditCard 159 1 checkout \N \N 2024-02-12 15:11:16.024785 2024-02-12 15:11:16.024785 PJGK0GKE \N \N \N \N \N +161 0.00 225 Spree::CreditCard 160 1 checkout \N \N 2024-02-12 15:12:12.93885 2024-02-12 15:12:12.93885 PTIIF649 \N \N \N \N \N +162 0.00 226 Spree::CreditCard 161 1 checkout \N \N 2024-02-12 15:13:09.859356 2024-02-12 15:13:09.859356 P0IPNRVZ \N \N \N \N \N +163 0.00 227 Spree::CreditCard 162 1 checkout \N \N 2024-02-12 15:14:06.815962 2024-02-12 15:14:06.815962 PUNTMFPF \N \N \N \N \N +164 0.00 228 Spree::CreditCard 163 1 checkout \N \N 2024-02-12 15:15:03.577726 2024-02-12 15:15:03.577726 PJOID3NF \N \N \N \N \N +165 0.00 229 Spree::CreditCard 164 1 checkout \N \N 2024-02-12 15:16:00.546812 2024-02-12 15:16:00.546812 P11V0ZSL \N \N \N \N \N +166 0.00 230 Spree::CreditCard 165 1 checkout \N \N 2024-02-12 15:16:57.466008 2024-02-12 15:16:57.466008 PQ8GOE7Y \N \N \N \N \N +167 0.00 231 Spree::CreditCard 166 1 checkout \N \N 2024-02-12 15:17:54.378979 2024-02-12 15:17:54.378979 PBB1RBU4 \N \N \N \N \N +168 0.00 232 Spree::CreditCard 167 1 checkout \N \N 2024-02-12 15:18:51.211141 2024-02-12 15:18:51.211141 PRZJQ0TJ \N \N \N \N \N +169 0.00 233 Spree::CreditCard 168 1 checkout \N \N 2024-02-12 15:19:48.107518 2024-02-12 15:19:48.107518 PK94J25A \N \N \N \N \N +170 0.00 234 Spree::CreditCard 169 1 checkout \N \N 2024-02-12 15:20:45.087501 2024-02-12 15:20:45.087501 P9JZM5KT \N \N \N \N \N +171 0.00 235 Spree::CreditCard 170 1 checkout \N \N 2024-02-12 15:21:41.931913 2024-02-12 15:21:41.931913 P1YWXKYY \N \N \N \N \N +172 0.00 236 Spree::CreditCard 171 1 checkout \N \N 2024-02-12 15:22:38.83955 2024-02-12 15:22:38.83955 P366KYIQ \N \N \N \N \N +173 0.00 237 Spree::CreditCard 172 1 checkout \N \N 2024-02-12 15:23:35.652241 2024-02-12 15:23:35.652241 PL2SZM4A \N \N \N \N \N +174 0.00 238 Spree::CreditCard 173 1 checkout \N \N 2024-02-12 15:24:32.776187 2024-02-12 15:24:32.776187 PLVE7GH0 \N \N \N \N \N +175 0.00 239 Spree::CreditCard 174 1 checkout \N \N 2024-02-12 15:25:29.514182 2024-02-12 15:25:29.514182 PN9R905N \N \N \N \N \N +176 0.00 240 Spree::CreditCard 175 1 checkout \N \N 2024-02-12 15:26:26.372502 2024-02-12 15:26:26.372502 PCXVCQON \N \N \N \N \N +177 0.00 241 Spree::CreditCard 176 1 checkout \N \N 2024-02-12 15:27:23.295928 2024-02-12 15:27:23.295928 P50QN20D \N \N \N \N \N +178 0.00 242 Spree::CreditCard 177 1 checkout \N \N 2024-02-12 15:28:20.111696 2024-02-12 15:28:20.111696 PVJDH3Y4 \N \N \N \N \N +179 0.00 243 Spree::CreditCard 178 1 checkout \N \N 2024-02-12 15:29:16.955015 2024-02-12 15:29:16.955015 POKU1TKJ \N \N \N \N \N +180 0.00 244 Spree::CreditCard 179 1 checkout \N \N 2024-02-12 15:30:13.863462 2024-02-12 15:30:13.863462 P21GC9BU \N \N \N \N \N +181 0.00 245 Spree::CreditCard 180 1 checkout \N \N 2024-02-12 15:31:10.669945 2024-02-12 15:31:10.669945 PM25LI7Z \N \N \N \N \N +182 0.00 246 Spree::CreditCard 181 1 checkout \N \N 2024-02-12 15:32:07.428643 2024-02-12 15:32:07.428643 PKKTIC2C \N \N \N \N \N +183 0.00 247 Spree::CreditCard 182 1 checkout \N \N 2024-02-12 15:33:04.079178 2024-02-12 15:33:04.079178 PKQYPJ32 \N \N \N \N \N +184 0.00 248 Spree::CreditCard 183 1 checkout \N \N 2024-02-12 15:34:00.902534 2024-02-12 15:34:00.902534 PQ9IJEAA \N \N \N \N \N +185 0.00 249 Spree::CreditCard 184 1 checkout \N \N 2024-02-12 15:34:57.754294 2024-02-12 15:34:57.754294 P3U1QP6F \N \N \N \N \N +186 0.00 250 Spree::CreditCard 185 1 checkout \N \N 2024-02-12 15:35:54.521107 2024-02-12 15:35:54.521107 PQEG5HR8 \N \N \N \N \N +187 0.00 251 Spree::CreditCard 186 1 checkout \N \N 2024-02-12 15:36:51.379212 2024-02-12 15:36:51.379212 P8TC3PLT \N \N \N \N \N +188 0.00 252 Spree::CreditCard 187 1 checkout \N \N 2024-02-12 15:37:48.340602 2024-02-12 15:37:48.340602 PMVNOC0G \N \N \N \N \N +189 0.00 253 Spree::CreditCard 188 1 checkout \N \N 2024-02-12 15:38:45.140412 2024-02-12 15:38:45.140412 PDN5MUYJ \N \N \N \N \N +192 0.00 256 Spree::CreditCard 191 1 checkout \N \N 2024-02-12 15:41:35.800151 2024-02-12 15:41:35.800151 PL16320E \N \N \N \N \N +194 0.00 258 Spree::CreditCard 193 1 checkout \N \N 2024-02-12 15:43:29.548192 2024-02-12 15:43:29.548192 PFWQZA72 \N \N \N \N \N +195 0.00 259 Spree::CreditCard 194 1 checkout \N \N 2024-02-12 15:44:26.482754 2024-02-12 15:44:26.482754 P9SH7LXE \N \N \N \N \N +197 0.00 261 Spree::CreditCard 196 1 checkout \N \N 2024-02-12 15:46:20.080086 2024-02-12 15:46:20.080086 PXARA16D \N \N \N \N \N +198 0.00 262 Spree::CreditCard 197 1 checkout \N \N 2024-02-12 15:47:16.969733 2024-02-12 15:47:16.969733 PKP3BUZZ \N \N \N \N \N +201 0.00 265 Spree::CreditCard 200 1 checkout \N \N 2024-02-12 15:50:07.560099 2024-02-12 15:50:07.560099 PDMFPXZE \N \N \N \N \N +203 0.00 267 Spree::CreditCard 202 1 checkout \N \N 2024-02-12 15:52:01.168861 2024-02-12 15:52:01.168861 PQUI9EM0 \N \N \N \N \N +205 0.00 269 Spree::CreditCard 204 1 checkout \N \N 2024-02-12 15:53:55.155634 2024-02-12 15:53:55.155634 PPSEWRDZ \N \N \N \N \N +206 0.00 270 Spree::CreditCard 205 1 checkout \N \N 2024-02-12 15:54:52.270817 2024-02-12 15:54:52.270817 P8ADTFU2 \N \N \N \N \N +215 0.00 279 Spree::CreditCard 214 1 checkout \N \N 2024-02-12 16:03:25.920187 2024-02-12 16:03:25.920187 P91GO5AO \N \N \N \N \N +218 0.00 282 Spree::CreditCard 217 1 checkout \N \N 2024-02-12 16:06:16.666201 2024-02-12 16:06:16.666201 PM0SY42C \N \N \N \N \N +221 0.00 285 Spree::CreditCard 220 1 checkout \N \N 2024-02-12 16:09:07.550061 2024-02-12 16:09:07.550061 PKZ35XCJ \N \N \N \N \N +222 0.00 286 Spree::CreditCard 221 1 checkout \N \N 2024-02-12 16:10:04.553148 2024-02-12 16:10:04.553148 PAMOGSG1 \N \N \N \N \N +223 0.00 287 Spree::CreditCard 222 1 checkout \N \N 2024-02-12 16:11:01.506976 2024-02-12 16:11:01.506976 P85QH24S \N \N \N \N \N +226 0.00 290 Spree::CreditCard 225 1 checkout \N \N 2024-02-12 16:13:52.264333 2024-02-12 16:13:52.264333 P8MHTSWR \N \N \N \N \N +227 0.00 291 Spree::CreditCard 226 1 checkout \N \N 2024-02-12 16:14:49.278623 2024-02-12 16:14:49.278623 PXYKITBO \N \N \N \N \N +229 0.00 293 Spree::CreditCard 228 1 checkout \N \N 2024-02-12 16:16:43.226907 2024-02-12 16:16:43.226907 PA810N8W \N \N \N \N \N +231 0.00 295 Spree::CreditCard 230 1 checkout \N \N 2024-02-12 16:18:37.159719 2024-02-12 16:18:37.159719 PRSD6P6U \N \N \N \N \N +232 0.00 296 Spree::CreditCard 231 1 checkout \N \N 2024-02-12 16:19:34.025592 2024-02-12 16:19:34.025592 POJLE9FS \N \N \N \N \N +234 0.00 298 Spree::CreditCard 233 1 checkout \N \N 2024-02-12 16:21:27.973523 2024-02-12 16:21:27.973523 PY8DAML9 \N \N \N \N \N +190 0.00 254 Spree::CreditCard 189 1 checkout \N \N 2024-02-12 15:39:42.236178 2024-02-12 15:39:42.236178 P5JDNLGS \N \N \N \N \N +191 0.00 255 Spree::CreditCard 190 1 checkout \N \N 2024-02-12 15:40:39.049419 2024-02-12 15:40:39.049419 P70SIEAJ \N \N \N \N \N +193 0.00 257 Spree::CreditCard 192 1 checkout \N \N 2024-02-12 15:42:32.727169 2024-02-12 15:42:32.727169 PN0HJMV6 \N \N \N \N \N +196 0.00 260 Spree::CreditCard 195 1 checkout \N \N 2024-02-12 15:45:23.320339 2024-02-12 15:45:23.320339 PO5ICPNH \N \N \N \N \N +199 0.00 263 Spree::CreditCard 198 1 checkout \N \N 2024-02-12 15:48:13.876658 2024-02-12 15:48:13.876658 PRC6ZTWG \N \N \N \N \N +200 0.00 264 Spree::CreditCard 199 1 checkout \N \N 2024-02-12 15:49:10.724114 2024-02-12 15:49:10.724114 PHPBBMFR \N \N \N \N \N +202 0.00 266 Spree::CreditCard 201 1 checkout \N \N 2024-02-12 15:51:04.345855 2024-02-12 15:51:04.345855 PG3319HN \N \N \N \N \N +204 0.00 268 Spree::CreditCard 203 1 checkout \N \N 2024-02-12 15:52:58.026345 2024-02-12 15:52:58.026345 PF92PIA4 \N \N \N \N \N +207 0.00 271 Spree::CreditCard 206 1 checkout \N \N 2024-02-12 15:55:49.23778 2024-02-12 15:55:49.23778 P6PBP7H8 \N \N \N \N \N +208 0.00 272 Spree::CreditCard 207 1 checkout \N \N 2024-02-12 15:56:46.263626 2024-02-12 15:56:46.263626 PVR02UT2 \N \N \N \N \N +209 0.00 273 Spree::CreditCard 208 1 checkout \N \N 2024-02-12 15:57:43.184985 2024-02-12 15:57:43.184985 P7MN0HLE \N \N \N \N \N +210 0.00 274 Spree::CreditCard 209 1 checkout \N \N 2024-02-12 15:58:40.180101 2024-02-12 15:58:40.180101 PFS57978 \N \N \N \N \N +211 0.00 275 Spree::CreditCard 210 1 checkout \N \N 2024-02-12 15:59:37.698202 2024-02-12 15:59:37.698202 PN72G178 \N \N \N \N \N +212 0.00 276 Spree::CreditCard 211 1 checkout \N \N 2024-02-12 16:00:34.672187 2024-02-12 16:00:34.672187 PP8C2YKE \N \N \N \N \N +213 0.00 277 Spree::CreditCard 212 1 checkout \N \N 2024-02-12 16:01:31.756955 2024-02-12 16:01:31.756955 PBT5E2C6 \N \N \N \N \N +214 0.00 278 Spree::CreditCard 213 1 checkout \N \N 2024-02-12 16:02:28.888363 2024-02-12 16:02:28.888363 P8U24WZP \N \N \N \N \N +216 0.00 280 Spree::CreditCard 215 1 checkout \N \N 2024-02-12 16:04:22.915761 2024-02-12 16:04:22.915761 PFV9SV49 \N \N \N \N \N +217 0.00 281 Spree::CreditCard 216 1 checkout \N \N 2024-02-12 16:05:19.851829 2024-02-12 16:05:19.851829 PJ7ZO6D9 \N \N \N \N \N +219 0.00 283 Spree::CreditCard 218 1 checkout \N \N 2024-02-12 16:07:13.587634 2024-02-12 16:07:13.587634 PSZV4Q6Q \N \N \N \N \N +220 0.00 284 Spree::CreditCard 219 1 checkout \N \N 2024-02-12 16:08:10.561238 2024-02-12 16:08:10.561238 PM92KZHK \N \N \N \N \N +224 0.00 288 Spree::CreditCard 223 1 checkout \N \N 2024-02-12 16:11:58.361378 2024-02-12 16:11:58.361378 PWIIXUS5 \N \N \N \N \N +225 0.00 289 Spree::CreditCard 224 1 checkout \N \N 2024-02-12 16:12:55.283241 2024-02-12 16:12:55.283241 PL3BTUEE \N \N \N \N \N +228 0.00 292 Spree::CreditCard 227 1 checkout \N \N 2024-02-12 16:15:46.142666 2024-02-12 16:15:46.142666 PEKZQE97 \N \N \N \N \N +230 0.00 294 Spree::CreditCard 229 1 checkout \N \N 2024-02-12 16:17:40.16797 2024-02-12 16:17:40.16797 PE7HWW7P \N \N \N \N \N +233 0.00 297 Spree::CreditCard 232 1 checkout \N \N 2024-02-12 16:20:30.897319 2024-02-12 16:20:30.897319 P8WI4OUZ \N \N \N \N \N +235 0.00 299 Spree::CreditCard 234 1 checkout \N \N 2024-02-12 16:22:24.920147 2024-02-12 16:22:24.920147 PE6LNHQN \N \N \N \N \N +236 0.00 300 Spree::CreditCard 235 1 checkout \N \N 2024-02-12 16:23:21.904979 2024-02-12 16:23:21.904979 PKI8G81V \N \N \N \N \N +237 0.00 301 Spree::CreditCard 236 1 checkout \N \N 2024-02-12 16:24:19.124844 2024-02-12 16:24:19.124844 PGZFT3ON \N \N \N \N \N +238 0.00 302 Spree::CreditCard 237 1 checkout \N \N 2024-02-12 16:25:16.096267 2024-02-12 16:25:16.096267 P9XFCB4L \N \N \N \N \N +239 0.00 303 Spree::CreditCard 238 1 checkout \N \N 2024-02-12 16:26:13.056137 2024-02-12 16:26:13.056137 P93CT8GQ \N \N \N \N \N +240 0.00 304 Spree::CreditCard 239 1 checkout \N \N 2024-02-12 16:27:10.065203 2024-02-12 16:27:10.065203 POMQTZCU \N \N \N \N \N +241 0.00 305 Spree::CreditCard 240 1 checkout \N \N 2024-02-12 16:28:06.986046 2024-02-12 16:28:06.986046 PY8Y8ISH \N \N \N \N \N +242 0.00 306 Spree::CreditCard 241 1 checkout \N \N 2024-02-12 16:29:03.870478 2024-02-12 16:29:03.870478 P88CL8VU \N \N \N \N \N +243 0.00 307 Spree::CreditCard 242 1 checkout \N \N 2024-02-12 16:30:00.780871 2024-02-12 16:30:00.780871 PFA00WMS \N \N \N \N \N +244 0.00 308 Spree::CreditCard 243 1 checkout \N \N 2024-02-12 16:30:57.659331 2024-02-12 16:30:57.659331 PB2V0RRF \N \N \N \N \N +245 0.00 309 Spree::CreditCard 244 1 checkout \N \N 2024-02-12 16:31:54.596397 2024-02-12 16:31:54.596397 PQL2L3DF \N \N \N \N \N +246 0.00 310 Spree::CreditCard 245 1 checkout \N \N 2024-02-12 16:32:51.623878 2024-02-12 16:32:51.623878 P5J4LO8I \N \N \N \N \N +247 0.00 311 Spree::CreditCard 246 1 checkout \N \N 2024-02-12 16:33:48.598461 2024-02-12 16:33:48.598461 P1K0LH7Y \N \N \N \N \N +248 0.00 312 Spree::CreditCard 247 1 checkout \N \N 2024-02-12 16:34:45.71725 2024-02-12 16:34:45.71725 P0HC5MJV \N \N \N \N \N +249 0.00 313 Spree::CreditCard 248 1 checkout \N \N 2024-02-12 16:35:42.717964 2024-02-12 16:35:42.717964 PV4FVU83 \N \N \N \N \N +250 0.00 314 Spree::CreditCard 249 1 checkout \N \N 2024-02-12 16:36:39.563193 2024-02-12 16:36:39.563193 PAJZYBO2 \N \N \N \N \N +251 0.00 315 Spree::CreditCard 250 1 checkout \N \N 2024-02-12 16:37:36.4287 2024-02-12 16:37:36.4287 P4VMFN50 \N \N \N \N \N +252 0.00 316 Spree::CreditCard 251 1 checkout \N \N 2024-02-12 16:38:33.225626 2024-02-12 16:38:33.225626 PDU25DVM \N \N \N \N \N +253 0.00 317 Spree::CreditCard 252 1 checkout \N \N 2024-02-12 16:39:30.112149 2024-02-12 16:39:30.112149 PJ4SAKMZ \N \N \N \N \N +254 0.00 318 Spree::CreditCard 253 1 checkout \N \N 2024-02-12 16:40:27.017927 2024-02-12 16:40:27.017927 P8MKDX8J \N \N \N \N \N +255 0.00 319 Spree::CreditCard 254 1 checkout \N \N 2024-02-12 16:41:23.737542 2024-02-12 16:41:23.737542 PT89G7ZZ \N \N \N \N \N +256 0.00 320 Spree::CreditCard 255 1 checkout \N \N 2024-02-12 16:42:20.51998 2024-02-12 16:42:20.51998 PX1C6YQP \N \N \N \N \N +257 0.00 321 Spree::CreditCard 256 1 checkout \N \N 2024-02-12 16:43:17.416663 2024-02-12 16:43:17.416663 PRZSQ9SS \N \N \N \N \N +258 0.00 322 Spree::CreditCard 257 1 checkout \N \N 2024-02-12 16:44:14.982502 2024-02-12 16:44:14.982502 PYH3KH57 \N \N \N \N \N +259 0.00 323 Spree::CreditCard 258 1 checkout \N \N 2024-02-12 16:45:12.021374 2024-02-12 16:45:12.021374 PC32YCOR \N \N \N \N \N +260 0.00 324 Spree::CreditCard 259 1 checkout \N \N 2024-02-12 16:46:08.959677 2024-02-12 16:46:08.959677 PPBAJM1V \N \N \N \N \N +261 0.00 325 Spree::CreditCard 260 1 checkout \N \N 2024-02-12 16:47:06.036864 2024-02-12 16:47:06.036864 PF6NR6PO \N \N \N \N \N +262 0.00 326 Spree::CreditCard 261 1 checkout \N \N 2024-02-12 16:48:02.939724 2024-02-12 16:48:02.939724 PTBIKWWD \N \N \N \N \N +263 0.00 327 Spree::CreditCard 262 1 checkout \N \N 2024-02-12 16:48:59.828747 2024-02-12 16:48:59.828747 PFYPQK02 \N \N \N \N \N +264 0.00 328 Spree::CreditCard 263 1 checkout \N \N 2024-02-12 16:49:56.684549 2024-02-12 16:49:56.684549 PN2GQ90X \N \N \N \N \N +265 0.00 329 Spree::CreditCard 264 1 checkout \N \N 2024-02-12 16:50:53.90912 2024-02-12 16:50:53.90912 PCPYIR3Q \N \N \N \N \N +269 0.00 333 Spree::CreditCard 268 1 checkout \N \N 2024-02-12 16:54:41.716502 2024-02-12 16:54:41.716502 PSAQ43PC \N \N \N \N \N +273 0.00 337 Spree::CreditCard 272 1 checkout \N \N 2024-02-12 16:58:29.774326 2024-02-12 16:58:29.774326 P02L4XSK \N \N \N \N \N +277 0.00 341 Spree::CreditCard 276 1 checkout \N \N 2024-02-12 17:02:18.601188 2024-02-12 17:02:18.601188 P17NQCOR \N \N \N \N \N +285 0.00 349 Spree::CreditCard 284 1 checkout \N \N 2024-02-12 17:09:56.56386 2024-02-12 17:09:56.56386 PCFM83Y8 \N \N \N \N \N +288 0.00 352 Spree::CreditCard 287 1 checkout \N \N 2024-02-12 17:12:48.204388 2024-02-12 17:12:48.204388 PPCKBXPM \N \N \N \N \N +293 0.00 357 Spree::CreditCard 292 1 checkout \N \N 2024-02-12 17:17:34.294766 2024-02-12 17:17:34.294766 PSBLQQ9V \N \N \N \N \N +294 0.00 358 Spree::CreditCard 293 1 checkout \N \N 2024-02-12 17:18:31.592086 2024-02-12 17:18:31.592086 P4F7DQJ0 \N \N \N \N \N +295 0.00 359 Spree::CreditCard 294 1 checkout \N \N 2024-02-12 17:19:28.727859 2024-02-12 17:19:28.727859 PKJLMNFE \N \N \N \N \N +300 0.00 364 Spree::CreditCard 299 1 checkout \N \N 2024-02-12 17:24:15.4536 2024-02-12 17:24:15.4536 P2R7VWTO \N \N \N \N \N +302 0.00 366 Spree::CreditCard 301 1 checkout \N \N 2024-02-12 17:26:09.862643 2024-02-12 17:26:09.862643 PSILBPUD \N \N \N \N \N +305 0.00 369 Spree::CreditCard 304 1 checkout \N \N 2024-02-12 17:29:01.969745 2024-02-12 17:29:01.969745 P91F0ZV9 \N \N \N \N \N +306 0.00 370 Spree::CreditCard 305 1 checkout \N \N 2024-02-12 17:29:59.405051 2024-02-12 17:29:59.405051 PSSLEB49 \N \N \N \N \N +266 0.00 330 Spree::CreditCard 265 1 checkout \N \N 2024-02-12 16:51:50.948163 2024-02-12 16:51:50.948163 PS8H8K8V \N \N \N \N \N +267 0.00 331 Spree::CreditCard 266 1 checkout \N \N 2024-02-12 16:52:47.718959 2024-02-12 16:52:47.718959 PUSTSTB1 \N \N \N \N \N +268 0.00 332 Spree::CreditCard 267 1 checkout \N \N 2024-02-12 16:53:44.71021 2024-02-12 16:53:44.71021 PYF6VMO9 \N \N \N \N \N +270 0.00 334 Spree::CreditCard 269 1 checkout \N \N 2024-02-12 16:55:38.667159 2024-02-12 16:55:38.667159 P6AB3VCB \N \N \N \N \N +271 0.00 335 Spree::CreditCard 270 1 checkout \N \N 2024-02-12 16:56:35.913775 2024-02-12 16:56:35.913775 PH8OMR17 \N \N \N \N \N +272 0.00 336 Spree::CreditCard 271 1 checkout \N \N 2024-02-12 16:57:32.769007 2024-02-12 16:57:32.769007 P0S6IGBI \N \N \N \N \N +274 0.00 338 Spree::CreditCard 273 1 checkout \N \N 2024-02-12 16:59:26.677081 2024-02-12 16:59:26.677081 P6YNFLB1 \N \N \N \N \N +275 0.00 339 Spree::CreditCard 274 1 checkout \N \N 2024-02-12 17:00:24.209334 2024-02-12 17:00:24.209334 PU2LKQ0W \N \N \N \N \N +276 0.00 340 Spree::CreditCard 275 1 checkout \N \N 2024-02-12 17:01:21.398692 2024-02-12 17:01:21.398692 PFUBJQTH \N \N \N \N \N +278 0.00 342 Spree::CreditCard 277 1 checkout \N \N 2024-02-12 17:03:15.989428 2024-02-12 17:03:15.989428 PCGIF4LH \N \N \N \N \N +279 0.00 343 Spree::CreditCard 278 1 checkout \N \N 2024-02-12 17:04:13.304892 2024-02-12 17:04:13.304892 PMH8PMSQ \N \N \N \N \N +280 0.00 344 Spree::CreditCard 279 1 checkout \N \N 2024-02-12 17:05:10.556988 2024-02-12 17:05:10.556988 PU620N5E \N \N \N \N \N +281 0.00 345 Spree::CreditCard 280 1 checkout \N \N 2024-02-12 17:06:07.656291 2024-02-12 17:06:07.656291 P4Z7S9AP \N \N \N \N \N +282 0.00 346 Spree::CreditCard 281 1 checkout \N \N 2024-02-12 17:07:04.951605 2024-02-12 17:07:04.951605 PWKBFQ2D \N \N \N \N \N +283 0.00 347 Spree::CreditCard 282 1 checkout \N \N 2024-02-12 17:08:02.130405 2024-02-12 17:08:02.130405 P4W10M2E \N \N \N \N \N +284 0.00 348 Spree::CreditCard 283 1 checkout \N \N 2024-02-12 17:08:59.250761 2024-02-12 17:08:59.250761 P9D5X6DL \N \N \N \N \N +286 0.00 350 Spree::CreditCard 285 1 checkout \N \N 2024-02-12 17:10:53.712794 2024-02-12 17:10:53.712794 PV87FIA5 \N \N \N \N \N +287 0.00 351 Spree::CreditCard 286 1 checkout \N \N 2024-02-12 17:11:50.943099 2024-02-12 17:11:50.943099 P7KBUL8X \N \N \N \N \N +289 0.00 353 Spree::CreditCard 288 1 checkout \N \N 2024-02-12 17:13:45.550578 2024-02-12 17:13:45.550578 PUKC7W9S \N \N \N \N \N +290 0.00 354 Spree::CreditCard 289 1 checkout \N \N 2024-02-12 17:14:42.640459 2024-02-12 17:14:42.640459 PFORWUU0 \N \N \N \N \N +291 0.00 355 Spree::CreditCard 290 1 checkout \N \N 2024-02-12 17:15:39.84336 2024-02-12 17:15:39.84336 PJIVRZYS \N \N \N \N \N +292 0.00 356 Spree::CreditCard 291 1 checkout \N \N 2024-02-12 17:16:37.098912 2024-02-12 17:16:37.098912 PXJ1OJ9W \N \N \N \N \N +296 0.00 360 Spree::CreditCard 295 1 checkout \N \N 2024-02-12 17:20:26.343106 2024-02-12 17:20:26.343106 PB81JX4J \N \N \N \N \N +297 0.00 361 Spree::CreditCard 296 1 checkout \N \N 2024-02-12 17:21:23.596016 2024-02-12 17:21:23.596016 PVZV3KPM \N \N \N \N \N +298 0.00 362 Spree::CreditCard 297 1 checkout \N \N 2024-02-12 17:22:21.122548 2024-02-12 17:22:21.122548 PKF49RQR \N \N \N \N \N +299 0.00 363 Spree::CreditCard 298 1 checkout \N \N 2024-02-12 17:23:18.273152 2024-02-12 17:23:18.273152 P0GI4BLA \N \N \N \N \N +301 0.00 365 Spree::CreditCard 300 1 checkout \N \N 2024-02-12 17:25:12.593639 2024-02-12 17:25:12.593639 PULCEUHB \N \N \N \N \N +303 0.00 367 Spree::CreditCard 302 1 checkout \N \N 2024-02-12 17:27:07.333324 2024-02-12 17:27:07.333324 PBPXWZCA \N \N \N \N \N +304 0.00 368 Spree::CreditCard 303 1 checkout \N \N 2024-02-12 17:28:04.633464 2024-02-12 17:28:04.633464 PC26ABUQ \N \N \N \N \N +307 0.00 371 Spree::CreditCard 306 1 checkout \N \N 2024-02-12 17:30:56.612499 2024-02-12 17:30:56.612499 PZNN2QAU \N \N \N \N \N +308 0.00 372 Spree::CreditCard 307 1 checkout \N \N 2024-02-12 17:31:53.899131 2024-02-12 17:31:53.899131 PF7BWL4I \N \N \N \N \N +309 0.00 373 Spree::CreditCard 308 1 checkout \N \N 2024-02-12 17:32:50.741195 2024-02-12 17:32:50.741195 P28OXTA4 \N \N \N \N \N +310 0.00 374 Spree::CreditCard 309 1 checkout \N \N 2024-02-12 17:33:47.405318 2024-02-12 17:33:47.405318 PYE4HTE5 \N \N \N \N \N +311 0.00 375 Spree::CreditCard 310 1 checkout \N \N 2024-02-12 17:34:44.128215 2024-02-12 17:34:44.128215 PKAXVA86 \N \N \N \N \N +312 0.00 376 Spree::CreditCard 311 1 checkout \N \N 2024-02-12 17:35:40.929235 2024-02-12 17:35:40.929235 PVXHOP6O \N \N \N \N \N +313 0.00 377 Spree::CreditCard 312 1 checkout \N \N 2024-02-12 17:36:37.756492 2024-02-12 17:36:37.756492 P2YSQBUH \N \N \N \N \N +314 0.00 378 Spree::CreditCard 313 1 checkout \N \N 2024-02-12 17:37:34.684598 2024-02-12 17:37:34.684598 PRGD0K6I \N \N \N \N \N +315 0.00 379 Spree::CreditCard 314 1 checkout \N \N 2024-02-12 17:38:31.575772 2024-02-12 17:38:31.575772 PC39P7MI \N \N \N \N \N +316 0.00 380 Spree::CreditCard 315 1 checkout \N \N 2024-02-12 17:39:28.532 2024-02-12 17:39:28.532 P0AHX2W4 \N \N \N \N \N +317 0.00 381 Spree::CreditCard 316 1 checkout \N \N 2024-02-12 17:40:25.468537 2024-02-12 17:40:25.468537 PFSFNZW3 \N \N \N \N \N +318 0.00 382 Spree::CreditCard 317 1 checkout \N \N 2024-02-12 17:41:22.69567 2024-02-12 17:41:22.69567 P485VX6J \N \N \N \N \N +319 0.00 383 Spree::CreditCard 318 1 checkout \N \N 2024-02-12 17:42:19.587207 2024-02-12 17:42:19.587207 P8P89JCC \N \N \N \N \N +320 0.00 384 Spree::CreditCard 319 1 checkout \N \N 2024-02-12 17:43:16.39684 2024-02-12 17:43:16.39684 PJDX13YA \N \N \N \N \N +321 0.00 385 Spree::CreditCard 320 1 checkout \N \N 2024-02-12 17:44:13.145029 2024-02-12 17:44:13.145029 PNRY23JV \N \N \N \N \N +322 0.00 386 Spree::CreditCard 321 1 checkout \N \N 2024-02-12 17:45:10.393398 2024-02-12 17:45:10.393398 PAKPFN7N \N \N \N \N \N +323 0.00 387 Spree::CreditCard 322 1 checkout \N \N 2024-02-12 17:46:07.386041 2024-02-12 17:46:07.386041 PNKYKJTG \N \N \N \N \N +324 0.00 388 Spree::CreditCard 323 1 checkout \N \N 2024-02-12 17:47:04.440125 2024-02-12 17:47:04.440125 PB0MGHM8 \N \N \N \N \N +325 0.00 389 Spree::CreditCard 324 1 checkout \N \N 2024-02-12 17:48:01.478203 2024-02-12 17:48:01.478203 PHRAL5BF \N \N \N \N \N +326 0.00 390 Spree::CreditCard 325 1 checkout \N \N 2024-02-12 17:48:58.331128 2024-02-12 17:48:58.331128 PJV30E1X \N \N \N \N \N +327 0.00 391 Spree::CreditCard 326 1 checkout \N \N 2024-02-12 17:49:55.552493 2024-02-12 17:49:55.552493 P13DA3TD \N \N \N \N \N +328 0.00 392 Spree::CreditCard 327 1 checkout \N \N 2024-02-12 17:50:52.355009 2024-02-12 17:50:52.355009 PWQCDN7N \N \N \N \N \N +329 0.00 393 Spree::CreditCard 328 1 checkout \N \N 2024-02-12 17:51:49.300877 2024-02-12 17:51:49.300877 PMJYPDPX \N \N \N \N \N +330 0.00 394 Spree::CreditCard 329 1 checkout \N \N 2024-02-12 17:52:46.336629 2024-02-12 17:52:46.336629 P4WSCHGO \N \N \N \N \N +331 0.00 395 Spree::CreditCard 330 1 checkout \N \N 2024-02-12 17:53:43.227098 2024-02-12 17:53:43.227098 PFJM2K9H \N \N \N \N \N +332 0.00 396 Spree::CreditCard 331 1 checkout \N \N 2024-02-12 17:54:40.058196 2024-02-12 17:54:40.058196 P4DXP8E0 \N \N \N \N \N +333 0.00 397 Spree::CreditCard 332 1 checkout \N \N 2024-02-12 17:55:37.422455 2024-02-12 17:55:37.422455 P8V8DIN0 \N \N \N \N \N +334 0.00 398 Spree::CreditCard 333 1 checkout \N \N 2024-02-12 17:56:34.552232 2024-02-12 17:56:34.552232 P2RQAWK8 \N \N \N \N \N +335 0.00 399 Spree::CreditCard 334 1 checkout \N \N 2024-02-12 17:57:31.81246 2024-02-12 17:57:31.81246 PWBI5DXF \N \N \N \N \N +336 0.00 400 Spree::CreditCard 335 1 checkout \N \N 2024-02-12 17:58:28.458618 2024-02-12 17:58:28.458618 PKFXQW0Q \N \N \N \N \N +337 0.00 401 Spree::CreditCard 336 1 checkout \N \N 2024-02-12 17:59:25.218615 2024-02-12 17:59:25.218615 PPYTB0QG \N \N \N \N \N +338 0.00 402 Spree::CreditCard 337 1 checkout \N \N 2024-02-12 18:00:22.09281 2024-02-12 18:00:22.09281 PTFERU5O \N \N \N \N \N +339 0.00 403 Spree::CreditCard 338 1 checkout \N \N 2024-02-12 18:01:18.928403 2024-02-12 18:01:18.928403 P4T3MLT1 \N \N \N \N \N +340 0.00 404 Spree::CreditCard 339 1 checkout \N \N 2024-02-12 18:02:15.726808 2024-02-12 18:02:15.726808 PEJRMILX \N \N \N \N \N +341 0.00 405 Spree::CreditCard 340 1 checkout \N \N 2024-02-12 18:03:12.724841 2024-02-12 18:03:12.724841 P5QLQ4DS \N \N \N \N \N +342 0.00 406 Spree::CreditCard 341 1 checkout \N \N 2024-02-12 18:04:09.71368 2024-02-12 18:04:09.71368 P00D5SK4 \N \N \N \N \N +343 0.00 407 Spree::CreditCard 342 1 checkout \N \N 2024-02-12 18:05:06.70054 2024-02-12 18:05:06.70054 P0QAQDMQ \N \N \N \N \N +344 0.00 408 Spree::CreditCard 343 1 checkout \N \N 2024-02-12 18:06:03.603731 2024-02-12 18:06:03.603731 PEVLVYTX \N \N \N \N \N +345 0.00 409 Spree::CreditCard 344 1 checkout \N \N 2024-02-12 18:07:00.403995 2024-02-12 18:07:00.403995 PKB8B050 \N \N \N \N \N +346 0.00 410 Spree::CreditCard 345 1 checkout \N \N 2024-02-12 18:07:57.279716 2024-02-12 18:07:57.279716 PIVF8V8X \N \N \N \N \N +347 0.00 411 Spree::CreditCard 346 1 checkout \N \N 2024-02-12 18:08:54.402408 2024-02-12 18:08:54.402408 PWYWW1ZU \N \N \N \N \N +348 0.00 412 Spree::CreditCard 347 1 checkout \N \N 2024-02-12 18:09:51.265061 2024-02-12 18:09:51.265061 P0G2GGNM \N \N \N \N \N +349 0.00 413 Spree::CreditCard 348 1 checkout \N \N 2024-02-12 18:10:48.612869 2024-02-12 18:10:48.612869 P62E56PL \N \N \N \N \N +350 0.00 414 Spree::CreditCard 349 1 checkout \N \N 2024-02-12 18:11:45.937441 2024-02-12 18:11:45.937441 PG3ELE89 \N \N \N \N \N +351 0.00 415 Spree::CreditCard 350 1 checkout \N \N 2024-02-12 18:12:43.134807 2024-02-12 18:12:43.134807 PN5H6SNW \N \N \N \N \N +352 0.00 416 Spree::CreditCard 351 1 checkout \N \N 2024-02-12 18:13:40.287287 2024-02-12 18:13:40.287287 PN40CK8K \N \N \N \N \N +353 0.00 417 Spree::CreditCard 352 1 checkout \N \N 2024-02-12 18:14:37.859837 2024-02-12 18:14:37.859837 PXH4GZGA \N \N \N \N \N +354 0.00 418 Spree::CreditCard 353 1 checkout \N \N 2024-02-12 18:15:34.64988 2024-02-12 18:15:34.64988 PAKYT86R \N \N \N \N \N +355 0.00 419 Spree::CreditCard 354 1 checkout \N \N 2024-02-12 18:16:31.53093 2024-02-12 18:16:31.53093 PBLVS3KU \N \N \N \N \N +356 0.00 420 Spree::CreditCard 355 1 checkout \N \N 2024-02-12 18:17:28.273246 2024-02-12 18:17:28.273246 PE79BBXA \N \N \N \N \N +357 0.00 421 Spree::CreditCard 356 1 checkout \N \N 2024-02-12 18:18:25.194291 2024-02-12 18:18:25.194291 PO5NUCLT \N \N \N \N \N +358 0.00 422 Spree::CreditCard 357 1 checkout \N \N 2024-02-12 18:19:22.115771 2024-02-12 18:19:22.115771 PQ9OJIH3 \N \N \N \N \N +359 0.00 423 Spree::CreditCard 358 1 checkout \N \N 2024-02-12 18:20:19.276495 2024-02-12 18:20:19.276495 PURV3BU6 \N \N \N \N \N +360 0.00 424 Spree::CreditCard 359 1 checkout \N \N 2024-02-12 18:21:16.379674 2024-02-12 18:21:16.379674 P4BIXQK4 \N \N \N \N \N +361 0.00 425 Spree::CreditCard 360 1 checkout \N \N 2024-02-12 18:22:13.141572 2024-02-12 18:22:13.141572 PIK3X04D \N \N \N \N \N +362 0.00 426 Spree::CreditCard 361 1 checkout \N \N 2024-02-12 18:23:10.03442 2024-02-12 18:23:10.03442 PK9WGLX7 \N \N \N \N \N +363 0.00 427 Spree::CreditCard 362 1 checkout \N \N 2024-02-12 18:24:06.781577 2024-02-12 18:24:06.781577 PZ01XCAJ \N \N \N \N \N +364 0.00 428 Spree::CreditCard 363 1 checkout \N \N 2024-02-12 18:25:03.935237 2024-02-12 18:25:03.935237 PVSU7W8Y \N \N \N \N \N +365 0.00 429 Spree::CreditCard 364 1 checkout \N \N 2024-02-12 18:26:00.866629 2024-02-12 18:26:00.866629 PU5A8EIC \N \N \N \N \N +366 0.00 430 Spree::CreditCard 365 1 checkout \N \N 2024-02-12 18:26:57.714802 2024-02-12 18:26:57.714802 P9DVEIKD \N \N \N \N \N +367 0.00 431 Spree::CreditCard 366 1 checkout \N \N 2024-02-12 18:27:54.552899 2024-02-12 18:27:54.552899 PDY9S19Q \N \N \N \N \N +368 0.00 432 Spree::CreditCard 367 1 checkout \N \N 2024-02-12 18:28:51.295918 2024-02-12 18:28:51.295918 PMWZKZV2 \N \N \N \N \N +369 0.00 433 Spree::CreditCard 368 1 checkout \N \N 2024-02-12 18:29:48.132538 2024-02-12 18:29:48.132538 PI4I1YWT \N \N \N \N \N +370 0.00 434 Spree::CreditCard 369 1 checkout \N \N 2024-02-12 18:30:44.9327 2024-02-12 18:30:44.9327 P66WDE88 \N \N \N \N \N +371 0.00 435 Spree::CreditCard 370 1 checkout \N \N 2024-02-12 18:31:41.750748 2024-02-12 18:31:41.750748 PNXEVIPN \N \N \N \N \N +372 0.00 436 Spree::CreditCard 371 1 checkout \N \N 2024-02-12 18:32:38.731029 2024-02-12 18:32:38.731029 PEBA034K \N \N \N \N \N +373 0.00 437 Spree::CreditCard 372 1 checkout \N \N 2024-02-12 18:33:35.645708 2024-02-12 18:33:35.645708 PBKBZX2B \N \N \N \N \N +374 0.00 438 Spree::CreditCard 373 1 checkout \N \N 2024-02-12 18:34:32.388188 2024-02-12 18:34:32.388188 PJJDGOQU \N \N \N \N \N +375 0.00 439 Spree::CreditCard 374 1 checkout \N \N 2024-02-12 18:35:29.371534 2024-02-12 18:35:29.371534 PERE4AEL \N \N \N \N \N +376 0.00 440 Spree::CreditCard 375 1 checkout \N \N 2024-02-12 18:36:26.139402 2024-02-12 18:36:26.139402 P2DDPZ6M \N \N \N \N \N +377 0.00 441 Spree::CreditCard 376 1 checkout \N \N 2024-02-12 18:37:23.107052 2024-02-12 18:37:23.107052 PCYWFFRG \N \N \N \N \N +378 0.00 442 Spree::CreditCard 377 1 checkout \N \N 2024-02-12 18:38:19.900163 2024-02-12 18:38:19.900163 PBD2PLLX \N \N \N \N \N +379 0.00 443 Spree::CreditCard 378 1 checkout \N \N 2024-02-12 18:39:16.623744 2024-02-12 18:39:16.623744 PWK6OTXV \N \N \N \N \N +380 0.00 444 Spree::CreditCard 379 1 checkout \N \N 2024-02-12 18:40:13.647721 2024-02-12 18:40:13.647721 P2FWT8Y5 \N \N \N \N \N +381 0.00 445 Spree::CreditCard 380 1 checkout \N \N 2024-02-12 18:41:10.574 2024-02-12 18:41:10.574 P0E9C5GM \N \N \N \N \N +382 0.00 446 Spree::CreditCard 381 1 checkout \N \N 2024-02-12 18:42:07.34091 2024-02-12 18:42:07.34091 PY7XRPTI \N \N \N \N \N +383 0.00 447 Spree::CreditCard 382 1 checkout \N \N 2024-02-12 18:43:04.15435 2024-02-12 18:43:04.15435 PDBS6XS2 \N \N \N \N \N +384 0.00 448 Spree::CreditCard 383 1 checkout \N \N 2024-02-12 18:44:01.120984 2024-02-12 18:44:01.120984 P834R95E \N \N \N \N \N +385 0.00 449 Spree::CreditCard 384 1 checkout \N \N 2024-02-12 18:44:57.610481 2024-02-12 18:44:57.610481 PW2RSAUZ \N \N \N \N \N +386 0.00 450 Spree::CreditCard 385 1 checkout \N \N 2024-02-12 18:45:54.448914 2024-02-12 18:45:54.448914 P8P9NE3Q \N \N \N \N \N +387 0.00 451 Spree::CreditCard 386 1 checkout \N \N 2024-02-12 18:46:51.60638 2024-02-12 18:46:51.60638 PIIFR0W6 \N \N \N \N \N +388 0.00 452 Spree::CreditCard 387 1 checkout \N \N 2024-02-12 18:47:48.271762 2024-02-12 18:47:48.271762 PAUKN954 \N \N \N \N \N +389 0.00 453 Spree::CreditCard 388 1 checkout \N \N 2024-02-12 18:48:45.121331 2024-02-12 18:48:45.121331 PMT7DSHT \N \N \N \N \N +390 0.00 454 Spree::CreditCard 389 1 checkout \N \N 2024-02-12 18:49:41.810281 2024-02-12 18:49:41.810281 PLB27K61 \N \N \N \N \N +391 0.00 455 Spree::CreditCard 390 1 checkout \N \N 2024-02-12 18:50:38.809513 2024-02-12 18:50:38.809513 POZKHA8A \N \N \N \N \N +392 0.00 456 Spree::CreditCard 391 1 checkout \N \N 2024-02-12 18:51:35.92569 2024-02-12 18:51:35.92569 PVVTO41G \N \N \N \N \N +393 0.00 457 Spree::CreditCard 392 1 checkout \N \N 2024-02-12 18:52:32.901795 2024-02-12 18:52:32.901795 P9TFTDTD \N \N \N \N \N +394 0.00 458 Spree::CreditCard 393 1 checkout \N \N 2024-02-12 18:53:29.713796 2024-02-12 18:53:29.713796 PUNZE9EU \N \N \N \N \N +395 0.00 459 Spree::CreditCard 394 1 checkout \N \N 2024-02-12 18:54:26.533773 2024-02-12 18:54:26.533773 PDB8H0LC \N \N \N \N \N +396 0.00 460 Spree::CreditCard 395 1 checkout \N \N 2024-02-12 18:55:23.392634 2024-02-12 18:55:23.392634 PBO8CUN9 \N \N \N \N \N +397 0.00 461 Spree::CreditCard 396 1 checkout \N \N 2024-02-12 18:56:20.209831 2024-02-12 18:56:20.209831 PFN3WIJ9 \N \N \N \N \N +398 0.00 462 Spree::CreditCard 397 1 checkout \N \N 2024-02-12 18:57:17.148482 2024-02-12 18:57:17.148482 PBLP6NP7 \N \N \N \N \N +399 0.00 463 Spree::CreditCard 398 1 checkout \N \N 2024-02-12 18:58:14.175333 2024-02-12 18:58:14.175333 PFUITEKB \N \N \N \N \N +400 0.00 464 Spree::CreditCard 399 1 checkout \N \N 2024-02-12 18:59:10.925134 2024-02-12 18:59:10.925134 PS2TXMCX \N \N \N \N \N +401 0.00 465 Spree::CreditCard 400 1 checkout \N \N 2024-02-12 19:00:07.771324 2024-02-12 19:00:07.771324 PFTTV3VG \N \N \N \N \N +402 0.00 466 Spree::CreditCard 401 1 checkout \N \N 2024-02-12 19:01:04.616816 2024-02-12 19:01:04.616816 PBALKNWN \N \N \N \N \N +403 0.00 467 Spree::CreditCard 402 1 checkout \N \N 2024-02-12 19:02:01.392355 2024-02-12 19:02:01.392355 PA3WGRAY \N \N \N \N \N +404 0.00 468 Spree::CreditCard 403 1 checkout \N \N 2024-02-12 19:02:58.214239 2024-02-12 19:02:58.214239 P3508Y0A \N \N \N \N \N +405 0.00 469 Spree::CreditCard 404 1 checkout \N \N 2024-02-12 19:03:55.108881 2024-02-12 19:03:55.108881 PV5CRBOK \N \N \N \N \N +406 0.00 470 Spree::CreditCard 405 1 checkout \N \N 2024-02-12 19:04:51.935087 2024-02-12 19:04:51.935087 PG1HXV0T \N \N \N \N \N +407 0.00 471 Spree::CreditCard 406 1 checkout \N \N 2024-02-12 19:05:48.785041 2024-02-12 19:05:48.785041 PK4M5HHS \N \N \N \N \N +408 0.00 472 Spree::CreditCard 407 1 checkout \N \N 2024-02-12 19:06:45.656598 2024-02-12 19:06:45.656598 P2KP5OIJ \N \N \N \N \N +409 0.00 473 Spree::CreditCard 408 1 checkout \N \N 2024-02-12 19:07:42.679449 2024-02-12 19:07:42.679449 P49AK9KR \N \N \N \N \N +410 0.00 474 Spree::CreditCard 409 1 checkout \N \N 2024-02-12 19:08:39.623606 2024-02-12 19:08:39.623606 P58NMRVS \N \N \N \N \N +411 0.00 475 Spree::CreditCard 410 1 checkout \N \N 2024-02-12 19:09:36.463759 2024-02-12 19:09:36.463759 P4FH8AP9 \N \N \N \N \N +412 0.00 476 Spree::CreditCard 411 1 checkout \N \N 2024-02-12 19:10:33.29907 2024-02-12 19:10:33.29907 PKVCUI5H \N \N \N \N \N +413 0.00 477 Spree::CreditCard 412 1 checkout \N \N 2024-02-12 19:11:30.237086 2024-02-12 19:11:30.237086 PD6QAL1Y \N \N \N \N \N +414 0.00 478 Spree::CreditCard 413 1 checkout \N \N 2024-02-12 19:12:27.190025 2024-02-12 19:12:27.190025 PC281DB4 \N \N \N \N \N +415 0.00 479 Spree::CreditCard 414 1 checkout \N \N 2024-02-12 19:13:23.988569 2024-02-12 19:13:23.988569 PXP3OHC2 \N \N \N \N \N +416 0.00 480 Spree::CreditCard 415 1 checkout \N \N 2024-02-12 19:14:21.122248 2024-02-12 19:14:21.122248 PYIH9G48 \N \N \N \N \N +417 0.00 481 Spree::CreditCard 416 1 checkout \N \N 2024-02-12 19:15:18.036777 2024-02-12 19:15:18.036777 PWPQ79OA \N \N \N \N \N +418 0.00 482 Spree::CreditCard 417 1 checkout \N \N 2024-02-12 19:16:14.997542 2024-02-12 19:16:14.997542 PKEL97ST \N \N \N \N \N +419 0.00 483 Spree::CreditCard 418 1 checkout \N \N 2024-02-12 19:17:11.82265 2024-02-12 19:17:11.82265 PI91EYEM \N \N \N \N \N +420 0.00 484 Spree::CreditCard 419 1 checkout \N \N 2024-02-12 19:18:08.638896 2024-02-12 19:18:08.638896 PQLQIHYI \N \N \N \N \N +421 0.00 485 Spree::CreditCard 420 1 checkout \N \N 2024-02-12 19:19:05.514508 2024-02-12 19:19:05.514508 PLBCK2FY \N \N \N \N \N +422 0.00 486 Spree::CreditCard 421 1 checkout \N \N 2024-02-12 19:20:02.369529 2024-02-12 19:20:02.369529 PNC1OB5Q \N \N \N \N \N +423 0.00 487 Spree::CreditCard 422 1 checkout \N \N 2024-02-12 19:20:59.043561 2024-02-12 19:20:59.043561 P50KR4VK \N \N \N \N \N +424 0.00 488 Spree::CreditCard 423 1 checkout \N \N 2024-02-12 19:21:56.071645 2024-02-12 19:21:56.071645 PFII5RXO \N \N \N \N \N +425 0.00 489 Spree::CreditCard 424 1 checkout \N \N 2024-02-12 19:22:53.159516 2024-02-12 19:22:53.159516 P03BZCH3 \N \N \N \N \N +426 0.00 490 Spree::CreditCard 425 1 checkout \N \N 2024-02-12 19:23:50.244591 2024-02-12 19:23:50.244591 P8S0IELF \N \N \N \N \N +427 0.00 491 Spree::CreditCard 426 1 checkout \N \N 2024-02-12 19:24:47.380259 2024-02-12 19:24:47.380259 PRCCR6PM \N \N \N \N \N +428 0.00 492 Spree::CreditCard 427 1 checkout \N \N 2024-02-12 19:25:44.531804 2024-02-12 19:25:44.531804 PI34RGVZ \N \N \N \N \N +429 0.00 493 Spree::CreditCard 428 1 checkout \N \N 2024-02-12 19:26:41.75765 2024-02-12 19:26:41.75765 PN7TAR3U \N \N \N \N \N +430 0.00 494 Spree::CreditCard 429 1 checkout \N \N 2024-02-12 19:27:38.70923 2024-02-12 19:27:38.70923 PEQ725B3 \N \N \N \N \N +431 0.00 495 Spree::CreditCard 430 1 checkout \N \N 2024-02-12 19:28:35.730893 2024-02-12 19:28:35.730893 PZ0A3OI3 \N \N \N \N \N +432 0.00 496 Spree::CreditCard 431 1 checkout \N \N 2024-02-12 19:29:32.853265 2024-02-12 19:29:32.853265 P157CHED \N \N \N \N \N +433 0.00 497 Spree::CreditCard 432 1 checkout \N \N 2024-02-12 19:30:29.965972 2024-02-12 19:30:29.965972 PFP3B1HQ \N \N \N \N \N +434 0.00 498 Spree::CreditCard 433 1 checkout \N \N 2024-02-12 19:31:27.227869 2024-02-12 19:31:27.227869 PJ58XKQY \N \N \N \N \N +435 0.00 499 Spree::CreditCard 434 1 checkout \N \N 2024-02-12 19:32:24.206213 2024-02-12 19:32:24.206213 PB8M9DZ0 \N \N \N \N \N +436 0.00 500 Spree::CreditCard 435 1 checkout \N \N 2024-02-12 19:33:21.291356 2024-02-12 19:33:21.291356 PHA1ZAN1 \N \N \N \N \N +437 0.00 501 Spree::CreditCard 436 1 checkout \N \N 2024-02-12 19:34:18.15784 2024-02-12 19:34:18.15784 P4O1GRN5 \N \N \N \N \N +438 0.00 502 Spree::CreditCard 437 1 checkout \N \N 2024-02-12 19:35:15.3822 2024-02-12 19:35:15.3822 PZKRNK00 \N \N \N \N \N +439 0.00 503 Spree::CreditCard 438 1 checkout \N \N 2024-02-12 19:36:12.457615 2024-02-12 19:36:12.457615 PARXGMWC \N \N \N \N \N +440 0.00 504 Spree::CreditCard 439 1 checkout \N \N 2024-02-12 19:37:09.541971 2024-02-12 19:37:09.541971 P0KWMGIO \N \N \N \N \N +441 0.00 505 Spree::CreditCard 440 1 checkout \N \N 2024-02-12 19:38:06.314289 2024-02-12 19:38:06.314289 PLKNHIIO \N \N \N \N \N +442 0.00 506 Spree::CreditCard 441 1 checkout \N \N 2024-02-12 19:39:03.356459 2024-02-12 19:39:03.356459 PWBR20ZY \N \N \N \N \N +443 0.00 507 Spree::CreditCard 442 1 checkout \N \N 2024-02-12 19:40:00.334049 2024-02-12 19:40:00.334049 PH7CVBIT \N \N \N \N \N +444 0.00 508 Spree::CreditCard 443 1 checkout \N \N 2024-02-12 19:40:57.497548 2024-02-12 19:40:57.497548 PZLRQOM9 \N \N \N \N \N +445 0.00 509 Spree::CreditCard 444 1 checkout \N \N 2024-02-12 19:41:54.61763 2024-02-12 19:41:54.61763 PF6FUTU9 \N \N \N \N \N +446 0.00 510 Spree::CreditCard 445 1 checkout \N \N 2024-02-12 19:42:51.652962 2024-02-12 19:42:51.652962 PK14EQCG \N \N \N \N \N +447 0.00 511 Spree::CreditCard 446 1 checkout \N \N 2024-02-12 19:43:48.516144 2024-02-12 19:43:48.516144 PJ88XCLZ \N \N \N \N \N +449 0.00 513 Spree::CreditCard 448 1 checkout \N \N 2024-02-12 19:45:42.727567 2024-02-12 19:45:42.727567 PBAYGBBP \N \N \N \N \N +452 0.00 516 Spree::CreditCard 451 1 checkout \N \N 2024-02-12 19:48:33.558177 2024-02-12 19:48:33.558177 PQ7VOAHU \N \N \N \N \N +454 0.00 518 Spree::CreditCard 453 1 checkout \N \N 2024-02-12 19:50:27.441447 2024-02-12 19:50:27.441447 PV9PVIHF \N \N \N \N \N +455 0.00 519 Spree::CreditCard 454 1 checkout \N \N 2024-02-12 19:51:24.937789 2024-02-12 19:51:24.937789 PH61JHBW \N \N \N \N \N +462 0.00 526 Spree::CreditCard 461 1 checkout \N \N 2024-02-12 19:58:03.174484 2024-02-12 19:58:03.174484 PPIKLKSZ \N \N \N \N \N +465 0.00 529 Spree::CreditCard 464 1 checkout \N \N 2024-02-12 20:00:54.03252 2024-02-12 20:00:54.03252 P97XX080 \N \N \N \N \N +466 0.00 530 Spree::CreditCard 465 1 checkout \N \N 2024-02-12 20:01:51.052358 2024-02-12 20:01:51.052358 PDYNYVO1 \N \N \N \N \N +468 0.00 532 Spree::CreditCard 467 1 checkout \N \N 2024-02-12 20:03:45.05285 2024-02-12 20:03:45.05285 PYZ70ZQQ \N \N \N \N \N +469 0.00 533 Spree::CreditCard 468 1 checkout \N \N 2024-02-12 20:04:41.866847 2024-02-12 20:04:41.866847 PDZWJTIZ \N \N \N \N \N +472 0.00 536 Spree::CreditCard 471 1 checkout \N \N 2024-02-12 20:07:32.58723 2024-02-12 20:07:32.58723 P44VFR36 \N \N \N \N \N +4 0.00 64 Spree::CreditCard 3 1 invalid \N \N 2024-02-09 22:50:57.134038 2024-02-12 20:08:25.443311 P14XFX8X \N \N \N \N \N +473 0.00 64 Spree::CreditCard 472 1 invalid \N \N 2024-02-12 20:08:25.415087 2024-02-12 20:08:27.153303 P20C9XKU \N \N \N \N \N +476 0.00 538 Spree::CreditCard 475 1 checkout \N \N 2024-02-12 20:09:27.2478 2024-02-12 20:09:27.2478 PVDM86OH \N \N \N \N \N +477 0.00 539 Spree::CreditCard 476 1 checkout \N \N 2024-02-12 20:10:24.30991 2024-02-12 20:10:24.30991 PA7YXYXM \N \N \N \N \N +448 0.00 512 Spree::CreditCard 447 1 checkout \N \N 2024-02-12 19:44:45.443413 2024-02-12 19:44:45.443413 PPXFIBCT \N \N \N \N \N +450 0.00 514 Spree::CreditCard 449 1 checkout \N \N 2024-02-12 19:46:39.683026 2024-02-12 19:46:39.683026 P6O2G0LQ \N \N \N \N \N +451 0.00 515 Spree::CreditCard 450 1 checkout \N \N 2024-02-12 19:47:36.53223 2024-02-12 19:47:36.53223 P3MJ4CV6 \N \N \N \N \N +453 0.00 517 Spree::CreditCard 452 1 checkout \N \N 2024-02-12 19:49:30.542046 2024-02-12 19:49:30.542046 PD7JHICY \N \N \N \N \N +456 0.00 520 Spree::CreditCard 455 1 checkout \N \N 2024-02-12 19:52:21.847012 2024-02-12 19:52:21.847012 PPBTIIRS \N \N \N \N \N +457 0.00 521 Spree::CreditCard 456 1 checkout \N \N 2024-02-12 19:53:18.684891 2024-02-12 19:53:18.684891 PLRZCM1Y \N \N \N \N \N +458 0.00 522 Spree::CreditCard 457 1 checkout \N \N 2024-02-12 19:54:15.528153 2024-02-12 19:54:15.528153 P080D1P4 \N \N \N \N \N +459 0.00 523 Spree::CreditCard 458 1 checkout \N \N 2024-02-12 19:55:12.410939 2024-02-12 19:55:12.410939 PNIKY3IQ \N \N \N \N \N +460 0.00 524 Spree::CreditCard 459 1 checkout \N \N 2024-02-12 19:56:09.27658 2024-02-12 19:56:09.27658 P518LMNT \N \N \N \N \N +461 0.00 525 Spree::CreditCard 460 1 checkout \N \N 2024-02-12 19:57:06.002831 2024-02-12 19:57:06.002831 PY8HFT5Z \N \N \N \N \N +463 0.00 527 Spree::CreditCard 462 1 checkout \N \N 2024-02-12 19:59:00.185888 2024-02-12 19:59:00.185888 PN9YVSOQ \N \N \N \N \N +464 0.00 528 Spree::CreditCard 463 1 checkout \N \N 2024-02-12 19:59:57.131204 2024-02-12 19:59:57.131204 PJ866GCQ \N \N \N \N \N +467 0.00 531 Spree::CreditCard 466 1 checkout \N \N 2024-02-12 20:02:48.021677 2024-02-12 20:02:48.021677 PLQDT2BV \N \N \N \N \N +470 0.00 534 Spree::CreditCard 469 1 checkout \N \N 2024-02-12 20:05:38.683701 2024-02-12 20:05:38.683701 P9KS0FHX \N \N \N \N \N +471 0.00 535 Spree::CreditCard 470 1 checkout \N \N 2024-02-12 20:06:35.584971 2024-02-12 20:06:35.584971 PP06B4W4 \N \N \N \N \N +475 0.00 537 Spree::CreditCard 474 1 checkout \N \N 2024-02-12 20:08:30.362664 2024-02-12 20:08:30.362664 PRQICI04 \N \N \N \N \N +478 0.00 540 Spree::CreditCard 477 1 checkout \N \N 2024-02-12 20:11:21.453231 2024-02-12 20:11:21.453231 PHC0VGOS \N \N \N \N \N +479 0.00 541 Spree::CreditCard 478 1 pending 12345 D 2024-02-12 20:12:19.127158 2024-02-12 20:14:34.045202 PDEU0CIT \N \N \N \N \N +481 0.00 542 Spree::CreditCard 480 1 checkout \N \N 2024-02-12 20:14:55.484186 2024-02-12 20:14:55.484186 PL4XM6T6 \N \N \N \N \N +480 0.00 542 Spree::CreditCard 479 1 invalid \N \N 2024-02-12 20:14:35.214461 2024-02-12 20:14:55.498836 P74TGV6C \N \N \N \N \N +496 0.00 550 Spree::CreditCard 495 1 checkout \N \N 2024-02-12 20:24:32.297425 2024-02-12 20:24:32.297425 PXQAGSP6 \N \N \N \N \N +482 0.00 543 Spree::CreditCard 481 1 pending 12345 D 2024-02-12 20:15:04.236503 2024-02-12 20:16:13.658622 PZS1Z30T \N \N \N \N \N +484 0.00 544 Spree::CreditCard 483 1 checkout \N \N 2024-02-12 20:16:38.500592 2024-02-12 20:16:38.500592 P8AWSG0R \N \N \N \N \N +483 0.00 544 Spree::CreditCard 482 1 invalid \N \N 2024-02-12 20:16:14.267967 2024-02-12 20:16:38.523391 PIRUYVUZ \N \N \N \N \N +495 0.00 550 Spree::CreditCard 494 1 invalid \N \N 2024-02-12 20:24:08.561537 2024-02-12 20:24:32.312107 PDFGH8A1 \N \N \N \N \N +485 0.00 545 Spree::CreditCard 484 1 pending 12345 D 2024-02-12 20:16:47.320997 2024-02-12 20:18:52.74843 P5SETPRC \N \N \N \N \N +487 0.00 546 Spree::CreditCard 486 1 checkout \N \N 2024-02-12 20:19:14.367126 2024-02-12 20:19:14.367126 PM4IK7L2 \N \N \N \N \N +486 0.00 546 Spree::CreditCard 485 1 invalid \N \N 2024-02-12 20:18:53.539953 2024-02-12 20:19:14.382608 P9322X8U \N \N \N \N \N +488 0.00 547 Spree::CreditCard 487 1 invalid \N \N 2024-02-12 20:19:23.335747 2024-02-12 20:20:59.075609 PRW9WU8C \N \N \N \N \N +474 0.00 64 Spree::CreditCard 473 1 invalid \N \N 2024-02-12 20:08:27.135771 2024-02-12 20:21:21.837702 P8T3NTGP \N \N \N \N \N +489 40.97 547 Spree::CreditCard 488 1 pending 12345 D 2024-02-12 20:20:59.042842 2024-02-12 20:21:23.891834 P0Z7L0GY \N \N \N \N \N +490 44.98 64 Spree::CreditCard 489 1 invalid \N \N 2024-02-12 20:21:21.798852 2024-02-12 20:21:37.701662 PEGLM4GK \N \N \N \N \N +493 0.00 548 Spree::CreditCard 492 1 checkout \N \N 2024-02-12 20:21:45.654047 2024-02-12 20:21:45.654047 P6SK6XQ5 \N \N \N \N \N +491 0.00 548 Spree::CreditCard 490 1 invalid \N \N 2024-02-12 20:21:24.717877 2024-02-12 20:21:45.671655 PXAFM2BZ \N \N \N \N \N +494 0.00 549 Spree::CreditCard 493 1 pending 12345 D 2024-02-12 20:21:54.604008 2024-02-12 20:24:07.711634 PMZVMAL9 \N \N \N \N \N +497 0.00 551 Spree::CreditCard 496 1 invalid \N \N 2024-02-12 20:24:41.332899 2024-02-12 20:24:41.903232 PZQ1352Q \N \N \N \N \N +499 44.98 64 Spree::CreditCard 498 1 checkout \N \N 2024-02-12 20:24:42.107343 2024-02-12 20:24:42.107343 PHYN844M \N \N \N \N \N +492 44.98 64 Spree::CreditCard 491 1 invalid \N \N 2024-02-12 20:21:37.66916 2024-02-12 20:24:42.120232 P96U5HP8 \N \N \N \N \N +498 0.00 551 Spree::CreditCard 497 1 pending 12345 D 2024-02-12 20:24:41.883139 2024-02-12 20:25:59.874949 PJW90MNS \N \N \N \N \N +500 0.00 553 Spree::CreditCard 499 1 checkout \N \N 2024-02-12 20:26:00.340132 2024-02-12 20:26:00.340132 PCPMUPUE \N \N \N \N \N +501 0.00 552 Spree::CreditCard 500 1 invalid \N \N 2024-02-12 20:31:11.636305 2024-02-12 20:31:23.976855 P83IZ522 \N \N \N \N \N +502 19.99 552 Spree::CreditCard 501 1 invalid \N \N 2024-02-12 20:31:23.960829 2024-02-12 20:32:23.739284 PYE3Q8T3 \N \N \N \N \N +503 19.99 552 Spree::CreditCard 502 1 invalid \N \N 2024-02-12 20:32:23.697986 2024-02-12 20:32:37.542308 P8JVSNGH \N \N \N \N \N +504 19.99 552 Spree::CreditCard 503 1 invalid \N \N 2024-02-12 20:32:37.465972 2024-02-12 20:34:02.102088 PMRPJW4G \N \N \N \N \N +505 19.99 552 Spree::CreditCard 504 1 invalid \N \N 2024-02-12 20:34:02.073428 2024-02-12 20:34:36.986907 P8AF24QX \N \N \N \N \N +506 34.98 552 Spree::CreditCard 505 1 invalid \N \N 2024-02-12 20:34:36.971578 2024-02-12 20:35:35.168974 PDOZZONW \N \N \N \N \N +507 49.97 552 Spree::CreditCard 506 1 invalid \N \N 2024-02-12 20:35:35.152223 2024-02-12 20:36:14.98209 P7V6XK8F \N \N \N \N \N +508 64.96 552 Spree::CreditCard 507 1 invalid \N \N 2024-02-12 20:36:14.953043 2024-02-12 20:36:19.547781 PLC23BZ1 \N \N \N \N \N +509 64.96 552 Spree::CreditCard 508 1 invalid \N \N 2024-02-12 20:36:19.531417 2024-02-12 20:36:57.890808 PLP0ZSOK \N \N \N \N \N +510 79.95 552 Spree::CreditCard 509 1 invalid \N \N 2024-02-12 20:36:57.853933 2024-02-12 20:37:01.82146 PFL9CU8V \N \N \N \N \N +511 79.95 552 Spree::CreditCard 510 1 invalid \N \N 2024-02-12 20:37:01.804598 2024-02-12 20:40:07.787574 PYS81K65 \N \N \N \N \N +512 0.00 552 Spree::CreditCard 511 1 invalid \N \N 2024-02-12 20:40:07.77349 2024-02-12 20:40:18.749121 PZ1UR933 \N \N \N \N \N +514 19.99 552 Spree::CreditCard 513 1 checkout \N \N 2024-02-12 21:24:22.552001 2024-02-12 21:24:22.552001 PRE4HCWB \N \N \N \N \N +513 0.00 552 Spree::CreditCard 512 1 invalid \N \N 2024-02-12 20:40:18.732955 2024-02-12 21:24:22.568328 PDRVCYN2 \N \N \N \N \N +515 0.00 554 Spree::CreditCard 514 1 checkout \N \N 2024-02-12 21:26:06.427939 2024-02-12 21:26:06.427939 PUA8JED3 \N \N \N \N \N +518 0.00 557 Spree::CreditCard 517 1 checkout \N \N 2024-02-12 21:26:17.591526 2024-02-12 21:26:17.591526 PPD9I9NI \N \N \N \N \N +520 0.00 559 Spree::CreditCard 519 1 checkout \N \N 2024-02-12 21:26:21.473793 2024-02-12 21:26:21.473793 PXPR20NH \N \N \N \N \N +522 0.00 561 Spree::CreditCard 521 1 checkout \N \N 2024-02-12 21:26:25.090789 2024-02-12 21:26:25.090789 PSQIRCXO \N \N \N \N \N +524 0.00 563 Spree::CreditCard 523 1 pending 12345 D 2024-02-12 21:26:26.116747 2024-02-12 21:27:46.11282 PHALOR2C \N \N \N \N \N +516 0.00 555 Spree::CreditCard 515 1 pending 12345 D 2024-02-12 21:26:12.836925 2024-02-12 21:28:08.318633 PQJZJD4R \N \N \N \N \N +526 0.00 565 Spree::CreditCard 525 1 checkout \N \N 2024-02-12 21:28:09.2025 2024-02-12 21:28:09.2025 P32IHG3W \N \N \N \N \N +534 0.00 574 Spree::CreditCard 533 1 pending 12345 D 2024-02-12 21:31:43.701685 2024-02-12 21:33:22.886921 PAYYX8SN \N \N \N \N \N +545 0.00 578 Spree::CreditCard 544 1 checkout \N \N 2024-02-12 21:33:43.661515 2024-02-12 21:33:43.661515 PXDTXC3M \N \N \N \N \N +546 0.00 579 Spree::CreditCard 545 1 checkout \N \N 2024-02-12 21:33:47.75461 2024-02-12 21:33:47.75461 P4V7QH8P \N \N \N \N \N +547 0.00 580 Spree::CreditCard 546 1 checkout \N \N 2024-02-12 21:33:50.050402 2024-02-12 21:33:50.050402 P905PO47 \N \N \N \N \N +517 0.00 556 Spree::CreditCard 516 1 checkout \N \N 2024-02-12 21:26:14.777506 2024-02-12 21:26:14.777506 PDWC72VC \N \N \N \N \N +521 0.00 560 Spree::CreditCard 520 1 checkout \N \N 2024-02-12 21:26:22.771682 2024-02-12 21:26:22.771682 PDAR78KL \N \N \N \N \N +523 0.00 562 Spree::CreditCard 522 1 checkout \N \N 2024-02-12 21:26:25.336194 2024-02-12 21:26:25.336194 PR03BFUM \N \N \N \N \N +525 0.00 564 Spree::CreditCard 524 1 checkout \N \N 2024-02-12 21:27:47.027136 2024-02-12 21:27:47.027136 PFCP2KRS \N \N \N \N \N +519 0.00 558 Spree::CreditCard 518 1 pending 12345 D 2024-02-12 21:26:18.184997 2024-02-12 21:29:18.066364 P4SO11WD \N \N \N \N \N +527 0.00 566 Spree::CreditCard 526 1 checkout \N \N 2024-02-12 21:29:19.013321 2024-02-12 21:29:19.013321 PCVM935Q \N \N \N \N \N +532 0.00 572 Spree::CreditCard 531 1 checkout \N \N 2024-02-12 21:31:40.93552 2024-02-12 21:31:40.93552 PT7VVWEZ \N \N \N \N \N +533 0.00 571 Spree::CreditCard 532 1 checkout \N \N 2024-02-12 21:31:41.522089 2024-02-12 21:31:41.522089 P3DDXWIH \N \N \N \N \N +538 0.00 569 Spree::CreditCard 537 1 checkout \N \N 2024-02-12 21:32:35.832747 2024-02-12 21:32:35.832747 PJEY56LE \N \N \N \N \N +530 0.00 569 Spree::CreditCard 529 1 invalid \N \N 2024-02-12 21:31:37.48716 2024-02-12 21:32:35.848892 PM5GUMSU \N \N \N \N \N +531 0.00 570 Spree::CreditCard 530 1 pending 12345 D 2024-02-12 21:31:39.084568 2024-02-12 21:32:57.530012 PVEMM07I \N \N \N \N \N +566 10.00 591 Spree::CreditCard 565 1 checkout \N \N 2024-02-12 21:38:22.254619 2024-02-12 21:38:22.254619 PMVDC0ZA \N \N \N \N \N +529 0.00 568 Spree::CreditCard 528 1 pending 12345 D 2024-02-12 21:31:35.879568 2024-02-12 21:33:18.968839 PMNUGUEV \N \N \N \N \N +541 0.00 577 Spree::CreditCard 540 1 checkout \N \N 2024-02-12 21:33:22.364687 2024-02-12 21:33:22.364687 PNO4MOGH \N \N \N \N \N +539 0.00 577 Spree::CreditCard 538 1 invalid \N \N 2024-02-12 21:32:58.149959 2024-02-12 21:33:22.380324 P47H30UH \N \N \N \N \N +559 0.00 590 Spree::CreditCard 558 1 pending 12345 D 2024-02-12 21:36:31.277485 2024-02-12 21:38:00.397717 P5LT5VHS \N \N \N \N \N +537 0.00 576 Spree::CreditCard 536 1 pending 12345 D 2024-02-12 21:31:46.376659 2024-02-12 21:33:25.358694 P4EFWQUU \N \N \N \N \N +544 9.13 567 Spree::CreditCard 543 1 checkout \N \N 2024-02-12 21:33:28.363609 2024-02-12 21:33:28.363609 PKGNWSKV \N \N \N \N \N +528 0.00 567 Spree::CreditCard 527 1 invalid \N \N 2024-02-12 21:31:28.273855 2024-02-12 21:33:28.387934 PBZR2YWE \N \N \N \N \N +540 0.00 578 Spree::CreditCard 539 1 invalid \N \N 2024-02-12 21:33:19.547096 2024-02-12 21:33:43.674617 PJVB73PB \N \N \N \N \N +542 0.00 579 Spree::CreditCard 541 1 invalid \N \N 2024-02-12 21:33:23.670878 2024-02-12 21:33:47.772889 PCPZTRBR \N \N \N \N \N +543 0.00 580 Spree::CreditCard 542 1 invalid \N \N 2024-02-12 21:33:26.117396 2024-02-12 21:33:50.063364 PFUYTILC \N \N \N \N \N +561 0.00 592 Spree::CreditCard 560 1 checkout \N \N 2024-02-12 21:38:01.131504 2024-02-12 21:38:01.131504 P2PLMAT7 \N \N \N \N \N +535 0.00 573 Spree::CreditCard 534 1 pending 12345 D 2024-02-12 21:31:44.33319 2024-02-12 21:34:37.862371 PUIHAXK6 \N \N \N \N \N +549 26.97 575 Spree::CreditCard 548 1 checkout \N \N 2024-02-12 21:34:50.297495 2024-02-12 21:34:50.297495 PM3L8UGD \N \N \N \N \N +536 0.00 575 Spree::CreditCard 535 1 invalid \N \N 2024-02-12 21:31:44.650302 2024-02-12 21:34:50.310658 P6F19XGC \N \N \N \N \N +550 0.00 581 Spree::CreditCard 549 1 checkout \N \N 2024-02-12 21:35:02.937269 2024-02-12 21:35:02.937269 PZTKTALD \N \N \N \N \N +548 0.00 581 Spree::CreditCard 547 1 invalid \N \N 2024-02-12 21:34:38.43466 2024-02-12 21:35:02.951026 PYS4A5YY \N \N \N \N \N +551 0.00 582 Spree::CreditCard 550 1 checkout \N \N 2024-02-12 21:36:12.964665 2024-02-12 21:36:12.964665 PEQK35ZQ \N \N \N \N \N +554 0.00 585 Spree::CreditCard 553 1 checkout \N \N 2024-02-12 21:36:24.270964 2024-02-12 21:36:24.270964 POCA32A3 \N \N \N \N \N +557 0.00 588 Spree::CreditCard 556 1 checkout \N \N 2024-02-12 21:36:29.454762 2024-02-12 21:36:29.454762 PILCP8N5 \N \N \N \N \N +560 0.00 591 Spree::CreditCard 559 1 invalid \N \N 2024-02-12 21:36:32.331089 2024-02-12 21:38:22.284041 PMWT22HO \N \N \N \N \N +558 0.00 589 Spree::CreditCard 557 1 pending 12345 D 2024-02-12 21:36:30.726669 2024-02-12 21:38:02.450603 P3VIV0EM \N \N \N \N \N +562 0.00 593 Spree::CreditCard 561 1 checkout \N \N 2024-02-12 21:38:03.064115 2024-02-12 21:38:03.064115 PG48SC1K \N \N \N \N \N +567 0.00 595 Spree::CreditCard 566 1 checkout \N \N 2024-02-12 21:38:30.699118 2024-02-12 21:38:30.699118 P991YCY5 \N \N \N \N \N +552 0.00 583 Spree::CreditCard 551 1 pending 12345 D 2024-02-12 21:36:21.092071 2024-02-12 21:38:04.902077 PKAJM3YH \N \N \N \N \N +563 0.00 594 Spree::CreditCard 562 1 checkout \N \N 2024-02-12 21:38:05.490365 2024-02-12 21:38:05.490365 PB30OQ47 \N \N \N \N \N +564 0.00 595 Spree::CreditCard 563 1 invalid \N \N 2024-02-12 21:38:09.05975 2024-02-12 21:38:30.71716 PA8I03PV \N \N \N \N \N +553 0.00 584 Spree::CreditCard 552 1 pending 12345 D 2024-02-12 21:36:24.144903 2024-02-12 21:38:08.308098 PKGWQJH5 \N \N \N \N \N +568 0.00 596 Spree::CreditCard 567 1 checkout \N \N 2024-02-12 21:38:33.813677 2024-02-12 21:38:33.813677 P9DFMYW3 \N \N \N \N \N +556 0.00 587 Spree::CreditCard 555 1 pending 12345 D 2024-02-12 21:36:27.766627 2024-02-12 21:38:08.837059 P8H865IH \N \N \N \N \N +565 0.00 596 Spree::CreditCard 564 1 invalid \N \N 2024-02-12 21:38:09.702573 2024-02-12 21:38:33.829231 PW8SOZSB \N \N \N \N \N +569 0.00 597 Spree::CreditCard 568 1 invalid \N \N 2024-02-12 21:39:19.867225 2024-02-12 21:39:44.260998 PABPOJGT \N \N \N \N \N +555 0.00 586 Spree::CreditCard 554 1 pending 12345 D 2024-02-12 21:36:26.323846 2024-02-12 21:39:19.042281 PY6HAWG4 \N \N \N \N \N +570 0.00 597 Spree::CreditCard 569 1 checkout \N \N 2024-02-12 21:39:44.239881 2024-02-12 21:39:44.239881 P3AMZSKJ \N \N \N \N \N +575 0.00 602 Spree::CreditCard 574 1 checkout \N \N 2024-02-12 21:43:09.59049 2024-02-12 21:43:09.59049 P6KVGZWQ \N \N \N \N \N +578 0.00 605 Spree::CreditCard 577 1 checkout \N \N 2024-02-12 21:43:13.151303 2024-02-12 21:43:13.151303 PVJHK8QE \N \N \N \N \N +579 0.00 606 Spree::CreditCard 578 1 checkout \N \N 2024-02-12 21:43:14.271861 2024-02-12 21:43:14.271861 P6M7DMM2 \N \N \N \N \N +580 0.00 607 Spree::CreditCard 579 1 checkout \N \N 2024-02-12 21:43:15.272331 2024-02-12 21:43:15.272331 PQF44ZXX \N \N \N \N \N +582 0.00 608 Spree::CreditCard 581 1 checkout \N \N 2024-02-12 21:44:44.743195 2024-02-12 21:44:44.743195 PBYOYJSG \N \N \N \N \N +574 0.00 601 Spree::CreditCard 573 1 pending 12345 D 2024-02-12 21:43:06.347356 2024-02-12 21:46:02.069785 PBENEZ98 \N \N \N \N \N +573 0.00 600 Spree::CreditCard 572 1 pending 12345 D 2024-02-12 21:43:03.677269 2024-02-12 21:46:03.369663 PZE1ECX7 \N \N \N \N \N +576 0.00 603 Spree::CreditCard 575 1 pending 12345 D 2024-02-12 21:43:11.848248 2024-02-12 21:46:04.369416 PNF2FU0K \N \N \N \N \N +572 0.00 599 Spree::CreditCard 571 1 pending 12345 D 2024-02-12 21:43:02.146367 2024-02-12 21:47:17.095147 P46P4RPB \N \N \N \N \N +571 0.00 598 Spree::CreditCard 570 1 pending 12345 D 2024-02-12 21:42:56.099849 2024-02-12 21:44:20.128067 PVRX2Z7U \N \N \N \N \N +581 0.00 608 Spree::CreditCard 580 1 invalid \N \N 2024-02-12 21:44:20.927662 2024-02-12 21:44:44.756696 PPYL4M39 \N \N \N \N \N +600 0.00 621 Spree::CreditCard 599 1 checkout \N \N 2024-02-12 21:50:05.656137 2024-02-12 21:50:05.656137 PD2BH6L5 \N \N \N \N \N +606 0.00 625 Spree::CreditCard 605 1 checkout \N \N 2024-02-12 21:50:57.301473 2024-02-12 21:50:57.301473 P6ACA6IR \N \N \N \N \N +609 24.84 623 Spree::CreditCard 608 1 checkout \N \N 2024-02-12 21:51:11.668273 2024-02-12 21:51:11.668273 P2LKZE3N \N \N \N \N \N +577 0.00 604 Spree::CreditCard 576 1 pending 12345 D 2024-02-12 21:43:12.234737 2024-02-12 21:44:51.94196 PBV67G2Z \N \N \N \N \N +583 0.00 609 Spree::CreditCard 582 1 checkout \N \N 2024-02-12 21:44:52.632734 2024-02-12 21:44:52.632734 P2C4JB4D \N \N \N \N \N +584 0.00 610 Spree::CreditCard 583 1 checkout \N \N 2024-02-12 21:46:02.803031 2024-02-12 21:46:02.803031 PJ2XG2DK \N \N \N \N \N +585 0.00 611 Spree::CreditCard 584 1 checkout \N \N 2024-02-12 21:46:04.138264 2024-02-12 21:46:04.138264 PH0W47TQ \N \N \N \N \N +586 0.00 612 Spree::CreditCard 585 1 checkout \N \N 2024-02-12 21:46:05.096014 2024-02-12 21:46:05.096014 PPW4C3AT \N \N \N \N \N +588 0.00 613 Spree::CreditCard 587 1 checkout \N \N 2024-02-12 21:47:39.477201 2024-02-12 21:47:39.477201 POXLN87Q \N \N \N \N \N +587 0.00 613 Spree::CreditCard 586 1 invalid \N \N 2024-02-12 21:47:17.899776 2024-02-12 21:47:39.492666 PAT4S4ZP \N \N \N \N \N +593 0.00 618 Spree::CreditCard 592 1 checkout \N \N 2024-02-12 21:49:11.962427 2024-02-12 21:49:11.962427 PZ55Y9Y3 \N \N \N \N \N +597 0.00 622 Spree::CreditCard 596 1 checkout \N \N 2024-02-12 21:49:15.729847 2024-02-12 21:49:15.729847 PWV1FYNK \N \N \N \N \N +599 0.00 614 Spree::CreditCard 598 1 checkout \N \N 2024-02-12 21:49:55.437917 2024-02-12 21:49:55.437917 PSFDHH3C \N \N \N \N \N +589 0.00 614 Spree::CreditCard 588 1 invalid \N \N 2024-02-12 21:48:59.93078 2024-02-12 21:49:55.453271 P5PKYJE5 \N \N \N \N \N +601 0.00 624 Spree::CreditCard 600 1 checkout \N \N 2024-02-12 21:50:08.35669 2024-02-12 21:50:08.35669 PL9D47FN \N \N \N \N \N +595 0.00 620 Spree::CreditCard 594 1 pending 12345 D 2024-02-12 21:49:13.300515 2024-02-12 21:50:37.677899 PLAJ7GC9 \N \N \N \N \N +605 0.00 626 Spree::CreditCard 604 1 checkout \N \N 2024-02-12 21:50:55.505052 2024-02-12 21:50:55.505052 PU3PE8BS \N \N \N \N \N +602 0.00 625 Spree::CreditCard 601 1 invalid \N \N 2024-02-12 21:50:33.779332 2024-02-12 21:50:57.31573 P2GQP29A \N \N \N \N \N +604 0.00 627 Spree::CreditCard 603 1 invalid \N \N 2024-02-12 21:50:38.236919 2024-02-12 21:50:59.317247 PDUCVJJW \N \N \N \N \N +608 17.99 616 Spree::CreditCard 607 1 checkout \N \N 2024-02-12 21:51:05.371219 2024-02-12 21:51:05.371219 P7KO04V0 \N \N \N \N \N +591 0.00 616 Spree::CreditCard 590 1 invalid \N \N 2024-02-12 21:49:07.263471 2024-02-12 21:51:05.393023 PPBT4L4N \N \N \N \N \N +598 0.00 623 Spree::CreditCard 597 1 invalid \N \N 2024-02-12 21:49:15.894313 2024-02-12 21:51:11.682614 PAG3GYC4 \N \N \N \N \N +596 0.00 621 Spree::CreditCard 595 1 invalid \N \N 2024-02-12 21:49:13.790616 2024-02-12 21:50:05.671897 PHX7Z87H \N \N \N \N \N +630 25.98 633 Spree::CreditCard 629 1 checkout \N \N 2024-02-12 21:55:32.934127 2024-02-12 21:55:32.934127 PUEH68DR \N \N \N \N \N +592 0.00 617 Spree::CreditCard 591 1 pending 12345 D 2024-02-12 21:49:08.52367 2024-02-12 21:50:07.864911 PM7C96IJ \N \N \N \N \N +615 0.00 633 Spree::CreditCard 614 1 invalid \N \N 2024-02-12 21:52:38.225747 2024-02-12 21:55:32.965463 PM0D15IE \N \N \N \N \N +594 0.00 619 Spree::CreditCard 593 1 pending 12345 D 2024-02-12 21:49:13.141863 2024-02-12 21:50:32.831793 P7PBKI7O \N \N \N \N \N +645 0.00 656 Spree::CreditCard 644 1 checkout \N \N 2024-02-12 21:58:37.021979 2024-02-12 21:58:37.021979 PPBFVRIU \N \N \N \N \N +590 0.00 615 Spree::CreditCard 589 1 pending 12345 D 2024-02-12 21:49:06.016437 2024-02-12 21:50:33.930211 P3E0MINI \N \N \N \N \N +603 0.00 626 Spree::CreditCard 602 1 invalid \N \N 2024-02-12 21:50:34.680145 2024-02-12 21:50:55.519226 PPWIVCC2 \N \N \N \N \N +607 0.00 627 Spree::CreditCard 606 1 checkout \N \N 2024-02-12 21:50:59.303159 2024-02-12 21:50:59.303159 P9IR6D3I \N \N \N \N \N +614 0.00 632 Spree::CreditCard 613 1 checkout \N \N 2024-02-12 21:52:35.030753 2024-02-12 21:52:35.030753 P0DHF2C5 \N \N \N \N \N +618 0.00 636 Spree::CreditCard 617 1 checkout \N \N 2024-02-12 21:52:41.468824 2024-02-12 21:52:41.468824 PZJQ4PY2 \N \N \N \N \N +619 0.00 637 Spree::CreditCard 618 1 pending 12345 D 2024-02-12 21:52:42.471353 2024-02-12 21:55:50.017875 P80QNYA0 \N \N \N \N \N +612 0.00 630 Spree::CreditCard 611 1 pending 12345 D 2024-02-12 21:52:31.312436 2024-02-12 21:53:31.780903 PJZMIBBF \N \N \N \N \N +620 0.00 638 Spree::CreditCard 619 1 checkout \N \N 2024-02-12 21:53:32.451899 2024-02-12 21:53:32.451899 P1OI2AZN \N \N \N \N \N +616 0.00 634 Spree::CreditCard 615 1 pending 12345 D 2024-02-12 21:52:39.553247 2024-02-12 21:53:37.221216 P770NYX9 \N \N \N \N \N +621 0.00 639 Spree::CreditCard 620 1 checkout \N \N 2024-02-12 21:53:37.70272 2024-02-12 21:53:37.70272 P0WP7HKV \N \N \N \N \N +632 0.00 644 Spree::CreditCard 631 1 checkout \N \N 2024-02-12 21:56:12.101352 2024-02-12 21:56:12.101352 PDHJ1GFA \N \N \N \N \N +610 0.00 628 Spree::CreditCard 609 1 pending 12345 D 2024-02-12 21:52:24.449652 2024-02-12 21:53:56.992412 PO9SVDBR \N \N \N \N \N +631 0.00 644 Spree::CreditCard 630 1 invalid \N \N 2024-02-12 21:55:50.649818 2024-02-12 21:56:12.114675 PHT2CAQA \N \N \N \N \N +617 0.00 635 Spree::CreditCard 616 1 pending 12345 D 2024-02-12 21:52:40.871239 2024-02-12 21:54:07.791743 P4RSKVX0 \N \N \N \N \N +611 0.00 629 Spree::CreditCard 610 1 pending 12345 D 2024-02-12 21:52:29.926521 2024-02-12 21:54:15.095446 P2H4BX87 \N \N \N \N \N +625 0.00 640 Spree::CreditCard 624 1 checkout \N \N 2024-02-12 21:54:21.571191 2024-02-12 21:54:21.571191 PXCL6GOV \N \N \N \N \N +622 0.00 640 Spree::CreditCard 621 1 invalid \N \N 2024-02-12 21:53:57.947694 2024-02-12 21:54:21.585354 P58JM79I \N \N \N \N \N +613 0.00 631 Spree::CreditCard 612 1 pending 12345 D 2024-02-12 21:52:33.668337 2024-02-12 21:54:23.964345 P4LSFBCD \N \N \N \N \N +627 0.00 641 Spree::CreditCard 626 1 checkout \N \N 2024-02-12 21:54:29.418371 2024-02-12 21:54:29.418371 P68JEQLE \N \N \N \N \N +623 0.00 641 Spree::CreditCard 622 1 invalid \N \N 2024-02-12 21:54:08.523295 2024-02-12 21:54:29.43264 PFNM7TAX \N \N \N \N \N +628 0.00 642 Spree::CreditCard 627 1 checkout \N \N 2024-02-12 21:54:39.950583 2024-02-12 21:54:39.950583 PS1V8RVU \N \N \N \N \N +624 0.00 642 Spree::CreditCard 623 1 invalid \N \N 2024-02-12 21:54:15.925264 2024-02-12 21:54:39.966638 P3XTOO6W \N \N \N \N \N +629 0.00 643 Spree::CreditCard 628 1 checkout \N \N 2024-02-12 21:54:45.706036 2024-02-12 21:54:45.706036 PU3KYZPY \N \N \N \N \N +626 0.00 643 Spree::CreditCard 625 1 invalid \N \N 2024-02-12 21:54:24.674534 2024-02-12 21:54:45.726919 PQII2HVG \N \N \N \N \N +637 0.00 649 Spree::CreditCard 636 1 checkout \N \N 2024-02-12 21:57:37.510639 2024-02-12 21:57:37.510639 PUGU35P8 \N \N \N \N \N +639 0.00 651 Spree::CreditCard 638 1 checkout \N \N 2024-02-12 21:57:40.635266 2024-02-12 21:57:40.635266 PAF2JKGX \N \N \N \N \N +633 0.00 645 Spree::CreditCard 632 1 pending 12345 D 2024-02-12 21:57:23.412694 2024-02-12 21:58:25.819417 PPEZS9SJ \N \N \N \N \N +643 0.00 655 Spree::CreditCard 642 1 checkout \N \N 2024-02-12 21:58:26.403717 2024-02-12 21:58:26.403717 PQQA796X \N \N \N \N \N +644 0.00 653 Spree::CreditCard 643 1 checkout \N \N 2024-02-12 21:58:33.970032 2024-02-12 21:58:33.970032 P0AEUFQK \N \N \N \N \N +641 0.00 653 Spree::CreditCard 640 1 invalid \N \N 2024-02-12 21:57:41.250291 2024-02-12 21:58:33.9845 PSXKE64F \N \N \N \N \N +634 0.00 646 Spree::CreditCard 633 1 pending 12345 D 2024-02-12 21:57:29.152984 2024-02-12 21:59:00.990969 PD1TIJLB \N \N \N \N \N +638 0.00 650 Spree::CreditCard 637 1 pending 12345 D 2024-02-12 21:57:38.515094 2024-02-12 21:58:36.381463 P140NU1G \N \N \N \N \N +649 0.00 657 Spree::CreditCard 648 1 checkout \N \N 2024-02-12 21:59:25.547705 2024-02-12 21:59:25.547705 P3TT0DD3 \N \N \N \N \N +635 0.00 647 Spree::CreditCard 634 1 pending 12345 D 2024-02-12 21:57:31.928087 2024-02-12 21:59:16.902951 PAA0EHOP \N \N \N \N \N +646 0.00 657 Spree::CreditCard 645 1 invalid \N \N 2024-02-12 21:59:01.943493 2024-02-12 21:59:25.560516 PSXZJ5VC \N \N \N \N \N +636 0.00 648 Spree::CreditCard 635 1 pending 12345 D 2024-02-12 21:57:35.260557 2024-02-12 21:59:21.094572 P6OT9VIB \N \N \N \N \N +650 0.00 658 Spree::CreditCard 649 1 checkout \N \N 2024-02-12 21:59:39.512599 2024-02-12 21:59:39.512599 PKABFG89 \N \N \N \N \N +647 0.00 658 Spree::CreditCard 646 1 invalid \N \N 2024-02-12 21:59:17.554512 2024-02-12 21:59:39.53413 PFJ5XIRE \N \N \N \N \N +651 0.00 659 Spree::CreditCard 650 1 checkout \N \N 2024-02-12 21:59:42.932138 2024-02-12 21:59:42.932138 PGCL9BOD \N \N \N \N \N +648 0.00 659 Spree::CreditCard 647 1 invalid \N \N 2024-02-12 21:59:21.585988 2024-02-12 21:59:42.946224 P4MIUPVH \N \N \N \N \N +640 0.00 652 Spree::CreditCard 639 1 pending 12345 D 2024-02-12 21:57:40.805254 2024-02-12 22:00:28.989265 PQI64S5X \N \N \N \N \N +642 0.00 654 Spree::CreditCard 641 1 pending 12345 D 2024-02-12 21:57:41.525779 2024-02-12 22:00:47.080962 PEAWON5P \N \N \N \N \N +654 0.00 660 Spree::CreditCard 653 1 checkout \N \N 2024-02-12 22:00:54.019324 2024-02-12 22:00:54.019324 PPAVMEOS \N \N \N \N \N +652 0.00 660 Spree::CreditCard 651 1 invalid \N \N 2024-02-12 22:00:29.583516 2024-02-12 22:00:54.033876 PWGRP7LM \N \N \N \N \N +655 0.00 661 Spree::CreditCard 654 1 checkout \N \N 2024-02-12 22:01:09.108632 2024-02-12 22:01:09.108632 PM03ZPTS \N \N \N \N \N +653 0.00 661 Spree::CreditCard 652 1 invalid \N \N 2024-02-12 22:00:47.683904 2024-02-12 22:01:09.132313 PINPTXA5 \N \N \N \N \N +658 0.00 664 Spree::CreditCard 657 1 checkout \N \N 2024-02-12 22:02:42.083026 2024-02-12 22:02:42.083026 PTBZZYIX \N \N \N \N \N +656 0.00 662 Spree::CreditCard 655 1 pending 12345 D 2024-02-12 22:02:27.244289 2024-02-12 22:04:16.5827 PWOUPCM7 \N \N \N \N \N +659 0.00 665 Spree::CreditCard 658 1 checkout \N \N 2024-02-12 22:02:44.752975 2024-02-12 22:02:44.752975 P7NTCZ9U \N \N \N \N \N +666 0.00 663 Spree::CreditCard 665 1 checkout \N \N 2024-02-12 22:03:40.095708 2024-02-12 22:03:40.095708 PJHKOWOK \N \N \N \N \N +657 0.00 663 Spree::CreditCard 656 1 invalid \N \N 2024-02-12 22:02:40.676791 2024-02-12 22:03:40.109716 PUJETBJH \N \N \N \N \N +667 0.00 669 Spree::CreditCard 666 1 checkout \N \N 2024-02-12 22:03:42.669561 2024-02-12 22:03:42.669561 P6QPJGQF \N \N \N \N \N +660 0.00 666 Spree::CreditCard 659 1 checkout \N \N 2024-02-12 22:02:47.668431 2024-02-12 22:02:47.668431 PCSBQBZE \N \N \N \N \N +661 0.00 668 Spree::CreditCard 660 1 pending 12345 D 2024-02-12 22:02:49.048992 2024-02-12 22:03:56.154427 PKV5CKK1 \N \N \N \N \N +668 0.00 672 Spree::CreditCard 667 1 checkout \N \N 2024-02-12 22:03:57.034861 2024-02-12 22:03:57.034861 PFJ84K36 \N \N \N \N \N +662 0.00 667 Spree::CreditCard 661 1 pending 12345 D 2024-02-12 22:02:49.507176 2024-02-12 22:04:26.998605 PZU9I7K4 \N \N \N \N \N +671 0.00 673 Spree::CreditCard 670 1 checkout \N \N 2024-02-12 22:04:38.334205 2024-02-12 22:04:38.334205 P7WQYB42 \N \N \N \N \N +669 0.00 673 Spree::CreditCard 668 1 invalid \N \N 2024-02-12 22:04:17.255258 2024-02-12 22:04:38.34653 PR1JJWPP \N \N \N \N \N +670 0.00 674 Spree::CreditCard 669 1 invalid \N \N 2024-02-12 22:04:27.598424 2024-02-12 22:04:48.551019 PT8TQIN4 \N \N \N \N \N +664 0.00 669 Spree::CreditCard 663 1 invalid \N \N 2024-02-12 22:02:51.830259 2024-02-12 22:03:42.68443 PTIB8M0J \N \N \N \N \N +672 14.13 670 Spree::CreditCard 671 1 checkout \N \N 2024-02-12 22:04:40.464651 2024-02-12 22:04:40.464651 PNNK8E4I \N \N \N \N \N +663 0.00 670 Spree::CreditCard 662 1 invalid \N \N 2024-02-12 22:02:51.666419 2024-02-12 22:04:40.478891 PVV3JD3U \N \N \N \N \N +673 24.99 671 Spree::CreditCard 672 1 checkout \N \N 2024-02-12 22:04:45.206002 2024-02-12 22:04:45.206002 P5JJNB20 \N \N \N \N \N +665 0.00 671 Spree::CreditCard 664 1 invalid \N \N 2024-02-12 22:02:52.837495 2024-02-12 22:04:45.2275 PSJSBXM6 \N \N \N \N \N +674 0.00 674 Spree::CreditCard 673 1 checkout \N \N 2024-02-12 22:04:48.53802 2024-02-12 22:04:48.53802 PJ131G8Q \N \N \N \N \N +679 0.00 679 Spree::CreditCard 678 1 checkout \N \N 2024-02-12 22:06:13.561721 2024-02-12 22:06:13.561721 PZ2JGP5S \N \N \N \N \N +683 0.00 683 Spree::CreditCard 682 1 checkout \N \N 2024-02-12 22:06:19.119204 2024-02-12 22:06:19.119204 P1GB12WG \N \N \N \N \N +684 0.00 684 Spree::CreditCard 683 1 pending 12345 D 2024-02-12 22:06:19.206327 2024-02-12 22:07:16.582056 P1YCN4L9 \N \N \N \N \N +685 0.00 685 Spree::CreditCard 684 1 checkout \N \N 2024-02-12 22:07:17.481442 2024-02-12 22:07:17.481442 P3RDO2F4 \N \N \N \N \N +701 0.00 694 Spree::CreditCard 700 1 checkout \N \N 2024-02-12 22:11:42.30936 2024-02-12 22:11:42.30936 PQCTQL82 \N \N \N \N \N +677 0.00 677 Spree::CreditCard 676 1 pending 12345 D 2024-02-12 22:06:10.690285 2024-02-12 22:07:53.810742 PJUD5DCA \N \N \N \N \N +687 9.13 680 Spree::CreditCard 686 1 checkout \N \N 2024-02-12 22:08:11.113661 2024-02-12 22:08:11.113661 PJSKKWOU \N \N \N \N \N +680 0.00 680 Spree::CreditCard 679 1 invalid \N \N 2024-02-12 22:06:15.538911 2024-02-12 22:08:11.1345 PEO5MO0C \N \N \N \N \N +688 0.00 686 Spree::CreditCard 687 1 checkout \N \N 2024-02-12 22:08:18.76754 2024-02-12 22:08:18.76754 P8UTNT8D \N \N \N \N \N +686 0.00 686 Spree::CreditCard 685 1 invalid \N \N 2024-02-12 22:07:54.696264 2024-02-12 22:08:18.780361 PTR0UOKZ \N \N \N \N \N +678 0.00 678 Spree::CreditCard 677 1 pending 12345 D 2024-02-12 22:06:12.89864 2024-02-12 22:09:12.301759 PCFPJZ6H \N \N \N \N \N +703 0.00 696 Spree::CreditCard 702 1 checkout \N \N 2024-02-12 22:11:43.341465 2024-02-12 22:11:43.341465 PZHPZ5Z8 \N \N \N \N \N +676 0.00 676 Spree::CreditCard 675 1 pending 12345 D 2024-02-12 22:06:08.053707 2024-02-12 22:09:20.624628 P6FVO3HK \N \N \N \N \N +691 28.12 682 Spree::CreditCard 690 1 checkout \N \N 2024-02-12 22:09:24.913937 2024-02-12 22:09:24.913937 PLRI2J8R \N \N \N \N \N +682 0.00 682 Spree::CreditCard 681 1 invalid \N \N 2024-02-12 22:06:17.785226 2024-02-12 22:09:24.944919 PKF8MKLA \N \N \N \N \N +681 0.00 681 Spree::CreditCard 680 1 pending 12345 D 2024-02-12 22:06:16.797652 2024-02-12 22:09:27.762167 P1119K4D \N \N \N \N \N +693 0.00 687 Spree::CreditCard 692 1 checkout \N \N 2024-02-12 22:09:37.40589 2024-02-12 22:09:37.40589 P4PLOOZG \N \N \N \N \N +689 0.00 687 Spree::CreditCard 688 1 invalid \N \N 2024-02-12 22:09:12.907127 2024-02-12 22:09:37.420042 PJBIOVJM \N \N \N \N \N +694 0.00 688 Spree::CreditCard 693 1 checkout \N \N 2024-02-12 22:09:42.728716 2024-02-12 22:09:42.728716 PJZAAUDA \N \N \N \N \N +690 0.00 688 Spree::CreditCard 689 1 invalid \N \N 2024-02-12 22:09:21.296506 2024-02-12 22:09:42.750841 P0UPZYOX \N \N \N \N \N +695 0.00 689 Spree::CreditCard 694 1 checkout \N \N 2024-02-12 22:09:49.77947 2024-02-12 22:09:49.77947 PF7LXQE8 \N \N \N \N \N +692 0.00 689 Spree::CreditCard 691 1 invalid \N \N 2024-02-12 22:09:28.37099 2024-02-12 22:09:49.792293 P97L7USR \N \N \N \N \N +696 67.96 675 Spree::CreditCard 695 1 checkout \N \N 2024-02-12 22:10:18.075152 2024-02-12 22:10:18.075152 P6DT30VN \N \N \N \N \N +675 0.00 675 Spree::CreditCard 674 1 invalid \N \N 2024-02-12 22:06:00.848796 2024-02-12 22:10:18.088079 PA29LJO2 \N \N \N \N \N +698 0.00 691 Spree::CreditCard 697 1 checkout \N \N 2024-02-12 22:11:35.416163 2024-02-12 22:11:35.416163 P0157B0T \N \N \N \N \N +705 0.00 698 Spree::CreditCard 704 1 checkout \N \N 2024-02-12 22:11:46.517959 2024-02-12 22:11:46.517959 P5QU3NLY \N \N \N \N \N +706 0.00 699 Spree::CreditCard 705 1 checkout \N \N 2024-02-12 22:11:47.383993 2024-02-12 22:11:47.383993 PD3H2QFZ \N \N \N \N \N +707 0.00 690 Spree::CreditCard 706 1 checkout \N \N 2024-02-12 22:12:24.282454 2024-02-12 22:12:24.282454 PWK7FJX8 \N \N \N \N \N +697 0.00 690 Spree::CreditCard 696 1 invalid \N \N 2024-02-12 22:11:28.293601 2024-02-12 22:12:24.295118 PHG8IRQF \N \N \N \N \N +711 0.00 702 Spree::CreditCard 710 1 checkout \N \N 2024-02-12 22:14:37.456907 2024-02-12 22:14:37.456907 PKAY3VPJ \N \N \N \N \N +702 0.00 695 Spree::CreditCard 701 1 pending 12345 D 2024-02-12 22:11:42.711744 2024-02-12 22:13:18.152743 PL714BFC \N \N \N \N \N +708 0.00 700 Spree::CreditCard 707 1 checkout \N \N 2024-02-12 22:13:19.199818 2024-02-12 22:13:19.199818 PFOY3A5I \N \N \N \N \N +699 0.00 692 Spree::CreditCard 698 1 pending 12345 D 2024-02-12 22:11:38.057548 2024-02-12 22:13:21.392513 PFTWM7F9 \N \N \N \N \N +710 0.00 701 Spree::CreditCard 709 1 checkout \N \N 2024-02-12 22:13:48.323878 2024-02-12 22:13:48.323878 PP87VCMB \N \N \N \N \N +709 0.00 701 Spree::CreditCard 708 1 invalid \N \N 2024-02-12 22:13:22.24307 2024-02-12 22:13:48.34013 PCB1RQGQ \N \N \N \N \N +704 0.00 697 Spree::CreditCard 703 1 pending 12345 D 2024-02-12 22:11:46.062249 2024-02-12 22:15:00.907394 P5VWNM8L \N \N \N \N \N +700 0.00 693 Spree::CreditCard 699 1 pending 12345 D 2024-02-12 22:11:40.372005 2024-02-12 22:14:36.039541 PLE1334D \N \N \N \N \N +713 0.00 703 Spree::CreditCard 712 1 checkout \N \N 2024-02-12 22:15:23.081088 2024-02-12 22:15:23.081088 PXGWTQ3I \N \N \N \N \N +712 0.00 703 Spree::CreditCard 711 1 invalid \N \N 2024-02-12 22:15:01.517216 2024-02-12 22:15:23.094026 PFDFSX1R \N \N \N \N \N +714 0.00 704 Spree::CreditCard 713 1 checkout \N \N 2024-02-12 22:16:42.703112 2024-02-12 22:16:42.703112 PZIL7ZFM \N \N \N \N \N +721 0.00 711 Spree::CreditCard 720 1 checkout \N \N 2024-02-12 22:16:58.14648 2024-02-12 22:16:58.14648 P9W1HV6K \N \N \N \N \N +729 0.00 715 Spree::CreditCard 728 1 checkout \N \N 2024-02-12 22:18:29.791192 2024-02-12 22:18:29.791192 PTQLPQHW \N \N \N \N \N +717 0.00 707 Spree::CreditCard 716 1 pending 12345 D 2024-02-12 22:16:53.480942 2024-02-12 22:17:53.145451 P0MT05FR \N \N \N \N \N +718 0.00 708 Spree::CreditCard 717 1 pending 12345 D 2024-02-12 22:16:54.317113 2024-02-12 22:18:04.060034 PGURVEK4 \N \N \N \N \N +719 0.00 709 Spree::CreditCard 718 1 pending 12345 D 2024-02-12 22:16:54.492566 2024-02-12 22:18:18.661008 PSJ2QFOM \N \N \N \N \N +715 0.00 705 Spree::CreditCard 714 1 pending 12345 D 2024-02-12 22:16:47.941918 2024-02-12 22:18:21.880907 PR1PM9R2 \N \N \N \N \N +720 0.00 710 Spree::CreditCard 719 1 invalid \N \N 2024-02-12 22:16:57.388219 2024-02-12 22:20:18.267368 PUB8EG2F \N \N \N \N \N +722 0.00 712 Spree::CreditCard 721 1 pending 12345 D 2024-02-12 22:16:58.532883 2024-02-12 22:18:45.001129 PM2M9OPO \N \N \N \N \N +724 0.00 713 Spree::CreditCard 723 1 checkout \N \N 2024-02-12 22:17:53.0084 2024-02-12 22:17:53.0084 PTI74H57 \N \N \N \N \N +723 0.00 713 Spree::CreditCard 722 1 invalid \N \N 2024-02-12 22:16:58.608057 2024-02-12 22:17:53.031196 P3ZRSOJF \N \N \N \N \N +725 0.00 714 Spree::CreditCard 724 1 checkout \N \N 2024-02-12 22:17:53.66191 2024-02-12 22:17:53.66191 PW7D104F \N \N \N \N \N +726 0.00 715 Spree::CreditCard 725 1 invalid \N \N 2024-02-12 22:18:04.628081 2024-02-12 22:18:29.81681 PXXUIRFW \N \N \N \N \N +727 0.00 716 Spree::CreditCard 726 1 invalid \N \N 2024-02-12 22:18:19.344046 2024-02-12 22:18:40.484559 P7522GY0 \N \N \N \N \N +716 0.00 706 Spree::CreditCard 715 1 pending 12345 D 2024-02-12 22:16:51.43749 2024-02-12 22:18:42.334482 PCGFRZQX \N \N \N \N \N +728 0.00 717 Spree::CreditCard 727 1 invalid \N \N 2024-02-12 22:18:22.573988 2024-02-12 22:18:46.684188 PJBYBE6B \N \N \N \N \N +739 0.00 724 Spree::CreditCard 738 1 checkout \N \N 2024-02-12 22:21:46.102493 2024-02-12 22:21:46.102493 P487WJ32 \N \N \N \N \N +742 0.00 727 Spree::CreditCard 741 1 checkout \N \N 2024-02-12 22:21:49.273379 2024-02-12 22:21:49.273379 P5015B63 \N \N \N \N \N +735 0.00 720 Spree::CreditCard 734 1 invalid \N \N 2024-02-12 22:21:33.644025 2024-02-12 22:22:28.670024 PEXVOT42 \N \N \N \N \N +738 0.00 723 Spree::CreditCard 737 1 invalid \N \N 2024-02-12 22:21:44.682701 2024-02-12 22:22:40.561678 PW29SU2Z \N \N \N \N \N +743 0.00 728 Spree::CreditCard 742 1 pending 12345 D 2024-02-12 22:21:50.086676 2024-02-12 22:22:48.690141 PH0OHGHO \N \N \N \N \N +740 0.00 725 Spree::CreditCard 739 1 invalid \N \N 2024-02-12 22:21:46.844761 2024-02-12 22:23:41.700549 PAN9G8QH \N \N \N \N \N +730 0.00 716 Spree::CreditCard 729 1 checkout \N \N 2024-02-12 22:18:40.469213 2024-02-12 22:18:40.469213 PU9W3YGJ \N \N \N \N \N +731 0.00 718 Spree::CreditCard 730 1 checkout \N \N 2024-02-12 22:18:43.022346 2024-02-12 22:18:43.022346 PK5WQ3EA \N \N \N \N \N +732 0.00 719 Spree::CreditCard 731 1 checkout \N \N 2024-02-12 22:18:45.4962 2024-02-12 22:18:45.4962 P4EWZUE3 \N \N \N \N \N +733 0.00 717 Spree::CreditCard 732 1 checkout \N \N 2024-02-12 22:18:46.670452 2024-02-12 22:18:46.670452 PIGIAKAI \N \N \N \N \N +734 40.97 710 Spree::CreditCard 733 1 checkout \N \N 2024-02-12 22:20:18.254679 2024-02-12 22:20:18.254679 P5LP140X \N \N \N \N \N +736 0.00 721 Spree::CreditCard 735 1 checkout \N \N 2024-02-12 22:21:41.55586 2024-02-12 22:21:41.55586 PBVT3LWB \N \N \N \N \N +737 0.00 722 Spree::CreditCard 736 1 pending 12345 D 2024-02-12 22:21:42.332817 2024-02-12 22:23:03.843108 PNG0S0XV \N \N \N \N \N +745 0.00 720 Spree::CreditCard 744 1 checkout \N \N 2024-02-12 22:22:28.655783 2024-02-12 22:22:28.655783 PX7ETOBS \N \N \N \N \N +746 0.00 723 Spree::CreditCard 745 1 checkout \N \N 2024-02-12 22:22:40.546414 2024-02-12 22:22:40.546414 PR3JTHGN \N \N \N \N \N +747 0.00 730 Spree::CreditCard 746 1 checkout \N \N 2024-02-12 22:22:49.238232 2024-02-12 22:22:49.238232 PX3OWE7L \N \N \N \N \N +744 0.00 729 Spree::CreditCard 743 1 pending 12345 D 2024-02-12 22:21:51.617225 2024-02-12 22:23:10.8391 PW16JT4S \N \N \N \N \N +750 0.00 731 Spree::CreditCard 749 1 checkout \N \N 2024-02-12 22:23:29.228267 2024-02-12 22:23:29.228267 PJXSF7UT \N \N \N \N \N +748 0.00 731 Spree::CreditCard 747 1 invalid \N \N 2024-02-12 22:23:04.620038 2024-02-12 22:23:29.24184 PA48HRYL \N \N \N \N \N +741 0.00 726 Spree::CreditCard 740 1 pending 12345 D 2024-02-12 22:21:49.116298 2024-02-12 22:23:35.402413 P5N3WB51 \N \N \N \N \N +751 0.00 732 Spree::CreditCard 750 1 checkout \N \N 2024-02-12 22:23:35.700814 2024-02-12 22:23:35.700814 PZE048T0 \N \N \N \N \N +749 0.00 732 Spree::CreditCard 748 1 invalid \N \N 2024-02-12 22:23:11.496599 2024-02-12 22:23:35.721326 P0N1XZ1G \N \N \N \N \N +753 10.00 725 Spree::CreditCard 752 1 checkout \N \N 2024-02-12 22:23:41.686537 2024-02-12 22:23:41.686537 P0KNGLJL \N \N \N \N \N +754 0.00 733 Spree::CreditCard 753 1 checkout \N \N 2024-02-12 22:23:57.281395 2024-02-12 22:23:57.281395 PWRU73QH \N \N \N \N \N +752 0.00 733 Spree::CreditCard 751 1 invalid \N \N 2024-02-12 22:23:36.347015 2024-02-12 22:23:57.296208 PN3FBXMO \N \N \N \N \N +755 0.00 734 Spree::CreditCard 754 1 checkout \N \N 2024-02-12 22:26:06.053453 2024-02-12 22:26:06.053453 PWAMB93U \N \N \N \N \N +756 0.00 735 Spree::CreditCard 755 1 checkout \N \N 2024-02-12 22:26:11.189508 2024-02-12 22:26:11.189508 PWLEJ6MR \N \N \N \N \N +757 0.00 736 Spree::CreditCard 756 1 checkout \N \N 2024-02-12 22:26:13.953058 2024-02-12 22:26:13.953058 PKATBGJI \N \N \N \N \N +763 0.00 742 Spree::CreditCard 762 1 checkout \N \N 2024-02-12 22:26:21.741228 2024-02-12 22:26:21.741228 PBUH5ZIR \N \N \N \N \N +765 0.00 737 Spree::CreditCard 764 1 checkout \N \N 2024-02-12 22:27:12.903556 2024-02-12 22:27:12.903556 P2U403P1 \N \N \N \N \N +759 0.00 737 Spree::CreditCard 758 1 invalid \N \N 2024-02-12 22:26:16.909979 2024-02-12 22:27:12.919158 PL5O9QN3 \N \N \N \N \N +761 0.00 740 Spree::CreditCard 760 1 pending 12345 D 2024-02-12 22:26:19.275881 2024-02-12 22:27:17.004463 PNIYB6I8 \N \N \N \N \N +766 0.00 744 Spree::CreditCard 765 1 checkout \N \N 2024-02-12 22:27:17.833739 2024-02-12 22:27:17.833739 PJYKZ1E6 \N \N \N \N \N +778 0.00 753 Spree::CreditCard 777 1 checkout \N \N 2024-02-12 22:30:47.562003 2024-02-12 22:30:47.562003 PFE0SYC6 \N \N \N \N \N +762 0.00 741 Spree::CreditCard 761 1 pending 12345 D 2024-02-12 22:26:21.679609 2024-02-12 22:27:19.270175 P7IUIX0A \N \N \N \N \N +767 0.00 745 Spree::CreditCard 766 1 checkout \N \N 2024-02-12 22:27:19.829676 2024-02-12 22:27:19.829676 P02DLC7R \N \N \N \N \N +779 0.00 754 Spree::CreditCard 778 1 checkout \N \N 2024-02-12 22:30:47.950288 2024-02-12 22:30:47.950288 PELD07YN \N \N \N \N \N +758 0.00 738 Spree::CreditCard 757 1 pending 12345 D 2024-02-12 22:26:16.757042 2024-02-12 22:27:48.449818 PB6Q36HM \N \N \N \N \N +780 0.00 755 Spree::CreditCard 779 1 checkout \N \N 2024-02-12 22:30:48.641024 2024-02-12 22:30:48.641024 PRPE2QSZ \N \N \N \N \N +764 0.00 743 Spree::CreditCard 763 1 pending 12345 D 2024-02-12 22:26:23.578453 2024-02-12 22:28:05.442411 PONGTCMW \N \N \N \N \N +770 0.00 746 Spree::CreditCard 769 1 checkout \N \N 2024-02-12 22:28:13.150945 2024-02-12 22:28:13.150945 PC8C6BFY \N \N \N \N \N +768 0.00 746 Spree::CreditCard 767 1 invalid \N \N 2024-02-12 22:27:49.252773 2024-02-12 22:28:13.164587 PJPPKZH4 \N \N \N \N \N +771 19.99 739 Spree::CreditCard 770 1 checkout \N \N 2024-02-12 22:28:16.705546 2024-02-12 22:28:16.705546 PF0WJAZ0 \N \N \N \N \N +760 0.00 739 Spree::CreditCard 759 1 invalid \N \N 2024-02-12 22:26:18.6385 2024-02-12 22:28:16.721409 PQEIZEU6 \N \N \N \N \N +772 0.00 747 Spree::CreditCard 771 1 checkout \N \N 2024-02-12 22:28:27.146878 2024-02-12 22:28:27.146878 P0G40GBF \N \N \N \N \N +769 0.00 747 Spree::CreditCard 768 1 invalid \N \N 2024-02-12 22:28:06.026716 2024-02-12 22:28:27.161343 P5K8AR00 \N \N \N \N \N +774 0.00 749 Spree::CreditCard 773 1 checkout \N \N 2024-02-12 22:30:39.917444 2024-02-12 22:30:39.917444 PXQCN9RH \N \N \N \N \N +775 0.00 752 Spree::CreditCard 774 1 checkout \N \N 2024-02-12 22:30:43.821299 2024-02-12 22:30:43.821299 PFLM6ZMM \N \N \N \N \N +773 0.00 748 Spree::CreditCard 772 1 pending 12345 D 2024-02-12 22:30:30.254139 2024-02-12 22:32:17.853946 P8H6FS96 \N \N \N \N \N +783 0.00 758 Spree::CreditCard 782 1 checkout \N \N 2024-02-12 22:32:18.317201 2024-02-12 22:32:18.317201 PP42PUTZ \N \N \N \N \N +787 0.00 761 Spree::CreditCard 786 1 invalid \N \N 2024-02-12 22:33:56.67772 2024-02-12 22:34:18.173011 P1QYLI4V \N \N \N \N \N +776 0.00 750 Spree::CreditCard 775 1 pending 12345 D 2024-02-12 22:30:44.169121 2024-02-12 22:32:28.465243 P5DR3FRG \N \N \N \N \N +785 0.00 759 Spree::CreditCard 784 1 checkout \N \N 2024-02-12 22:32:53.46695 2024-02-12 22:32:53.46695 PBDC4JTI \N \N \N \N \N +784 0.00 759 Spree::CreditCard 783 1 invalid \N \N 2024-02-12 22:32:29.162665 2024-02-12 22:32:53.481617 P305AF61 \N \N \N \N \N +777 0.00 751 Spree::CreditCard 776 1 pending 12345 D 2024-02-12 22:30:44.572411 2024-02-12 22:33:56.068634 P2HWE583 \N \N \N \N \N +781 0.00 756 Spree::CreditCard 780 1 pending 12345 D 2024-02-12 22:30:50.753778 2024-02-12 22:33:41.113784 PNNRU76X \N \N \N \N \N +788 0.00 760 Spree::CreditCard 787 1 checkout \N \N 2024-02-12 22:34:06.13317 2024-02-12 22:34:06.13317 PUU94LL1 \N \N \N \N \N +786 0.00 760 Spree::CreditCard 785 1 invalid \N \N 2024-02-12 22:33:41.802981 2024-02-12 22:34:06.145873 PFCI2SL3 \N \N \N \N \N +789 0.00 761 Spree::CreditCard 788 1 checkout \N \N 2024-02-12 22:34:18.159735 2024-02-12 22:34:18.159735 P9AVKOZM \N \N \N \N \N +782 0.00 757 Spree::CreditCard 781 1 pending 12345 D 2024-02-12 22:30:51.522991 2024-02-12 22:35:00.099443 PVS020Z4 \N \N \N \N \N +791 0.00 762 Spree::CreditCard 790 1 checkout \N \N 2024-02-12 22:35:22.287592 2024-02-12 22:35:22.287592 PBZ2UNUE \N \N \N \N \N +790 0.00 762 Spree::CreditCard 789 1 invalid \N \N 2024-02-12 22:35:00.928664 2024-02-12 22:35:22.302362 PNG8XVD6 \N \N \N \N \N +805 0.00 774 Spree::CreditCard 804 1 checkout \N \N 2024-02-12 22:38:06.096015 2024-02-12 22:38:06.096015 PGH4J98Q \N \N \N \N \N +792 0.00 763 Spree::CreditCard 791 1 invalid \N \N 2024-02-12 22:36:32.085211 2024-02-12 22:38:25.153458 PINUQR5W \N \N \N \N \N +794 0.00 766 Spree::CreditCard 793 1 invalid \N \N 2024-02-12 22:36:40.623562 2024-02-12 22:38:36.582644 PN4ROPHA \N \N \N \N \N +795 0.00 765 Spree::CreditCard 794 1 pending 12345 D 2024-02-12 22:36:40.781715 2024-02-12 22:38:45.506415 PFYIZOQS \N \N \N \N \N +797 0.00 768 Spree::CreditCard 796 1 pending 12345 D 2024-02-12 22:36:45.141383 2024-02-12 22:39:39.950012 PHJB0ZHT \N \N \N \N \N +799 0.00 770 Spree::CreditCard 798 1 pending 12345 D 2024-02-12 22:36:47.240943 2024-02-12 22:38:14.52646 PCONCP16 \N \N \N \N \N +800 0.00 771 Spree::CreditCard 799 1 pending 12345 D 2024-02-12 22:36:47.795399 2024-02-12 22:38:36.154642 PJ03CO5Q \N \N \N \N \N +808 15.00 766 Spree::CreditCard 807 1 checkout \N \N 2024-02-12 22:38:36.570147 2024-02-12 22:38:36.570147 PK8PQ1PB \N \N \N \N \N +798 0.00 769 Spree::CreditCard 797 1 invalid \N \N 2024-02-12 22:36:47.107105 2024-02-12 22:38:43.589643 PLTKSZWC \N \N \N \N \N +813 0.00 776 Spree::CreditCard 812 1 checkout \N \N 2024-02-12 22:38:57.829859 2024-02-12 22:38:57.829859 PAE8TL9A \N \N \N \N \N +809 0.00 776 Spree::CreditCard 808 1 invalid \N \N 2024-02-12 22:38:37.109728 2024-02-12 22:38:57.842273 PIXFT13S \N \N \N \N \N +814 0.00 777 Spree::CreditCard 813 1 checkout \N \N 2024-02-12 22:39:07.273039 2024-02-12 22:39:07.273039 PPBU1YLF \N \N \N \N \N +812 0.00 777 Spree::CreditCard 811 1 invalid \N \N 2024-02-12 22:38:46.252282 2024-02-12 22:39:07.297797 P8Y6V88F \N \N \N \N \N +816 0.00 778 Spree::CreditCard 815 1 checkout \N \N 2024-02-12 22:40:05.050885 2024-02-12 22:40:05.050885 PGIDEWYN \N \N \N \N \N +815 0.00 778 Spree::CreditCard 814 1 invalid \N \N 2024-02-12 22:39:40.452569 2024-02-12 22:40:05.065351 POP6WFQA \N \N \N \N \N +819 0.00 781 Spree::CreditCard 818 1 checkout \N \N 2024-02-12 22:41:25.117807 2024-02-12 22:41:25.117807 P70B8V6I \N \N \N \N \N +821 0.00 783 Spree::CreditCard 820 1 pending 12345 D 2024-02-12 22:41:27.97654 2024-02-12 22:42:57.657989 PTMO2TFH \N \N \N \N \N +801 0.00 772 Spree::CreditCard 800 1 checkout \N \N 2024-02-12 22:36:48.441472 2024-02-12 22:36:48.441472 PI1C3POA \N \N \N \N \N +793 0.00 764 Spree::CreditCard 792 1 pending 12345 D 2024-02-12 22:36:39.209434 2024-02-12 22:37:38.653607 PSLCFRQ5 \N \N \N \N \N +796 0.00 767 Spree::CreditCard 795 1 pending 12345 D 2024-02-12 22:36:44.010605 2024-02-12 22:37:41.485439 PW4ZDEJG \N \N \N \N \N +807 23.99 763 Spree::CreditCard 806 1 checkout \N \N 2024-02-12 22:38:25.13453 2024-02-12 22:38:25.13453 P1ZA9TOQ \N \N \N \N \N +818 0.00 780 Spree::CreditCard 817 1 checkout \N \N 2024-02-12 22:41:22.20326 2024-02-12 22:41:22.20326 P5GMNUMD \N \N \N \N \N +824 0.00 786 Spree::CreditCard 823 1 checkout \N \N 2024-02-12 22:41:30.929513 2024-02-12 22:41:30.929513 PIQYJAT1 \N \N \N \N \N +826 0.00 788 Spree::CreditCard 825 1 pending 12345 D 2024-02-12 22:41:33.664039 2024-02-12 22:42:30.348186 PCD4DFB8 \N \N \N \N \N +823 0.00 785 Spree::CreditCard 822 1 pending 12345 D 2024-02-12 22:41:30.696914 2024-02-12 22:43:00.413756 PZ73UM4N \N \N \N \N \N +820 0.00 782 Spree::CreditCard 819 1 pending 12345 D 2024-02-12 22:41:27.767353 2024-02-12 22:43:10.457191 PD2K1KUV \N \N \N \N \N +822 0.00 784 Spree::CreditCard 821 1 pending 12345 D 2024-02-12 22:41:29.699765 2024-02-12 22:43:32.229607 PEHEGS1P \N \N \N \N \N +817 0.00 779 Spree::CreditCard 816 1 invalid \N \N 2024-02-12 22:41:15.494618 2024-02-12 22:44:15.868037 PVMU74LT \N \N \N \N \N +804 0.00 773 Spree::CreditCard 803 1 checkout \N \N 2024-02-12 22:38:03.12803 2024-02-12 22:38:03.12803 PDFGAJ81 \N \N \N \N \N +802 0.00 773 Spree::CreditCard 801 1 invalid \N \N 2024-02-12 22:37:39.450503 2024-02-12 22:38:03.142696 PHLTQFXB \N \N \N \N \N +810 0.00 775 Spree::CreditCard 809 1 checkout \N \N 2024-02-12 22:38:39.30663 2024-02-12 22:38:39.30663 PAB06UZ2 \N \N \N \N \N +806 0.00 775 Spree::CreditCard 805 1 invalid \N \N 2024-02-12 22:38:15.309257 2024-02-12 22:38:39.320034 P8XCYTIC \N \N \N \N \N +811 15.00 769 Spree::CreditCard 810 1 checkout \N \N 2024-02-12 22:38:43.575182 2024-02-12 22:38:43.575182 PPDHLFZS \N \N \N \N \N +803 0.00 774 Spree::CreditCard 802 1 invalid \N \N 2024-02-12 22:37:41.976421 2024-02-12 22:38:06.110129 PNSBB3TA \N \N \N \N \N +825 0.00 787 Spree::CreditCard 824 1 checkout \N \N 2024-02-12 22:41:32.948705 2024-02-12 22:41:32.948705 P5Y7KH4V \N \N \N \N \N +827 0.00 789 Spree::CreditCard 826 1 checkout \N \N 2024-02-12 22:42:30.893032 2024-02-12 22:42:30.893032 P6D1RGO4 \N \N \N \N \N +828 0.00 790 Spree::CreditCard 827 1 checkout \N \N 2024-02-12 22:42:58.657003 2024-02-12 22:42:58.657003 PJ2Q9YSU \N \N \N \N \N +831 0.00 791 Spree::CreditCard 830 1 checkout \N \N 2024-02-12 22:43:24.979956 2024-02-12 22:43:24.979956 P5OY95EU \N \N \N \N \N +829 0.00 791 Spree::CreditCard 828 1 invalid \N \N 2024-02-12 22:43:01.175696 2024-02-12 22:43:24.993987 P31J4AA2 \N \N \N \N \N +832 0.00 792 Spree::CreditCard 831 1 checkout \N \N 2024-02-12 22:43:32.358858 2024-02-12 22:43:32.358858 P790D4LE \N \N \N \N \N +830 0.00 792 Spree::CreditCard 829 1 invalid \N \N 2024-02-12 22:43:11.051912 2024-02-12 22:43:32.37298 P8BRB5FY \N \N \N \N \N +834 0.00 793 Spree::CreditCard 833 1 checkout \N \N 2024-02-12 22:43:53.773984 2024-02-12 22:43:53.773984 PJHLF7J6 \N \N \N \N \N +833 0.00 793 Spree::CreditCard 832 1 invalid \N \N 2024-02-12 22:43:33.022202 2024-02-12 22:43:53.788776 PY3R2J4H \N \N \N \N \N +835 22.62 779 Spree::CreditCard 834 1 checkout \N \N 2024-02-12 22:44:15.850759 2024-02-12 22:44:15.850759 PAYA0NPH \N \N \N \N \N +836 0.00 794 Spree::CreditCard 835 1 checkout \N \N 2024-02-12 22:46:42.006625 2024-02-12 22:46:42.006625 PSIJGIPA \N \N \N \N \N +838 0.00 796 Spree::CreditCard 837 1 checkout \N \N 2024-02-12 22:46:52.119348 2024-02-12 22:46:52.119348 PH7WCZM4 \N \N \N \N \N +840 0.00 798 Spree::CreditCard 839 1 checkout \N \N 2024-02-12 22:46:55.80607 2024-02-12 22:46:55.80607 PE0CATOQ \N \N \N \N \N +841 0.00 799 Spree::CreditCard 840 1 checkout \N \N 2024-02-12 22:47:00.201969 2024-02-12 22:47:00.201969 PUCHSYC7 \N \N \N \N \N +844 0.00 802 Spree::CreditCard 843 1 checkout \N \N 2024-02-12 22:47:04.354019 2024-02-12 22:47:04.354019 P2204RF9 \N \N \N \N \N +842 0.00 800 Spree::CreditCard 841 1 pending 12345 D 2024-02-12 22:47:01.239822 2024-02-12 22:47:59.35567 P1RQ4FAV \N \N \N \N \N +846 0.00 804 Spree::CreditCard 845 1 checkout \N \N 2024-02-12 22:48:00.086269 2024-02-12 22:48:00.086269 P25KDW9R \N \N \N \N \N +862 0.00 815 Spree::CreditCard 861 1 checkout \N \N 2024-02-12 22:51:05.654031 2024-02-12 22:51:05.654031 PKF5VU87 \N \N \N \N \N +843 0.00 801 Spree::CreditCard 842 1 pending 12345 D 2024-02-12 22:47:03.425966 2024-02-12 22:48:01.043489 PEEYAYSX \N \N \N \N \N +848 0.00 805 Spree::CreditCard 847 1 checkout \N \N 2024-02-12 22:48:26.507165 2024-02-12 22:48:26.507165 PX7QT0HH \N \N \N \N \N +847 0.00 805 Spree::CreditCard 846 1 invalid \N \N 2024-02-12 22:48:01.822923 2024-02-12 22:48:26.523676 P5OVYKOU \N \N \N \N \N +865 0.00 819 Spree::CreditCard 864 1 invalid \N \N 2024-02-12 22:52:25.206207 2024-02-12 22:52:49.289432 PM04LM9J \N \N \N \N \N +839 0.00 797 Spree::CreditCard 838 1 pending 12345 D 2024-02-12 22:46:54.889487 2024-02-12 22:48:28.73407 PX5E51JI \N \N \N \N \N +855 0.00 809 Spree::CreditCard 854 1 pending 12345 D 2024-02-12 22:50:56.036843 2024-02-12 22:52:19.197947 PY10P6U0 \N \N \N \N \N +837 0.00 795 Spree::CreditCard 836 1 pending 12345 D 2024-02-12 22:46:50.594672 2024-02-12 22:48:45.600092 P37ZITTP \N \N \N \N \N +851 0.00 806 Spree::CreditCard 850 1 checkout \N \N 2024-02-12 22:48:50.477967 2024-02-12 22:48:50.477967 P95KCWVO \N \N \N \N \N +849 0.00 806 Spree::CreditCard 848 1 invalid \N \N 2024-02-12 22:48:29.564016 2024-02-12 22:48:50.493244 PQ6NF9EU \N \N \N \N \N +852 15.00 803 Spree::CreditCard 851 1 checkout \N \N 2024-02-12 22:49:00.616243 2024-02-12 22:49:00.616243 PKECKUGJ \N \N \N \N \N +845 0.00 803 Spree::CreditCard 844 1 invalid \N \N 2024-02-12 22:47:05.1531 2024-02-12 22:49:00.647723 PC7BXECW \N \N \N \N \N +853 0.00 807 Spree::CreditCard 852 1 checkout \N \N 2024-02-12 22:49:07.562534 2024-02-12 22:49:07.562534 P9PF56CD \N \N \N \N \N +850 0.00 807 Spree::CreditCard 849 1 invalid \N \N 2024-02-12 22:48:46.59299 2024-02-12 22:49:07.588983 PY956XVU \N \N \N \N \N +856 0.00 810 Spree::CreditCard 855 1 checkout \N \N 2024-02-12 22:50:59.281973 2024-02-12 22:50:59.281973 PZAMXBOM \N \N \N \N \N +858 0.00 812 Spree::CreditCard 857 1 checkout \N \N 2024-02-12 22:51:01.336072 2024-02-12 22:51:01.336072 PJ13W4RK \N \N \N \N \N +859 0.00 813 Spree::CreditCard 858 1 checkout \N \N 2024-02-12 22:51:02.910048 2024-02-12 22:51:02.910048 PA11HRYS \N \N \N \N \N +863 0.00 817 Spree::CreditCard 862 1 checkout \N \N 2024-02-12 22:52:20.040371 2024-02-12 22:52:20.040371 PIFAQ8ZE \N \N \N \N \N +868 0.00 820 Spree::CreditCard 867 1 invalid \N \N 2024-02-12 22:52:59.342257 2024-02-12 22:53:20.348963 POO8H3JU \N \N \N \N \N +857 0.00 811 Spree::CreditCard 856 1 pending 12345 D 2024-02-12 22:51:00.270613 2024-02-12 22:52:22.413919 PLU770W2 \N \N \N \N \N +854 0.00 808 Spree::CreditCard 853 1 pending 12345 D 2024-02-12 22:50:53.193449 2024-02-12 22:52:58.203584 PVRCSEUY \N \N \N \N \N +861 0.00 816 Spree::CreditCard 860 1 pending 12345 D 2024-02-12 22:51:05.059614 2024-02-12 22:52:24.311654 P0EOE115 \N \N \N \N \N +866 0.00 818 Spree::CreditCard 865 1 checkout \N \N 2024-02-12 22:52:47.543128 2024-02-12 22:52:47.543128 PC5GOE5A \N \N \N \N \N +864 0.00 818 Spree::CreditCard 863 1 invalid \N \N 2024-02-12 22:52:23.244605 2024-02-12 22:52:47.558275 PDEVGL8L \N \N \N \N \N +867 0.00 819 Spree::CreditCard 866 1 checkout \N \N 2024-02-12 22:52:49.272578 2024-02-12 22:52:49.272578 P5KOBDT4 \N \N \N \N \N +869 19.99 814 Spree::CreditCard 868 1 checkout \N \N 2024-02-12 22:53:00.46648 2024-02-12 22:53:00.46648 PZM1NT5M \N \N \N \N \N +860 0.00 814 Spree::CreditCard 859 1 invalid \N \N 2024-02-12 22:51:03.278221 2024-02-12 22:53:00.498645 PIB47M3Z \N \N \N \N \N +870 0.00 820 Spree::CreditCard 869 1 checkout \N \N 2024-02-12 22:53:20.333823 2024-02-12 22:53:20.333823 PK69FB7R \N \N \N \N \N +\. + + +-- +-- Data for Name: spree_preferences; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_preferences (id, value, key, created_at, updated_at) FROM stdin; +1 --- false\n spree/auth_configuration/signout_after_password_change 2022-07-12 18:09:59.709608 2022-07-12 18:09:59.709608 +\. + + +-- +-- Data for Name: spree_prices; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_prices (id, variant_id, amount, currency, deleted_at, created_at, updated_at, compare_at_amount) FROM stdin; +46 46 14.99 USD 2022-09-02 16:27:23.992547 2022-07-12 18:13:34.156174 2022-09-02 16:27:23.992574 \N +11 11 98.99 USD 2022-09-02 16:27:31.546241 2022-07-12 18:13:20.824971 2022-09-02 16:27:31.546264 \N +105 105 17.99 USD 2022-09-02 16:27:33.604611 2022-07-12 18:13:57.223869 2022-09-02 16:27:33.60463 \N +80 80 46.99 USD 2022-09-02 16:27:34.211882 2022-07-12 18:13:47.379139 2022-09-02 16:27:34.211899 \N +78 78 40.99 USD 2022-09-02 16:27:34.714724 2022-07-12 18:13:46.542221 2022-09-02 16:27:34.714743 \N +43 43 67.99 USD 2022-09-02 16:27:36.598966 2022-07-12 18:13:32.889484 2022-09-02 16:27:36.598981 \N +83 83 58.99 USD 2022-09-02 16:27:38.083399 2022-07-12 18:13:48.454432 2022-09-02 16:27:38.083416 \N +58 58 91.99 USD 2022-09-02 16:27:41.373336 2022-07-12 18:13:38.53718 2022-09-02 16:27:41.373354 \N +5 5 55.99 USD 2022-09-02 16:27:42.644647 2022-07-12 18:13:18.781473 2022-09-02 16:27:42.644664 \N +4 4 17.99 USD 2022-09-02 16:27:43.226298 2022-07-12 18:13:18.451869 2022-09-02 16:27:43.226316 \N +15 15 34.99 USD 2022-09-02 16:27:45.4408 2022-07-12 18:13:22.181922 2022-09-02 16:27:45.440816 \N +28 28 33.99 USD 2022-09-02 16:27:46.051597 2022-07-12 18:13:27.121417 2022-09-02 16:27:46.051614 \N +21 21 88.99 USD 2022-09-02 16:27:46.632736 2022-07-12 18:13:24.458189 2022-09-02 16:27:46.632753 \N +51 51 87.99 USD 2022-09-02 16:27:47.352524 2022-07-12 18:13:36.000691 2022-09-02 16:27:47.352539 \N +102 102 29.99 USD 2022-09-02 16:27:48.574566 2022-07-12 18:13:55.947975 2022-09-02 16:27:48.574582 \N +97 97 41.99 USD 2022-09-02 16:27:49.428951 2022-07-12 18:13:54.153524 2022-09-02 16:27:49.428967 \N +103 103 79.99 USD 2022-09-02 16:27:49.920578 2022-07-12 18:13:56.371448 2022-09-02 16:27:49.920596 \N +108 108 54.99 USD 2022-09-02 16:27:50.627853 2022-07-12 18:13:58.342501 2022-09-02 16:27:50.627871 \N +109 109 71.99 USD 2022-09-02 16:27:51.215091 2022-07-12 18:13:58.742053 2022-09-02 16:27:51.215108 \N +104 104 47.99 USD 2022-09-02 16:27:52.683277 2022-07-12 18:13:56.865802 2022-09-02 16:27:52.683293 \N +57 57 26.99 USD 2022-09-02 16:27:53.395253 2022-07-12 18:13:38.192576 2022-09-02 16:27:53.395272 \N +42 42 17.99 USD 2022-09-02 16:27:53.912691 2022-07-12 18:13:32.53143 2022-09-02 16:27:53.912708 \N +90 90 28.99 USD 2022-09-02 16:28:00.432425 2022-07-12 18:13:51.289975 2022-09-02 16:28:00.432441 \N +32 32 27.99 USD 2022-09-02 16:28:01.680351 2022-07-12 18:13:28.891353 2022-09-02 16:28:01.680367 \N +94 94 13.99 USD 2022-09-02 16:28:02.405696 2022-07-12 18:13:52.995319 2022-09-02 16:28:02.405712 \N +34 34 35.99 USD 2022-09-02 16:28:02.986991 2022-07-12 18:13:29.618661 2022-09-02 16:28:02.98701 \N +60 60 68.99 USD 2022-09-02 16:28:03.668434 2022-07-12 18:13:39.371884 2022-09-02 16:28:03.668451 \N +17 17 47.99 USD 2022-09-02 16:28:04.36759 2022-07-12 18:13:23.025133 2022-09-02 16:28:04.367606 \N +68 68 87.99 USD 2022-09-02 16:28:04.894173 2022-07-12 18:13:42.220764 2022-09-02 16:28:04.894189 \N +47 47 31.99 USD 2022-09-02 16:28:06.144942 2022-07-12 18:13:34.535422 2022-09-02 16:28:06.144959 \N +55 55 73.99 USD 2022-09-02 16:28:06.842343 2022-07-12 18:13:37.459553 2022-09-02 16:28:06.84236 \N +18 18 10.99 USD 2022-09-02 16:28:07.379812 2022-07-12 18:13:23.372619 2022-09-02 16:28:07.379833 \N +98 98 37.99 USD 2022-09-02 16:28:19.214116 2022-07-12 18:13:54.498676 2022-09-02 16:28:19.214131 \N +86 86 43.99 USD 2022-09-02 16:28:19.847822 2022-07-12 18:13:49.577379 2022-09-02 16:28:19.847836 \N +82 82 37.99 USD 2022-09-02 16:28:20.435754 2022-07-12 18:13:48.080211 2022-09-02 16:28:20.435771 \N +107 107 67.99 USD 2022-09-02 16:28:20.813168 2022-07-12 18:13:57.984621 2022-09-02 16:28:20.813186 \N +91 91 43.99 USD 2022-09-02 16:28:28.358199 2022-07-12 18:13:51.741777 2022-09-02 16:28:28.358215 \N +37 37 40.99 USD 2022-09-02 16:28:29.168915 2022-07-12 18:13:30.719021 2022-09-02 16:28:29.168934 \N +99 99 76.99 USD 2022-09-02 16:28:31.180523 2022-07-12 18:13:54.853936 2022-09-02 16:28:31.180539 \N +71 71 24.99 USD 2022-09-02 16:28:31.708454 2022-07-12 18:13:43.333021 2022-09-02 16:28:31.708468 \N +72 72 86.99 USD 2022-09-02 16:28:32.277891 2022-07-12 18:13:43.684172 2022-09-02 16:28:32.277906 \N +7 7 94.99 USD 2022-09-02 16:28:35.389037 2022-07-12 18:13:19.465214 2022-09-02 16:28:35.389055 \N +16 16 84.99 USD 2022-09-02 16:28:36.070044 2022-07-12 18:13:22.535499 2022-09-02 16:28:36.070061 \N +61 61 15.99 USD 2022-09-02 16:28:36.758713 2022-07-12 18:13:39.727827 2022-09-02 16:28:36.75873 \N +77 77 30.99 USD 2022-09-02 16:28:37.955926 2022-07-12 18:13:45.775796 2022-09-02 16:28:37.955956 \N +53 53 76.99 USD 2022-09-02 16:28:38.570306 2022-07-12 18:13:36.732905 2022-09-02 16:28:38.57032 \N +6 6 74.99 USD 2022-09-02 16:28:39.269051 2022-07-12 18:13:19.124775 2022-09-02 16:28:39.269068 \N +39 39 30.99 USD 2022-09-02 14:33:31.974234 2022-07-12 18:13:31.451936 2022-09-02 14:33:31.974248 \N +30 30 44.99 USD 2022-09-02 14:33:34.196694 2022-07-12 18:13:27.913244 2022-09-02 14:33:34.196719 \N +87 87 19.99 USD 2022-09-02 14:33:39.440806 2022-07-12 18:13:49.956057 2022-09-02 14:33:39.440819 \N +19 19 23.99 USD 2022-09-02 16:25:41.896563 2022-07-12 18:13:23.729611 2022-09-02 16:25:41.896614 \N +96 96 30.99 USD 2022-09-02 16:25:45.373651 2022-07-12 18:13:53.792165 2022-09-02 16:25:45.373668 \N +2 2 65.99 USD 2022-09-02 16:25:47.086317 2022-07-12 18:13:17.736961 2022-09-02 16:25:47.086335 \N +8 8 27.99 USD 2022-09-02 16:25:48.622167 2022-07-12 18:13:19.80268 2022-09-02 16:25:48.622181 \N +85 85 27.99 USD 2022-09-02 16:25:50.35368 2022-07-12 18:13:49.215908 2022-09-02 16:25:50.353722 \N +63 63 17.99 USD 2022-09-02 16:25:51.996156 2022-07-12 18:13:40.411896 2022-09-02 16:25:51.996174 \N +3 3 99.99 USD 2022-09-02 16:25:54.013207 2022-07-12 18:13:18.112647 2022-09-02 16:25:54.013222 \N +76 76 96.99 USD 2022-09-02 16:25:57.800513 2022-07-12 18:13:45.370241 2022-09-02 16:25:57.80053 \N +75 75 92.99 USD 2022-09-02 16:25:59.445415 2022-07-12 18:13:44.993484 2022-09-02 16:25:59.445431 \N +95 95 88.99 USD 2022-09-02 16:26:01.212235 2022-07-12 18:13:53.358158 2022-09-02 16:26:01.212251 \N +36 36 21.99 USD 2022-09-02 16:26:03.269878 2022-07-12 18:13:30.35196 2022-09-02 16:26:03.269896 \N +48 48 81.99 USD 2022-09-02 16:26:04.063886 2022-07-12 18:13:34.906575 2022-09-02 16:26:04.063902 \N +38 38 62.99 USD 2022-09-02 16:26:04.590275 2022-07-12 18:13:31.087147 2022-09-02 16:26:04.59029 \N +65 65 19.99 USD 2022-09-02 16:26:05.692952 2022-07-12 18:13:41.100294 2022-09-02 16:26:05.692967 \N +54 54 36.99 USD 2022-09-02 16:26:06.297008 2022-07-12 18:13:37.103462 2022-09-02 16:26:06.297025 \N +33 33 64.99 USD 2022-09-02 16:26:06.970603 2022-07-12 18:13:29.259237 2022-09-02 16:26:06.970622 \N +89 89 59.99 USD 2022-09-02 16:26:07.468923 2022-07-12 18:13:50.875825 2022-09-02 16:26:07.468941 \N +92 92 50.99 USD 2022-09-02 16:26:08.088793 2022-07-12 18:13:52.225622 2022-09-02 16:26:08.088808 \N +9 9 33.99 USD 2022-09-02 16:26:08.858659 2022-07-12 18:13:20.149861 2022-09-02 16:26:08.858694 \N +31 31 76.99 USD 2022-09-02 16:26:10.221736 2022-07-12 18:13:28.376818 2022-09-02 16:26:10.221752 \N +41 41 74.99 USD 2022-09-02 16:26:59.826212 2022-07-12 18:13:32.167724 2022-09-02 16:26:59.826228 \N +44 44 10.99 USD 2022-09-02 16:27:01.14406 2022-07-12 18:13:33.264063 2022-09-02 16:27:01.144078 \N +66 66 72.99 USD 2022-09-02 16:27:01.917817 2022-07-12 18:13:41.473148 2022-09-02 16:27:01.917836 \N +56 56 32.99 USD 2022-09-02 16:27:02.586476 2022-07-12 18:13:37.840251 2022-09-02 16:27:02.586517 \N +29 29 11.99 USD 2022-09-02 16:27:04.177687 2022-07-12 18:13:27.526966 2022-09-02 16:27:04.177705 \N +74 74 17.99 USD 2022-09-02 16:27:07.128932 2022-07-12 18:13:44.44715 2022-09-02 16:27:07.128945 \N +101 101 11.99 USD 2022-09-02 16:27:07.987154 2022-07-12 18:13:55.562831 2022-09-02 16:27:07.987172 \N +40 40 46.99 USD 2022-09-02 16:27:08.952101 2022-07-12 18:13:31.810158 2022-09-02 16:27:08.952116 \N +10 10 87.99 USD 2022-09-02 16:27:09.792613 2022-07-12 18:13:20.495717 2022-09-02 16:27:09.79263 \N +27 27 64.99 USD 2022-09-02 16:27:10.528373 2022-07-12 18:13:26.688125 2022-09-02 16:27:10.528388 \N +13 13 28.99 USD 2022-09-02 16:27:12.862735 2022-07-12 18:13:21.49581 2022-09-02 16:27:12.862758 \N +50 50 23.99 USD 2022-09-02 16:27:14.076003 2022-07-12 18:13:35.619038 2022-09-02 16:27:14.076025 \N +22 22 93.99 USD 2022-09-02 16:27:14.749695 2022-07-12 18:13:24.816942 2022-09-02 16:27:14.749711 \N +88 88 47.99 USD 2022-09-02 16:27:15.343517 2022-07-12 18:13:50.32564 2022-09-02 16:27:15.343534 \N +106 106 52.99 USD 2022-09-02 16:27:16.063467 2022-07-12 18:13:57.61041 2022-09-02 16:27:16.063481 \N +93 93 26.99 USD 2022-09-02 16:27:16.867353 2022-07-12 18:13:52.603502 2022-09-02 16:27:16.867371 \N +73 73 86.99 USD 2022-09-02 16:27:17.36977 2022-07-12 18:13:44.056071 2022-09-02 16:27:17.369787 \N +25 25 24.99 USD 2022-09-02 16:27:21.371785 2022-07-12 18:13:25.88228 2022-09-02 16:27:21.371802 \N +20 20 45.99 USD 2022-09-02 16:27:23.243362 2022-07-12 18:13:24.105405 2022-09-02 16:27:23.243379 \N +69 69 46.99 USD 2022-09-02 16:28:39.986129 2022-07-12 18:13:42.605527 2022-09-02 16:28:39.986152 \N +52 52 83.99 USD 2022-09-02 16:28:42.405525 2022-07-12 18:13:36.368909 2022-09-02 16:28:42.405539 \N +62 62 28.99 USD 2022-09-02 16:28:44.2851 2022-07-12 18:13:40.078491 2022-09-02 16:28:44.285118 \N +79 79 83.99 USD 2022-09-02 16:28:45.005029 2022-07-12 18:13:46.984358 2022-09-02 16:28:45.005747 \N +162 162 14.99 USD 2022-09-02 16:27:24.068422 2022-07-12 18:15:20.431809 2022-09-02 16:27:24.068437 \N +127 127 98.99 USD 2022-09-02 16:27:31.615618 2022-07-12 18:15:14.498576 2022-09-02 16:27:31.61563 \N +196 196 46.99 USD 2022-09-02 16:27:34.29832 2022-07-12 18:15:26.992713 2022-09-02 16:27:34.298335 \N +194 194 40.99 USD 2022-09-02 16:27:34.796435 2022-07-12 18:15:26.721093 2022-09-02 16:27:34.796449 \N +111 111 14.99 USD 2022-09-02 16:27:35.879034 2022-07-12 18:13:59.442118 2022-09-02 16:27:35.879051 \N +159 159 67.99 USD 2022-09-02 16:27:36.669524 2022-07-12 18:15:19.644646 2022-09-02 16:27:36.669538 \N +199 199 58.99 USD 2022-09-02 16:27:38.151322 2022-07-12 18:15:27.422325 2022-09-02 16:27:38.151336 \N +174 174 91.99 USD 2022-09-02 16:27:41.464135 2022-07-12 18:15:23.567534 2022-09-02 16:27:41.464149 \N +110 110 73.99 USD 2022-09-02 16:27:42.024018 2022-07-12 18:13:59.089122 2022-09-02 16:27:42.024036 \N +121 121 55.99 USD 2022-09-02 16:27:42.736033 2022-07-12 18:15:13.677462 2022-09-02 16:27:42.736049 \N +120 120 17.99 USD 2022-09-02 16:27:43.299093 2022-07-12 18:15:13.507181 2022-09-02 16:27:43.299107 \N +131 131 34.99 USD 2022-09-02 16:27:45.51127 2022-07-12 18:15:15.095985 2022-09-02 16:27:45.511284 \N +144 144 33.99 USD 2022-09-02 16:27:46.121073 2022-07-12 18:15:17.036703 2022-09-02 16:27:46.121086 \N +167 167 87.99 USD 2022-09-02 16:27:47.423088 2022-07-12 18:15:21.5108 2022-09-02 16:27:47.423106 \N +175 175 60.99 USD 2022-09-02 16:27:48.104255 2022-07-12 18:15:23.715842 2022-09-02 16:27:48.104271 \N +218 218 29.99 USD 2022-09-02 16:27:48.664982 2022-07-12 18:15:30.295849 2022-09-02 16:27:48.664996 \N +213 213 41.99 USD 2022-09-02 16:27:49.493815 2022-07-12 18:15:29.526761 2022-09-02 16:27:49.493828 \N +173 173 26.99 USD 2022-09-02 16:27:53.47259 2022-07-12 18:15:23.400434 2022-09-02 16:27:53.472604 \N +158 158 17.99 USD 2022-09-02 16:27:54.001072 2022-07-12 18:15:19.477131 2022-09-02 16:27:54.001087 \N +206 206 28.99 USD 2022-09-02 16:28:00.500054 2022-07-12 18:15:28.538204 2022-09-02 16:28:00.500067 \N +142 142 67.99 USD 2022-09-02 16:28:01.133558 2022-07-12 18:15:16.746654 2022-09-02 16:28:01.133572 \N +148 148 27.99 USD 2022-09-02 16:28:01.755354 2022-07-12 18:15:17.664591 2022-09-02 16:28:01.755379 \N +150 150 35.99 USD 2022-09-02 16:28:03.057356 2022-07-12 18:15:18.029427 2022-09-02 16:28:03.057371 \N +176 176 68.99 USD 2022-09-02 16:28:03.75193 2022-07-12 18:15:23.872604 2022-09-02 16:28:03.751945 \N +133 133 47.99 USD 2022-09-02 16:28:04.436821 2022-07-12 18:15:15.409697 2022-09-02 16:28:04.436835 \N +184 184 87.99 USD 2022-09-02 16:28:04.999872 2022-07-12 18:15:25.06461 2022-09-02 16:28:04.999894 \N +163 163 31.99 USD 2022-09-02 16:28:06.235653 2022-07-12 18:15:20.599504 2022-09-02 16:28:06.235667 \N +171 171 73.99 USD 2022-09-02 16:28:06.906441 2022-07-12 18:15:22.634971 2022-09-02 16:28:06.906458 \N +134 134 10.99 USD 2022-09-02 16:28:07.448635 2022-07-12 18:15:15.559491 2022-09-02 16:28:07.448648 \N +216 216 34.99 USD 2022-09-02 16:28:18.699041 2022-07-12 18:15:30.025218 2022-09-02 16:28:18.699054 \N +214 214 37.99 USD 2022-09-02 16:28:19.281111 2022-07-12 18:15:29.685775 2022-09-02 16:28:19.281123 \N +198 198 37.99 USD 2022-09-02 16:28:20.50323 2022-07-12 18:15:27.277117 2022-09-02 16:28:20.503244 \N +207 207 43.99 USD 2022-09-02 16:28:28.423727 2022-07-12 18:15:28.673484 2022-09-02 16:28:28.42374 \N +153 153 40.99 USD 2022-09-02 16:28:29.248266 2022-07-12 18:15:18.470723 2022-09-02 16:28:29.248279 \N +215 215 76.99 USD 2022-09-02 16:28:31.242639 2022-07-12 18:15:29.861263 2022-09-02 16:28:31.242652 \N +187 187 24.99 USD 2022-09-02 16:28:31.791388 2022-07-12 18:15:25.589456 2022-09-02 16:28:31.791402 \N +188 188 86.99 USD 2022-09-02 16:28:32.349006 2022-07-12 18:15:25.727523 2022-09-02 16:28:32.34902 \N +161 161 17.99 USD 2022-09-02 16:28:32.987192 2022-07-12 18:15:20.043471 2022-09-02 16:28:32.987207 \N +123 123 94.99 USD 2022-09-02 16:28:35.478084 2022-07-12 18:15:13.93513 2022-09-02 16:28:35.478098 \N +132 132 84.99 USD 2022-09-02 16:28:36.138677 2022-07-12 18:15:15.233638 2022-09-02 16:28:36.13869 \N +193 193 30.99 USD 2022-09-02 16:28:38.027171 2022-07-12 18:15:26.558662 2022-09-02 16:28:38.027192 \N +169 169 76.99 USD 2022-09-02 16:28:38.642916 2022-07-12 18:15:21.928713 2022-09-02 16:28:38.64293 \N +122 122 74.99 USD 2022-09-02 16:28:39.331406 2022-07-12 18:15:13.806607 2022-09-02 16:28:39.331419 \N +185 185 46.99 USD 2022-09-02 16:28:40.0568 2022-07-12 18:15:25.225801 2022-09-02 16:28:40.056813 \N +112 112 45.99 USD 2022-09-02 16:28:41.139954 2022-07-12 18:13:59.793393 2022-09-02 16:28:41.139968 \N +114 114 45.99 USD 2022-09-02 16:28:41.760542 2022-07-12 18:14:00.669118 2022-09-02 16:28:41.76056 \N +168 168 83.99 USD 2022-09-02 16:28:42.47917 2022-07-12 18:15:21.721701 2022-09-02 16:28:42.479185 \N +155 155 30.99 USD 2022-09-02 14:33:32.04121 2022-07-12 18:15:18.914183 2022-09-02 14:33:32.041223 \N +146 146 44.99 USD 2022-09-02 14:33:34.326379 2022-07-12 18:15:17.37049 2022-09-02 14:33:34.326392 \N +203 203 19.99 USD 2022-09-02 14:33:39.503374 2022-07-12 18:15:28.161836 2022-09-02 14:33:39.503388 \N +128 128 52.99 USD 2022-09-02 16:28:43.285527 2022-07-12 18:15:14.638 2022-09-02 16:28:43.285541 \N +135 135 23.99 USD 2022-09-02 16:25:41.987255 2022-07-12 18:15:15.69268 2022-09-02 16:25:41.98727 \N +212 212 30.99 USD 2022-09-02 16:25:45.44356 2022-07-12 18:15:29.397477 2022-09-02 16:25:45.443574 \N +118 118 65.99 USD 2022-09-02 16:25:47.149371 2022-07-12 18:15:13.186012 2022-09-02 16:25:47.149385 \N +124 124 27.99 USD 2022-09-02 16:25:48.689197 2022-07-12 18:15:14.067412 2022-09-02 16:25:48.68921 \N +201 201 27.99 USD 2022-09-02 16:25:50.422281 2022-07-12 18:15:27.812312 2022-09-02 16:25:50.422299 \N +179 179 17.99 USD 2022-09-02 16:25:52.064981 2022-07-12 18:15:24.327215 2022-09-02 16:25:52.064995 \N +119 119 99.99 USD 2022-09-02 16:25:54.08296 2022-07-12 18:15:13.346261 2022-09-02 16:25:54.082974 \N +192 192 96.99 USD 2022-09-02 16:25:57.870471 2022-07-12 18:15:26.430962 2022-09-02 16:25:57.870486 \N +191 191 92.99 USD 2022-09-02 16:25:59.512418 2022-07-12 18:15:26.278103 2022-09-02 16:25:59.512432 \N +211 211 88.99 USD 2022-09-02 16:26:01.284515 2022-07-12 18:15:29.258049 2022-09-02 16:26:01.284531 \N +152 152 21.99 USD 2022-09-02 16:26:03.382064 2022-07-12 18:15:18.30946 2022-09-02 16:26:03.382112 \N +164 164 81.99 USD 2022-09-02 16:26:04.162602 2022-07-12 18:15:20.845072 2022-09-02 16:26:04.162617 \N +154 154 62.99 USD 2022-09-02 16:26:04.760867 2022-07-12 18:15:18.738551 2022-09-02 16:26:04.760886 \N +181 181 19.99 USD 2022-09-02 16:26:05.767033 2022-07-12 18:15:24.589367 2022-09-02 16:26:05.767047 \N +170 170 36.99 USD 2022-09-02 16:26:06.444483 2022-07-12 18:15:22.205239 2022-09-02 16:26:06.4445 \N +149 149 64.99 USD 2022-09-02 16:26:07.058668 2022-07-12 18:15:17.798727 2022-09-02 16:26:07.058682 \N +205 205 59.99 USD 2022-09-02 16:26:07.539591 2022-07-12 18:15:28.415842 2022-09-02 16:26:07.539607 \N +208 208 50.99 USD 2022-09-02 16:26:08.159257 2022-07-12 18:15:28.822309 2022-09-02 16:26:08.15927 \N +125 125 33.99 USD 2022-09-02 16:26:08.934111 2022-07-12 18:15:14.205045 2022-09-02 16:26:08.934125 \N +147 147 76.99 USD 2022-09-02 16:26:10.324819 2022-07-12 18:15:17.526736 2022-09-02 16:26:10.324843 \N +157 157 74.99 USD 2022-09-02 16:26:59.918146 2022-07-12 18:15:19.298692 2022-09-02 16:26:59.918161 \N +160 160 10.99 USD 2022-09-02 16:27:01.216338 2022-07-12 18:15:19.838121 2022-09-02 16:27:01.216353 \N +182 182 72.99 USD 2022-09-02 16:27:02.01627 2022-07-12 18:15:24.761767 2022-09-02 16:27:02.016292 \N +172 172 32.99 USD 2022-09-02 16:27:02.666818 2022-07-12 18:15:23.208666 2022-09-02 16:27:02.666843 \N +116 116 20.99 USD 2022-09-02 16:27:03.388322 2022-07-12 18:14:01.372852 2022-09-02 16:27:03.388337 \N +151 151 73.99 USD 2022-09-02 16:27:05.341127 2022-07-12 18:15:18.162718 2022-09-02 16:27:05.341141 \N +190 190 17.99 USD 2022-09-02 16:27:07.197189 2022-07-12 18:15:26.053565 2022-09-02 16:27:07.197202 \N +217 217 11.99 USD 2022-09-02 16:27:08.066445 2022-07-12 18:15:30.167086 2022-09-02 16:27:08.066465 \N +156 156 46.99 USD 2022-09-02 16:27:09.03037 2022-07-12 18:15:19.128858 2022-09-02 16:27:09.030385 \N +126 126 87.99 USD 2022-09-02 16:27:09.861247 2022-07-12 18:15:14.345429 2022-09-02 16:27:09.861273 \N +143 143 64.99 USD 2022-09-02 16:27:10.600641 2022-07-12 18:15:16.874714 2022-09-02 16:27:10.600656 \N +140 140 73.99 USD 2022-09-02 16:27:13.498343 2022-07-12 18:15:16.428215 2022-09-02 16:27:13.498358 \N +166 166 23.99 USD 2022-09-02 16:27:14.161134 2022-07-12 18:15:21.253212 2022-09-02 16:27:14.161148 \N +138 138 93.99 USD 2022-09-02 16:27:14.824335 2022-07-12 18:15:16.151105 2022-09-02 16:27:14.824348 \N +204 204 47.99 USD 2022-09-02 16:27:15.41094 2022-07-12 18:15:28.292114 2022-09-02 16:27:15.410954 \N +209 209 26.99 USD 2022-09-02 16:27:16.933308 2022-07-12 18:15:28.959356 2022-09-02 16:27:16.93332 \N +189 189 86.99 USD 2022-09-02 16:27:17.452728 2022-07-12 18:15:25.857124 2022-09-02 16:27:17.452744 \N +141 141 24.99 USD 2022-09-02 16:27:21.43599 2022-07-12 18:15:16.617447 2022-09-02 16:27:21.436002 \N +115 115 92.99 USD 2022-09-02 16:27:22.533128 2022-07-12 18:14:01.024129 2022-09-02 16:27:22.533141 \N +136 136 45.99 USD 2022-09-02 16:27:23.312246 2022-07-12 18:15:15.876406 2022-09-02 16:27:23.31226 \N +178 178 28.99 USD 2022-09-02 16:28:44.377808 2022-07-12 18:15:24.195663 2022-09-02 16:28:44.377824 \N +113 113 50.99 USD 2022-09-02 16:28:46.84677 2022-07-12 18:14:00.227416 2022-09-02 16:28:46.846787 \N +221 221 17.99 USD 2022-09-02 16:27:33.685841 2022-07-12 18:15:30.770882 2022-09-02 16:27:33.685856 \N +67 67 36.99 USD 2022-09-02 16:27:35.415154 2022-07-12 18:13:41.834376 2022-09-02 16:27:35.415173 \N +183 183 36.99 USD 2022-09-02 16:27:35.48795 2022-07-12 18:15:24.930517 2022-09-02 16:27:35.487963 \N +14 14 18.99 USD 2022-09-02 14:33:28.75648 2022-07-12 18:13:21.825212 2022-09-02 14:33:28.756522 \N +130 130 18.99 USD 2022-09-02 14:33:28.916128 2022-07-12 18:15:14.959508 2022-09-02 14:33:28.916141 \N +70 70 34.99 USD 2022-09-02 14:33:48.926528 2022-07-12 18:13:42.977034 2022-09-02 14:33:48.926543 \N +186 186 34.99 USD 2022-09-02 14:33:48.997348 2022-07-12 18:15:25.372289 2022-09-02 14:33:48.997361 \N +84 84 25.99 USD 2022-09-02 16:25:39.919401 2022-07-12 18:13:48.847159 2022-09-02 16:25:39.919446 \N +200 200 25.99 USD 2022-09-02 16:25:40.025711 2022-07-12 18:15:27.549985 2022-09-02 16:25:40.025725 \N +64 64 90.99 USD 2022-09-02 16:25:43.69808 2022-07-12 18:13:40.760013 2022-09-02 16:25:43.698094 \N +180 180 90.99 USD 2022-09-02 16:25:43.792832 2022-07-12 18:15:24.453558 2022-09-02 16:25:43.792856 \N +81 81 60.99 USD 2022-09-02 16:25:55.977783 2022-07-12 18:13:47.733697 2022-09-02 16:25:55.9778 \N +197 197 60.99 USD 2022-09-02 16:25:56.063072 2022-07-12 18:15:27.138298 2022-09-02 16:25:56.063087 \N +49 49 55.99 USD 2022-09-02 16:26:05.000703 2022-07-12 18:13:35.261318 2022-09-02 16:26:05.000722 \N +165 165 55.99 USD 2022-09-02 16:26:05.122363 2022-07-12 18:15:21.05346 2022-09-02 16:26:05.122385 \N +1 1 24.99 USD 2022-09-02 16:26:09.569675 2022-07-12 18:13:17.286374 2022-09-02 16:26:09.569694 \N +117 117 24.99 USD 2022-09-02 16:26:09.638537 2022-07-12 18:15:12.960719 2022-09-02 16:26:09.638555 \N +232 232 20.99 USD 2022-09-02 16:27:03.470721 2022-07-12 18:15:32.323075 2022-09-02 16:27:03.470736 \N +145 145 11.99 USD 2022-09-02 16:27:04.249833 2022-07-12 18:15:17.239865 2022-09-02 16:27:04.249848 \N +35 35 73.99 USD 2022-09-02 16:27:05.268878 2022-07-12 18:13:29.987904 2022-09-02 16:27:05.268897 \N +129 129 28.99 USD 2022-09-02 16:27:12.939646 2022-07-12 18:15:14.825812 2022-09-02 16:27:12.93967 \N +24 24 73.99 USD 2022-09-02 16:27:13.394662 2022-07-12 18:13:25.518936 2022-09-02 16:27:13.394683 \N +222 222 52.99 USD 2022-09-02 16:27:16.143687 2022-07-12 18:15:30.896837 2022-09-02 16:27:16.1437 \N +23 23 61.99 USD 2022-09-02 16:27:18.341535 2022-07-12 18:13:25.164782 2022-09-02 16:27:18.341561 \N +139 139 61.99 USD 2022-09-02 16:27:18.416782 2022-07-12 18:15:16.287059 2022-09-02 16:27:18.416794 \N +231 231 92.99 USD 2022-09-02 16:27:22.609731 2022-07-12 18:15:32.16885 2022-09-02 16:27:22.609746 \N +227 227 14.99 USD 2022-09-02 16:27:35.957028 2022-07-12 18:15:31.622854 2022-09-02 16:27:35.95705 \N +226 226 73.99 USD 2022-09-02 16:27:42.099154 2022-07-12 18:15:31.440126 2022-09-02 16:27:42.099167 \N +137 137 88.99 USD 2022-09-02 16:27:46.697104 2022-07-12 18:15:16.018652 2022-09-02 16:27:46.697117 \N +59 59 60.99 USD 2022-09-02 16:27:48.034468 2022-07-12 18:13:38.883514 2022-09-02 16:27:48.034486 \N +219 219 79.99 USD 2022-09-02 16:27:49.984931 2022-07-12 18:15:30.427769 2022-09-02 16:27:49.984944 \N +224 224 54.99 USD 2022-09-02 16:27:50.70351 2022-07-12 18:15:31.157706 2022-09-02 16:27:50.703525 \N +225 225 71.99 USD 2022-09-02 16:27:51.281004 2022-07-12 18:15:31.307011 2022-09-02 16:27:51.281016 \N +220 220 47.99 USD 2022-09-02 16:27:52.77747 2022-07-12 18:15:30.606701 2022-09-02 16:27:52.777486 \N +26 26 67.99 USD 2022-09-02 16:28:01.06417 2022-07-12 18:13:26.322382 2022-09-02 16:28:01.064189 \N +210 210 13.99 USD 2022-09-02 16:28:02.483025 2022-07-12 18:15:29.092132 2022-09-02 16:28:02.483039 \N +100 100 34.99 USD 2022-09-02 16:28:18.63523 2022-07-12 18:13:55.208567 2022-09-02 16:28:18.635256 \N +202 202 43.99 USD 2022-09-02 16:28:19.91035 2022-07-12 18:15:27.999891 2022-09-02 16:28:19.910364 \N +223 223 67.99 USD 2022-09-02 16:28:20.882839 2022-07-12 18:15:31.026023 2022-09-02 16:28:20.882852 \N +45 45 17.99 USD 2022-09-02 16:28:32.89768 2022-07-12 18:13:33.63484 2022-09-02 16:28:32.897693 \N +177 177 15.99 USD 2022-09-02 16:28:36.827354 2022-07-12 18:15:24.049359 2022-09-02 16:28:36.827368 \N +228 228 45.99 USD 2022-09-02 16:28:41.210546 2022-07-12 18:15:31.765392 2022-09-02 16:28:41.210561 \N +230 230 45.99 USD 2022-09-02 16:28:41.827732 2022-07-12 18:15:32.040412 2022-09-02 16:28:41.827744 \N +12 12 52.99 USD 2022-09-02 16:28:43.206714 2022-07-12 18:13:21.159619 2022-09-02 16:28:43.206748 \N +195 195 83.99 USD 2022-09-02 16:28:45.072259 2022-07-12 18:15:26.846472 2022-09-02 16:28:45.072271 \N +229 229 50.99 USD 2022-09-02 16:28:46.915714 2022-07-12 18:15:31.912612 2022-09-02 16:28:46.915727 \N +235 235 5.00 USD \N 2022-09-02 17:19:13.898033 2022-09-02 17:22:37.181036 0.00 +236 236 9.99 USD \N 2022-09-02 17:31:19.73153 2022-09-02 17:34:10.222761 0.00 +237 237 3.50 USD \N 2022-09-02 18:30:30.914999 2022-09-02 18:35:26.41429 0.00 +238 238 18.99 USD \N 2022-09-02 18:38:46.429923 2022-09-02 18:38:58.141292 0.00 +239 239 5.99 USD \N 2022-09-02 18:41:05.391227 2022-09-02 18:43:46.889711 0.00 +240 240 12.99 USD \N 2022-09-02 18:42:26.510932 2022-09-02 18:47:09.257375 0.00 +241 241 10.00 USD \N 2022-09-02 18:44:36.13454 2022-09-02 18:51:13.348137 0.00 +243 243 27.00 USD \N 2022-09-02 18:52:56.275064 2022-09-02 18:54:07.980522 0.00 +242 242 11.01 USD \N 2022-09-02 18:50:49.24075 2022-09-02 19:08:03.808077 0.00 +246 246 19.92 USD \N 2022-09-02 19:01:55.300375 2022-09-02 19:11:43.128342 0.00 +245 245 19.84 USD \N 2022-09-02 18:59:14.668431 2022-09-02 19:12:38.331011 0.00 +244 244 4.13 USD \N 2022-09-02 18:57:21.60154 2022-09-02 19:16:00.923316 0.00 +234 234 14.99 USD \N 2022-09-02 17:09:21.565303 2022-09-08 15:41:32.979885 0.00 +233 233 19.99 USD \N 2022-09-02 16:33:37.735865 2022-09-08 15:42:11.75696 0.00 +\. + + +-- +-- Data for Name: spree_product_option_types; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_product_option_types (id, "position", product_id, option_type_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_product_promotion_rules; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_product_promotion_rules (id, product_id, promotion_rule_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: spree_product_properties; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_product_properties (id, value, product_id, property_id, created_at, updated_at, "position", show_property, filter_param) FROM stdin; +963 Datadog 117 2 2022-09-02 16:33:37.884843 2022-09-02 16:34:45.51011 1 t datadog +964 Datadog 118 2 2022-09-02 17:09:21.771276 2022-09-02 17:12:33.860129 1 t datadog +965 Datadog 119 2 2022-09-02 17:19:13.977857 2022-09-02 17:29:54.515482 1 t datadog +966 Datadog Training 120 2 2022-09-02 17:31:19.827955 2022-09-02 17:36:42.851347 1 t datadog-training +967 Datadog 121 2 2022-09-02 18:30:31.036118 2022-09-02 18:31:27.69165 1 t datadog +968 Datadog 124 2 2022-09-02 18:42:26.646845 2022-09-02 18:43:45.324859 1 t datadog +969 Datadog 125 2 2022-09-02 18:44:36.219102 2022-09-02 18:45:55.905848 1 t datadog +970 Datadog 126 2 2022-09-02 18:50:49.314888 2022-09-02 18:51:24.263099 1 t datadog +971 Datadog 127 2 2022-09-02 18:52:56.366504 2022-09-02 18:54:19.702039 1 t datadog +972 Datadog 128 2 2022-09-02 18:57:21.671562 2022-09-02 18:58:10.851126 1 t datadog +973 Datadog 129 2 2022-09-02 18:59:14.748296 2022-09-02 19:00:17.923645 1 t datadog +974 Datadog 130 2 2022-09-02 19:01:55.379756 2022-09-02 19:03:22.790409 1 t datadog +\. + + +-- +-- Data for Name: spree_products; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.spree_products (id, name, description, available_on, deleted_at, slug, meta_description, meta_keywords, tax_category_id, shipping_category_id, created_at, updated_at, promotionable, meta_title, discontinue_on, public_metadata, private_metadata) FROM stdin; +14 3 4 Sleeve T Shirt Esse quisquam cupiditate ab saepe suscipit rerum ea aperiam. Inventore expedita tenetur aut beatae. Quae deleniti distinctio dignissimos labore. Labore expedita illum eius itaque provident. 2022-07-12 18:13:21.673176 2022-09-02 14:33:29.010605 1662129209_3-4-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:21.774208 2022-09-02 14:33:29.010161 t \N \N \N \N +39 A Line Suede Skirt Autem perferendis harum vel similique. Eaque quisquam perspiciatis laborum id eius veniam. Magni dicta at nostrum perferendis. Pariatur itaque quam voluptatem consequuntur alias id sint. 2022-07-12 18:13:31.276388 2022-09-02 14:33:32.145693 1662129212_a-line-suede-skirt \N \N 1 1 2022-07-12 18:13:31.391121 2022-09-02 14:33:32.145221 t \N \N \N \N +30 Anorak With Hood Laboriosam magni debitis inventore recusandae atque libero. Perferendis praesentium soluta odio exercitationem quis vel veniam asperiores. Cumque earum a facilis nam sunt quod. Sunt unde ratione natus officiis nam quaerat enim beatae. 2022-07-12 18:13:27.742848 2022-09-02 14:33:34.481806 1662129214_anorak-with-hood \N \N 1 1 2022-07-12 18:13:27.857596 2022-09-02 14:33:34.481248 t \N \N \N \N +87 Asymmetric Coat Numquam necessitatibus quo dolores sapiente minima nihil. Tempora alias ut sapiente eaque. Officiis voluptates veniam exercitationem laborum inventore. Odio dicta quas asperiores expedita saepe molestias. Delectus quos ipsam itaque quam odit debitis deserunt assumenda. 2022-07-12 18:13:49.777333 2022-09-02 14:33:39.581741 1662129219_asymmetric-coat \N \N 1 1 2022-07-12 18:13:49.8979 2022-09-02 14:33:39.581165 t \N \N \N \N +70 Asymmetric Sweater With Wide Sleeves Ab ad facilis ipsam reprehenderit ex ipsum. Quos nisi nobis itaque fugit minus modi nostrum. Eius perspiciatis mollitia veniam saepe voluptatibus. 2022-07-12 18:13:42.81728 2022-09-02 14:33:49.066631 1662129229_asymmetric-sweater-with-wide-sleeves \N \N 1 1 2022-07-12 18:13:42.927495 2022-09-02 14:33:49.066179 t \N \N \N \N +41 Flared Skirt Porro neque illum corrupti veritatis ducimus doloribus. Placeat beatae molestias quas earum voluptates modi molestiae reprehenderit. Exercitationem unde odio architecto deleniti vitae ipsa omnis nemo. Ratione pariatur rem molestiae ab animi occaecati error. Iure vitae deleniti consequuntur neque error. 2022-07-12 18:13:31.998 2022-09-02 16:27:00.004791 1662136020_flared-skirt \N \N 1 1 2022-07-12 18:13:32.106511 2022-09-02 16:27:00.004327 t \N \N \N \N +46 Floral Wrap Dress Recusandae minus temporibus cumque cupiditate necessitatibus labore reiciendis culpa. Cumque quibusdam corporis suscipit qui nostrum quidem. Culpa dignissimos eligendi deserunt neque vero. Fuga error ea porro esse ratione incidunt. 2022-07-12 18:13:33.870099 2022-09-02 16:27:24.147803 1662136044_floral-wrap-dress \N \N 1 1 2022-07-12 18:13:34.090368 2022-09-02 16:27:24.147397 t \N \N \N \N +112 Printed Pants With Holes Repellat velit laborum omnis consequatur provident libero occaecati ut. Dolorum modi excepturi perferendis occaecati. Porro eveniet molestiae nobis accusamus. 2022-07-12 18:13:59.632949 2022-09-02 16:28:41.29121 1662136121_printed-pants-with-holes \N \N 1 1 2022-07-12 18:13:59.741963 2022-09-02 16:28:41.290788 t \N \N \N \N +37 Midi Skirt With Bottoms Qui debitis nobis minima occaecati voluptatum dicta. Autem recusandae error doloribus illo laborum mollitia eligendi. Porro vero impedit ducimus numquam dicta atque. Accusantium maiores odio minus mollitia iusto natus expedita. Qui ducimus ipsam impedit tempora assumenda enim. 2022-07-12 18:13:30.546701 2022-09-02 16:28:29.317574 1662136109_midi-skirt-with-bottoms \N \N 1 1 2022-07-12 18:13:30.658555 2022-09-02 16:28:29.317165 t \N \N \N \N +84 Basic Loose T Shirt Accusamus perferendis cumque quod natus voluptates quos optio dolores. Odit reiciendis sapiente dignissimos voluptas molestiae repellendus minus. Sed praesentium aspernatur illo doloremque. Et vitae quidem delectus reiciendis. Expedita amet laboriosam cumque saepe eum rem. 2022-07-12 18:13:48.653251 2022-09-02 16:25:40.116039 1662135940_basic-loose-t-shirt \N \N 1 1 2022-07-12 18:13:48.787394 2022-09-02 16:25:40.115572 t \N \N \N \N +72 Oversized Sweatshirt Cum eveniet impedit facilis necessitatibus. Iure odit nihil neque culpa nulla veritatis ad. Incidunt pariatur magni temporibus modi voluptatibus quos nemo laborum. Dolor ut fuga adipisci quam. Fugit laborum atque hic cum adipisci natus. 2022-07-12 18:13:43.516638 2022-09-02 16:28:32.416479 1662136112_oversized-sweatshirt \N \N 1 1 2022-07-12 18:13:43.625507 2022-09-02 16:28:32.415603 t \N \N \N \N +45 Pleated Skirt 2 Fugiat iure doloremque vitae laudantium odit. Quos possimus at deserunt provident perferendis architecto natus suscipit. Deserunt corrupti consectetur dolore labore corporis quibusdam voluptatem sequi. Perspiciatis incidunt ab error nobis animi. 2022-07-12 18:13:33.459005 2022-09-02 16:28:33.073263 1662136113_pleated-skirt-2 \N \N 1 1 2022-07-12 18:13:33.572055 2022-09-02 16:28:33.072755 t \N \N \N \N +11 Regular Shirt With Rolled Up Sleeves Ducimus quas et dignissimos cupiditate. Itaque laboriosam cum repudiandae facere quod soluta aspernatur. Reprehenderit numquam beatae velit delectus iusto. Unde nostrum modi provident incidunt. 2022-07-12 18:13:20.677467 2022-09-02 16:27:31.684469 1662136051_regular-shirt-with-rolled-up-sleeves \N \N 1 1 2022-07-12 18:13:20.776635 2022-09-02 16:27:31.683771 t \N \N \N \N +16 Raw Edge T Shirt Facere officia laborum dolores animi autem tempora dolore. Suscipit sapiente dolores eaque fugiat ipsa asperiores. Animi eaque nesciunt voluptate dignissimos voluptates. Perferendis sequi suscipit rem officia quibusdam ut harum. 2022-07-12 18:13:22.376547 2022-09-02 16:28:36.211105 1662136116_raw-edge-t-shirt \N \N 1 1 2022-07-12 18:13:22.484648 2022-09-02 16:28:36.210653 t \N \N \N \N +62 Pleated Sleeve V Neck Shirt Hic at nulla omnis saepe placeat aliquam minus. Quae dolorum mollitia itaque aliquam accusantium corrupti. Ipsum iste nesciunt cum maxime animi ab maiores ex. Repudiandae ipsa laboriosam voluptates rem doloremque. 2022-07-12 18:13:39.918405 2022-09-02 16:28:44.452613 1662136124_pleated-sleeve-v-neck-shirt \N \N 1 1 2022-07-12 18:13:40.027365 2022-09-02 16:28:44.452146 t \N \N \N \N +114 Printed Pants Molestiae laudantium quidem repellendus tenetur nesciunt. Nihil sunt incidunt perferendis porro dolorum nam odio earum. Deserunt consequuntur ab nostrum alias velit unde repellendus minima. Sequi eligendi quis cupiditate dolorem. Tenetur inventore nihil ab mollitia magni sint provident. 2022-07-12 18:14:00.474266 2022-09-02 16:28:41.894097 1662136121_printed-pants \N \N 1 1 2022-07-12 18:14:00.618412 2022-09-02 16:28:41.893702 t \N \N \N \N +77 Printed T Shirt Sapiente culpa non dignissimos maxime magnam. Perspiciatis voluptas facere veniam deserunt possimus magni omnis iure. Enim ratione cupiditate aliquid adipisci perferendis consequuntur harum. Voluptatibus dolore inventore suscipit odio exercitationem quis dolor corrupti. Aspernatur libero voluptatibus totam nisi. 2022-07-12 18:13:45.606079 2022-09-02 16:28:38.092437 1662136118_printed-t-shirt \N \N 1 1 2022-07-12 18:13:45.721758 2022-09-02 16:28:38.092045 t \N \N \N \N +69 Printed Shirt Placeat eius harum facere aut. Earum quisquam sequi eaque ipsa modi. Sint quas incidunt nulla possimus facilis hic. Esse id ullam voluptas in reprehenderit quaerat corporis numquam. Hic dolores doloribus id excepturi dolore neque. 2022-07-12 18:13:42.426889 2022-09-02 16:28:40.122167 1662136120_printed-shirt \N \N 1 1 2022-07-12 18:13:42.55227 2022-09-02 16:28:40.12179 t \N \N \N \N +44 Floral Flared Skirt Earum consequatur ex ratione commodi voluptatem nesciunt minima aperiam. Incidunt provident impedit dolores dignissimos. Magnam hic nesciunt exercitationem aliquam. 2022-07-12 18:13:33.085572 2022-09-02 16:27:01.295678 1662136021_floral-flared-skirt \N \N 1 1 2022-07-12 18:13:33.201797 2022-09-02 16:27:01.295234 t \N \N \N \N +79 Pleated Sleeve T Shirt Ea nulla eligendi dolorem magni. Occaecati quidem fugit maxime fuga debitis excepturi. Odio ipsa porro doloribus ea nostrum nobis quas necessitatibus. Voluptatum natus perspiciatis dicta sint repudiandae tempora. Eveniet non sequi necessitatibus amet ipsum consequatur adipisci. 2022-07-12 18:13:46.815179 2022-09-02 16:28:45.139707 1662136125_pleated-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:46.928259 2022-09-02 16:28:45.1393 t \N \N \N \N +53 Printed Slit Sleeves Dress Ea ut distinctio odit repudiandae. Dicta placeat dolores illum esse. Architecto vel illum reiciendis totam ipsam amet repudiandae aperiam. 2022-07-12 18:13:36.560719 2022-09-02 16:28:38.718095 1662136118_printed-slit-sleeves-dress \N \N 1 1 2022-07-12 18:13:36.671818 2022-09-02 16:28:38.717644 t \N \N \N \N +71 Oversized Knitted Sweater Eius quod sunt modi nulla aspernatur illo. Magni veniam aperiam illum voluptatem alias maiores. Repellat commodi quo iste possimus. 2022-07-12 18:13:43.162257 2022-09-02 16:28:31.862087 1662136111_oversized-knitted-sweater \N \N 1 1 2022-07-12 18:13:43.280082 2022-09-02 16:28:31.861705 t \N \N \N \N +67 Semi Sheer Shirt With Pockets Suscipit quod explicabo culpa placeat incidunt animi ad. Maiores ad praesentium corrupti eos. Animi voluptas non rem occaecati. 2022-07-12 18:13:41.670246 2022-09-02 16:27:35.559877 1662136055_semi-sheer-shirt-with-pockets \N \N 1 1 2022-07-12 18:13:41.779463 2022-09-02 16:27:35.559435 t \N \N \N \N +105 Running Sweatshirt Excepturi inventore deserunt delectus dicta a. Voluptates ipsam eligendi accusantium illo quasi vel optio quibusdam. Deleniti iste facilis voluptatibus molestiae autem mollitia quisquam. Qui quam ut vitae dolores atque doloribus dicta. 2022-07-12 18:13:57.047807 2022-09-02 16:27:33.78407 1662136053_running-sweatshirt \N \N 1 1 2022-07-12 18:13:57.165606 2022-09-02 16:27:33.782368 t \N \N \N \N +19 Basic T Shirt Eligendi pariatur odit expedita labore. Sequi iste exercitationem repellendus expedita quam perspiciatis in fugit. Repellat sint iste hic tempore distinctio veritatis. In neque tenetur praesentium quidem deserunt laborum. Libero corporis recusandae cupiditate praesentium odio vero. 2022-07-12 18:13:23.566031 2022-09-02 16:25:42.061903 1662135942_basic-t-shirt \N \N 1 1 2022-07-12 18:13:23.677212 2022-09-02 16:25:42.061435 t \N \N \N \N +66 Floral Shirt Sed adipisci possimus quo impedit exercitationem. Quod culpa praesentium iste eaque placeat similique. Occaecati est saepe delectus nisi unde quia adipisci laborum. Sapiente ipsum molestiae nulla voluptatibus fugiat quaerat eaque. Vel tenetur hic eveniet rem unde assumenda nisi. 2022-07-12 18:13:41.315705 2022-09-02 16:27:02.096713 1662136022_floral-shirt \N \N 1 1 2022-07-12 18:13:41.420627 2022-09-02 16:27:02.096268 t \N \N \N \N +90 Zipped Jacket Voluptatum praesentium dolorem eum neque. Necessitatibus veniam perferendis cupiditate nulla velit. Perspiciatis ratione eligendi delectus sapiente assumenda. Vero ex explicabo dolorum fuga molestiae odio. 2022-07-12 18:13:51.087881 2022-09-02 16:28:00.577352 1662136080_zipped-jacket \N \N 1 1 2022-07-12 18:13:51.205812 2022-09-02 16:28:00.576913 t \N \N \N \N +111 Short Pants Soluta explicabo quisquam rem accusantium illo laborum ratione incidunt. Aperiam ab impedit quasi nihil odit. Maxime mollitia facere at voluptate. Veniam soluta expedita adipisci maiores vitae minus repudiandae harum. 2022-07-12 18:13:59.279977 2022-09-02 16:27:36.033786 1662136056_short-pants \N \N 1 1 2022-07-12 18:13:59.389341 2022-09-02 16:27:36.033381 t \N \N \N \N +56 Flounced Dress Fugit magnam odit nesciunt atque dolores saepe recusandae vero. Ipsa excepturi pariatur nisi rerum debitis. Temporibus quas rerum dolore perspiciatis iusto officia fugit. Nesciunt sapiente harum laboriosam impedit neque. 2022-07-12 18:13:37.669025 2022-09-02 16:27:02.759388 1662136022_flounced-dress \N \N 1 1 2022-07-12 18:13:37.775932 2022-09-02 16:27:02.758816 t \N \N \N \N +35 Jacket With Liner Animi quibusdam alias laborum adipisci quae. Eos rem quo adipisci nesciunt veritatis ad. Eius soluta ad eligendi magnam cumque repellendus eos. Officia quo rem deleniti provident. Enim aut voluptatum deleniti modi. 2022-07-12 18:13:29.807567 2022-09-02 16:27:05.414575 1662136025_jacket-with-liner \N \N 1 1 2022-07-12 18:13:29.935552 2022-09-02 16:27:05.414058 t \N \N \N \N +1 Denim Shirt Harum suscipit a sunt blanditiis nisi. Itaque labore commodi ipsa mollitia. Minus laboriosam est nemo earum sunt. 2022-07-12 18:13:17.026782 2022-09-02 16:26:09.720256 1662135969_denim-shirt \N \N 1 1 2022-07-12 18:13:17.233973 2022-09-02 16:26:09.719802 t \N \N \N \N +63 Cotton Shirt Vitae quisquam incidunt aut rem. Repudiandae quibusdam maiores doloremque dolorum facere quae. Labore corrupti delectus necessitatibus et veritatis quae explicabo. 2022-07-12 18:13:40.257348 2022-09-02 16:25:52.142342 1662135952_cotton-shirt \N \N 1 1 2022-07-12 18:13:40.3615 2022-09-02 16:25:52.141912 t \N \N \N \N +64 Blouse With Wide Flounced Sleeve Laboriosam qui quam magnam quidem aspernatur ex amet nostrum. Similique placeat ducimus incidunt illum maiores mollitia explicabo velit. Eligendi aliquid consectetur odio aperiam. 2022-07-12 18:13:40.602194 2022-09-02 16:25:43.882982 1662135943_blouse-with-wide-flounced-sleeve \N \N 1 1 2022-07-12 18:13:40.709149 2022-09-02 16:25:43.881815 t \N \N \N \N +43 Skater Short Skirt Velit quae iusto quas repellat non molestiae quisquam. Recusandae esse fugiat animi hic veniam. Debitis laborum accusantium animi voluptatum eligendi modi temporibus. Exercitationem natus voluptatibus aspernatur reiciendis suscipit. Dolor enim veniam ratione eos unde. 2022-07-12 18:13:32.719069 2022-09-02 16:27:36.748835 1662136056_skater-short-skirt \N \N 1 1 2022-07-12 18:13:32.829835 2022-09-02 16:27:36.748334 t \N \N \N \N +116 High Waist Pants Atque fuga dolore ipsam a culpa adipisci quia. Ab magni temporibus optio deleniti. Distinctio consequatur impedit eaque similique. 2022-07-12 18:14:01.217208 2022-09-02 16:27:03.555318 1662136023_high-waist-pants \N \N 1 1 2022-07-12 18:14:01.322012 2022-09-02 16:27:03.554716 t \N \N \N \N +96 Bomber Jacket Laboriosam eaque animi impedit tempora eum corrupti. Ut exercitationem mollitia necessitatibus officia nemo nobis. Qui eius dolore officiis nostrum veniam. 2022-07-12 18:13:53.587633 2022-09-02 16:25:45.516225 1662135945_bomber-jacket \N \N 1 1 2022-07-12 18:13:53.739252 2022-09-02 16:25:45.515812 t \N \N \N \N +110 Shined Pants Incidunt illo molestias eveniet dicta neque veritatis illum fugit. Doloribus consequatur dolorem est ipsa culpa. Dicta modi quo sunt blanditiis omnis magni itaque. Pariatur ipsa minima libero quis dolorum ipsum beatae. 2022-07-12 18:13:58.925767 2022-09-02 16:27:42.188495 1662136062_shined-pants \N \N 1 1 2022-07-12 18:13:59.030752 2022-09-02 16:27:42.18807 t \N \N \N \N +2 Checked Shirt Incidunt in sunt ea id nostrum assumenda nemo velit. Soluta impedit occaecati molestiae inventore vel eius minus tenetur. Quis in rerum ipsa incidunt fuga. 2022-07-12 18:13:17.470012 2022-09-02 16:25:47.21882 1662135947_checked-shirt \N \N 1 1 2022-07-12 18:13:17.570674 2022-09-02 16:25:47.218358 t \N \N \N \N +5 Short Sleeve Shirt Inventore eaque ea debitis eius nostrum neque porro. Recusandae sequi totam neque dolorum. Ducimus corporis debitis officiis omnis. 2022-07-12 18:13:18.629763 2022-09-02 16:27:42.811559 1662136062_short-sleeve-shirt \N \N 1 1 2022-07-12 18:13:18.733675 2022-09-02 16:27:42.811099 t \N \N \N \N +101 Laced Crop Top Vero rerum minima ab aliquid. Atque ab officiis perspiciatis distinctio dolore minus illo. Totam aperiam error accusantium voluptatibus consequatur. Repellat explicabo amet vel nesciunt ullam aliquid laborum itaque. 2022-07-12 18:13:55.387812 2022-09-02 16:27:08.137317 1662136028_laced-crop-top \N \N 1 1 2022-07-12 18:13:55.505438 2022-09-02 16:27:08.136895 t \N \N \N \N +61 Printed Wrapped Blouse Sapiente amet laudantium recusandae ratione illo. Sit id vero aliquid accusamus earum. Facilis autem nobis perspiciatis consectetur nesciunt vero illo corporis. 2022-07-12 18:13:39.562815 2022-09-02 16:28:36.897231 1662136116_printed-wrapped-blouse \N \N 1 1 2022-07-12 18:13:39.674399 2022-09-02 16:28:36.896745 t \N \N \N \N +7 Regular Shirt Aperiam autem amet nam laudantium quidem. Fuga consequatur voluptas qui voluptatem consectetur doloribus. Quas veritatis exercitationem excepturi consequatur aut quibusdam. 2022-07-12 18:13:19.30322 2022-09-02 16:28:35.55735 1662136115_regular-shirt \N \N 1 1 2022-07-12 18:13:19.407093 2022-09-02 16:28:35.556926 t \N \N \N \N +15 T Shirt With Holes Placeat dolores ducimus molestias animi. Quibusdam vitae necessitatibus earum corrupti exercitationem adipisci deserunt. Quisquam distinctio fuga qui nulla atque. Cumque quaerat ullam quia vel suscipit. Dolores magnam quae eos unde mollitia. 2022-07-12 18:13:22.022377 2022-09-02 16:27:45.588236 1662136065_t-shirt-with-holes \N \N 1 1 2022-07-12 18:13:22.128963 2022-09-02 16:27:45.587828 t \N \N \N \N +8 Checked Slim Fit Shirt Distinctio eum pariatur consectetur quod tempore laudantium exercitationem. Magnam occaecati accusantium debitis libero dolorum quaerat. Voluptatibus praesentium reprehenderit iusto ea cum. Beatae possimus porro velit error corrupti. Ea dolore amet nostrum voluptate similique. 2022-07-12 18:13:19.646856 2022-09-02 16:25:48.767477 1662135948_checked-slim-fit-shirt \N \N 1 1 2022-07-12 18:13:19.751861 2022-09-02 16:25:48.766138 t \N \N \N \N +28 Suede Biker Jacket Illo nemo a ipsum odit incidunt sapiente. Quasi tenetur unde tempora nihil ullam. Reiciendis cum architecto suscipit nostrum. Sint voluptate cupiditate rem temporibus quasi aliquam accusantium. Voluptates ullam excepturi voluptatem ad enim. 2022-07-12 18:13:26.906223 2022-09-02 16:27:46.199069 1662136066_suede-biker-jacket \N \N 1 1 2022-07-12 18:13:27.057238 2022-09-02 16:27:46.198637 t \N \N \N \N +21 Stripped Jumper Odio ex possimus molestias ut architecto. Dolor neque corrupti recusandae voluptas ratione doloremque aut. Error id recusandae dolorem aliquid eos. Quae consectetur ducimus cum dignissimos debitis neque enim. Sunt doloremque ullam provident nobis. 2022-07-12 18:13:24.29614 2022-09-02 16:27:46.76863 1662136066_stripped-jumper \N \N 1 1 2022-07-12 18:13:24.405774 2022-09-02 16:27:46.768189 t \N \N \N \N +40 Leather Skirt With Lacing Officia nulla corrupti explicabo eius totam quam. Minima alias consectetur exercitationem iste expedita fugiat vitae accusantium. Qui nesciunt ea fugiat autem illum dignissimos culpa tenetur. Id ea suscipit maiores consequatur beatae. 2022-07-12 18:13:31.643288 2022-09-02 16:27:09.109005 1662136029_leather-skirt-with-lacing \N \N 1 1 2022-07-12 18:13:31.751738 2022-09-02 16:27:09.108596 t \N \N \N \N +51 Striped Shirt Dress Iusto reiciendis omnis aut alias. Natus quisquam nostrum at cupiditate harum ratione accusantium. Quo dolor voluptatum distinctio odio voluptatem. Laudantium hic perspiciatis facilis commodi architecto. Adipisci earum nam dolorem at fugiat dolores. 2022-07-12 18:13:35.817391 2022-09-02 16:27:47.500164 1662136067_striped-shirt-dress \N \N 1 1 2022-07-12 18:13:35.938824 2022-09-02 16:27:47.499718 t \N \N \N \N +76 Crop Top With Tie Aut alias iste adipisci modi eos. Atque maiores dolorem error possimus ipsam. Commodi ipsa quo repudiandae autem. 2022-07-12 18:13:45.194571 2022-09-02 16:25:57.94484 1662135957_crop-top-with-tie \N \N 1 1 2022-07-12 18:13:45.312161 2022-09-02 16:25:57.944402 t \N \N \N \N +85 Coat With Pockets Similique repellendus laborum repudiandae explicabo fugit facilis. Blanditiis cum ullam magnam quidem aliquam. Deserunt laudantium consequuntur nihil repellendus quasi sint ut. 2022-07-12 18:13:49.047532 2022-09-02 16:25:50.495979 1662135950_coat-with-pockets \N \N 1 1 2022-07-12 18:13:49.162968 2022-09-02 16:25:50.495549 t \N \N \N \N +102 Sports Bra Medium Support Nulla aut dicta cum dolorum modi officiis. Quam suscipit voluptatem cumque dolorem et at itaque. Iusto ea id tempora fuga dolores expedita ducimus assumenda. Earum commodi ad provident assumenda reiciendis animi suscipit optio. 2022-07-12 18:13:55.742633 2022-09-02 16:27:48.739322 1662136068_sports-bra-medium-support \N \N 1 1 2022-07-12 18:13:55.848228 2022-09-02 16:27:48.738904 t \N \N \N \N +10 Linen Shirt Eveniet asperiores tenetur repellat placeat modi ab veritatis excepturi. Cupiditate recusandae sit quibusdam modi labore. Distinctio a ex beatae ipsa illum exercitationem nesciunt molestiae. Sed ipsa sapiente amet provident voluptate veniam. 2022-07-12 18:13:20.332429 2022-09-02 16:27:09.931541 1662136029_linen-shirt \N \N 1 1 2022-07-12 18:13:20.438071 2022-09-02 16:27:09.931078 t \N \N \N \N +24 Long Sleeve Sweatshirt Reprehenderit nulla adipisci voluptatibus eum. Modi ullam cupiditate alias adipisci enim doloremque nam. Assumenda voluptate optio provident laborum voluptatibus totam. 2022-07-12 18:13:25.361399 2022-09-02 16:27:13.599906 1662136033_long-sleeve-sweatshirt \N \N 1 1 2022-07-12 18:13:25.468421 2022-09-02 16:27:13.59943 t \N \N \N \N +97 Sports Bra Low Support Illum impedit quisquam atque cupiditate velit veniam nisi. Expedita ad quod quasi aperiam corporis repellendus. A dolore tenetur laborum sapiente animi atque. Aliquam praesentium perferendis tempora perspiciatis occaecati. Rerum illo pariatur officia consequuntur at. 2022-07-12 18:13:53.985874 2022-09-02 16:27:49.560075 1662136069_sports-bra-low-support \N \N 1 1 2022-07-12 18:13:54.100351 2022-09-02 16:27:49.559677 t \N \N \N \N +27 Long Sleeve Jumper Veritatis aspernatur vero eius rerum nam doloremque iure similique. Minima explicabo nostrum aperiam ipsam veritatis. Natus id deleniti cupiditate ex vero exercitationem amet error. 2022-07-12 18:13:26.52462 2022-09-02 16:27:10.673064 1662136030_long-sleeve-jumper \N \N 1 1 2022-07-12 18:13:26.635809 2022-09-02 16:27:10.67261 t \N \N \N \N +103 Sports Bra Ipsum magnam animi voluptatum ratione rerum eius nobis. Amet eos dolores facere aspernatur architecto. Dolorum occaecati quam impedit placeat laboriosam labore repudiandae pariatur. Quod consequatur expedita numquam repellat animi tempora. 2022-07-12 18:13:56.194397 2022-09-02 16:27:50.065306 1662136070_sports-bra \N \N 1 1 2022-07-12 18:13:56.31494 2022-09-02 16:27:50.064725 t \N \N \N \N +42 Skater Skirt Dolor sit nisi commodi nostrum beatae culpa. Molestiae quos alias odit rem distinctio dicta in. Aperiam repellat totam recusandae quaerat pariatur labore. Voluptates necessitatibus incidunt alias magnam laudantium eos. Mollitia sed corporis dolor at nemo rerum. 2022-07-12 18:13:32.349681 2022-09-02 16:27:54.077593 1662136074_skater-skirt \N \N 1 1 2022-07-12 18:13:32.468571 2022-09-02 16:27:54.077167 t \N \N \N \N +108 Sport Windproof Jacket Officiis nulla similique eos tempora. Ab qui illo incidunt maiores vero possimus. Eos modi similique nemo doloribus voluptatibus quos molestias. Alias nihil sed doloremque molestias. Tenetur nisi temporibus quo magnam molestiae blanditiis. 2022-07-12 18:13:58.181169 2022-09-02 16:27:50.776624 1662136070_sport-windproof-jacket \N \N 1 1 2022-07-12 18:13:58.285334 2022-09-02 16:27:50.776188 t \N \N \N \N +78 Scrappy Top Temporibus repellendus dolore autem unde nobis. Doloribus iure distinctio tempore alias molestias. Officia tenetur maiores possimus totam pariatur repellat consequuntur. 2022-07-12 18:13:46.3407 2022-09-02 16:27:34.866099 1662136054_scrappy-top \N \N 1 1 2022-07-12 18:13:46.48078 2022-09-02 16:27:34.865647 t \N \N \N \N +13 Long Sleeve T Shirt Nesciunt reprehenderit quia modi quae molestias odio deleniti consectetur. Veritatis perspiciatis dolore voluptas corrupti aut. Magni delectus at odio asperiores quidem. Vel unde voluptas optio id possimus impedit. Dicta consectetur ducimus placeat eum eos voluptatibus perspiciatis. 2022-07-12 18:13:21.337759 2022-09-02 16:27:13.025824 1662136033_long-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:21.447101 2022-09-02 16:27:13.025258 t \N \N \N \N +104 Sport Cropp Top Eos veritatis magni error facilis. Expedita at deleniti repellat aliquid dolore. Quos libero fugiat corrupti voluptatibus doloremque alias repellat. 2022-07-12 18:13:56.660013 2022-09-02 16:27:52.864239 1662136072_sport-cropp-top \N \N 1 1 2022-07-12 18:13:56.812783 2022-09-02 16:27:52.863785 t \N \N \N \N +109 Sport Waistcoat Perferendis harum voluptas tempora dolore maiores deleniti. Cum praesentium omnis atque corporis. Ipsum nihil quod rerum neque beatae sed vel deleniti. Temporibus et ducimus exercitationem dolorum molestiae hic corporis rem. 2022-07-12 18:13:58.547108 2022-09-02 16:27:51.346934 1662136071_sport-waistcoat \N \N 1 1 2022-07-12 18:13:58.659922 2022-09-02 16:27:51.346498 t \N \N \N \N +57 Slit Maxi Dress Veniam eaque iste incidunt omnis. Numquam totam tempore voluptates possimus quibusdam corrupti expedita magni. Eos numquam natus exercitationem ut. Velit odit facere dolorum maiores suscipit laudantium quisquam. Corrupti velit sunt vel repellendus a ipsum tempore illo. 2022-07-12 18:13:38.022248 2022-09-02 16:27:53.553408 1662136073_slit-maxi-dress \N \N 1 1 2022-07-12 18:13:38.132993 2022-09-02 16:27:53.552955 t \N \N \N \N +3 Covered Placket Shirt Distinctio fugiat iste nobis enim non earum. Autem minus facere quos minima perspiciatis vel ad. Qui deserunt ex accusantium laboriosam rerum vitae. Provident ducimus itaque modi alias perferendis consectetur. A pariatur amet dicta dolorum. 2022-07-12 18:13:17.960419 2022-09-02 16:25:54.161663 1662135954_covered-placket-shirt \N \N 1 1 2022-07-12 18:13:18.063139 2022-09-02 16:25:54.161212 t \N \N \N \N +99 Oversize T Shirt Wrapped On Back Facere provident praesentium inventore modi veritatis. Nam numquam veritatis quae non optio aperiam quisquam. Totam ab vero rerum aut. Magni amet sed praesentium voluptatem impedit nostrum alias. 2022-07-12 18:13:54.692243 2022-09-02 16:28:31.304256 1662136111_oversize-t-shirt-wrapped-on-back \N \N 1 1 2022-07-12 18:13:54.802491 2022-09-02 16:28:31.30388 t \N \N \N \N +100 Long Sleeves Crop Top Nobis deleniti corporis modi molestiae atque error. Beatae architecto corrupti voluptate repudiandae qui ullam. Sint nesciunt sed vel ab. Temporibus id tempore iste iusto. Rerum commodi quidem dolorum esse eaque vitae delectus. 2022-07-12 18:13:55.035514 2022-09-02 16:28:18.778775 1662136098_long-sleeves-crop-top \N \N 1 1 2022-07-12 18:13:55.156868 2022-09-02 16:28:18.778344 t \N \N \N \N +80 Scrappy Crop Top With Tie Quod eos consectetur nihil ut fugiat labore iusto. Exercitationem error enim commodi magnam est. Explicabo eaque iste eveniet asperiores beatae. Ex modi repudiandae labore aperiam cumque. Omnis reiciendis placeat possimus ad molestiae illo incidunt exercitationem. 2022-07-12 18:13:47.219704 2022-09-02 16:27:34.375065 1662136054_scrappy-crop-top-with-tie \N \N 1 1 2022-07-12 18:13:47.327846 2022-09-02 16:27:34.374607 t \N \N \N \N +88 Long Coat With Belt Quo animi sequi nihil maiores quisquam beatae ipsum. Nesciunt rerum quidem nihil dolore eaque illum quae nulla. Dicta esse in iste tempora fugit et nisi beatae. 2022-07-12 18:13:50.154756 2022-09-02 16:27:15.484191 1662136035_long-coat-with-belt \N \N 1 1 2022-07-12 18:13:50.273003 2022-09-02 16:27:15.483733 t \N \N \N \N +50 Long Sleeve Knitted Dress Vitae delectus voluptates ab quisquam ipsum impedit. Occaecati eaque aperiam officia assumenda cum modi. Sed quod consequatur ipsam iure aspernatur. 2022-07-12 18:13:35.44638 2022-09-02 16:27:14.243331 1662136034_long-sleeve-knitted-dress \N \N 1 1 2022-07-12 18:13:35.557525 2022-09-02 16:27:14.242862 t \N \N \N \N +26 Zipped High Neck Sweater Labore optio tempora nobis nemo officiis ipsam. Cupiditate assumenda maiores cumque totam reiciendis voluptate illum aspernatur. Numquam reprehenderit architecto repellat rem consequatur nemo illo. Esse voluptatum occaecati quas animi tempore iure. Maxime dolore error laboriosam quae. 2022-07-12 18:13:26.14777 2022-09-02 16:28:01.227568 1662136081_zipped-high-neck-sweater \N \N 1 1 2022-07-12 18:13:26.262199 2022-09-02 16:28:01.226191 t \N \N \N \N +81 Crop Top Est sint similique explicabo aperiam aliquam mollitia id. Aliquam unde error doloribus nostrum mollitia consequatur. Excepturi quidem voluptate ullam ex molestiae. Quidem dicta ab debitis blanditiis vitae repellat laborum. Facere ad minima quisquam at illum. 2022-07-12 18:13:47.567897 2022-09-02 16:25:56.144074 1662135956_crop-top \N \N 1 1 2022-07-12 18:13:47.680797 2022-09-02 16:25:56.143505 t \N \N \N \N +32 Wool Blend Short Coat At magni quas deleniti tenetur. Eum iusto molestias voluptas cum sed magni ducimus. Praesentium aliquid non necessitatibus autem repudiandae atque delectus eligendi. Laudantium molestias enim nobis illo quae natus explicabo. Inventore occaecati sunt dicta quaerat nisi dolor. 2022-07-12 18:13:28.723377 2022-09-02 16:28:01.83436 1662136081_wool-blend-short-coat \N \N 1 1 2022-07-12 18:13:28.834877 2022-09-02 16:28:01.833824 t \N \N \N \N +94 Wool Blend Coat With Belt Mollitia facere eveniet quia numquam. Illum odio adipisci corporis sint deleniti itaque. Minus quaerat sed tempora nobis. Rerum suscipit sit corporis repellat voluptates ad. 2022-07-12 18:13:52.793484 2022-09-02 16:28:02.55914 1662136082_wool-blend-coat-with-belt \N \N 1 1 2022-07-12 18:13:52.943398 2022-09-02 16:28:02.558577 t \N \N \N \N +22 Long Sleeve Jumper With Pocket Delectus ratione in aspernatur consequuntur minus praesentium laborum. Quia excepturi optio aliquid fugit voluptatibus in vel itaque. Rerum libero reiciendis temporibus recusandae possimus fuga minus distinctio. Id ipsum totam itaque recusandae magni quibusdam sed adipisci. 2022-07-12 18:13:24.645297 2022-09-02 16:27:14.899458 1662136034_long-sleeve-jumper-with-pocket \N \N 1 1 2022-07-12 18:13:24.764565 2022-09-02 16:27:14.898869 t \N \N \N \N +82 Loose T Shirt With Pocket Imitation Magni corporis iste quas nihil nisi rem doloremque aliquid. Ea fuga quaerat eaque accusamus similique. Eius ea delectus quod reprehenderit explicabo earum ullam voluptas. Mollitia dolorum libero perferendis facilis tempore iusto. 2022-07-12 18:13:47.92671 2022-09-02 16:28:20.570194 1662136100_loose-t-shirt-with-pocket-imitation \N \N 1 1 2022-07-12 18:13:48.029968 2022-09-02 16:28:20.569797 t \N \N \N \N +60 V Neck Wide Shirt Mollitia quo omnis sequi reiciendis. Recusandae tempore deserunt harum occaecati reprehenderit vero voluptatibus. Molestiae magni voluptatum amet tenetur vel. Veritatis adipisci iusto excepturi dolorem sed ab. Maxime facilis recusandae repudiandae illo alias laudantium. 2022-07-12 18:13:39.067867 2022-09-02 16:28:03.833898 1662136083_v-neck-wide-shirt \N \N 1 1 2022-07-12 18:13:39.316362 2022-09-02 16:28:03.833425 t \N \N \N \N +17 V Neck T Shirt Eveniet molestiae enim illum placeat recusandae. Distinctio praesentium nobis explicabo excepturi velit aspernatur. Incidunt eum aliquam vitae eveniet voluptate. 2022-07-12 18:13:22.719738 2022-09-02 16:28:04.512745 1662136084_v-neck-t-shirt \N \N 1 1 2022-07-12 18:13:22.972608 2022-09-02 16:28:04.512289 t \N \N \N \N +52 Printed Dress Exercitationem tempore saepe dicta aliquid atque facilis debitis. Expedita assumenda itaque non nulla quas. Repellat est ipsum at qui ex odio. Tempora quidem quas unde optio. Voluptas maiores eos totam quas. 2022-07-12 18:13:36.187544 2022-09-02 16:28:42.566088 1662136122_printed-dress \N \N 1 1 2022-07-12 18:13:36.305061 2022-09-02 16:28:42.565608 t \N \N \N \N +113 Pants Alias est molestias laudantium consequuntur in minus facere distinctio. Quae omnis natus accusamus unde ducimus. Perspiciatis quas quos blanditiis tempora soluta quam molestias minima. Quod vitae necessitatibus aut voluptatibus repellendus quidem. Atque facere amet harum voluptates. 2022-07-12 18:14:00.036039 2022-09-02 16:28:46.981352 1662136126_pants \N \N 1 1 2022-07-12 18:14:00.171791 2022-09-02 16:28:46.980958 t \N \N \N \N +47 V Neck Floral Maxi Dress Sit asperiores nihil incidunt iste iusto natus sint. Molestiae consequuntur recusandae facilis atque totam dolorem dolorum ea. Labore aspernatur vel autem minima voluptates magni. Nihil sit quod numquam eius facere eum in minima. 2022-07-12 18:13:34.354511 2022-09-02 16:28:06.321172 1662136086_v-neck-floral-maxi-dress \N \N 1 1 2022-07-12 18:13:34.473636 2022-09-02 16:28:06.320729 t \N \N \N \N +55 V Neck Floral Dress Delectus ducimus eligendi tempora quos vero cumque. Eligendi placeat perferendis maxime neque minima. Velit aliquid voluptate ex quidem voluptas in iure odio. Cum quia quos fugit harum exercitationem. Facere suscipit dolore quia sed et illo at deserunt. 2022-07-12 18:13:37.282987 2022-09-02 16:28:06.979858 1662136086_v-neck-floral-dress \N \N 1 1 2022-07-12 18:13:37.398664 2022-09-02 16:28:06.979416 t \N \N \N \N +4 Slim Fit Shirt Maxime unde magni sed eos amet asperiores. Modi est vel enim tempore iste accusantium. Error ad vitae expedita doloremque numquam. 2022-07-12 18:13:18.289352 2022-09-02 16:27:43.37352 1662136063_slim-fit-shirt \N \N 1 1 2022-07-12 18:13:18.401467 2022-09-02 16:27:43.373047 t \N \N \N \N +83 Sleeveless Loose Top Harum sint ad vero voluptate accusantium natus. Sit laudantium explicabo velit ipsa tempore. Tenetur nemo quibusdam molestiae laudantium distinctio eum adipisci. Fugiat animi voluptate quas praesentium sunt repudiandae quasi consequatur. 2022-07-12 18:13:48.268389 2022-09-02 16:27:38.217954 1662136058_sleeveless-loose-top \N \N 1 1 2022-07-12 18:13:48.404769 2022-09-02 16:27:38.217484 t \N \N \N \N +106 Lightweight Running Jacket Atque enim soluta minima fugiat. Beatae itaque doloribus dignissimos possimus laudantium qui officiis. Ut quaerat quae esse harum nemo repellat sint. Tempore error ipsum omnis illum cumque. Officiis natus explicabo illo iure at distinctio minus. 2022-07-12 18:13:57.438296 2022-09-02 16:27:16.214681 1662136036_lightweight-running-jacket \N \N 1 1 2022-07-12 18:13:57.55469 2022-09-02 16:27:16.214211 t \N \N \N \N +73 Knitted High Neck Sweater Sapiente animi eius dicta non quaerat dolorem ratione. Error laborum earum in necessitatibus facilis esse. Maiores rerum repudiandae asperiores cupiditate mollitia. Amet dicta beatae odio deserunt animi esse. Pariatur minus quam culpa distinctio vero. 2022-07-12 18:13:43.873073 2022-09-02 16:27:17.527689 1662136037_knitted-high-neck-sweater \N \N 1 1 2022-07-12 18:13:43.998569 2022-09-02 16:27:17.527239 t \N \N \N \N +18 Tank Top Tempora ipsam aliquid inventore provident dolor. Exercitationem ex magnam dolorem perferendis nemo architecto saepe. Provident quis occaecati asperiores dolorem nemo. 2022-07-12 18:13:23.209425 2022-09-02 16:28:07.527152 1662136087_tank-top \N \N 1 1 2022-07-12 18:13:23.317573 2022-09-02 16:28:07.526737 t \N \N \N \N +98 Long Sleeves Yoga Crop Top Sit dolores placeat possimus fugit eius. Libero deserunt perspiciatis similique cumque doloremque quae. Ab perferendis ducimus iste nam quisquam. 2022-07-12 18:13:54.337359 2022-09-02 16:28:19.355544 1662136099_long-sleeves-yoga-crop-top \N \N 1 1 2022-07-12 18:13:54.447803 2022-09-02 16:28:19.355125 t \N \N \N \N +74 Knitted V Neck Sweater Aspernatur laboriosam blanditiis minima ipsa exercitationem. Magnam pariatur eaque tempora saepe ad vero. Facilis commodi nihil quae quod. Itaque illum ipsa porro quibusdam. 2022-07-12 18:13:44.266041 2022-09-02 16:27:07.267267 1662136027_knitted-v-neck-sweater \N \N 1 1 2022-07-12 18:13:44.38903 2022-09-02 16:27:07.266841 t \N \N \N \N +29 Hooded Jacket Incidunt rem repellat fuga hic illum. Dolor incidunt ullam mollitia cumque. Velit cumque placeat voluptatibus enim. Ad iusto fugiat maxime necessitatibus optio. 2022-07-12 18:13:27.356685 2022-09-02 16:27:04.322036 1662136024_hooded-jacket \N \N 1 1 2022-07-12 18:13:27.474123 2022-09-02 16:27:04.321591 t \N \N \N \N +86 Long Wool Blend Coat With Belt Quidem ratione explicabo delectus nesciunt. Iusto provident atque id voluptatem debitis nihil. Fugit exercitationem tempore provident molestias distinctio quia impedit. Voluptatibus natus nesciunt adipisci qui quasi voluptatum eius harum. 2022-07-12 18:13:49.417552 2022-09-02 16:28:19.982357 1662136099_long-wool-blend-coat-with-belt \N \N 1 1 2022-07-12 18:13:49.525501 2022-09-02 16:28:19.981958 t \N \N \N \N +49 Elegant Flared Dress Iure aliquid perferendis rerum dignissimos. Ea expedita dolorum aut nihil corporis nesciunt. Dicta harum soluta corporis perspiciatis hic eum. Ex corporis consequuntur accusantium qui. 2022-07-12 18:13:35.08712 2022-09-02 16:26:05.222016 1662135965_elegant-flared-dress \N \N 1 1 2022-07-12 18:13:35.202274 2022-09-02 16:26:05.221578 t \N \N \N \N +75 Cropped Fitted Sweater Vitae non repudiandae ipsam quia expedita hic numquam. Iste iure debitis dolorum sequi amet mollitia maxime. Veritatis laborum libero atque vitae doloribus doloremque error. 2022-07-12 18:13:44.81429 2022-09-02 16:25:59.585643 1662135959_cropped-fitted-sweater \N \N 1 1 2022-07-12 18:13:44.935521 2022-09-02 16:25:59.585193 t \N \N \N \N +93 Leather Biker Jacket Accusantium asperiores vitae quo nulla vel ab placeat. Voluptate repellat reprehenderit vitae voluptatem blanditiis magni. Inventore saepe minima fugiat dignissimos alias corrupti aperiam. In quidem minima ipsa et sed culpa. Consectetur eveniet amet beatae voluptates architecto sit minus possimus. 2022-07-12 18:13:52.434348 2022-09-02 16:27:17.019323 1662136037_leather-biker-jacket \N \N 1 1 2022-07-12 18:13:52.549667 2022-09-02 16:27:17.018894 t \N \N \N \N +107 Oversize Sweatshirt Incidunt possimus nesciunt ea quo nihil. Harum repellat soluta sint nemo eius consequatur blanditiis consectetur. Eius voluptates consectetur facere maiores vel temporibus facilis ipsum. Corporis sunt saepe laboriosam porro. Porro assumenda optio reiciendis molestiae quaerat laborum. 2022-07-12 18:13:57.806171 2022-09-02 16:28:20.955353 1662136100_oversize-sweatshirt \N \N 1 1 2022-07-12 18:13:57.929854 2022-09-02 16:28:20.954945 t \N \N \N \N +95 Denim Hooded Jacket Ducimus beatae sit numquam excepturi natus minima. Aliquam provident vitae aperiam eos dicta occaecati. Impedit quam aspernatur assumenda fugit incidunt officiis. Quo inventore ipsum accusamus natus fugit. Dolores eligendi quos ipsam ab eaque asperiores similique vitae. 2022-07-12 18:13:53.188645 2022-09-02 16:26:01.376129 1662135961_denim-hooded-jacket \N \N 1 1 2022-07-12 18:13:53.29933 2022-09-02 16:26:01.375649 t \N \N \N \N +23 Jumper Voluptatibus iste aspernatur sunt quos earum amet. Facilis officia pariatur quis voluptates neque. Laborum esse adipisci omnis impedit. 2022-07-12 18:13:24.997166 2022-09-02 16:27:18.484784 1662136038_jumper \N \N 1 1 2022-07-12 18:13:25.105046 2022-09-02 16:27:18.484329 t \N \N \N \N +25 Hoodie Commodi soluta suscipit cumque neque. Voluptatem consectetur qui voluptates libero. Quibusdam omnis ad voluptates voluptatibus maxime. Unde minus optio tenetur vero accusantium eius itaque. Labore dolore hic ipsum quo accusamus quidem. 2022-07-12 18:13:25.701521 2022-09-02 16:27:21.499706 1662136041_hoodie \N \N 1 1 2022-07-12 18:13:25.822753 2022-09-02 16:27:21.49931 t \N \N \N \N +54 Dress With Belt Iusto aut architecto sequi inventore quod delectus eligendi minima. In quod animi quisquam fuga ratione. Iusto incidunt sequi quis dicta sapiente tempore. 2022-07-12 18:13:36.930584 2022-09-02 16:26:06.71989 1662135966_dress-with-belt \N \N 1 1 2022-07-12 18:13:37.043743 2022-09-02 16:26:06.71942 t \N \N \N \N +36 Flared Midi Skirt Necessitatibus ratione quos hic suscipit exercitationem corrupti. Dolorem nulla sint natus aliquid expedita. Facere officiis odio sint delectus molestiae aut recusandae. Sed molestias saepe ad nobis praesentium blanditiis. Facere corrupti sit quaerat iste officiis excepturi inventore. 2022-07-12 18:13:30.177617 2022-09-02 16:26:03.47934 1662135963_flared-midi-skirt \N \N 1 1 2022-07-12 18:13:30.290347 2022-09-02 16:26:03.478825 t \N \N \N \N +115 High Waist Pants With Pockets Quasi voluptates quo molestias nulla perferendis consequatur repellat. Voluptates enim odit libero repellendus officiis laboriosam. Iure soluta adipisci dignissimos amet eveniet. 2022-07-12 18:14:00.867015 2022-09-02 16:27:22.684622 1662136042_high-waist-pants-with-pockets \N \N 1 1 2022-07-12 18:14:00.972025 2022-09-02 16:27:22.68416 t \N \N \N \N +20 High Neck Sweater Ducimus aperiam maiores doloribus laborum nemo. Fugiat voluptates vero quibusdam beatae quidem voluptatem alias. Ab quisquam labore cum nemo alias eligendi hic provident. Laudantium placeat exercitationem nulla fugiat. 2022-07-12 18:13:23.932558 2022-09-02 16:27:23.3856 1662136043_high-neck-sweater \N \N 1 1 2022-07-12 18:13:24.047159 2022-09-02 16:27:23.38513 t \N \N \N \N +48 Flared Dress Perferendis id labore dolore corporis exercitationem quas. Doloremque consequuntur architecto exercitationem iusto. Quasi voluptatibus quae aperiam velit nisi. Commodi perferendis tempora magni neque. Minima nesciunt qui aliquam voluptatibus facilis aut quis. 2022-07-12 18:13:34.73343 2022-09-02 16:26:04.262003 1662135964_flared-dress \N \N 1 1 2022-07-12 18:13:34.84675 2022-09-02 16:26:04.261549 t \N \N \N \N +38 Fitted Skirt Amet ducimus voluptatum omnis praesentium repellat illum atque nulla. Autem praesentium consequuntur illo aperiam eos facere distinctio. Maxime quisquam maiores earum error quis temporibus. 2022-07-12 18:13:30.906301 2022-09-02 16:26:04.846644 1662135964_fitted-skirt \N \N 1 1 2022-07-12 18:13:31.026289 2022-09-02 16:26:04.846108 t \N \N \N \N +65 Elegant Blouse With Chocker Tempore unde quibusdam eaque et similique incidunt. In nostrum asperiores voluptates at soluta hic perspiciatis cum. Non nobis reiciendis possimus enim cumque. Velit voluptatum sed omnis veritatis aliquid ipsam. 2022-07-12 18:13:40.937892 2022-09-02 16:26:05.840037 1662135965_elegant-blouse-with-chocker \N \N 1 1 2022-07-12 18:13:41.049032 2022-09-02 16:26:05.839589 t \N \N \N \N +33 Down Jacket With Hood Maiores provident optio tempore inventore officiis. Repellendus quisquam sit recusandae sequi. Quaerat in porro provident ratione asperiores. Maxime vitae beatae doloremque magnam aliquid. 2022-07-12 18:13:29.092483 2022-09-02 16:26:07.131222 1662135967_down-jacket-with-hood \N \N 1 1 2022-07-12 18:13:29.206958 2022-09-02 16:26:07.130785 t \N \N \N \N +59 Striped Shirt Maiores asperiores expedita incidunt eos ex. Minus sunt voluptatum rem inventore unde eius. Occaecati excepturi incidunt id debitis quasi placeat. 2022-07-12 18:13:38.717982 2022-09-02 16:27:48.172707 1662136068_striped-shirt \N \N 1 1 2022-07-12 18:13:38.831243 2022-09-02 16:27:48.171888 t \N \N \N \N +68 V Neck Shirt Voluptate atque voluptatibus culpa vitae. Atque aliquam nemo a repellat. Iste laboriosam in maxime libero atque. Facilis molestiae optio sed ducimus vel nobis et. Adipisci vel nisi possimus autem aliquam veritatis molestias quo. 2022-07-12 18:13:42.045267 2022-09-02 16:28:05.075886 1662136085_v-neck-shirt \N \N 1 1 2022-07-12 18:13:42.165262 2022-09-02 16:28:05.075455 t \N \N \N \N +34 Wool Blend Coat Occaecati ea cum saepe dolore minus hic. Earum consectetur facere labore possimus est numquam commodi ea. Ad adipisci quidem corporis a at. Sint hic molestias temporibus recusandae debitis. 2022-07-12 18:13:29.458783 2022-09-02 16:28:03.142569 1662136083_wool-blend-coat \N \N 1 1 2022-07-12 18:13:29.567693 2022-09-02 16:28:03.141966 t \N \N \N \N +89 Down Jacket Molestiae soluta veniam illo alias voluptatum minima accusamus. Ea corporis dolores autem dolorem vitae qui id ut. Nesciunt autem voluptatibus asperiores ab facilis quam porro iusto. Asperiores blanditiis architecto non placeat corrupti excepturi consequuntur. Eius repudiandae aperiam dicta delectus. 2022-07-12 18:13:50.546399 2022-09-02 16:26:07.624198 1662135967_down-jacket \N \N 1 1 2022-07-12 18:13:50.722652 2022-09-02 16:26:07.623684 t \N \N \N \N +6 Printed Short Sleeve Shirt Voluptatibus perspiciatis tempore recusandae reiciendis. Et aliquam velit molestiae iure occaecati dolore eum. Minus facilis commodi adipisci placeat excepturi in esse. 2022-07-12 18:13:18.967612 2022-09-02 16:28:39.41427 1662136119_printed-short-sleeve-shirt \N \N 1 1 2022-07-12 18:13:19.074261 2022-09-02 16:28:39.413851 t \N \N \N \N +58 Semi Sheer Shirt With Floral Cuffs Eos quia perspiciatis nulla id qui deleniti maxime. Quisquam est ea esse ab. Atque excepturi culpa similique commodi. Sequi pariatur qui voluptatibus delectus ea corrupti cupiditate perferendis. Distinctio mollitia ad deserunt excepturi dolorum adipisci nulla. 2022-07-12 18:13:38.37956 2022-09-02 16:27:41.547134 1662136061_semi-sheer-shirt-with-floral-cuffs \N \N 1 1 2022-07-12 18:13:38.486672 2022-09-02 16:27:41.540608 t \N \N \N \N +91 Loose Fitted Jacket Quasi nobis aperiam rem harum saepe unde similique. Repellat voluptatum quibusdam in dolorem. Numquam debitis fuga esse occaecati quaerat distinctio corrupti. 2022-07-12 18:13:51.564444 2022-09-02 16:28:28.497619 1662136108_loose-fitted-jacket \N \N 1 1 2022-07-12 18:13:51.687103 2022-09-02 16:28:28.497132 t \N \N \N \N +92 Double Breasted Jacket Ullam neque quidem officiis nisi pariatur explicabo quibusdam odio. Ullam quis et laudantium eius sunt dolor ab architecto. Dignissimos explicabo quae amet incidunt omnis. 2022-07-12 18:13:51.978032 2022-09-02 16:26:08.235011 1662135968_double-breasted-jacket \N \N 1 1 2022-07-12 18:13:52.148849 2022-09-02 16:26:08.233117 t \N \N \N \N +12 Polo T Shirt Sed enim ut molestiae nisi impedit. Quibusdam commodi doloremque officiis tempore. Fugiat itaque suscipit eligendi rerum quas ut quaerat optio. 2022-07-12 18:13:21.006743 2022-09-02 16:28:43.369487 1662136123_polo-t-shirt \N \N 1 1 2022-07-12 18:13:21.109783 2022-09-02 16:28:43.369046 t \N \N \N \N +9 Dotted Shirt Mollitia magni atque alias eligendi qui cupiditate deleniti eos. Magnam excepturi voluptatum atque harum eaque architecto. Ducimus magnam at labore exercitationem quae. Possimus tempora animi qui atque voluptatem minus ipsum accusamus. 2022-07-12 18:13:19.992871 2022-09-02 16:26:09.007155 1662135969_dotted-shirt \N \N 1 1 2022-07-12 18:13:20.098254 2022-09-02 16:26:09.0067 t \N \N \N \N +31 Denim Jacket Omnis totam modi id quia atque quas. Quae ipsa quia nobis suscipit. Autem ut voluptatum quo vel occaecati. Laboriosam voluptatum at aut deleniti minima debitis. Beatae voluptates laborum inventore quibusdam. 2022-07-12 18:13:28.207573 2022-09-02 16:26:10.412079 1662135970_denim-jacket \N \N 1 1 2022-07-12 18:13:28.320011 2022-09-02 16:26:10.411643 t \N \N \N \N +122 Octo Bits

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 Bits

Everybody 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 Sticker

The 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 Bits

Remember 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 Bits

It'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 Bits

Show 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 Bits

With 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 Bits

Be 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 Dre

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 2024-02-12 22:52:24.546331 t \N \N \N +119 Hockey Bits

Just 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 Bits

This 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 Bits

Celebrate 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 Bits

Show 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 Bits

Slap 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":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 29 2022-07-12 18:15:57.295483 2022-07-12 18:15:57.318458 -38 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 30 2022-07-12 18:15:57.344942 2022-07-12 18:15:57.36682 -39 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 31 2022-07-12 18:15:57.393743 2022-07-12 18:15:57.415078 -40 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 25 2022-07-12 18:15:57.440226 2022-07-12 18:15:57.462772 -41 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 26 2022-07-12 18:15:57.488024 2022-07-12 18:15:57.509922 -42 Modetrends {"title":"Sommer 2022","subtitle":"Modetrends","button_text":"Weiterlesen","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 27 2022-07-12 18:15:57.542908 2022-07-12 18:15:57.566165 -43 Tendencias de la moda {"title":"Verano 2022","subtitle":"Tendencias de la moda","button_text":"Lee mas","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 28 2022-07-12 18:15:57.591569 2022-07-12 18:15:57.612986 -44 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 32 2022-07-12 18:15:57.637931 2022-07-12 18:15:57.658399 -45 Modetrends {"title":"Sommer 2022","subtitle":"Modetrends","button_text":"Weiterlesen","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 33 2022-07-12 18:15:57.68353 2022-07-12 18:15:57.704781 -46 Tendencias de la moda {"title":"Verano 2022","subtitle":"Tendencias de la moda","button_text":"Lee mas","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 34 2022-07-12 18:15:57.730615 2022-07-12 18:15:57.752067 -47 Tendances de la mode {"title":"Été 2022","subtitle":"Tendances de la mode","button_text":"Lire la suite","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 35 2022-07-12 18:15:57.777577 2022-07-12 18:15:57.802069 -48 Fashion Trends {"title":"Summer 2022","subtitle":"Fashion Trends","button_text":"Read More","rte_content":"
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
"} {"gutters":"No Gutters"} Screen \N Spree::Cms::Sections::FeaturedArticle 4 Spree::Taxon 20 36 2022-07-12 18:15:57.830775 2022-07-12 18:15:57.854622 -49 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 29 2022-07-12 18:15:57.884541 2022-07-12 18:15:57.908668 -50 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 30 2022-07-12 18:15:57.936657 2022-07-12 18:15:57.960737 -51 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 31 2022-07-12 18:15:57.987721 2022-07-12 18:15:58.011427 -52 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 25 2022-07-12 18:15:58.040509 2022-07-12 18:15:58.067203 -53 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 26 2022-07-12 18:15:58.092225 2022-07-12 18:15:58.125223 -54 Trendiges Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 27 2022-07-12 18:15:58.152142 2022-07-12 18:15:58.174287 -55 Carrusel de tendencias \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 28 2022-07-12 18:15:58.201086 2022-07-12 18:15:58.224035 -56 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 32 2022-07-12 18:15:58.253036 2022-07-12 18:15:58.276289 -57 Trendiges Karussell \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 33 2022-07-12 18:15:58.303222 2022-07-12 18:15:58.325422 -58 Carrusel de tendencias \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 34 2022-07-12 18:15:58.354015 2022-07-12 18:15:58.375659 -59 Carrousel tendance \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 35 2022-07-12 18:15:58.402513 2022-07-12 18:15:58.423669 -60 Trending Carousel \N \N Screen \N Spree::Cms::Sections::ProductCarousel 5 Spree::Taxon 20 36 2022-07-12 18:15:58.451172 2022-07-12 18:15:58.474318 -61 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 29 2022-07-12 18:15:58.510328 2022-07-12 18:15:58.533807 -62 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 30 2022-07-12 18:15:58.55789 2022-07-12 18:15:58.579742 -63 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 31 2022-07-12 18:15:58.606038 2022-07-12 18:15:58.628483 -64 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 25 2022-07-12 18:15:58.654181 2022-07-12 18:15:58.676937 -65 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 26 2022-07-12 18:15:58.703366 2022-07-12 18:15:58.725942 -66 Werbeaktionen {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Neue Kollektion","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Bis zu 30% RABATT","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 27 2022-07-12 18:15:58.750974 2022-07-12 18:15:58.773992 -67 Promociones {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nueva colección","subtitle_one":"Estilo callejero","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Hasta 30% DE DESCUENTO","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 28 2022-07-12 18:15:58.798498 2022-07-12 18:15:58.821634 -68 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 32 2022-07-12 18:15:58.845354 2022-07-12 18:15:58.866652 -69 Werbeaktionen {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Neue Kollektion","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Bis zu 30% RABATT","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 33 2022-07-12 18:15:58.890674 2022-07-12 18:15:58.914659 -70 Promociones {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nueva colección","subtitle_one":"Estilo callejero","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Hasta 30% DE DESCUENTO","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 34 2022-07-12 18:15:58.941526 2022-07-12 18:15:58.965991 -71 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"Nouvelle collection","subtitle_one":"Style de rue","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Jusqu'à 30% de réduction","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 35 2022-07-12 18:15:58.991542 2022-07-12 18:15:59.015934 -72 Promotions {"link_type_one":"Spree::Taxon","link_type_two":"Spree::Taxon","title_one":"New Collection","subtitle_one":"Street Style","link_one":"categories/streetstyle","title_two":"Summer Sale","subtitle_two":"Up To 30% OFF","link_two":"categories/special-offers/30-percent-off"} {"gutters":"Gutters"} Container \N Spree::Cms::Sections::SideBySideImages 6 \N \N 36 2022-07-12 18:15:59.041036 2022-07-12 18:15:59.065511 -\. - - --- --- Data for Name: spree_countries; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_countries (id, iso_name, iso, iso3, name, numcode, states_required, updated_at, zipcode_required, created_at) FROM stdin; -1 ANDORRA AD AND Andorra 20 f \N t \N -3 AFGHANISTAN AF AFG Afghanistan 4 f \N t \N -5 ANGUILLA AI AIA Anguilla 660 f \N t \N -6 ALBANIA AL ALB Albania 8 f \N t \N -7 ARMENIA AM ARM Armenia 51 f \N t \N -9 ARGENTINA AR ARG Argentina 32 f \N t \N -10 AMERICAN SAMOA AS ASM American Samoa 16 f \N t \N -11 AUSTRIA AT AUT Austria 40 f \N t \N -14 AZERBAIJAN AZ AZE Azerbaijan 31 f \N t \N -15 BOSNIA AND HERZEGOVINA BA BIH Bosnia and Herzegovina 70 f \N t \N -16 BARBADOS BB BRB Barbados 52 f \N t \N -17 BANGLADESH BD BGD Bangladesh 50 f \N t \N -18 BELGIUM BE BEL Belgium 56 f \N t \N -20 BULGARIA BG BGR Bulgaria 100 f \N t \N -21 BAHRAIN BH BHR Bahrain 48 f \N t \N -24 SAINT BARTHÉLEMY BL BLM Saint Barthélemy 652 f \N t \N -26 BRUNEI DARUSSALAM BN BRN Brunei Darussalam 96 f \N t \N -28 BONAIRE, SINT EUSTATIUS AND SABA BQ BES Bonaire, Sint Eustatius and Saba 535 f \N t \N -31 BHUTAN BT BTN Bhutan 64 f \N t \N -33 BELARUS BY BLR Belarus 112 f \N t \N -36 COCOS (KEELING) ISLANDS CC CCK Cocos (Keeling) Islands 166 f \N t \N -40 SWITZERLAND CH CHE Switzerland 756 f \N t \N -43 CHILE CL CHL Chile 152 f \N t \N -46 COLOMBIA CO COL Colombia 170 f \N t \N -47 COSTA RICA CR CRI Costa Rica 188 f \N t \N -48 CUBA CU CUB Cuba 192 f \N t \N -49 CABO VERDE CV CPV Cabo Verde 132 f \N t \N -50 CURAÇAO CW CUW Curaçao 531 f \N t \N -51 CHRISTMAS ISLAND CX CXR Christmas Island 162 f \N t \N -52 CYPRUS CY CYP Cyprus 196 f \N t \N -53 CZECHIA CZ CZE Czechia 203 f \N t \N -54 GERMANY DE DEU Germany 276 f \N t \N -56 DENMARK DK DNK Denmark 208 f \N t \N -58 DOMINICAN REPUBLIC DO DOM Dominican Republic 214 f \N t \N -59 ALGERIA DZ DZA Algeria 12 f \N t \N -60 ECUADOR EC ECU Ecuador 218 f \N t \N -61 ESTONIA EE EST Estonia 233 f \N t \N -62 EGYPT EG EGY Egypt 818 f \N t \N -65 ETHIOPIA ET ETH Ethiopia 231 f \N t \N -66 FINLAND FI FIN Finland 246 f \N t \N -68 FALKLAND ISLANDS (MALVINAS) FK FLK Falkland Islands (Malvinas) 238 f \N t \N -69 MICRONESIA, FEDERATED STATES OF FM FSM Micronesia, Federated States of 583 f \N t \N -70 FAROE ISLANDS FO FRO Faroe Islands 234 f \N t \N -71 FRANCE FR FRA France 250 f \N t \N -72 GABON GA GAB Gabon 266 f \N t \N -73 UNITED KINGDOM GB GBR United Kingdom 826 f \N t \N -75 GEORGIA GE GEO Georgia 268 f \N t \N -76 FRENCH GUIANA GF GUF French Guiana 254 f \N t \N -77 GUERNSEY GG GGY Guernsey 831 f \N t \N -79 GIBRALTAR GI GIB Gibraltar 292 f \N t \N -80 GREENLAND GL GRL Greenland 304 f \N t \N -83 GUADELOUPE GP GLP Guadeloupe 312 f \N t \N -85 GREECE GR GRC Greece 300 f \N t \N -86 GUATEMALA GT GTM Guatemala 320 f \N t \N -87 GUAM GU GUM Guam 316 f \N t \N -88 GUINEA-BISSAU GW GNB Guinea-Bissau 624 f \N t \N -91 HONDURAS HN HND Honduras 340 f \N t \N -92 CROATIA HR HRV Croatia 191 f \N t \N -93 HAITI HT HTI Haiti 332 f \N t \N -94 HUNGARY HU HUN Hungary 348 f \N t \N -95 INDONESIA ID IDN Indonesia 360 f \N t \N -97 ISRAEL IL ISR Israel 376 f \N t \N -98 ISLE OF MAN IM IMN Isle of Man 833 f \N t \N -100 IRAQ IQ IRQ Iraq 368 f \N t \N -101 IRAN, ISLAMIC REPUBLIC OF IR IRN Iran, Islamic Republic of 364 f \N t \N -102 ICELAND IS ISL Iceland 352 f \N t \N -104 JERSEY JE JEY Jersey 832 f \N t \N -105 JAMAICA JM JAM Jamaica 388 f \N t \N -106 JORDAN JO JOR Jordan 400 f \N t \N -107 JAPAN JP JPN Japan 392 f \N t \N -108 KENYA KE KEN Kenya 404 f \N t \N -109 KYRGYZSTAN KG KGZ Kyrgyzstan 417 f \N t \N -110 CAMBODIA KH KHM Cambodia 116 f \N t \N -115 KOREA, REPUBLIC OF KR KOR Korea, Republic of 410 f \N t \N -116 KUWAIT KW KWT Kuwait 414 f \N t \N -117 CAYMAN ISLANDS KY CYM Cayman Islands 136 f \N t \N -118 KAZAKHSTAN KZ KAZ Kazakhstan 398 f \N t \N -119 LAO PEOPLE'S DEMOCRATIC REPUBLIC LA LAO Lao People's Democratic Republic 418 f \N t \N -120 LEBANON LB LBN Lebanon 422 f \N t \N -122 LIECHTENSTEIN LI LIE Liechtenstein 438 f \N t \N -123 SRI LANKA LK LKA Sri Lanka 144 f \N t \N -124 LIBERIA LR LBR Liberia 430 f \N t \N -125 LESOTHO LS LSO Lesotho 426 f \N t \N -126 LITHUANIA LT LTU Lithuania 440 f \N t \N -127 LUXEMBOURG LU LUX Luxembourg 442 f \N t \N -128 LATVIA LV LVA Latvia 428 f \N t \N -130 MOROCCO MA MAR Morocco 504 f \N t \N -131 MONACO MC MCO Monaco 492 f \N t \N -132 MOLDOVA, REPUBLIC OF MD MDA Moldova, Republic of 498 f \N t \N -133 MONTENEGRO ME MNE Montenegro 499 f \N t \N -134 SAINT MARTIN (FRENCH PART) MF MAF Saint Martin (French part) 663 f \N t \N -135 MADAGASCAR MG MDG Madagascar 450 f \N t \N -136 MARSHALL ISLANDS MH MHL Marshall Islands 584 f \N t \N -137 NORTH MACEDONIA MK MKD North Macedonia 807 f \N t \N -139 MYANMAR MM MMR Myanmar 104 f \N t \N -140 MONGOLIA MN MNG Mongolia 496 f \N t \N -142 NORTHERN MARIANA ISLANDS MP MNP Northern Mariana Islands 580 f \N t \N -143 MARTINIQUE MQ MTQ Martinique 474 f \N t \N -145 MONTSERRAT MS MSR Montserrat 500 f \N t \N -146 MALTA MT MLT Malta 470 f \N t \N -147 MAURITIUS MU MUS Mauritius 480 f \N t \N -148 MALDIVES MV MDV Maldives 462 f \N t \N -152 MOZAMBIQUE MZ MOZ Mozambique 508 f \N t \N -153 NAMIBIA NA NAM Namibia 516 f \N t \N -154 NEW CALEDONIA NC NCL New Caledonia 540 f \N t \N -155 NIGER NE NER Niger 562 f \N t \N -156 NORFOLK ISLAND NF NFK Norfolk Island 574 f \N t \N -157 NIGERIA NG NGA Nigeria 566 f \N t \N -158 NICARAGUA NI NIC Nicaragua 558 f \N t \N -159 NETHERLANDS NL NLD Netherlands 528 f \N t \N -160 NORWAY NO NOR Norway 578 f \N t \N -161 NEPAL NP NPL Nepal 524 f \N t \N -165 OMAN OM OMN Oman 512 f \N t \N -167 PERU PE PER Peru 604 f \N t \N -168 FRENCH POLYNESIA PF PYF French Polynesia 258 f \N t \N -169 PAPUA NEW GUINEA PG PNG Papua New Guinea 598 f \N t \N -170 PHILIPPINES PH PHL Philippines 608 f \N t \N -171 PAKISTAN PK PAK Pakistan 586 f \N t \N -172 POLAND PL POL Poland 616 f \N t \N -173 SAINT PIERRE AND MIQUELON PM SPM Saint Pierre and Miquelon 666 f \N t \N -174 PITCAIRN PN PCN Pitcairn 612 f \N t \N -175 PUERTO RICO PR PRI Puerto Rico 630 f \N t \N -176 PALESTINE, STATE OF PS PSE Palestine, State of 275 f \N t \N -178 PALAU PW PLW Palau 585 f \N t \N -179 PARAGUAY PY PRY Paraguay 600 f \N t \N -181 RÉUNION RE REU Réunion 638 f \N t \N -183 SERBIA RS SRB Serbia 688 f \N t \N -184 RUSSIA RU RUS Russia 643 f \N t \N -186 SAUDI ARABIA SA SAU Saudi Arabia 682 f \N t \N -189 SUDAN SD SDN Sudan 729 f \N t \N -190 SWEDEN SE SWE Sweden 752 f \N t \N -191 SINGAPORE SG SGP Singapore 702 f \N t \N -111 KIRIBATI KI KIR Kiribati 296 f \N f \N -192 SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA SH SHN Saint Helena, Ascension and Tristan da Cunha 654 f \N t \N -193 SLOVENIA SI SVN Slovenia 705 f \N t \N -194 SVALBARD AND JAN MAYEN SJ SJM Svalbard and Jan Mayen 744 f \N t \N -195 SLOVAKIA SK SVK Slovakia 703 f \N t \N -197 SAN MARINO SM SMR San Marino 674 f \N t \N -198 SENEGAL SN SEN Senegal 686 f \N t \N -201 SOUTH SUDAN SS SSD South Sudan 728 f \N t \N -203 EL SALVADOR SV SLV El Salvador 222 f \N t \N -204 SINT MAARTEN (DUTCH PART) SX SXM Sint Maarten (Dutch part) 534 f \N t \N -206 ESWATINI SZ SWZ Eswatini 748 f \N t \N -207 TURKS AND CAICOS ISLANDS TC TCA Turks and Caicos Islands 796 f \N t \N -208 CHAD TD TCD Chad 148 f \N t \N -211 TAJIKISTAN TJ TJK Tajikistan 762 f \N t \N -214 TURKMENISTAN TM TKM Turkmenistan 795 f \N t \N -215 TUNISIA TN TUN Tunisia 788 f \N t \N -217 TURKEY TR TUR Turkey 792 f \N t \N -218 TRINIDAD AND TOBAGO TT TTO Trinidad and Tobago 780 f \N t \N -220 TAIWAN TW TWN Taiwan 158 f \N t \N -222 UKRAINE UA UKR Ukraine 804 f \N t \N -225 URUGUAY UY URY Uruguay 858 f \N t \N -226 UZBEKISTAN UZ UZB Uzbekistan 860 f \N t \N -227 HOLY SEE (VATICAN CITY STATE) VA VAT Holy See (Vatican City State) 336 f \N t \N -228 SAINT VINCENT AND THE GRENADINES VC VCT Saint Vincent and the Grenadines 670 f \N t \N -229 VENEZUELA, BOLIVARIAN REPUBLIC OF VE VEN Venezuela, Bolivarian Republic of 862 f \N t \N -230 VIRGIN ISLANDS, BRITISH VG VGB Virgin Islands, British 92 f \N t \N -231 VIRGIN ISLANDS, U.S. VI VIR Virgin Islands, U.S. 850 f \N t \N -232 VIETNAM VN VNM Vietnam 704 f \N t \N -234 WALLIS AND FUTUNA WF WLF Wallis and Futuna 876 f \N t \N -235 SAMOA WS WSM Samoa 882 f \N t \N -237 MAYOTTE YT MYT Mayotte 175 f \N t \N -239 ZAMBIA ZM ZMB Zambia 894 f \N t \N -4 ANTIGUA AND BARBUDA AG ATG Antigua and Barbuda 28 f \N f \N -8 ANGOLA AO AGO Angola 24 f \N f \N -13 ARUBA AW ABW Aruba 533 f \N f \N -19 BURKINA FASO BF BFA Burkina Faso 854 f \N f \N -22 BURUNDI BI BDI Burundi 108 f \N f \N -23 BENIN BJ BEN Benin 204 f \N f \N -25 BERMUDA BM BMU Bermuda 60 f \N f \N -27 BOLIVIA, PLURINATIONAL STATE OF BO BOL Bolivia, Plurinational State of 68 f \N f \N -30 BAHAMAS BS BHS Bahamas 44 f \N f \N -32 BOTSWANA BW BWA Botswana 72 f \N f \N -34 BELIZE BZ BLZ Belize 84 f \N f \N -37 CONGO, THE DEMOCRATIC REPUBLIC OF THE CD COD Congo, The Democratic Republic of the 180 f \N f \N -38 CENTRAL AFRICAN REPUBLIC CF CAF Central African Republic 140 f \N f \N -39 CONGO CG COG Congo 178 f \N f \N -41 CÔTE D'IVOIRE CI CIV Côte d'Ivoire 384 f \N f \N -42 COOK ISLANDS CK COK Cook Islands 184 f \N f \N -44 CAMEROON CM CMR Cameroon 120 f \N f \N -55 DJIBOUTI DJ DJI Djibouti 262 f \N f \N -57 DOMINICA DM DMA Dominica 212 f \N f \N -63 ERITREA ER ERI Eritrea 232 f \N f \N -67 FIJI FJ FJI Fiji 242 f \N f \N -74 GRENADA GD GRD Grenada 308 f \N f \N -78 GHANA GH GHA Ghana 288 f \N f \N -81 GAMBIA GM GMB Gambia 270 f \N f \N -82 GUINEA GN GIN Guinea 324 f \N f \N -84 EQUATORIAL GUINEA GQ GNQ Equatorial Guinea 226 f \N f \N -89 GUYANA GY GUY Guyana 328 f \N f \N -112 COMOROS KM COM Comoros 174 f \N f \N -113 SAINT KITTS AND NEVIS KN KNA Saint Kitts and Nevis 659 f \N f \N -114 KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF KP PRK Korea, Democratic People's Republic of 408 f \N f \N -121 SAINT LUCIA LC LCA Saint Lucia 662 f \N f \N -129 LIBYA LY LBY Libya 434 f \N f \N -138 MALI ML MLI Mali 466 f \N f \N -141 MACAO MO MAC Macao 446 f \N f \N -144 MAURITANIA MR MRT Mauritania 478 f \N f \N -149 MALAWI MW MWI Malawi 454 f \N f \N -162 NAURU NR NRU Nauru 520 f \N f \N -163 NIUE NU NIU Niue 570 f \N f \N -166 PANAMA PA PAN Panama 591 f \N f \N -180 QATAR QA QAT Qatar 634 f \N f \N -185 RWANDA RW RWA Rwanda 646 f \N f \N -187 SOLOMON ISLANDS SB SLB Solomon Islands 90 f \N f \N -188 SEYCHELLES SC SYC Seychelles 690 f \N f \N -196 SIERRA LEONE SL SLE Sierra Leone 694 f \N f \N -199 SOMALIA SO SOM Somalia 706 f \N f \N -200 SURINAME SR SUR Suriname 740 f \N f \N -202 SAO TOME AND PRINCIPE ST STP Sao Tome and Principe 678 f \N f \N -205 SYRIAN ARAB REPUBLIC SY SYR Syrian Arab Republic 760 f \N f \N -209 TOGO TG TGO Togo 768 f \N f \N -212 TOKELAU TK TKL Tokelau 772 f \N f \N -213 TIMOR-LESTE TL TLS Timor-Leste 626 f \N f \N -216 TONGA TO TON Tonga 776 f \N f \N -219 TUVALU TV TUV Tuvalu 798 f \N f \N -221 TANZANIA, UNITED REPUBLIC OF TZ TZA Tanzania, United Republic of 834 f \N f \N -223 UGANDA UG UGA Uganda 800 f \N f \N -233 VANUATU VU VUT Vanuatu 548 f \N f \N -236 YEMEN YE YEM Yemen 887 f \N f \N -240 ZIMBABWE ZW ZWE Zimbabwe 716 f \N f \N -12 AUSTRALIA AU AUS Australia 36 t \N t \N -29 BRAZIL BR BRA Brazil 76 t \N t \N -35 CANADA CA CAN Canada 124 t \N t \N -45 CHINA CN CHN China 156 t \N t \N -64 SPAIN ES ESP Spain 724 t \N t \N -99 INDIA IN IND India 356 t \N t \N -103 ITALY IT ITA Italy 380 t \N t \N -150 MEXICO MX MEX Mexico 484 t \N t \N -151 MALAYSIA MY MYS Malaysia 458 t \N t \N -164 NEW ZEALAND NZ NZL New Zealand 554 t \N t \N -177 PORTUGAL PT PRT Portugal 620 t \N t \N -182 ROMANIA RO ROU Romania 642 t \N t \N -210 THAILAND TH THA Thailand 764 t \N t \N -224 UNITED STATES US USA United States 840 t \N t \N -238 SOUTH AFRICA ZA ZAF South Africa 710 t \N t \N -2 UNITED ARAB EMIRATES AE ARE United Arab Emirates 784 t \N f \N -90 HONG KONG HK HKG Hong Kong 344 t \N f \N -96 IRELAND IE IRL Ireland 372 t \N f \N -\. - - --- --- Data for Name: spree_credit_cards; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_credit_cards (id, month, year, cc_type, last_digits, address_id, gateway_customer_profile_id, gateway_payment_profile_id, created_at, updated_at, name, user_id, payment_method_id, "default", deleted_at, public_metadata, private_metadata) FROM stdin; -1 12 2024 visa 1111 \N BGS-1234 \N 2022-07-12 18:15:53.472361 2022-07-12 18:15:53.472361 Sean Schofield \N \N f \N \N \N -\. - - --- --- Data for Name: spree_customer_returns; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_customer_returns (id, number, stock_location_id, created_at, updated_at, store_id, public_metadata, private_metadata) FROM stdin; -\. - - --- --- Data for Name: spree_digital_links; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_digital_links (id, digital_id, line_item_id, token, access_counter, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_digitals; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_digitals (id, variant_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_gateways; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_gateways (id, type, name, description, active, environment, server, test_mode, created_at, updated_at, preferences) FROM stdin; -\. - - --- --- Data for Name: spree_inventory_units; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_inventory_units (id, state, variant_id, order_id, shipment_id, created_at, updated_at, pending, line_item_id, quantity, original_return_item_id) FROM stdin; -\. - - --- --- Data for Name: spree_line_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_line_items (id, variant_id, order_id, quantity, price, created_at, updated_at, currency, cost_price, tax_category_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; -3 233 3 1 20.00 2022-09-02 17:23:28.931907 2022-09-02 17:23:29.334969 USD \N \N 0.00 0.00 0.00 0.00 20.0000 0.00 0.00 \N \N -4 235 4 1 5.00 2022-09-02 18:42:33.838861 2022-09-02 18:42:34.186913 USD \N \N 0.00 0.00 0.00 0.00 5.0000 0.00 0.00 \N \N -23 234 19 1 14.99 2022-09-13 20:44:51.628683 2022-09-13 20:44:52.019666 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -30 236 18 1 9.99 2022-09-13 20:45:22.613275 2022-09-13 20:45:23.516742 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -38 236 25 1 9.99 2022-09-13 20:47:18.625578 2022-09-13 20:47:18.991186 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -31 236 21 1 9.99 2022-09-13 20:45:22.830553 2022-09-13 20:45:24.020033 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -36 236 23 1 9.99 2022-09-13 20:47:13.042276 2022-09-13 20:47:13.326648 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -12 234 16 1 14.99 2022-09-13 20:42:57.546979 2022-09-13 20:42:58.21849 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -28 236 19 1 9.99 2022-09-13 20:45:22.020959 2022-09-13 20:45:22.4028 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -6 234 7 1 14.99 2022-09-13 20:41:04.241214 2022-09-13 20:41:05.140195 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -18 236 14 1 9.99 2022-09-13 20:43:28.276 2022-09-13 20:43:29.740885 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -5 234 10 1 14.99 2022-09-13 20:41:04.209604 2022-09-13 20:41:05.174027 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -7 234 11 1 14.99 2022-09-13 20:41:04.343489 2022-09-13 20:41:05.205564 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -13 234 14 1 14.99 2022-09-13 20:42:57.888629 2022-09-13 20:42:58.701566 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -8 234 12 1 14.99 2022-09-13 20:41:04.609584 2022-09-13 20:41:05.441235 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -15 234 17 1 14.99 2022-09-13 20:42:57.952481 2022-09-13 20:42:58.732567 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -20 236 16 1 9.99 2022-09-13 20:43:28.615427 2022-09-13 20:43:30.035119 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -22 234 20 1 14.99 2022-09-13 20:44:51.579162 2022-09-13 20:44:53.190626 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -14 234 13 1 14.99 2022-09-13 20:42:57.905112 2022-09-13 20:42:58.927906 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -41 234 30 1 14.99 2022-09-13 20:48:42.744139 2022-09-13 20:48:43.914163 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -21 236 15 1 9.99 2022-09-13 20:43:28.756594 2022-09-13 20:43:30.1031 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -16 234 15 1 14.99 2022-09-13 20:42:58.46677 2022-09-13 20:42:59.614915 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -19 236 17 1 9.99 2022-09-13 20:43:28.407091 2022-09-13 20:43:30.123097 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -10 236 11 1 9.99 2022-09-13 20:41:34.804127 2022-09-13 20:41:35.123113 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -42 234 31 1 14.99 2022-09-13 20:48:42.961563 2022-09-13 20:48:44.07321 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -11 236 12 1 9.99 2022-09-13 20:41:34.872687 2022-09-13 20:41:35.482082 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -9 236 10 1 9.99 2022-09-13 20:41:34.733022 2022-09-13 20:41:35.500638 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -33 234 25 1 14.99 2022-09-13 20:46:47.776578 2022-09-13 20:46:48.108889 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -17 236 13 1 9.99 2022-09-13 20:43:27.96608 2022-09-13 20:43:28.307589 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -24 234 22 1 14.99 2022-09-13 20:44:51.870759 2022-09-13 20:44:53.43091 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -27 236 20 1 9.99 2022-09-13 20:45:21.971254 2022-09-13 20:45:22.81613 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -25 234 18 1 14.99 2022-09-13 20:44:51.970477 2022-09-13 20:44:53.65498 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -34 234 27 1 14.99 2022-09-13 20:46:47.874037 2022-09-13 20:46:48.560334 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -26 234 21 1 14.99 2022-09-13 20:44:52.001684 2022-09-13 20:44:53.849221 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -32 234 23 1 14.99 2022-09-13 20:46:42.742771 2022-09-13 20:46:43.043268 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -35 234 26 1 14.99 2022-09-13 20:46:47.935215 2022-09-13 20:46:48.624158 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -29 236 22 1 9.99 2022-09-13 20:45:22.22858 2022-09-13 20:45:23.324954 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -43 234 32 1 14.99 2022-09-13 20:48:45.037503 2022-09-13 20:48:46.463152 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -37 236 26 1 9.99 2022-09-13 20:47:18.511908 2022-09-13 20:47:19.243035 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -39 236 27 1 9.99 2022-09-13 20:47:18.638282 2022-09-13 20:47:19.313414 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -40 234 28 1 14.99 2022-09-13 20:48:42.352813 2022-09-13 20:48:43.146383 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -45 236 31 1 9.99 2022-09-13 20:49:13.453841 2022-09-13 20:49:13.811563 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -46 236 30 1 9.99 2022-09-13 20:49:13.510551 2022-09-13 20:49:14.179381 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -44 236 28 1 9.99 2022-09-13 20:49:13.285772 2022-09-13 20:49:14.296414 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -56 234 42 1 14.99 2022-09-13 20:52:31.139324 2022-09-13 20:52:32.412199 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -75 234 50 1 14.99 2022-09-13 20:56:20.142008 2022-09-13 20:56:21.642173 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -47 236 32 1 9.99 2022-09-13 20:49:14.359853 2022-09-13 20:49:15.606806 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -61 236 42 1 9.99 2022-09-13 20:53:01.45346 2022-09-13 20:53:02.095736 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -57 234 38 1 14.99 2022-09-13 20:52:31.386917 2022-09-13 20:52:32.748613 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -65 234 45 1 14.99 2022-09-13 20:54:22.566046 2022-09-13 20:54:23.163103 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -60 236 39 1 9.99 2022-09-13 20:53:01.361555 2022-09-13 20:53:02.179532 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -48 234 33 1 14.99 2022-09-13 20:50:33.662894 2022-09-13 20:50:33.947669 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -64 234 43 1 14.99 2022-09-13 20:54:22.523549 2022-09-13 20:54:23.405786 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -62 236 41 1 9.99 2022-09-13 20:53:01.602896 2022-09-13 20:53:02.45003 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -81 236 52 1 9.99 2022-09-13 20:56:51.127219 2022-09-13 20:56:51.554956 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -59 234 40 1 14.99 2022-09-13 20:52:31.5348 2022-09-13 20:52:32.755039 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -63 236 38 1 9.99 2022-09-13 20:53:01.850918 2022-09-13 20:53:02.64684 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -55 234 41 1 14.99 2022-09-13 20:52:31.119837 2022-09-13 20:52:31.748556 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -74 234 48 1 14.99 2022-09-13 20:56:20.118571 2022-09-13 20:56:21.668928 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -49 234 35 1 14.99 2022-09-13 20:50:39.226287 2022-09-13 20:50:40.055416 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -79 236 50 1 9.99 2022-09-13 20:56:50.721588 2022-09-13 20:56:51.807577 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -50 234 36 1 14.99 2022-09-13 20:50:39.473184 2022-09-13 20:50:40.282371 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -73 234 49 1 14.99 2022-09-13 20:56:20.003682 2022-09-13 20:56:20.416573 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -51 234 34 1 14.99 2022-09-13 20:50:39.480747 2022-09-13 20:50:40.334234 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -66 234 44 1 14.99 2022-09-13 20:54:22.743446 2022-09-13 20:54:23.578999 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -69 236 45 1 9.99 2022-09-13 20:54:53.036372 2022-09-13 20:54:53.655685 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -84 236 54 1 9.99 2022-09-13 20:58:44.226183 2022-09-13 20:58:44.487666 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -70 236 44 1 9.99 2022-09-13 20:54:53.180092 2022-09-13 20:54:53.770228 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -52 236 35 1 9.99 2022-09-13 20:51:09.744356 2022-09-13 20:51:10.666085 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -53 236 34 1 9.99 2022-09-13 20:51:09.937982 2022-09-13 20:51:10.813828 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -54 236 36 1 9.99 2022-09-13 20:51:10.005167 2022-09-13 20:51:10.890725 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -58 234 39 1 14.99 2022-09-13 20:52:31.529798 2022-09-13 20:52:32.397012 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -67 234 46 1 14.99 2022-09-13 20:54:26.822761 2022-09-13 20:54:27.422543 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -82 234 54 1 14.99 2022-09-13 20:58:14.094521 2022-09-13 20:58:14.35307 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -71 236 46 1 9.99 2022-09-13 20:54:57.395904 2022-09-13 20:54:57.759013 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -72 236 47 1 9.99 2022-09-13 20:54:57.421686 2022-09-13 20:54:57.935448 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -68 234 47 1 14.99 2022-09-13 20:54:26.866765 2022-09-13 20:54:27.468938 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -77 234 51 1 14.99 2022-09-13 20:56:20.759088 2022-09-13 20:56:22.105599 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -85 236 55 1 9.99 2022-09-13 20:58:47.233066 2022-09-13 20:58:47.527631 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -83 234 55 1 14.99 2022-09-13 20:58:16.463383 2022-09-13 20:58:16.723359 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -80 236 48 1 9.99 2022-09-13 20:56:50.845036 2022-09-13 20:56:52.044859 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -76 234 52 1 14.99 2022-09-13 20:56:20.705899 2022-09-13 20:56:22.31521 USD 1.14 \N 0.00 0.00 0.00 0.00 14.9900 0.00 0.00 \N \N -78 236 49 1 9.99 2022-09-13 20:56:50.35591 2022-09-13 20:56:50.963731 USD 1.10 \N 0.00 0.00 0.00 0.00 9.9900 0.00 0.00 \N \N -\. - - --- --- Data for Name: spree_log_entries; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_log_entries (id, source_type, source_id, details, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_menu_items; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_menu_items (id, name, subtitle, destination, new_window, item_type, linked_resource_type, linked_resource_id, code, parent_id, lft, rgt, depth, menu_id, created_at, updated_at) FROM stdin; -178 Faldas y blusas \N \N f Link Spree::Taxon 11 \N 173 341 342 2 8 2022-07-12 18:16:18.253333 2022-07-12 18:16:18.324457 -181 Chaquetas y abrigos \N \N f Link Spree::Taxon 14 \N 173 347 348 2 8 2022-07-12 18:16:18.617836 2022-07-12 18:16:18.687751 -176 Faldas \N \N f Link Spree::Taxon 9 \N 173 337 338 2 8 2022-07-12 18:16:18.029379 2022-07-12 18:16:18.103467 -177 Vestidos \N \N f Link Spree::Taxon 10 \N 173 339 340 2 8 2022-07-12 18:16:18.139141 2022-07-12 18:16:18.21771 -173 Hombres \N \N f Link Spree::Taxon 3 \N 8 336 349 1 8 2022-07-12 18:16:17.683957 2022-07-12 18:16:18.697248 -179 Suéteres \N \N f Link Spree::Taxon 12 \N 173 343 344 2 8 2022-07-12 18:16:18.359706 2022-07-12 18:16:18.474985 -180 Tops y camisetas \N \N f Link Spree::Taxon 13 \N 173 345 346 2 8 2022-07-12 18:16:18.510987 2022-07-12 18:16:18.581515 -184 Suéteres \N \N f Link Spree::Taxon 7 \N 174 355 356 2 8 2022-07-12 18:16:18.949087 2022-07-12 18:16:19.032075 -182 Camisas \N \N f Link Spree::Taxon 5 \N 174 351 352 2 8 2022-07-12 18:16:18.72249 2022-07-12 18:16:18.798276 -183 Camisetas \N \N f Link Spree::Taxon 6 \N 174 353 354 2 8 2022-07-12 18:16:18.83438 2022-07-12 18:16:18.908502 -187 Sudaderas \N \N f Link Spree::Taxon 16 \N 175 363 364 2 8 2022-07-12 18:16:19.299722 2022-07-12 18:16:19.375513 -185 Chaquetas y abrigos \N \N f Link Spree::Taxon 8 \N 174 357 358 2 8 2022-07-12 18:16:19.06704 2022-07-12 18:16:19.151727 -174 Mujeres \N \N f Link Spree::Taxon 2 \N 8 350 359 1 8 2022-07-12 18:16:17.797328 2022-07-12 18:16:19.161327 -186 Tops \N \N f Link Spree::Taxon 15 \N 175 361 362 2 8 2022-07-12 18:16:19.188723 2022-07-12 18:16:19.263099 -188 Pantalones \N \N f Link Spree::Taxon 17 \N 175 365 366 2 8 2022-07-12 18:16:19.411302 2022-07-12 18:16:19.485267 -175 Ropa de deporte \N \N f Link Spree::Taxon 4 \N 8 360 367 1 8 2022-07-12 18:16:17.91015 2022-07-12 18:16:19.494948 -13 Women \N \N f Link Spree::Taxon 3 \N 1 2 23 1 1 2022-07-12 18:15:59.925184 2022-07-12 18:16:02.13462 -198 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 195 386 387 3 9 2022-07-12 18:16:20.52199 2022-07-12 18:16:21.77083 -199 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 195 388 389 3 9 2022-07-12 18:16:20.646449 2022-07-12 18:16:21.77083 -195 Promos \N \N f Container URL \N promo 189 385 390 2 9 2022-07-12 18:16:20.182725 2022-07-12 18:16:21.77083 -200 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 196 404 405 3 9 2022-07-12 18:16:20.757251 2022-07-12 18:16:22.224639 -196 Promos \N \N f Container URL \N promo 190 403 408 2 9 2022-07-12 18:16:20.27005 2022-07-12 18:16:22.224639 -193 Catégories \N \N f Container URL \N category 190 393 402 2 9 2022-07-12 18:16:20.016185 2022-07-12 18:16:22.291893 -204 Jupes \N \N f Link Spree::Taxon 9 \N 192 372 373 3 9 2022-07-12 18:16:21.186861 2022-07-12 18:16:21.256082 -205 Robes \N \N f Link Spree::Taxon 10 \N 192 374 375 3 9 2022-07-12 18:16:21.293218 2022-07-12 18:16:21.372249 -208 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 192 380 381 3 9 2022-07-12 18:16:21.629632 2022-07-12 18:16:21.703473 -206 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 192 376 377 3 9 2022-07-12 18:16:21.410973 2022-07-12 18:16:21.487201 -207 Chandails \N \N f Link Spree::Taxon 12 \N 192 378 379 3 9 2022-07-12 18:16:21.524698 2022-07-12 18:16:21.595532 -191 Tenue de sport \N \N f Link Spree::Taxon 4 \N 9 410 425 1 9 2022-07-12 18:16:19.790662 2022-07-12 18:16:22.692378 -209 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 192 382 383 3 9 2022-07-12 18:16:21.748815 2022-07-12 18:16:21.826487 -192 Catégories \N \N f Container URL \N category 189 371 384 2 9 2022-07-12 18:16:19.923142 2022-07-12 18:16:21.836655 -189 Femmes \N \N f Link Spree::Taxon 3 \N 9 370 391 1 9 2022-07-12 18:16:19.525924 2022-07-12 18:16:21.836655 -194 Catégories \N \N f Container URL \N category 191 411 418 2 9 2022-07-12 18:16:20.0989 2022-07-12 18:16:22.692378 -201 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 196 406 407 3 9 2022-07-12 18:16:20.859316 2022-07-12 18:16:22.224639 -190 Hommes \N \N f Link Spree::Taxon 2 \N 9 392 409 1 9 2022-07-12 18:16:19.640314 2022-07-12 18:16:22.291893 -203 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 197 422 423 3 9 2022-07-12 18:16:21.079808 2022-07-12 18:16:22.60417 -197 Promos \N \N f Container URL \N promo 191 419 424 2 9 2022-07-12 18:16:20.406712 2022-07-12 18:16:22.60417 -202 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 197 420 421 3 9 2022-07-12 18:16:20.971732 2022-07-12 18:16:22.60417 -19 Promos \N \N f Container URL \N promo 13 17 22 2 1 2022-07-12 18:16:00.532599 2022-07-12 18:16:02.068813 -17 Categories \N \N f Container URL \N category 14 25 34 2 1 2022-07-12 18:16:00.361292 2022-07-12 18:16:02.586171 -21 Promos \N \N f Container URL \N promo 15 51 56 2 1 2022-07-12 18:16:00.705167 2022-07-12 18:16:02.857474 -18 Categories \N \N f Container URL \N category 15 43 50 2 1 2022-07-12 18:16:00.447117 2022-07-12 18:16:02.923833 -212 Chandails \N \N f Link Spree::Taxon 7 \N 193 398 399 3 9 2022-07-12 18:16:22.089573 2022-07-12 18:16:22.163575 -210 Chemises \N \N f Link Spree::Taxon 5 \N 193 394 395 3 9 2022-07-12 18:16:21.864325 2022-07-12 18:16:21.94185 -29 Dresses \N \N f Link Spree::Taxon 10 \N 16 6 7 3 1 2022-07-12 18:16:01.589901 2022-07-12 18:16:01.657924 -211 T-Shirts \N \N f Link Spree::Taxon 6 \N 193 396 397 3 9 2022-07-12 18:16:21.979421 2022-07-12 18:16:22.054213 -214 Hauts \N \N f Link Spree::Taxon 15 \N 194 412 413 3 9 2022-07-12 18:16:22.320972 2022-07-12 18:16:22.425981 -213 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 193 400 401 3 9 2022-07-12 18:16:22.203234 2022-07-12 18:16:22.280063 -215 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 194 414 415 3 9 2022-07-12 18:16:22.463356 2022-07-12 18:16:22.539545 -216 Pantalon \N \N f Link Spree::Taxon 17 \N 194 416 417 3 9 2022-07-12 18:16:22.583214 2022-07-12 18:16:22.657813 -220 Jupes \N \N f Link Spree::Taxon 9 \N 217 429 430 2 10 2022-07-12 18:16:23.090728 2022-07-12 18:16:23.163458 -28 Skirts \N \N f Link Spree::Taxon 9 \N 16 4 5 3 1 2022-07-12 18:16:01.484159 2022-07-12 18:16:01.554403 -221 Robes \N \N f Link Spree::Taxon 10 \N 217 431 432 2 10 2022-07-12 18:16:23.199227 2022-07-12 18:16:23.275844 -222 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 217 433 434 2 10 2022-07-12 18:16:23.316196 2022-07-12 18:16:23.396775 -31 Sweaters \N \N f Link Spree::Taxon 12 \N 16 10 11 3 1 2022-07-12 18:16:01.79645 2022-07-12 18:16:01.867842 -35 T-Shirts \N \N f Link Spree::Taxon 6 \N 17 28 29 3 1 2022-07-12 18:16:02.268207 2022-07-12 18:16:02.339678 -30 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 16 8 9 3 1 2022-07-12 18:16:01.691851 2022-07-12 18:16:01.761453 -32 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 16 12 13 3 1 2022-07-12 18:16:01.914618 2022-07-12 18:16:02.007106 -34 Shirts \N \N f Link Spree::Taxon 5 \N 17 26 27 3 1 2022-07-12 18:16:02.160211 2022-07-12 18:16:02.232295 -223 Chandails \N \N f Link Spree::Taxon 12 \N 217 435 436 2 10 2022-07-12 18:16:23.44502 2022-07-12 18:16:23.526019 -218 Hommes \N \N f Link Spree::Taxon 2 \N 10 442 451 1 10 2022-07-12 18:16:22.860569 2022-07-12 18:16:24.236757 -219 Tenue de sport \N \N f Link Spree::Taxon 4 \N 10 452 459 1 10 2022-07-12 18:16:22.979937 2022-07-12 18:16:24.660146 -22 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 19 18 19 3 1 2022-07-12 18:16:00.797958 2022-07-12 18:16:02.068813 -23 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 19 20 21 3 1 2022-07-12 18:16:00.913934 2022-07-12 18:16:02.068813 -33 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 16 14 15 3 1 2022-07-12 18:16:02.047314 2022-07-12 18:16:02.124898 -16 Categories \N \N f Container URL \N category 13 3 16 2 1 2022-07-12 18:16:00.276838 2022-07-12 18:16:02.13462 -38 Tops \N \N f Link Spree::Taxon 15 \N 18 44 45 3 1 2022-07-12 18:16:02.613424 2022-07-12 18:16:02.688582 -37 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 17 32 33 3 1 2022-07-12 18:16:02.498918 2022-07-12 18:16:02.575232 -14 Men \N \N f Link Spree::Taxon 2 \N 1 24 41 1 1 2022-07-12 18:16:00.048126 2022-07-12 18:16:02.586171 -36 Sweaters \N \N f Link Spree::Taxon 7 \N 17 30 31 3 1 2022-07-12 18:16:02.376106 2022-07-12 18:16:02.451163 -24 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 20 36 37 3 1 2022-07-12 18:16:01.018374 2022-07-12 18:16:02.519255 -25 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 20 38 39 3 1 2022-07-12 18:16:01.132199 2022-07-12 18:16:02.519255 -20 Promos \N \N f Container URL \N promo 14 35 40 2 1 2022-07-12 18:16:00.618361 2022-07-12 18:16:02.519255 -40 Pants \N \N f Link Spree::Taxon 17 \N 18 48 49 3 1 2022-07-12 18:16:02.837329 2022-07-12 18:16:02.914037 -1 Main Menu \N \N f Container URL \N \N \N 1 58 0 1 2022-07-12 18:15:59.143421 2022-07-12 18:16:02.923833 -15 Sportswear \N \N f Link Spree::Taxon 4 \N 1 42 57 1 1 2022-07-12 18:16:00.160437 2022-07-12 18:16:02.923833 -39 Sweatshirts \N \N f Link Spree::Taxon 16 \N 18 46 47 3 1 2022-07-12 18:16:02.723834 2022-07-12 18:16:02.79759 -27 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 21 54 55 3 1 2022-07-12 18:16:01.371349 2022-07-12 18:16:02.857474 -26 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 21 52 53 3 1 2022-07-12 18:16:01.242448 2022-07-12 18:16:02.857474 -46 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 41 65 66 2 2 2022-07-12 18:16:03.569808 2022-07-12 18:16:03.650898 -45 Dresses \N \N f Link Spree::Taxon 10 \N 41 63 64 2 2 2022-07-12 18:16:03.461418 2022-07-12 18:16:03.533974 -44 Skirts \N \N f Link Spree::Taxon 9 \N 41 61 62 2 2 2022-07-12 18:16:03.347637 2022-07-12 18:16:03.425274 -47 Sweaters \N \N f Link Spree::Taxon 12 \N 41 67 68 2 2 2022-07-12 18:16:03.689054 2022-07-12 18:16:03.763423 -48 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 41 69 70 2 2 2022-07-12 18:16:03.81649 2022-07-12 18:16:03.922173 -41 Women \N \N f Link Spree::Taxon 3 \N 2 60 73 1 2 2022-07-12 18:16:02.95408 2022-07-12 18:16:04.093336 -49 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 41 71 72 2 2 2022-07-12 18:16:04.002264 2022-07-12 18:16:04.083599 -50 Shirts \N \N f Link Spree::Taxon 5 \N 42 75 76 2 2 2022-07-12 18:16:04.119522 2022-07-12 18:16:04.189116 -228 Chandails \N \N f Link Spree::Taxon 7 \N 218 447 448 2 10 2022-07-12 18:16:24.008658 2022-07-12 18:16:24.092548 -224 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 217 437 438 2 10 2022-07-12 18:16:23.56419 2022-07-12 18:16:23.637355 -51 T-Shirts \N \N f Link Spree::Taxon 6 \N 42 77 78 2 2 2022-07-12 18:16:04.224173 2022-07-12 18:16:04.301427 -225 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 217 439 440 2 10 2022-07-12 18:16:23.676071 2022-07-12 18:16:23.748284 -217 Femmes \N \N f Link Spree::Taxon 3 \N 10 428 441 1 10 2022-07-12 18:16:22.725831 2022-07-12 18:16:23.758141 -226 Chemises \N \N f Link Spree::Taxon 5 \N 218 443 444 2 10 2022-07-12 18:16:23.784399 2022-07-12 18:16:23.854407 -52 Sweaters \N \N f Link Spree::Taxon 7 \N 42 79 80 2 2 2022-07-12 18:16:04.338662 2022-07-12 18:16:04.411605 -227 T-Shirts \N \N f Link Spree::Taxon 6 \N 218 445 446 2 10 2022-07-12 18:16:23.891601 2022-07-12 18:16:23.96507 -229 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 218 449 450 2 10 2022-07-12 18:16:24.144136 2022-07-12 18:16:24.226892 -230 Hauts \N \N f Link Spree::Taxon 15 \N 219 453 454 2 10 2022-07-12 18:16:24.271126 2022-07-12 18:16:24.344212 -53 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 42 81 82 2 2 2022-07-12 18:16:04.446423 2022-07-12 18:16:04.518213 -42 Men \N \N f Link Spree::Taxon 2 \N 2 74 83 1 2 2022-07-12 18:16:03.072454 2022-07-12 18:16:04.526998 -54 Tops \N \N f Link Spree::Taxon 15 \N 43 85 86 2 2 2022-07-12 18:16:04.552488 2022-07-12 18:16:04.621183 -56 Pants \N \N f Link Spree::Taxon 17 \N 43 89 90 2 2 2022-07-12 18:16:04.772054 2022-07-12 18:16:04.848894 -231 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 219 455 456 2 10 2022-07-12 18:16:24.40806 2022-07-12 18:16:24.483875 -232 Pantalon \N \N f Link Spree::Taxon 17 \N 219 457 458 2 10 2022-07-12 18:16:24.523788 2022-07-12 18:16:24.649127 -43 Sportswear \N \N f Link Spree::Taxon 4 \N 2 84 91 1 2 2022-07-12 18:16:03.211917 2022-07-12 18:16:04.857691 -2 Footer Menu \N \N f Container URL \N \N \N 59 92 0 2 2022-07-12 18:15:59.22014 2022-07-12 18:16:04.857691 -55 Sweatshirts \N \N f Link Spree::Taxon 16 \N 43 87 88 2 2 2022-07-12 18:16:04.655247 2022-07-12 18:16:04.733997 -233 Women \N \N f Link Spree::Taxon 3 \N 11 462 483 1 11 2022-07-12 18:16:24.6929 2022-07-12 18:16:27.277341 -236 Categories \N \N f Container URL \N category 233 463 476 2 11 2022-07-12 18:16:25.114871 2022-07-12 18:16:27.277341 -237 Categories \N \N f Container URL \N category 234 485 494 2 11 2022-07-12 18:16:25.260085 2022-07-12 18:16:27.833857 -242 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 239 478 479 3 11 2022-07-12 18:16:25.741152 2022-07-12 18:16:27.162605 -243 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 239 480 481 3 11 2022-07-12 18:16:25.845486 2022-07-12 18:16:27.162605 -239 Promos \N \N f Container URL \N promo 233 477 482 2 11 2022-07-12 18:16:25.495716 2022-07-12 18:16:27.162605 -69 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 64 130 131 3 3 2022-07-12 18:16:06.054858 2022-07-12 18:16:07.653824 -64 Promos \N \N f Container URL \N promo 58 127 132 2 3 2022-07-12 18:16:05.533674 2022-07-12 18:16:07.653824 -248 Skirts \N \N f Link Spree::Taxon 9 \N 236 464 465 3 11 2022-07-12 18:16:26.490512 2022-07-12 18:16:26.568946 -249 Dresses \N \N f Link Spree::Taxon 10 \N 236 466 467 3 11 2022-07-12 18:16:26.607277 2022-07-12 18:16:26.691129 -244 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 240 496 497 3 11 2022-07-12 18:16:25.958286 2022-07-12 18:16:27.69065 -245 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 240 498 499 3 11 2022-07-12 18:16:26.065757 2022-07-12 18:16:27.69065 -240 Promos \N \N f Container URL \N promo 234 495 500 2 11 2022-07-12 18:16:25.582515 2022-07-12 18:16:27.69065 -68 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 64 128 129 3 3 2022-07-12 18:16:05.948452 2022-07-12 18:16:07.653824 -234 Men \N \N f Link Spree::Taxon 2 \N 11 484 501 1 11 2022-07-12 18:16:24.909047 2022-07-12 18:16:27.833857 -241 Promos \N \N f Container URL \N promo 235 511 516 2 11 2022-07-12 18:16:25.66031 2022-07-12 18:16:28.194392 -238 Categories \N \N f Container URL \N category 235 503 510 2 11 2022-07-12 18:16:25.378174 2022-07-12 18:16:28.260935 -67 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 63 112 113 3 3 2022-07-12 18:16:05.839121 2022-07-12 18:16:07.222827 -63 Promos \N \N f Container URL \N promo 57 109 114 2 3 2022-07-12 18:16:05.453159 2022-07-12 18:16:07.222827 -66 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 63 110 111 3 3 2022-07-12 18:16:05.691651 2022-07-12 18:16:07.222827 -71 Offres spéciales Obtenez jusqu'à 30% de réduction \N f Link Spree::Taxon 26 \N 65 146 147 3 3 2022-07-12 18:16:06.501372 2022-07-12 18:16:08.011218 -62 Catégories \N \N f Container URL \N category 59 135 142 2 3 2022-07-12 18:16:05.37491 2022-07-12 18:16:08.093736 -72 Jupes \N \N f Link Spree::Taxon 9 \N 60 96 97 3 3 2022-07-12 18:16:06.60538 2022-07-12 18:16:06.675428 -73 Robes \N \N f Link Spree::Taxon 10 \N 60 98 99 3 3 2022-07-12 18:16:06.709929 2022-07-12 18:16:06.778611 -253 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 236 474 475 3 11 2022-07-12 18:16:27.116728 2022-07-12 18:16:27.266463 -250 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 236 468 469 3 11 2022-07-12 18:16:26.733256 2022-07-12 18:16:26.81566 -74 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 60 100 101 3 3 2022-07-12 18:16:06.81252 2022-07-12 18:16:06.881393 -75 Chandails \N \N f Link Spree::Taxon 12 \N 60 102 103 3 3 2022-07-12 18:16:06.940046 2022-07-12 18:16:07.052828 -76 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 60 104 105 3 3 2022-07-12 18:16:07.09216 2022-07-12 18:16:07.166314 -252 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 236 472 473 3 11 2022-07-12 18:16:26.988478 2022-07-12 18:16:27.073753 -251 Sweaters \N \N f Link Spree::Taxon 12 \N 236 470 471 3 11 2022-07-12 18:16:26.857262 2022-07-12 18:16:26.939308 -79 T-Shirts \N \N f Link Spree::Taxon 6 \N 61 120 121 3 3 2022-07-12 18:16:07.421984 2022-07-12 18:16:07.497292 -77 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 60 106 107 3 3 2022-07-12 18:16:07.20316 2022-07-12 18:16:07.275165 -60 Catégories \N \N f Container URL \N category 57 95 108 2 3 2022-07-12 18:16:05.219714 2022-07-12 18:16:07.284538 -57 Femmes \N \N f Link Spree::Taxon 3 \N 3 94 115 1 3 2022-07-12 18:16:04.88517 2022-07-12 18:16:07.284538 -78 Chemises \N \N f Link Spree::Taxon 5 \N 61 118 119 3 3 2022-07-12 18:16:07.31263 2022-07-12 18:16:07.384427 -255 T-Shirts \N \N f Link Spree::Taxon 6 \N 237 488 489 3 11 2022-07-12 18:16:27.426164 2022-07-12 18:16:27.500721 -254 Shirts \N \N f Link Spree::Taxon 5 \N 237 486 487 3 11 2022-07-12 18:16:27.305543 2022-07-12 18:16:27.389067 -80 Chandails \N \N f Link Spree::Taxon 7 \N 61 122 123 3 3 2022-07-12 18:16:07.533449 2022-07-12 18:16:07.601037 -65 Promos \N \N f Container URL \N promo 59 143 148 2 3 2022-07-12 18:16:05.613224 2022-07-12 18:16:08.011218 -70 Nouvelle collection Été 2022 \N f Link Spree::Taxon 24 \N 65 144 145 3 3 2022-07-12 18:16:06.233898 2022-07-12 18:16:08.011218 -256 Sweaters \N \N f Link Spree::Taxon 7 \N 237 490 491 3 11 2022-07-12 18:16:27.537085 2022-07-12 18:16:27.615277 -59 Tenue de sport \N \N f Link Spree::Taxon 4 \N 3 134 149 1 3 2022-07-12 18:16:05.103421 2022-07-12 18:16:08.093736 -257 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 237 492 493 3 11 2022-07-12 18:16:27.658187 2022-07-12 18:16:27.77581 -258 Tops \N \N f Link Spree::Taxon 15 \N 238 504 505 3 11 2022-07-12 18:16:27.923179 2022-07-12 18:16:28.009045 -259 Sweatshirts \N \N f Link Spree::Taxon 16 \N 238 506 507 3 11 2022-07-12 18:16:28.050368 2022-07-12 18:16:28.132145 -265 Dresses \N \N f Link Spree::Taxon 10 \N 261 523 524 2 12 2022-07-12 18:16:28.952803 2022-07-12 18:16:29.048613 -246 New Collection Summer 2022 \N f Link Spree::Taxon 24 \N 241 512 513 3 11 2022-07-12 18:16:26.242962 2022-07-12 18:16:28.194392 -247 Special Offers Get up to 30% off \N f Link Spree::Taxon 26 \N 241 514 515 3 11 2022-07-12 18:16:26.368249 2022-07-12 18:16:28.194392 -260 Pants \N \N f Link Spree::Taxon 17 \N 238 508 509 3 11 2022-07-12 18:16:28.17246 2022-07-12 18:16:28.250547 -11 Main Menu \N \N f Container URL \N \N \N 461 518 0 11 2022-07-12 18:15:59.791958 2022-07-12 18:16:28.260935 -235 Sportswear \N \N f Link Spree::Taxon 4 \N 11 502 517 1 11 2022-07-12 18:16:25.013426 2022-07-12 18:16:28.260935 -264 Skirts \N \N f Link Spree::Taxon 9 \N 261 521 522 2 12 2022-07-12 18:16:28.704003 2022-07-12 18:16:28.84461 -266 Skirts and Blouses \N \N f Link Spree::Taxon 11 \N 261 525 526 2 12 2022-07-12 18:16:29.107446 2022-07-12 18:16:29.247452 -267 Sweaters \N \N f Link Spree::Taxon 12 \N 261 527 528 2 12 2022-07-12 18:16:29.307422 2022-07-12 18:16:29.513812 -4 Footer Menu \N \N f Container URL \N \N \N 151 184 0 4 2022-07-12 18:15:59.351844 2022-07-12 18:16:09.875256 -268 Tops and T-Shirts \N \N f Link Spree::Taxon 13 \N 261 529 530 2 12 2022-07-12 18:16:29.568456 2022-07-12 18:16:29.698394 -269 Jackets and Coats \N \N f Link Spree::Taxon 14 \N 261 531 532 2 12 2022-07-12 18:16:29.740986 2022-07-12 18:16:29.826098 -261 Women \N \N f Link Spree::Taxon 3 \N 12 520 533 1 12 2022-07-12 18:16:28.290205 2022-07-12 18:16:29.837157 -270 Shirts \N \N f Link Spree::Taxon 5 \N 262 535 536 2 12 2022-07-12 18:16:29.867127 2022-07-12 18:16:29.979811 -271 T-Shirts \N \N f Link Spree::Taxon 6 \N 262 537 538 2 12 2022-07-12 18:16:30.057084 2022-07-12 18:16:30.171433 -272 Sweaters \N \N f Link Spree::Taxon 7 \N 262 539 540 2 12 2022-07-12 18:16:30.239274 2022-07-12 18:16:30.321534 -273 Jackets and Coats \N \N f Link Spree::Taxon 8 \N 262 541 542 2 12 2022-07-12 18:16:30.361799 2022-07-12 18:16:30.446263 -262 Men \N \N f Link Spree::Taxon 2 \N 12 534 543 1 12 2022-07-12 18:16:28.421665 2022-07-12 18:16:30.457717 -263 Sportswear \N \N f Link Spree::Taxon 4 \N 12 544 551 1 12 2022-07-12 18:16:28.5416 2022-07-12 18:16:30.914075 -3 Main Menu \N \N f Container URL \N \N \N 93 150 0 3 2022-07-12 18:15:59.2857 2022-07-12 18:16:08.093736 -276 Pants \N \N f Link Spree::Taxon 17 \N 263 549 550 2 12 2022-07-12 18:16:30.804071 2022-07-12 18:16:30.897248 -274 Tops \N \N f Link Spree::Taxon 15 \N 263 545 546 2 12 2022-07-12 18:16:30.488522 2022-07-12 18:16:30.610162 -81 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 61 124 125 3 3 2022-07-12 18:16:07.634685 2022-07-12 18:16:07.704586 -12 Footer Menu \N \N f Container URL \N \N \N 519 552 0 12 2022-07-12 18:15:59.858026 2022-07-12 18:16:30.914075 -61 Catégories \N \N f Container URL \N category 58 117 126 2 3 2022-07-12 18:16:05.295846 2022-07-12 18:16:07.714091 -58 Hommes \N \N f Link Spree::Taxon 2 \N 3 116 133 1 3 2022-07-12 18:16:04.99253 2022-07-12 18:16:07.714091 -275 Sweatshirts \N \N f Link Spree::Taxon 16 \N 263 547 548 2 12 2022-07-12 18:16:30.650545 2022-07-12 18:16:30.757938 -82 Hauts \N \N f Link Spree::Taxon 15 \N 62 136 137 3 3 2022-07-12 18:16:07.739879 2022-07-12 18:16:07.810092 -83 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 62 138 139 3 3 2022-07-12 18:16:07.844326 2022-07-12 18:16:07.931703 -88 Jupes \N \N f Link Spree::Taxon 9 \N 85 153 154 2 4 2022-07-12 18:16:08.464494 2022-07-12 18:16:08.543847 -84 Pantalon \N \N f Link Spree::Taxon 17 \N 62 140 141 3 3 2022-07-12 18:16:07.973213 2022-07-12 18:16:08.083199 -90 Jupes et chemisiers \N \N f Link Spree::Taxon 11 \N 85 157 158 2 4 2022-07-12 18:16:08.689086 2022-07-12 18:16:08.760486 -89 Robes \N \N f Link Spree::Taxon 10 \N 85 155 156 2 4 2022-07-12 18:16:08.582004 2022-07-12 18:16:08.653533 -92 Hauts et T-shirts \N \N f Link Spree::Taxon 13 \N 85 161 162 2 4 2022-07-12 18:16:08.916718 2022-07-12 18:16:08.996008 -91 Chandails \N \N f Link Spree::Taxon 12 \N 85 159 160 2 4 2022-07-12 18:16:08.795268 2022-07-12 18:16:08.873268 -94 Chemises \N \N f Link Spree::Taxon 5 \N 86 167 168 2 4 2022-07-12 18:16:09.152042 2022-07-12 18:16:09.22416 -93 Vestes et manteaux \N \N f Link Spree::Taxon 14 \N 85 163 164 2 4 2022-07-12 18:16:09.041799 2022-07-12 18:16:09.11485 -85 Femmes \N \N f Link Spree::Taxon 3 \N 4 152 165 1 4 2022-07-12 18:16:08.123484 2022-07-12 18:16:09.124892 -96 Chandails \N \N f Link Spree::Taxon 7 \N 86 171 172 2 4 2022-07-12 18:16:09.368805 2022-07-12 18:16:09.438882 -95 T-Shirts \N \N f Link Spree::Taxon 6 \N 86 169 170 2 4 2022-07-12 18:16:09.261081 2022-07-12 18:16:09.333466 -97 Vestes et manteaux \N \N f Link Spree::Taxon 8 \N 86 173 174 2 4 2022-07-12 18:16:09.47464 2022-07-12 18:16:09.548105 -86 Hommes \N \N f Link Spree::Taxon 2 \N 4 166 175 1 4 2022-07-12 18:16:08.237913 2022-07-12 18:16:09.558251 -98 Hauts \N \N f Link Spree::Taxon 15 \N 87 177 178 2 4 2022-07-12 18:16:09.583726 2022-07-12 18:16:09.656647 -99 Pulls molletonnés \N \N f Link Spree::Taxon 16 \N 87 179 180 2 4 2022-07-12 18:16:09.692311 2022-07-12 18:16:09.762977 -100 Pantalon \N \N f Link Spree::Taxon 17 \N 87 181 182 2 4 2022-07-12 18:16:09.797261 2022-07-12 18:16:09.865739 -87 Tenue de sport \N \N f Link Spree::Taxon 4 \N 4 176 183 1 4 2022-07-12 18:16:08.346974 2022-07-12 18:16:09.875256 -116 die Röcke \N \N f Link Spree::Taxon 9 \N 104 188 189 3 5 2022-07-12 18:16:11.423866 2022-07-12 18:16:11.493519 -117 Kleider \N \N f Link Spree::Taxon 10 \N 104 190 191 3 5 2022-07-12 18:16:11.529248 2022-07-12 18:16:11.599326 -111 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 107 204 205 3 5 2022-07-12 18:16:10.869315 2022-07-12 18:16:12.006089 -107 Promos \N \N f Container URL \N promo 101 201 206 2 5 2022-07-12 18:16:10.490291 2022-07-12 18:16:12.006089 -110 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 107 202 203 3 5 2022-07-12 18:16:10.765806 2022-07-12 18:16:12.006089 -113 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 108 222 223 3 5 2022-07-12 18:16:11.095844 2022-07-12 18:16:12.424421 -105 Kategorien \N \N f Container URL \N category 102 209 218 2 5 2022-07-12 18:16:10.321303 2022-07-12 18:16:12.487164 -102 Männer \N \N f Link Spree::Taxon 2 \N 5 208 225 1 5 2022-07-12 18:16:10.015362 2022-07-12 18:16:12.487164 -118 Röcke und Blusen \N \N f Link Spree::Taxon 11 \N 104 192 193 3 5 2022-07-12 18:16:11.634012 2022-07-12 18:16:11.704194 -119 Pullovers \N \N f Link Spree::Taxon 12 \N 104 194 195 3 5 2022-07-12 18:16:11.73996 2022-07-12 18:16:11.808621 -104 Kategorien \N \N f Container URL \N category 101 187 200 2 5 2022-07-12 18:16:10.234709 2022-07-12 18:16:12.065465 -108 Promos \N \N f Container URL \N promo 102 219 224 2 5 2022-07-12 18:16:10.602541 2022-07-12 18:16:12.424421 -112 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 108 220 221 3 5 2022-07-12 18:16:10.979669 2022-07-12 18:16:12.424421 -106 Kategorien \N \N f Container URL \N category 103 227 234 2 5 2022-07-12 18:16:10.408599 2022-07-12 18:16:12.809825 -103 Sportbekleidung \N \N f Link Spree::Taxon 4 \N 5 226 241 1 5 2022-07-12 18:16:10.12224 2022-07-12 18:16:12.809825 -109 Promos \N \N f Container URL \N promo 103 235 240 2 5 2022-07-12 18:16:10.682816 2022-07-12 18:16:12.742372 -114 Neue Kollektion Sommer 2022 \N f Link Spree::Taxon 24 \N 109 236 237 3 5 2022-07-12 18:16:11.21019 2022-07-12 18:16:12.742372 -120 Tops und T-Shirts \N \N f Link Spree::Taxon 13 \N 104 196 197 3 5 2022-07-12 18:16:11.873201 2022-07-12 18:16:11.949605 -127 Sweatshirts \N \N f Link Spree::Taxon 16 \N 106 230 231 3 5 2022-07-12 18:16:12.61591 2022-07-12 18:16:12.686681 -121 Jacken und Mäntel \N \N f Link Spree::Taxon 14 \N 104 198 199 3 5 2022-07-12 18:16:11.985858 2022-07-12 18:16:12.05675 -101 Frauen \N \N f Link Spree::Taxon 3 \N 5 186 207 1 5 2022-07-12 18:16:09.90295 2022-07-12 18:16:12.065465 -122 Hemden \N \N f Link Spree::Taxon 5 \N 105 210 211 3 5 2022-07-12 18:16:12.091517 2022-07-12 18:16:12.159741 -123 T-Shirts \N \N f Link Spree::Taxon 6 \N 105 212 213 3 5 2022-07-12 18:16:12.194667 2022-07-12 18:16:12.266682 -124 Pullovers \N \N f Link Spree::Taxon 7 \N 105 214 215 3 5 2022-07-12 18:16:12.301724 2022-07-12 18:16:12.370008 -125 Jacken und Mäntel \N \N f Link Spree::Taxon 8 \N 105 216 217 3 5 2022-07-12 18:16:12.405098 2022-07-12 18:16:12.477752 -126 Tops \N \N f Link Spree::Taxon 15 \N 106 228 229 3 5 2022-07-12 18:16:12.512584 2022-07-12 18:16:12.582008 -115 Sonderangebote Erhalten Sie bis zu 30% Rabatt \N f Link Spree::Taxon 26 \N 109 238 239 3 5 2022-07-12 18:16:11.314381 2022-07-12 18:16:12.742372 -128 Hose \N \N f Link Spree::Taxon 17 \N 106 232 233 3 5 2022-07-12 18:16:12.721614 2022-07-12 18:16:12.800166 -5 Main Menu \N \N f Container URL \N \N \N 185 242 0 5 2022-07-12 18:15:59.415524 2022-07-12 18:16:12.809825 -133 Kleider \N \N f Link Spree::Taxon 10 \N 129 247 248 2 6 2022-07-12 18:16:13.294889 2022-07-12 18:16:13.366046 -132 die Röcke \N \N f Link Spree::Taxon 9 \N 129 245 246 2 6 2022-07-12 18:16:13.191497 2022-07-12 18:16:13.260142 -139 T-Shirts \N \N f Link Spree::Taxon 6 \N 130 261 262 2 6 2022-07-12 18:16:13.957477 2022-07-12 18:16:14.026105 -134 Röcke und Blusen \N \N f Link Spree::Taxon 11 \N 129 249 250 2 6 2022-07-12 18:16:13.402349 2022-07-12 18:16:13.472809 -135 Pullovers \N \N f Link Spree::Taxon 12 \N 129 251 252 2 6 2022-07-12 18:16:13.508149 2022-07-12 18:16:13.576544 -138 Hemden \N \N f Link Spree::Taxon 5 \N 130 259 260 2 6 2022-07-12 18:16:13.854035 2022-07-12 18:16:13.922754 -136 Tops und T-Shirts \N \N f Link Spree::Taxon 13 \N 129 253 254 2 6 2022-07-12 18:16:13.610237 2022-07-12 18:16:13.67762 -137 Jacken und Mäntel \N \N f Link Spree::Taxon 14 \N 129 255 256 2 6 2022-07-12 18:16:13.74701 2022-07-12 18:16:13.816978 -129 Frauen \N \N f Link Spree::Taxon 3 \N 6 244 257 1 6 2022-07-12 18:16:12.839446 2022-07-12 18:16:13.826884 -141 Jacken und Mäntel \N \N f Link Spree::Taxon 8 \N 130 265 266 2 6 2022-07-12 18:16:14.168722 2022-07-12 18:16:14.241009 -130 Männer \N \N f Link Spree::Taxon 2 \N 6 258 267 1 6 2022-07-12 18:16:12.948813 2022-07-12 18:16:14.254641 -140 Pullovers \N \N f Link Spree::Taxon 7 \N 130 263 264 2 6 2022-07-12 18:16:14.06157 2022-07-12 18:16:14.133058 -142 Tops \N \N f Link Spree::Taxon 15 \N 131 269 270 2 6 2022-07-12 18:16:14.284798 2022-07-12 18:16:14.355243 -143 Sweatshirts \N \N f Link Spree::Taxon 16 \N 131 271 272 2 6 2022-07-12 18:16:14.390811 2022-07-12 18:16:14.461711 -144 Hose \N \N f Link Spree::Taxon 17 \N 131 273 274 2 6 2022-07-12 18:16:14.496562 2022-07-12 18:16:14.566241 -6 Footer Menu \N \N f Container URL \N \N \N 243 276 0 6 2022-07-12 18:15:59.477991 2022-07-12 18:16:14.576037 -131 Sportbekleidung \N \N f Link Spree::Taxon 4 \N 6 268 275 1 6 2022-07-12 18:16:13.053144 2022-07-12 18:16:14.576037 -147 Ropa de deporte \N \N f Link Spree::Taxon 4 \N 7 318 333 1 7 2022-07-12 18:16:14.849262 2022-07-12 18:16:17.652974 -160 Faldas \N \N f Link Spree::Taxon 9 \N 148 280 281 3 7 2022-07-12 18:16:16.176558 2022-07-12 18:16:16.280832 -154 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 151 294 295 3 7 2022-07-12 18:16:15.479161 2022-07-12 18:16:16.804815 -155 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 151 296 297 3 7 2022-07-12 18:16:15.606188 2022-07-12 18:16:16.804815 -157 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 152 314 315 3 7 2022-07-12 18:16:15.840292 2022-07-12 18:16:17.270174 -152 Promos \N \N f Container URL \N promo 146 311 316 2 7 2022-07-12 18:16:15.305912 2022-07-12 18:16:17.270174 -149 Categorías \N \N f Container URL \N category 146 301 310 2 7 2022-07-12 18:16:15.047777 2022-07-12 18:16:17.328097 -146 Mujeres \N \N f Link Spree::Taxon 2 \N 7 300 317 1 7 2022-07-12 18:16:14.740433 2022-07-12 18:16:17.328097 -153 Promos \N \N f Container URL \N promo 147 327 332 2 7 2022-07-12 18:16:15.391376 2022-07-12 18:16:17.588794 -150 Categorías \N \N f Container URL \N category 147 319 326 2 7 2022-07-12 18:16:15.131401 2022-07-12 18:16:17.652974 -7 Main Menu \N \N f Container URL \N \N \N 277 334 0 7 2022-07-12 18:15:59.540908 2022-07-12 18:16:17.652974 -163 Suéteres \N \N f Link Spree::Taxon 12 \N 148 286 287 3 7 2022-07-12 18:16:16.557279 2022-07-12 18:16:16.634484 -165 Chaquetas y abrigos \N \N f Link Spree::Taxon 14 \N 148 290 291 3 7 2022-07-12 18:16:16.782451 2022-07-12 18:16:16.880138 -148 Categorías \N \N f Container URL \N category 145 279 292 2 7 2022-07-12 18:16:14.963312 2022-07-12 18:16:16.890465 -161 Vestidos \N \N f Link Spree::Taxon 10 \N 148 282 283 3 7 2022-07-12 18:16:16.316112 2022-07-12 18:16:16.393489 -162 Faldas y blusas \N \N f Link Spree::Taxon 11 \N 148 284 285 3 7 2022-07-12 18:16:16.431737 2022-07-12 18:16:16.51697 -145 Hombres \N \N f Link Spree::Taxon 3 \N 7 278 299 1 7 2022-07-12 18:16:14.612494 2022-07-12 18:16:16.890465 -164 Tops y camisetas \N \N f Link Spree::Taxon 13 \N 148 288 289 3 7 2022-07-12 18:16:16.670529 2022-07-12 18:16:16.743458 -151 Promos \N \N f Container URL \N promo 145 293 298 2 7 2022-07-12 18:16:15.215554 2022-07-12 18:16:16.804815 -168 Suéteres \N \N f Link Spree::Taxon 7 \N 149 306 307 3 7 2022-07-12 18:16:17.149096 2022-07-12 18:16:17.217896 -166 Camisas \N \N f Link Spree::Taxon 5 \N 149 302 303 3 7 2022-07-12 18:16:16.915994 2022-07-12 18:16:16.986171 -167 Camisetas \N \N f Link Spree::Taxon 6 \N 149 304 305 3 7 2022-07-12 18:16:17.022571 2022-07-12 18:16:17.113366 -8 Footer Menu \N \N f Container URL \N \N \N 335 368 0 8 2022-07-12 18:15:59.602112 2022-07-12 18:16:19.494948 -156 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 152 312 313 3 7 2022-07-12 18:16:15.726256 2022-07-12 18:16:17.270174 -169 Chaquetas y abrigos \N \N f Link Spree::Taxon 8 \N 149 308 309 3 7 2022-07-12 18:16:17.250783 2022-07-12 18:16:17.318879 -170 Tops \N \N f Link Spree::Taxon 15 \N 150 320 321 3 7 2022-07-12 18:16:17.359002 2022-07-12 18:16:17.428223 -171 Sudaderas \N \N f Link Spree::Taxon 16 \N 150 322 323 3 7 2022-07-12 18:16:17.464596 2022-07-12 18:16:17.535584 -172 Pantalones \N \N f Link Spree::Taxon 17 \N 150 324 325 3 7 2022-07-12 18:16:17.570096 2022-07-12 18:16:17.642996 -158 Nueva colección Verano 2022 \N f Link Spree::Taxon 24 \N 153 328 329 3 7 2022-07-12 18:16:15.949081 2022-07-12 18:16:17.588794 -159 Ofertas especiales Obtenga hasta un 30% de descuento \N f Link Spree::Taxon 26 \N 153 330 331 3 7 2022-07-12 18:16:16.06217 2022-07-12 18:16:17.588794 -9 Main Menu \N \N f Container URL \N \N \N 369 426 0 9 2022-07-12 18:15:59.662146 2022-07-12 18:16:22.692378 -10 Footer Menu \N \N f Container URL \N \N \N 427 460 0 10 2022-07-12 18:15:59.726973 2022-07-12 18:16:24.660146 -\. - - --- --- Data for Name: spree_menus; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_menus (id, name, location, locale, store_id, created_at, updated_at) FROM stdin; -3 Main Menu header fr 1 2022-07-12 18:15:59.278193 2022-07-12 18:16:08.096182 -8 Footer Menu footer es 2 2022-07-12 18:15:59.595654 2022-07-12 18:16:19.497937 -9 Main Menu header fr 2 2022-07-12 18:15:59.655887 2022-07-12 18:16:22.695835 -12 Footer Menu footer en 3 2022-07-12 18:15:59.850698 2022-07-12 18:16:30.918084 -6 Footer Menu footer de 2 2022-07-12 18:15:59.471447 2022-07-12 18:16:14.578473 -1 Main Menu header en 1 2022-07-12 18:15:59.112649 2022-07-12 18:16:02.926622 -7 Main Menu header es 2 2022-07-12 18:15:59.534298 2022-07-12 18:16:17.655939 -4 Footer Menu footer fr 1 2022-07-12 18:15:59.344559 2022-07-12 18:16:09.877427 -10 Footer Menu footer fr 2 2022-07-12 18:15:59.719748 2022-07-12 18:16:24.662992 -5 Main Menu header de 2 2022-07-12 18:15:59.408425 2022-07-12 18:16:12.812342 -11 Main Menu header en 3 2022-07-12 18:15:59.78479 2022-07-12 18:16:28.263516 -2 Footer Menu footer en 1 2022-07-12 18:15:59.212098 2022-07-12 18:16:04.860126 -\. - - --- --- Data for Name: spree_oauth_access_grants; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_oauth_access_grants (id, resource_owner_id, application_id, token, expires_in, redirect_uri, created_at, revoked_at, scopes, resource_owner_type) FROM stdin; -\. - - --- --- Data for Name: spree_oauth_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_oauth_access_tokens (id, resource_owner_id, application_id, token, refresh_token, expires_in, revoked_at, created_at, scopes, previous_refresh_token, resource_owner_type) FROM stdin; -1 1 1 b84602d1aee3f43be73c5de6d8b9e5eb5bb5100aaf6bcbaa04e430d043fd7947 \N \N \N 2022-07-12 18:19:31.696499 admin Spree::User -2 2 1 67a069f660192e3ee50211a2380902ff9bc0f9fbc1d77bddd76cad619a02c794 \N \N \N 2022-09-02 16:11:18.640547 admin Spree::User -\. - - --- --- Data for Name: spree_oauth_applications; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_oauth_applications (id, name, uid, secret, redirect_uri, scopes, confidential, created_at, updated_at) FROM stdin; -1 Admin Panel K2iYvzyIbnMTYcWvXdb9Hvmcl17IwbIkYu4fx0Q_1JU $2a$12$85A8XIJqto3p/9GYFRtPTO4PRIkTFqMCNy9p41NIaF6yULV3/3IRi admin t 2022-07-12 18:19:31.671114 2022-07-12 18:19:31.671114 -\. - - --- --- Data for Name: spree_option_type_prototypes; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_option_type_prototypes (id, prototype_id, option_type_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_option_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_option_types (id, name, presentation, "position", created_at, updated_at, filterable, public_metadata, private_metadata) FROM stdin; -1 color Color 1 2022-07-12 18:13:13.145688 2022-07-12 18:13:13.770891 t \N \N -2 length Length 2 2022-07-12 18:13:13.169901 2022-07-12 18:13:13.853424 t \N \N -3 size Size 3 2022-07-12 18:13:13.188637 2022-07-12 18:13:14.004039 t \N \N -\. - - --- --- Data for Name: spree_option_value_variants; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_option_value_variants (id, variant_id, option_value_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_option_values; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_option_values (id, "position", name, presentation, option_type_id, created_at, updated_at, public_metadata, private_metadata) FROM stdin; -1 1 white #FFFFFF 1 2022-07-12 18:13:13.230717 2022-07-12 18:13:13.230717 \N \N -2 2 purple #800080 1 2022-07-12 18:13:13.283786 2022-07-12 18:13:13.283786 \N \N -3 3 red #FF0000 1 2022-07-12 18:13:13.313767 2022-07-12 18:13:13.313767 \N \N -4 4 black #000000 1 2022-07-12 18:13:13.342159 2022-07-12 18:13:13.342159 \N \N -5 5 brown #8B4513 1 2022-07-12 18:13:13.370351 2022-07-12 18:13:13.370351 \N \N -6 6 green #228C22 1 2022-07-12 18:13:13.398116 2022-07-12 18:13:13.398116 \N \N -7 7 grey #808080 1 2022-07-12 18:13:13.425584 2022-07-12 18:13:13.425584 \N \N -8 8 orange #FF8800 1 2022-07-12 18:13:13.454228 2022-07-12 18:13:13.454228 \N \N -9 9 burgundy #A8003B 1 2022-07-12 18:13:13.481586 2022-07-12 18:13:13.481586 \N \N -10 10 beige #E1C699 1 2022-07-12 18:13:13.509184 2022-07-12 18:13:13.509184 \N \N -11 11 mint #AAF0D1 1 2022-07-12 18:13:13.537742 2022-07-12 18:13:13.537742 \N \N -12 12 blue #0000FF 1 2022-07-12 18:13:13.564972 2022-07-12 18:13:13.564972 \N \N -13 13 dark_blue #00008b 1 2022-07-12 18:13:13.592373 2022-07-12 18:13:13.592373 \N \N -14 14 khaki #BDB76B 1 2022-07-12 18:13:13.619919 2022-07-12 18:13:13.619919 \N \N -15 15 yellow #FFFF00 1 2022-07-12 18:13:13.649318 2022-07-12 18:13:13.649318 \N \N -16 16 light_blue #add8e6 1 2022-07-12 18:13:13.676746 2022-07-12 18:13:13.676746 \N \N -17 17 pink #FFA6C9 1 2022-07-12 18:13:13.704771 2022-07-12 18:13:13.704771 \N \N -18 18 lila #cf9de6 1 2022-07-12 18:13:13.733176 2022-07-12 18:13:13.733176 \N \N -19 19 ecru #F4F2D6 1 2022-07-12 18:13:13.760093 2022-07-12 18:13:13.760093 \N \N -20 1 mini Mini 2 2022-07-12 18:13:13.788773 2022-07-12 18:13:13.788773 \N \N -21 2 midi Midi 2 2022-07-12 18:13:13.816447 2022-07-12 18:13:13.816447 \N \N -22 3 maxi Maxi 2 2022-07-12 18:13:13.843596 2022-07-12 18:13:13.843596 \N \N -23 1 xs XS 3 2022-07-12 18:13:13.876729 2022-07-12 18:13:13.876729 \N \N -24 2 s S 3 2022-07-12 18:13:13.905509 2022-07-12 18:13:13.905509 \N \N -25 3 m M 3 2022-07-12 18:13:13.935471 2022-07-12 18:13:13.935471 \N \N -26 4 l L 3 2022-07-12 18:13:13.964814 2022-07-12 18:13:13.964814 \N \N -27 5 xl XL 3 2022-07-12 18:13:13.993532 2022-07-12 18:13:13.993532 \N \N -\. - - --- --- Data for Name: spree_order_promotions; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_order_promotions (id, order_id, promotion_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_orders; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_orders (id, number, item_total, total, state, adjustment_total, user_id, completed_at, bill_address_id, ship_address_id, payment_total, shipment_state, payment_state, email, special_instructions, created_at, updated_at, currency, last_ip_address, created_by_id, shipment_total, additional_tax_total, promo_total, channel, included_tax_total, item_count, approver_id, approved_at, confirmation_delivered, considered_risky, token, canceled_at, canceler_id, store_id, state_lock_version, taxable_adjustment_total, non_taxable_adjustment_total, store_owner_notification_delivered, public_metadata, private_metadata) FROM stdin; -2 R987654321 0.00 0.00 canceled 0.00 \N 2022-07-11 18:15:53.281705 2 1 0.00 \N void spree@example.com \N 2022-07-12 18:15:52.636207 2022-09-02 16:14:11.491892 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f poKaeWdp_inQUfj83neBvA1657649752636 2022-09-02 16:14:11.496515 2 1 0 0.00 0.00 \N \N \N -3 R691665949 20.00 20.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-02 16:37:05.152169 2022-09-02 17:23:28.937959 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f UCMORL6RsgD5KSCfX1ccUA1662136625088 \N \N 1 0 0.00 0.00 \N \N \N -1 R123456789 0.00 0.00 canceled 0.00 \N 2022-07-11 18:15:53.267702 \N \N 0.00 \N void spree@example.com \N 2022-07-12 18:15:52.595288 2022-09-02 18:27:34.308335 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 6kwqk1CtUk2kXQ-eZ_8gNQ1657649752595 2022-09-02 16:15:04.926634 2 1 0 0.00 0.00 \N \N \N -4 R346838356 5.00 5.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-02 18:24:21.981797 2022-09-02 18:42:33.844218 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f hq9AnjpYeNJMsEOsENgKow1662143061896 \N \N 1 0 0.00 0.00 \N \N \N -5 R204709928 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-08 15:30:50.413539 2022-09-08 15:30:50.413539 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f HiSmJq5m74bASbPgs9hKzg1662651050359 \N \N 1 0 0.00 0.00 \N \N \N -6 R927290377 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-08 18:46:13.239791 2022-09-08 18:46:13.239791 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f tOproEPa7Tg_egjcghuBuA1662662773144 \N \N 1 0 0.00 0.00 \N \N \N -8 R216180865 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.537857 2022-09-13 20:40:39.537857 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WAdND3JbK2OWo0hSSfR9PQ1663101639463 \N \N 1 0 0.00 0.00 \N \N \N -9 R709661596 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.762272 2022-09-13 20:40:39.762272 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WWWk5s-DvvV5FIIHTU3eLA1663101639628 \N \N 1 0 0.00 0.00 \N \N \N -24 R035858575 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:23.250422 2022-09-13 20:46:23.250422 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f OoyVku4wMIEdkc97j0poww1663101983113 \N \N 1 0 0.00 0.00 \N \N \N -14 R114707512 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:37.176246 2022-09-13 20:43:28.302536 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f jsu3Rw2WAHmGWoLQOHvTFw1663101757144 \N \N 1 0 0.00 0.00 \N \N \N -19 R741717240 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.048317 2022-09-13 20:45:22.032435 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f kUky6yRrdse2KgnIY_zUeg1663101871967 \N \N 1 0 0.00 0.00 \N \N \N -16 R848546931 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.168432 2022-09-13 20:43:28.639448 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f XaB3s8LiapCQJAlj7MhRNA1663101758092 \N \N 1 0 0.00 0.00 \N \N \N -7 R390334667 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:39.456166 2022-09-13 20:41:04.250772 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f CnMT62wvwWCbZu3dOVn_Rg1663101639207 \N \N 1 0 0.00 0.00 \N \N \N -15 R255191158 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.11464 2022-09-13 20:43:28.783291 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f wOR-iN7YNFOhyEC2H2b7qA1663101758041 \N \N 1 0 0.00 0.00 \N \N \N -29 R787811537 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:22.46273 2022-09-13 20:48:22.46273 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f Hl6Ljr5p4rANMBxef6lE9w1663102102302 \N \N 1 0 0.00 0.00 \N \N \N -20 R419288521 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.236312 2022-09-13 20:45:21.980026 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f CIgK0fBkGeTaaTT40O-jqw1663101872187 \N \N 1 0 0.00 0.00 \N \N \N -17 R847096189 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:38.809459 2022-09-13 20:43:28.474413 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f OFk8MRGtK2lSvOvQb29x1w1663101758777 \N \N 1 0 0.00 0.00 \N \N \N -11 R840723731 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.242559 2022-09-13 20:41:34.811024 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f aaQwC1swzSxillt95Z9U-Q1663101640049 \N \N 1 0 0.00 0.00 \N \N \N -12 R552721805 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.410356 2022-09-13 20:41:34.885387 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f sOSjPvDn_4SVm1ODygyB2w1663101640340 \N \N 1 0 0.00 0.00 \N \N \N -10 R442325408 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:40:40.262394 2022-09-13 20:41:34.745041 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f kc0nVrRKOAIaSVbX1l7N8g1663101639848 \N \N 1 0 0.00 0.00 \N \N \N -13 R075587510 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:42:36.837657 2022-09-13 20:43:27.970977 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f tUjHW5ZklQ-YWswl7e-M2w1663101756810 \N \N 1 0 0.00 0.00 \N \N \N -26 R005638160 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.758835 2022-09-13 20:47:18.536939 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f eghZAxpzP9ZF-79b2TLUqw1663101988724 \N \N 1 0 0.00 0.00 \N \N \N -23 R123653711 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:23.137053 2022-09-13 20:47:13.047994 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 6K9qzvpJWhJZSILd0b9XRA1663101983035 \N \N 1 0 0.00 0.00 \N \N \N -22 R124150150 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.869556 2022-09-13 20:45:22.247319 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 0-Kb1UqsxqCwPoUnUF6Jnw1663101872834 \N \N 1 0 0.00 0.00 \N \N \N -18 R276779589 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:31.867248 2022-09-13 20:45:22.630709 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Q8d7eCTpl8hURcVQ13u_kw1663101871824 \N \N 1 0 0.00 0.00 \N \N \N -32 R805165245 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:25.538708 2022-09-13 20:49:14.374306 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f WJbh-8HUtQU9Q_2w19gB-w1663102105498 \N \N 1 0 0.00 0.00 \N \N \N -21 R487927726 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:44:32.238569 2022-09-13 20:45:22.852748 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f VWxfagS9M-othhNGGhdbYg1663101872146 \N \N 1 0 0.00 0.00 \N \N \N -27 R689531836 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.861055 2022-09-13 20:47:18.653873 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f B3xGVyUzmqwQDdt8XpBBfA1663101988817 \N \N 1 0 0.00 0.00 \N \N \N -25 R469727062 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:46:28.225082 2022-09-13 20:47:18.636142 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f IMTOga4JFry9gZbZCZ5InA1663101988194 \N \N 1 0 0.00 0.00 \N \N \N -31 R918936651 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:24.377543 2022-09-13 20:49:13.460962 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f oFetZmmPbKEgp65ZmPKXTA1663102104314 \N \N 1 0 0.00 0.00 \N \N \N -34 R999519556 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.305181 2022-09-13 20:51:09.962408 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Mabl_1Azd_Og6nu21PMeww1663102219258 \N \N 1 0 0.00 0.00 \N \N \N -30 R404535964 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:23.120556 2022-09-13 20:49:13.524533 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f QintnT3ioOgN_HjlDv8_Sw1663102103069 \N \N 1 0 0.00 0.00 \N \N \N -28 R782062766 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:48:22.199099 2022-09-13 20:49:13.29202 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 52PGI5HOOZ8o4TwhQGn99Q1663102102025 \N \N 1 0 0.00 0.00 \N \N \N -37 R157365849 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.951978 2022-09-13 20:50:19.951978 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f MHvj7GIMgQoWSCuO9levtg1663102219924 \N \N 1 0 0.00 0.00 \N \N \N -51 R380396795 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.983842 2022-09-13 20:56:20.790026 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f -fczciKKzou470GRdTcBmg1663102560923 \N \N 1 0 0.00 0.00 \N \N \N -40 R977050395 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.099499 2022-09-13 20:52:31.556158 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f bV5XprPbqOMzjaVfJLSLDQ1663102332061 \N \N 1 0 0.00 0.00 \N \N \N -33 R619989406 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:13.522459 2022-09-13 20:50:33.669029 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f m2v3_sm11feeJhUt-UEz_A1663102213496 \N \N 1 0 0.00 0.00 \N \N \N -46 R942455379 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:07.804113 2022-09-13 20:54:57.40555 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f beL5LxYTxktnXDfD_KcGrA1663102447773 \N \N 1 0 0.00 0.00 \N \N \N -53 R163749863 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:54.037515 2022-09-13 20:57:54.037515 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f vGzlnFRg7GIXQAXK5o2srA1663102673965 \N \N 1 0 0.00 0.00 \N \N \N -47 R919350832 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:08.242242 2022-09-13 20:54:57.427924 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 5K0c6NNThPxX5HdgNnKk2A1663102448208 \N \N 1 0 0.00 0.00 \N \N \N -43 R702931003 14.99 14.99 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:03.216732 2022-09-13 20:54:22.531404 USD \N \N 0.00 0.00 0.00 spree 0.00 1 \N \N f f IEiRkYakl_lqd71lBJ_sHg1663102443181 \N \N 1 0 0.00 0.00 \N \N \N -42 R251855715 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.935808 2022-09-13 20:53:01.462396 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f IN_fT1XvJ89V3I9C5BBAPQ1663102332895 \N \N 1 0 0.00 0.00 \N \N \N -39 R121101079 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:11.780082 2022-09-13 20:53:01.369656 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Yw3uqe6EFMnbPE9PBSR5eA1663102331702 \N \N 1 0 0.00 0.00 \N \N \N -35 R454858211 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.408387 2022-09-13 20:51:09.753958 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f nzd04T10DGTH8vgcacTCUw1663102219344 \N \N 1 0 0.00 0.00 \N \N \N -41 R175818178 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:12.33814 2022-09-13 20:53:01.614702 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 2fRdrWj2jgdZqrRXghkP_g1663102332276 \N \N 1 0 0.00 0.00 \N \N \N -36 R813463955 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:50:19.613804 2022-09-13 20:51:10.02892 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 4GXX8bvaO1TkJJsfXzWEfw1663102219529 \N \N 1 0 0.00 0.00 \N \N \N -38 R790389214 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:52:11.645945 2022-09-13 20:53:01.87249 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f AS_thu3KZ7np_YyT76tGbg1663102331614 \N \N 1 0 0.00 0.00 \N \N \N -56 R227725774 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:57.553134 2022-09-13 20:57:57.553134 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WPsT4tWCYNgQQgn4mpVZuQ1663102677500 \N \N 1 0 0.00 0.00 \N \N \N -49 R630607112 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.753713 2022-09-13 20:56:50.362021 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f gt_KsmYAtc-p3YwlWRv1Uw1663102560640 \N \N 1 0 0.00 0.00 \N \N \N -57 R809829761 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:58.409555 2022-09-13 20:57:58.409555 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f 8hWA5kBCnXxS3sXkPuMa5Q1663102678374 \N \N 1 0 0.00 0.00 \N \N \N -59 R413562029 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:50.013503 2022-09-13 20:59:50.013503 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f eIOJZSic0r5wkSFtgEikZA1663102789969 \N \N 1 0 0.00 0.00 \N \N \N -45 R884650335 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:04.725441 2022-09-13 20:54:53.046874 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f -c86IosJv_oWOdDNYqWPwA1663102444692 \N \N 1 0 0.00 0.00 \N \N \N -60 R481040826 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:50.313256 2022-09-13 20:59:50.313256 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f WVRrNglck1NF9CIr7oiqbw1663102790270 \N \N 1 0 0.00 0.00 \N \N \N -61 R228396864 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:53.865872 2022-09-13 20:59:53.865872 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f ESP1i8ZuJCX2-Hpc86tlsw1663102793842 \N \N 1 0 0.00 0.00 \N \N \N -62 R105697463 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:54.243963 2022-09-13 20:59:54.243963 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f G2PioUiSHiJ0nlLj2xR0Uw1663102794213 \N \N 1 0 0.00 0.00 \N \N \N -44 R428557957 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:54:03.570992 2022-09-13 20:54:53.192396 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f 2C16kXLPyEHygUbkJz3Ynw1663102443532 \N \N 1 0 0.00 0.00 \N \N \N -52 R306200982 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:02.207068 2022-09-13 20:56:51.134566 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f _oSakoLE6W3vDIPmqOkfIQ1663102562162 \N \N 1 0 0.00 0.00 \N \N \N -54 R566260232 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:54.219118 2022-09-13 20:58:44.231271 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f Xma4hmQTnewPUayW9KGVvg1663102674167 \N \N 1 0 0.00 0.00 \N \N \N -50 R754500801 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:56:00.812035 2022-09-13 20:56:50.742709 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f B7EBl-2KLKIB6SkQrEkWtQ1663102560718 \N \N 1 0 0.00 0.00 \N \N \N -48 R399669374 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:55:59.659483 2022-09-13 20:56:50.865579 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f mSCMrawCu6sEr6_0FCgefw1663102559627 \N \N 1 0 0.00 0.00 \N \N \N -55 R136591560 24.98 24.98 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:57:57.302156 2022-09-13 20:58:47.238481 USD \N \N 0.00 0.00 0.00 spree 0.00 2 \N \N f f aGVqHvNNHC3tFScoAI91uw1663102677257 \N \N 1 0 0.00 0.00 \N \N \N -58 R283485621 0.00 0.00 cart 0.00 \N \N \N \N 0.00 \N \N \N \N 2022-09-13 20:59:49.372146 2022-09-13 20:59:49.372146 USD \N \N 0.00 0.00 0.00 spree 0.00 0 \N \N f f b8s-7S3PJJthFjAATl56kg1663102789324 \N \N 1 0 0.00 0.00 \N \N \N -\. - - --- --- Data for Name: spree_payment_capture_events; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_payment_capture_events (id, amount, payment_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_payment_methods; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_payment_methods (id, type, name, description, active, deleted_at, created_at, updated_at, display_on, auto_capture, preferences, "position", public_metadata, private_metadata) FROM stdin; -1 Spree::Gateway::Bogus Credit Card Bogus payment gateway. t \N 2022-07-12 18:13:09.810518 2022-07-12 18:13:09.833477 both \N ---\n:dummy_key: PUBLICKEY123\n:server: test\n:test_mode: true\n 1 \N \N -2 Spree::PaymentMethod::Check Check Pay by check. t \N 2022-07-12 18:13:09.949257 2022-07-12 18:13:09.969282 both \N \N 2 \N \N -\. - - --- --- Data for Name: spree_payment_methods_stores; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_payment_methods_stores (payment_method_id, store_id) FROM stdin; -1 1 -1 2 -1 3 -2 1 -2 2 -2 3 -\. - - --- --- Data for Name: spree_payments; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_payments (id, amount, order_id, source_type, source_id, payment_method_id, state, response_code, avs_response, created_at, updated_at, number, cvv_response_code, cvv_response_message, public_metadata, private_metadata, intent_client_key) FROM stdin; -1 27.49 1 Spree::CreditCard 1 1 pending 12345 \N 2022-07-12 18:15:53.741751 2022-07-12 18:15:53.741751 P5XV0ZIG \N \N \N \N \N -2 32.49 2 Spree::CreditCard 1 1 pending 12345 \N 2022-07-12 18:15:54.14059 2022-07-12 18:15:54.14059 PG2INO8P \N \N \N \N \N -\. - - --- --- Data for Name: spree_preferences; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_preferences (id, value, key, created_at, updated_at) FROM stdin; -1 --- false\n spree/auth_configuration/signout_after_password_change 2022-07-12 18:09:59.709608 2022-07-12 18:09:59.709608 -\. - - --- --- Data for Name: spree_prices; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_prices (id, variant_id, amount, currency, deleted_at, created_at, updated_at, compare_at_amount) FROM stdin; -46 46 14.99 USD 2022-09-02 16:27:23.992547 2022-07-12 18:13:34.156174 2022-09-02 16:27:23.992574 \N -11 11 98.99 USD 2022-09-02 16:27:31.546241 2022-07-12 18:13:20.824971 2022-09-02 16:27:31.546264 \N -105 105 17.99 USD 2022-09-02 16:27:33.604611 2022-07-12 18:13:57.223869 2022-09-02 16:27:33.60463 \N -80 80 46.99 USD 2022-09-02 16:27:34.211882 2022-07-12 18:13:47.379139 2022-09-02 16:27:34.211899 \N -78 78 40.99 USD 2022-09-02 16:27:34.714724 2022-07-12 18:13:46.542221 2022-09-02 16:27:34.714743 \N -43 43 67.99 USD 2022-09-02 16:27:36.598966 2022-07-12 18:13:32.889484 2022-09-02 16:27:36.598981 \N -83 83 58.99 USD 2022-09-02 16:27:38.083399 2022-07-12 18:13:48.454432 2022-09-02 16:27:38.083416 \N -58 58 91.99 USD 2022-09-02 16:27:41.373336 2022-07-12 18:13:38.53718 2022-09-02 16:27:41.373354 \N -5 5 55.99 USD 2022-09-02 16:27:42.644647 2022-07-12 18:13:18.781473 2022-09-02 16:27:42.644664 \N -4 4 17.99 USD 2022-09-02 16:27:43.226298 2022-07-12 18:13:18.451869 2022-09-02 16:27:43.226316 \N -15 15 34.99 USD 2022-09-02 16:27:45.4408 2022-07-12 18:13:22.181922 2022-09-02 16:27:45.440816 \N -28 28 33.99 USD 2022-09-02 16:27:46.051597 2022-07-12 18:13:27.121417 2022-09-02 16:27:46.051614 \N -21 21 88.99 USD 2022-09-02 16:27:46.632736 2022-07-12 18:13:24.458189 2022-09-02 16:27:46.632753 \N -51 51 87.99 USD 2022-09-02 16:27:47.352524 2022-07-12 18:13:36.000691 2022-09-02 16:27:47.352539 \N -102 102 29.99 USD 2022-09-02 16:27:48.574566 2022-07-12 18:13:55.947975 2022-09-02 16:27:48.574582 \N -97 97 41.99 USD 2022-09-02 16:27:49.428951 2022-07-12 18:13:54.153524 2022-09-02 16:27:49.428967 \N -103 103 79.99 USD 2022-09-02 16:27:49.920578 2022-07-12 18:13:56.371448 2022-09-02 16:27:49.920596 \N -108 108 54.99 USD 2022-09-02 16:27:50.627853 2022-07-12 18:13:58.342501 2022-09-02 16:27:50.627871 \N -109 109 71.99 USD 2022-09-02 16:27:51.215091 2022-07-12 18:13:58.742053 2022-09-02 16:27:51.215108 \N -104 104 47.99 USD 2022-09-02 16:27:52.683277 2022-07-12 18:13:56.865802 2022-09-02 16:27:52.683293 \N -57 57 26.99 USD 2022-09-02 16:27:53.395253 2022-07-12 18:13:38.192576 2022-09-02 16:27:53.395272 \N -42 42 17.99 USD 2022-09-02 16:27:53.912691 2022-07-12 18:13:32.53143 2022-09-02 16:27:53.912708 \N -90 90 28.99 USD 2022-09-02 16:28:00.432425 2022-07-12 18:13:51.289975 2022-09-02 16:28:00.432441 \N -32 32 27.99 USD 2022-09-02 16:28:01.680351 2022-07-12 18:13:28.891353 2022-09-02 16:28:01.680367 \N -94 94 13.99 USD 2022-09-02 16:28:02.405696 2022-07-12 18:13:52.995319 2022-09-02 16:28:02.405712 \N -34 34 35.99 USD 2022-09-02 16:28:02.986991 2022-07-12 18:13:29.618661 2022-09-02 16:28:02.98701 \N -60 60 68.99 USD 2022-09-02 16:28:03.668434 2022-07-12 18:13:39.371884 2022-09-02 16:28:03.668451 \N -17 17 47.99 USD 2022-09-02 16:28:04.36759 2022-07-12 18:13:23.025133 2022-09-02 16:28:04.367606 \N -68 68 87.99 USD 2022-09-02 16:28:04.894173 2022-07-12 18:13:42.220764 2022-09-02 16:28:04.894189 \N -47 47 31.99 USD 2022-09-02 16:28:06.144942 2022-07-12 18:13:34.535422 2022-09-02 16:28:06.144959 \N -55 55 73.99 USD 2022-09-02 16:28:06.842343 2022-07-12 18:13:37.459553 2022-09-02 16:28:06.84236 \N -18 18 10.99 USD 2022-09-02 16:28:07.379812 2022-07-12 18:13:23.372619 2022-09-02 16:28:07.379833 \N -98 98 37.99 USD 2022-09-02 16:28:19.214116 2022-07-12 18:13:54.498676 2022-09-02 16:28:19.214131 \N -86 86 43.99 USD 2022-09-02 16:28:19.847822 2022-07-12 18:13:49.577379 2022-09-02 16:28:19.847836 \N -82 82 37.99 USD 2022-09-02 16:28:20.435754 2022-07-12 18:13:48.080211 2022-09-02 16:28:20.435771 \N -107 107 67.99 USD 2022-09-02 16:28:20.813168 2022-07-12 18:13:57.984621 2022-09-02 16:28:20.813186 \N -91 91 43.99 USD 2022-09-02 16:28:28.358199 2022-07-12 18:13:51.741777 2022-09-02 16:28:28.358215 \N -37 37 40.99 USD 2022-09-02 16:28:29.168915 2022-07-12 18:13:30.719021 2022-09-02 16:28:29.168934 \N -99 99 76.99 USD 2022-09-02 16:28:31.180523 2022-07-12 18:13:54.853936 2022-09-02 16:28:31.180539 \N -71 71 24.99 USD 2022-09-02 16:28:31.708454 2022-07-12 18:13:43.333021 2022-09-02 16:28:31.708468 \N -72 72 86.99 USD 2022-09-02 16:28:32.277891 2022-07-12 18:13:43.684172 2022-09-02 16:28:32.277906 \N -7 7 94.99 USD 2022-09-02 16:28:35.389037 2022-07-12 18:13:19.465214 2022-09-02 16:28:35.389055 \N -16 16 84.99 USD 2022-09-02 16:28:36.070044 2022-07-12 18:13:22.535499 2022-09-02 16:28:36.070061 \N -61 61 15.99 USD 2022-09-02 16:28:36.758713 2022-07-12 18:13:39.727827 2022-09-02 16:28:36.75873 \N -77 77 30.99 USD 2022-09-02 16:28:37.955926 2022-07-12 18:13:45.775796 2022-09-02 16:28:37.955956 \N -53 53 76.99 USD 2022-09-02 16:28:38.570306 2022-07-12 18:13:36.732905 2022-09-02 16:28:38.57032 \N -6 6 74.99 USD 2022-09-02 16:28:39.269051 2022-07-12 18:13:19.124775 2022-09-02 16:28:39.269068 \N -39 39 30.99 USD 2022-09-02 14:33:31.974234 2022-07-12 18:13:31.451936 2022-09-02 14:33:31.974248 \N -30 30 44.99 USD 2022-09-02 14:33:34.196694 2022-07-12 18:13:27.913244 2022-09-02 14:33:34.196719 \N -87 87 19.99 USD 2022-09-02 14:33:39.440806 2022-07-12 18:13:49.956057 2022-09-02 14:33:39.440819 \N -19 19 23.99 USD 2022-09-02 16:25:41.896563 2022-07-12 18:13:23.729611 2022-09-02 16:25:41.896614 \N -96 96 30.99 USD 2022-09-02 16:25:45.373651 2022-07-12 18:13:53.792165 2022-09-02 16:25:45.373668 \N -2 2 65.99 USD 2022-09-02 16:25:47.086317 2022-07-12 18:13:17.736961 2022-09-02 16:25:47.086335 \N -8 8 27.99 USD 2022-09-02 16:25:48.622167 2022-07-12 18:13:19.80268 2022-09-02 16:25:48.622181 \N -85 85 27.99 USD 2022-09-02 16:25:50.35368 2022-07-12 18:13:49.215908 2022-09-02 16:25:50.353722 \N -63 63 17.99 USD 2022-09-02 16:25:51.996156 2022-07-12 18:13:40.411896 2022-09-02 16:25:51.996174 \N -3 3 99.99 USD 2022-09-02 16:25:54.013207 2022-07-12 18:13:18.112647 2022-09-02 16:25:54.013222 \N -76 76 96.99 USD 2022-09-02 16:25:57.800513 2022-07-12 18:13:45.370241 2022-09-02 16:25:57.80053 \N -75 75 92.99 USD 2022-09-02 16:25:59.445415 2022-07-12 18:13:44.993484 2022-09-02 16:25:59.445431 \N -95 95 88.99 USD 2022-09-02 16:26:01.212235 2022-07-12 18:13:53.358158 2022-09-02 16:26:01.212251 \N -36 36 21.99 USD 2022-09-02 16:26:03.269878 2022-07-12 18:13:30.35196 2022-09-02 16:26:03.269896 \N -48 48 81.99 USD 2022-09-02 16:26:04.063886 2022-07-12 18:13:34.906575 2022-09-02 16:26:04.063902 \N -38 38 62.99 USD 2022-09-02 16:26:04.590275 2022-07-12 18:13:31.087147 2022-09-02 16:26:04.59029 \N -65 65 19.99 USD 2022-09-02 16:26:05.692952 2022-07-12 18:13:41.100294 2022-09-02 16:26:05.692967 \N -54 54 36.99 USD 2022-09-02 16:26:06.297008 2022-07-12 18:13:37.103462 2022-09-02 16:26:06.297025 \N -33 33 64.99 USD 2022-09-02 16:26:06.970603 2022-07-12 18:13:29.259237 2022-09-02 16:26:06.970622 \N -89 89 59.99 USD 2022-09-02 16:26:07.468923 2022-07-12 18:13:50.875825 2022-09-02 16:26:07.468941 \N -92 92 50.99 USD 2022-09-02 16:26:08.088793 2022-07-12 18:13:52.225622 2022-09-02 16:26:08.088808 \N -9 9 33.99 USD 2022-09-02 16:26:08.858659 2022-07-12 18:13:20.149861 2022-09-02 16:26:08.858694 \N -31 31 76.99 USD 2022-09-02 16:26:10.221736 2022-07-12 18:13:28.376818 2022-09-02 16:26:10.221752 \N -41 41 74.99 USD 2022-09-02 16:26:59.826212 2022-07-12 18:13:32.167724 2022-09-02 16:26:59.826228 \N -44 44 10.99 USD 2022-09-02 16:27:01.14406 2022-07-12 18:13:33.264063 2022-09-02 16:27:01.144078 \N -66 66 72.99 USD 2022-09-02 16:27:01.917817 2022-07-12 18:13:41.473148 2022-09-02 16:27:01.917836 \N -56 56 32.99 USD 2022-09-02 16:27:02.586476 2022-07-12 18:13:37.840251 2022-09-02 16:27:02.586517 \N -29 29 11.99 USD 2022-09-02 16:27:04.177687 2022-07-12 18:13:27.526966 2022-09-02 16:27:04.177705 \N -74 74 17.99 USD 2022-09-02 16:27:07.128932 2022-07-12 18:13:44.44715 2022-09-02 16:27:07.128945 \N -101 101 11.99 USD 2022-09-02 16:27:07.987154 2022-07-12 18:13:55.562831 2022-09-02 16:27:07.987172 \N -40 40 46.99 USD 2022-09-02 16:27:08.952101 2022-07-12 18:13:31.810158 2022-09-02 16:27:08.952116 \N -10 10 87.99 USD 2022-09-02 16:27:09.792613 2022-07-12 18:13:20.495717 2022-09-02 16:27:09.79263 \N -27 27 64.99 USD 2022-09-02 16:27:10.528373 2022-07-12 18:13:26.688125 2022-09-02 16:27:10.528388 \N -13 13 28.99 USD 2022-09-02 16:27:12.862735 2022-07-12 18:13:21.49581 2022-09-02 16:27:12.862758 \N -50 50 23.99 USD 2022-09-02 16:27:14.076003 2022-07-12 18:13:35.619038 2022-09-02 16:27:14.076025 \N -22 22 93.99 USD 2022-09-02 16:27:14.749695 2022-07-12 18:13:24.816942 2022-09-02 16:27:14.749711 \N -88 88 47.99 USD 2022-09-02 16:27:15.343517 2022-07-12 18:13:50.32564 2022-09-02 16:27:15.343534 \N -106 106 52.99 USD 2022-09-02 16:27:16.063467 2022-07-12 18:13:57.61041 2022-09-02 16:27:16.063481 \N -93 93 26.99 USD 2022-09-02 16:27:16.867353 2022-07-12 18:13:52.603502 2022-09-02 16:27:16.867371 \N -73 73 86.99 USD 2022-09-02 16:27:17.36977 2022-07-12 18:13:44.056071 2022-09-02 16:27:17.369787 \N -25 25 24.99 USD 2022-09-02 16:27:21.371785 2022-07-12 18:13:25.88228 2022-09-02 16:27:21.371802 \N -20 20 45.99 USD 2022-09-02 16:27:23.243362 2022-07-12 18:13:24.105405 2022-09-02 16:27:23.243379 \N -69 69 46.99 USD 2022-09-02 16:28:39.986129 2022-07-12 18:13:42.605527 2022-09-02 16:28:39.986152 \N -52 52 83.99 USD 2022-09-02 16:28:42.405525 2022-07-12 18:13:36.368909 2022-09-02 16:28:42.405539 \N -62 62 28.99 USD 2022-09-02 16:28:44.2851 2022-07-12 18:13:40.078491 2022-09-02 16:28:44.285118 \N -79 79 83.99 USD 2022-09-02 16:28:45.005029 2022-07-12 18:13:46.984358 2022-09-02 16:28:45.005747 \N -162 162 14.99 USD 2022-09-02 16:27:24.068422 2022-07-12 18:15:20.431809 2022-09-02 16:27:24.068437 \N -127 127 98.99 USD 2022-09-02 16:27:31.615618 2022-07-12 18:15:14.498576 2022-09-02 16:27:31.61563 \N -196 196 46.99 USD 2022-09-02 16:27:34.29832 2022-07-12 18:15:26.992713 2022-09-02 16:27:34.298335 \N -194 194 40.99 USD 2022-09-02 16:27:34.796435 2022-07-12 18:15:26.721093 2022-09-02 16:27:34.796449 \N -111 111 14.99 USD 2022-09-02 16:27:35.879034 2022-07-12 18:13:59.442118 2022-09-02 16:27:35.879051 \N -159 159 67.99 USD 2022-09-02 16:27:36.669524 2022-07-12 18:15:19.644646 2022-09-02 16:27:36.669538 \N -199 199 58.99 USD 2022-09-02 16:27:38.151322 2022-07-12 18:15:27.422325 2022-09-02 16:27:38.151336 \N -174 174 91.99 USD 2022-09-02 16:27:41.464135 2022-07-12 18:15:23.567534 2022-09-02 16:27:41.464149 \N -110 110 73.99 USD 2022-09-02 16:27:42.024018 2022-07-12 18:13:59.089122 2022-09-02 16:27:42.024036 \N -121 121 55.99 USD 2022-09-02 16:27:42.736033 2022-07-12 18:15:13.677462 2022-09-02 16:27:42.736049 \N -120 120 17.99 USD 2022-09-02 16:27:43.299093 2022-07-12 18:15:13.507181 2022-09-02 16:27:43.299107 \N -131 131 34.99 USD 2022-09-02 16:27:45.51127 2022-07-12 18:15:15.095985 2022-09-02 16:27:45.511284 \N -144 144 33.99 USD 2022-09-02 16:27:46.121073 2022-07-12 18:15:17.036703 2022-09-02 16:27:46.121086 \N -167 167 87.99 USD 2022-09-02 16:27:47.423088 2022-07-12 18:15:21.5108 2022-09-02 16:27:47.423106 \N -175 175 60.99 USD 2022-09-02 16:27:48.104255 2022-07-12 18:15:23.715842 2022-09-02 16:27:48.104271 \N -218 218 29.99 USD 2022-09-02 16:27:48.664982 2022-07-12 18:15:30.295849 2022-09-02 16:27:48.664996 \N -213 213 41.99 USD 2022-09-02 16:27:49.493815 2022-07-12 18:15:29.526761 2022-09-02 16:27:49.493828 \N -173 173 26.99 USD 2022-09-02 16:27:53.47259 2022-07-12 18:15:23.400434 2022-09-02 16:27:53.472604 \N -158 158 17.99 USD 2022-09-02 16:27:54.001072 2022-07-12 18:15:19.477131 2022-09-02 16:27:54.001087 \N -206 206 28.99 USD 2022-09-02 16:28:00.500054 2022-07-12 18:15:28.538204 2022-09-02 16:28:00.500067 \N -142 142 67.99 USD 2022-09-02 16:28:01.133558 2022-07-12 18:15:16.746654 2022-09-02 16:28:01.133572 \N -148 148 27.99 USD 2022-09-02 16:28:01.755354 2022-07-12 18:15:17.664591 2022-09-02 16:28:01.755379 \N -150 150 35.99 USD 2022-09-02 16:28:03.057356 2022-07-12 18:15:18.029427 2022-09-02 16:28:03.057371 \N -176 176 68.99 USD 2022-09-02 16:28:03.75193 2022-07-12 18:15:23.872604 2022-09-02 16:28:03.751945 \N -133 133 47.99 USD 2022-09-02 16:28:04.436821 2022-07-12 18:15:15.409697 2022-09-02 16:28:04.436835 \N -184 184 87.99 USD 2022-09-02 16:28:04.999872 2022-07-12 18:15:25.06461 2022-09-02 16:28:04.999894 \N -163 163 31.99 USD 2022-09-02 16:28:06.235653 2022-07-12 18:15:20.599504 2022-09-02 16:28:06.235667 \N -171 171 73.99 USD 2022-09-02 16:28:06.906441 2022-07-12 18:15:22.634971 2022-09-02 16:28:06.906458 \N -134 134 10.99 USD 2022-09-02 16:28:07.448635 2022-07-12 18:15:15.559491 2022-09-02 16:28:07.448648 \N -216 216 34.99 USD 2022-09-02 16:28:18.699041 2022-07-12 18:15:30.025218 2022-09-02 16:28:18.699054 \N -214 214 37.99 USD 2022-09-02 16:28:19.281111 2022-07-12 18:15:29.685775 2022-09-02 16:28:19.281123 \N -198 198 37.99 USD 2022-09-02 16:28:20.50323 2022-07-12 18:15:27.277117 2022-09-02 16:28:20.503244 \N -207 207 43.99 USD 2022-09-02 16:28:28.423727 2022-07-12 18:15:28.673484 2022-09-02 16:28:28.42374 \N -153 153 40.99 USD 2022-09-02 16:28:29.248266 2022-07-12 18:15:18.470723 2022-09-02 16:28:29.248279 \N -215 215 76.99 USD 2022-09-02 16:28:31.242639 2022-07-12 18:15:29.861263 2022-09-02 16:28:31.242652 \N -187 187 24.99 USD 2022-09-02 16:28:31.791388 2022-07-12 18:15:25.589456 2022-09-02 16:28:31.791402 \N -188 188 86.99 USD 2022-09-02 16:28:32.349006 2022-07-12 18:15:25.727523 2022-09-02 16:28:32.34902 \N -161 161 17.99 USD 2022-09-02 16:28:32.987192 2022-07-12 18:15:20.043471 2022-09-02 16:28:32.987207 \N -123 123 94.99 USD 2022-09-02 16:28:35.478084 2022-07-12 18:15:13.93513 2022-09-02 16:28:35.478098 \N -132 132 84.99 USD 2022-09-02 16:28:36.138677 2022-07-12 18:15:15.233638 2022-09-02 16:28:36.13869 \N -193 193 30.99 USD 2022-09-02 16:28:38.027171 2022-07-12 18:15:26.558662 2022-09-02 16:28:38.027192 \N -169 169 76.99 USD 2022-09-02 16:28:38.642916 2022-07-12 18:15:21.928713 2022-09-02 16:28:38.64293 \N -122 122 74.99 USD 2022-09-02 16:28:39.331406 2022-07-12 18:15:13.806607 2022-09-02 16:28:39.331419 \N -185 185 46.99 USD 2022-09-02 16:28:40.0568 2022-07-12 18:15:25.225801 2022-09-02 16:28:40.056813 \N -112 112 45.99 USD 2022-09-02 16:28:41.139954 2022-07-12 18:13:59.793393 2022-09-02 16:28:41.139968 \N -114 114 45.99 USD 2022-09-02 16:28:41.760542 2022-07-12 18:14:00.669118 2022-09-02 16:28:41.76056 \N -168 168 83.99 USD 2022-09-02 16:28:42.47917 2022-07-12 18:15:21.721701 2022-09-02 16:28:42.479185 \N -155 155 30.99 USD 2022-09-02 14:33:32.04121 2022-07-12 18:15:18.914183 2022-09-02 14:33:32.041223 \N -146 146 44.99 USD 2022-09-02 14:33:34.326379 2022-07-12 18:15:17.37049 2022-09-02 14:33:34.326392 \N -203 203 19.99 USD 2022-09-02 14:33:39.503374 2022-07-12 18:15:28.161836 2022-09-02 14:33:39.503388 \N -128 128 52.99 USD 2022-09-02 16:28:43.285527 2022-07-12 18:15:14.638 2022-09-02 16:28:43.285541 \N -135 135 23.99 USD 2022-09-02 16:25:41.987255 2022-07-12 18:15:15.69268 2022-09-02 16:25:41.98727 \N -212 212 30.99 USD 2022-09-02 16:25:45.44356 2022-07-12 18:15:29.397477 2022-09-02 16:25:45.443574 \N -118 118 65.99 USD 2022-09-02 16:25:47.149371 2022-07-12 18:15:13.186012 2022-09-02 16:25:47.149385 \N -124 124 27.99 USD 2022-09-02 16:25:48.689197 2022-07-12 18:15:14.067412 2022-09-02 16:25:48.68921 \N -201 201 27.99 USD 2022-09-02 16:25:50.422281 2022-07-12 18:15:27.812312 2022-09-02 16:25:50.422299 \N -179 179 17.99 USD 2022-09-02 16:25:52.064981 2022-07-12 18:15:24.327215 2022-09-02 16:25:52.064995 \N -119 119 99.99 USD 2022-09-02 16:25:54.08296 2022-07-12 18:15:13.346261 2022-09-02 16:25:54.082974 \N -192 192 96.99 USD 2022-09-02 16:25:57.870471 2022-07-12 18:15:26.430962 2022-09-02 16:25:57.870486 \N -191 191 92.99 USD 2022-09-02 16:25:59.512418 2022-07-12 18:15:26.278103 2022-09-02 16:25:59.512432 \N -211 211 88.99 USD 2022-09-02 16:26:01.284515 2022-07-12 18:15:29.258049 2022-09-02 16:26:01.284531 \N -152 152 21.99 USD 2022-09-02 16:26:03.382064 2022-07-12 18:15:18.30946 2022-09-02 16:26:03.382112 \N -164 164 81.99 USD 2022-09-02 16:26:04.162602 2022-07-12 18:15:20.845072 2022-09-02 16:26:04.162617 \N -154 154 62.99 USD 2022-09-02 16:26:04.760867 2022-07-12 18:15:18.738551 2022-09-02 16:26:04.760886 \N -181 181 19.99 USD 2022-09-02 16:26:05.767033 2022-07-12 18:15:24.589367 2022-09-02 16:26:05.767047 \N -170 170 36.99 USD 2022-09-02 16:26:06.444483 2022-07-12 18:15:22.205239 2022-09-02 16:26:06.4445 \N -149 149 64.99 USD 2022-09-02 16:26:07.058668 2022-07-12 18:15:17.798727 2022-09-02 16:26:07.058682 \N -205 205 59.99 USD 2022-09-02 16:26:07.539591 2022-07-12 18:15:28.415842 2022-09-02 16:26:07.539607 \N -208 208 50.99 USD 2022-09-02 16:26:08.159257 2022-07-12 18:15:28.822309 2022-09-02 16:26:08.15927 \N -125 125 33.99 USD 2022-09-02 16:26:08.934111 2022-07-12 18:15:14.205045 2022-09-02 16:26:08.934125 \N -147 147 76.99 USD 2022-09-02 16:26:10.324819 2022-07-12 18:15:17.526736 2022-09-02 16:26:10.324843 \N -157 157 74.99 USD 2022-09-02 16:26:59.918146 2022-07-12 18:15:19.298692 2022-09-02 16:26:59.918161 \N -160 160 10.99 USD 2022-09-02 16:27:01.216338 2022-07-12 18:15:19.838121 2022-09-02 16:27:01.216353 \N -182 182 72.99 USD 2022-09-02 16:27:02.01627 2022-07-12 18:15:24.761767 2022-09-02 16:27:02.016292 \N -172 172 32.99 USD 2022-09-02 16:27:02.666818 2022-07-12 18:15:23.208666 2022-09-02 16:27:02.666843 \N -116 116 20.99 USD 2022-09-02 16:27:03.388322 2022-07-12 18:14:01.372852 2022-09-02 16:27:03.388337 \N -151 151 73.99 USD 2022-09-02 16:27:05.341127 2022-07-12 18:15:18.162718 2022-09-02 16:27:05.341141 \N -190 190 17.99 USD 2022-09-02 16:27:07.197189 2022-07-12 18:15:26.053565 2022-09-02 16:27:07.197202 \N -217 217 11.99 USD 2022-09-02 16:27:08.066445 2022-07-12 18:15:30.167086 2022-09-02 16:27:08.066465 \N -156 156 46.99 USD 2022-09-02 16:27:09.03037 2022-07-12 18:15:19.128858 2022-09-02 16:27:09.030385 \N -126 126 87.99 USD 2022-09-02 16:27:09.861247 2022-07-12 18:15:14.345429 2022-09-02 16:27:09.861273 \N -143 143 64.99 USD 2022-09-02 16:27:10.600641 2022-07-12 18:15:16.874714 2022-09-02 16:27:10.600656 \N -140 140 73.99 USD 2022-09-02 16:27:13.498343 2022-07-12 18:15:16.428215 2022-09-02 16:27:13.498358 \N -166 166 23.99 USD 2022-09-02 16:27:14.161134 2022-07-12 18:15:21.253212 2022-09-02 16:27:14.161148 \N -138 138 93.99 USD 2022-09-02 16:27:14.824335 2022-07-12 18:15:16.151105 2022-09-02 16:27:14.824348 \N -204 204 47.99 USD 2022-09-02 16:27:15.41094 2022-07-12 18:15:28.292114 2022-09-02 16:27:15.410954 \N -209 209 26.99 USD 2022-09-02 16:27:16.933308 2022-07-12 18:15:28.959356 2022-09-02 16:27:16.93332 \N -189 189 86.99 USD 2022-09-02 16:27:17.452728 2022-07-12 18:15:25.857124 2022-09-02 16:27:17.452744 \N -141 141 24.99 USD 2022-09-02 16:27:21.43599 2022-07-12 18:15:16.617447 2022-09-02 16:27:21.436002 \N -115 115 92.99 USD 2022-09-02 16:27:22.533128 2022-07-12 18:14:01.024129 2022-09-02 16:27:22.533141 \N -136 136 45.99 USD 2022-09-02 16:27:23.312246 2022-07-12 18:15:15.876406 2022-09-02 16:27:23.31226 \N -178 178 28.99 USD 2022-09-02 16:28:44.377808 2022-07-12 18:15:24.195663 2022-09-02 16:28:44.377824 \N -113 113 50.99 USD 2022-09-02 16:28:46.84677 2022-07-12 18:14:00.227416 2022-09-02 16:28:46.846787 \N -221 221 17.99 USD 2022-09-02 16:27:33.685841 2022-07-12 18:15:30.770882 2022-09-02 16:27:33.685856 \N -67 67 36.99 USD 2022-09-02 16:27:35.415154 2022-07-12 18:13:41.834376 2022-09-02 16:27:35.415173 \N -183 183 36.99 USD 2022-09-02 16:27:35.48795 2022-07-12 18:15:24.930517 2022-09-02 16:27:35.487963 \N -14 14 18.99 USD 2022-09-02 14:33:28.75648 2022-07-12 18:13:21.825212 2022-09-02 14:33:28.756522 \N -130 130 18.99 USD 2022-09-02 14:33:28.916128 2022-07-12 18:15:14.959508 2022-09-02 14:33:28.916141 \N -70 70 34.99 USD 2022-09-02 14:33:48.926528 2022-07-12 18:13:42.977034 2022-09-02 14:33:48.926543 \N -186 186 34.99 USD 2022-09-02 14:33:48.997348 2022-07-12 18:15:25.372289 2022-09-02 14:33:48.997361 \N -84 84 25.99 USD 2022-09-02 16:25:39.919401 2022-07-12 18:13:48.847159 2022-09-02 16:25:39.919446 \N -200 200 25.99 USD 2022-09-02 16:25:40.025711 2022-07-12 18:15:27.549985 2022-09-02 16:25:40.025725 \N -64 64 90.99 USD 2022-09-02 16:25:43.69808 2022-07-12 18:13:40.760013 2022-09-02 16:25:43.698094 \N -180 180 90.99 USD 2022-09-02 16:25:43.792832 2022-07-12 18:15:24.453558 2022-09-02 16:25:43.792856 \N -81 81 60.99 USD 2022-09-02 16:25:55.977783 2022-07-12 18:13:47.733697 2022-09-02 16:25:55.9778 \N -197 197 60.99 USD 2022-09-02 16:25:56.063072 2022-07-12 18:15:27.138298 2022-09-02 16:25:56.063087 \N -49 49 55.99 USD 2022-09-02 16:26:05.000703 2022-07-12 18:13:35.261318 2022-09-02 16:26:05.000722 \N -165 165 55.99 USD 2022-09-02 16:26:05.122363 2022-07-12 18:15:21.05346 2022-09-02 16:26:05.122385 \N -1 1 24.99 USD 2022-09-02 16:26:09.569675 2022-07-12 18:13:17.286374 2022-09-02 16:26:09.569694 \N -117 117 24.99 USD 2022-09-02 16:26:09.638537 2022-07-12 18:15:12.960719 2022-09-02 16:26:09.638555 \N -232 232 20.99 USD 2022-09-02 16:27:03.470721 2022-07-12 18:15:32.323075 2022-09-02 16:27:03.470736 \N -145 145 11.99 USD 2022-09-02 16:27:04.249833 2022-07-12 18:15:17.239865 2022-09-02 16:27:04.249848 \N -35 35 73.99 USD 2022-09-02 16:27:05.268878 2022-07-12 18:13:29.987904 2022-09-02 16:27:05.268897 \N -129 129 28.99 USD 2022-09-02 16:27:12.939646 2022-07-12 18:15:14.825812 2022-09-02 16:27:12.93967 \N -24 24 73.99 USD 2022-09-02 16:27:13.394662 2022-07-12 18:13:25.518936 2022-09-02 16:27:13.394683 \N -222 222 52.99 USD 2022-09-02 16:27:16.143687 2022-07-12 18:15:30.896837 2022-09-02 16:27:16.1437 \N -23 23 61.99 USD 2022-09-02 16:27:18.341535 2022-07-12 18:13:25.164782 2022-09-02 16:27:18.341561 \N -139 139 61.99 USD 2022-09-02 16:27:18.416782 2022-07-12 18:15:16.287059 2022-09-02 16:27:18.416794 \N -231 231 92.99 USD 2022-09-02 16:27:22.609731 2022-07-12 18:15:32.16885 2022-09-02 16:27:22.609746 \N -227 227 14.99 USD 2022-09-02 16:27:35.957028 2022-07-12 18:15:31.622854 2022-09-02 16:27:35.95705 \N -226 226 73.99 USD 2022-09-02 16:27:42.099154 2022-07-12 18:15:31.440126 2022-09-02 16:27:42.099167 \N -137 137 88.99 USD 2022-09-02 16:27:46.697104 2022-07-12 18:15:16.018652 2022-09-02 16:27:46.697117 \N -59 59 60.99 USD 2022-09-02 16:27:48.034468 2022-07-12 18:13:38.883514 2022-09-02 16:27:48.034486 \N -219 219 79.99 USD 2022-09-02 16:27:49.984931 2022-07-12 18:15:30.427769 2022-09-02 16:27:49.984944 \N -224 224 54.99 USD 2022-09-02 16:27:50.70351 2022-07-12 18:15:31.157706 2022-09-02 16:27:50.703525 \N -225 225 71.99 USD 2022-09-02 16:27:51.281004 2022-07-12 18:15:31.307011 2022-09-02 16:27:51.281016 \N -220 220 47.99 USD 2022-09-02 16:27:52.77747 2022-07-12 18:15:30.606701 2022-09-02 16:27:52.777486 \N -26 26 67.99 USD 2022-09-02 16:28:01.06417 2022-07-12 18:13:26.322382 2022-09-02 16:28:01.064189 \N -210 210 13.99 USD 2022-09-02 16:28:02.483025 2022-07-12 18:15:29.092132 2022-09-02 16:28:02.483039 \N -100 100 34.99 USD 2022-09-02 16:28:18.63523 2022-07-12 18:13:55.208567 2022-09-02 16:28:18.635256 \N -202 202 43.99 USD 2022-09-02 16:28:19.91035 2022-07-12 18:15:27.999891 2022-09-02 16:28:19.910364 \N -223 223 67.99 USD 2022-09-02 16:28:20.882839 2022-07-12 18:15:31.026023 2022-09-02 16:28:20.882852 \N -45 45 17.99 USD 2022-09-02 16:28:32.89768 2022-07-12 18:13:33.63484 2022-09-02 16:28:32.897693 \N -177 177 15.99 USD 2022-09-02 16:28:36.827354 2022-07-12 18:15:24.049359 2022-09-02 16:28:36.827368 \N -228 228 45.99 USD 2022-09-02 16:28:41.210546 2022-07-12 18:15:31.765392 2022-09-02 16:28:41.210561 \N -230 230 45.99 USD 2022-09-02 16:28:41.827732 2022-07-12 18:15:32.040412 2022-09-02 16:28:41.827744 \N -12 12 52.99 USD 2022-09-02 16:28:43.206714 2022-07-12 18:13:21.159619 2022-09-02 16:28:43.206748 \N -195 195 83.99 USD 2022-09-02 16:28:45.072259 2022-07-12 18:15:26.846472 2022-09-02 16:28:45.072271 \N -229 229 50.99 USD 2022-09-02 16:28:46.915714 2022-07-12 18:15:31.912612 2022-09-02 16:28:46.915727 \N -235 235 5.00 USD \N 2022-09-02 17:19:13.898033 2022-09-02 17:22:37.181036 0.00 -236 236 9.99 USD \N 2022-09-02 17:31:19.73153 2022-09-02 17:34:10.222761 0.00 -237 237 3.50 USD \N 2022-09-02 18:30:30.914999 2022-09-02 18:35:26.41429 0.00 -238 238 18.99 USD \N 2022-09-02 18:38:46.429923 2022-09-02 18:38:58.141292 0.00 -239 239 5.99 USD \N 2022-09-02 18:41:05.391227 2022-09-02 18:43:46.889711 0.00 -240 240 12.99 USD \N 2022-09-02 18:42:26.510932 2022-09-02 18:47:09.257375 0.00 -241 241 10.00 USD \N 2022-09-02 18:44:36.13454 2022-09-02 18:51:13.348137 0.00 -243 243 27.00 USD \N 2022-09-02 18:52:56.275064 2022-09-02 18:54:07.980522 0.00 -242 242 11.01 USD \N 2022-09-02 18:50:49.24075 2022-09-02 19:08:03.808077 0.00 -246 246 19.92 USD \N 2022-09-02 19:01:55.300375 2022-09-02 19:11:43.128342 0.00 -245 245 19.84 USD \N 2022-09-02 18:59:14.668431 2022-09-02 19:12:38.331011 0.00 -244 244 4.13 USD \N 2022-09-02 18:57:21.60154 2022-09-02 19:16:00.923316 0.00 -234 234 14.99 USD \N 2022-09-02 17:09:21.565303 2022-09-08 15:41:32.979885 0.00 -233 233 19.99 USD \N 2022-09-02 16:33:37.735865 2022-09-08 15:42:11.75696 0.00 -\. - - --- --- Data for Name: spree_product_option_types; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_product_option_types (id, "position", product_id, option_type_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_product_promotion_rules; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_product_promotion_rules (id, product_id, promotion_rule_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: spree_product_properties; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_product_properties (id, value, product_id, property_id, created_at, updated_at, "position", show_property, filter_param) FROM stdin; -963 Datadog 117 2 2022-09-02 16:33:37.884843 2022-09-02 16:34:45.51011 1 t datadog -964 Datadog 118 2 2022-09-02 17:09:21.771276 2022-09-02 17:12:33.860129 1 t datadog -965 Datadog 119 2 2022-09-02 17:19:13.977857 2022-09-02 17:29:54.515482 1 t datadog -966 Datadog Training 120 2 2022-09-02 17:31:19.827955 2022-09-02 17:36:42.851347 1 t datadog-training -967 Datadog 121 2 2022-09-02 18:30:31.036118 2022-09-02 18:31:27.69165 1 t datadog -968 Datadog 124 2 2022-09-02 18:42:26.646845 2022-09-02 18:43:45.324859 1 t datadog -969 Datadog 125 2 2022-09-02 18:44:36.219102 2022-09-02 18:45:55.905848 1 t datadog -970 Datadog 126 2 2022-09-02 18:50:49.314888 2022-09-02 18:51:24.263099 1 t datadog -971 Datadog 127 2 2022-09-02 18:52:56.366504 2022-09-02 18:54:19.702039 1 t datadog -972 Datadog 128 2 2022-09-02 18:57:21.671562 2022-09-02 18:58:10.851126 1 t datadog -973 Datadog 129 2 2022-09-02 18:59:14.748296 2022-09-02 19:00:17.923645 1 t datadog -974 Datadog 130 2 2022-09-02 19:01:55.379756 2022-09-02 19:03:22.790409 1 t datadog -\. - - --- --- Data for Name: spree_products; Type: TABLE DATA; Schema: public; Owner: postgres --- - -COPY public.spree_products (id, name, description, available_on, deleted_at, slug, meta_description, meta_keywords, tax_category_id, shipping_category_id, created_at, updated_at, promotionable, meta_title, discontinue_on, public_metadata, private_metadata) FROM stdin; -14 3 4 Sleeve T Shirt Esse quisquam cupiditate ab saepe suscipit rerum ea aperiam. Inventore expedita tenetur aut beatae. Quae deleniti distinctio dignissimos labore. Labore expedita illum eius itaque provident. 2022-07-12 18:13:21.673176 2022-09-02 14:33:29.010605 1662129209_3-4-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:21.774208 2022-09-02 14:33:29.010161 t \N \N \N \N -39 A Line Suede Skirt Autem perferendis harum vel similique. Eaque quisquam perspiciatis laborum id eius veniam. Magni dicta at nostrum perferendis. Pariatur itaque quam voluptatem consequuntur alias id sint. 2022-07-12 18:13:31.276388 2022-09-02 14:33:32.145693 1662129212_a-line-suede-skirt \N \N 1 1 2022-07-12 18:13:31.391121 2022-09-02 14:33:32.145221 t \N \N \N \N -30 Anorak With Hood Laboriosam magni debitis inventore recusandae atque libero. Perferendis praesentium soluta odio exercitationem quis vel veniam asperiores. Cumque earum a facilis nam sunt quod. Sunt unde ratione natus officiis nam quaerat enim beatae. 2022-07-12 18:13:27.742848 2022-09-02 14:33:34.481806 1662129214_anorak-with-hood \N \N 1 1 2022-07-12 18:13:27.857596 2022-09-02 14:33:34.481248 t \N \N \N \N -87 Asymmetric Coat Numquam necessitatibus quo dolores sapiente minima nihil. Tempora alias ut sapiente eaque. Officiis voluptates veniam exercitationem laborum inventore. Odio dicta quas asperiores expedita saepe molestias. Delectus quos ipsam itaque quam odit debitis deserunt assumenda. 2022-07-12 18:13:49.777333 2022-09-02 14:33:39.581741 1662129219_asymmetric-coat \N \N 1 1 2022-07-12 18:13:49.8979 2022-09-02 14:33:39.581165 t \N \N \N \N -70 Asymmetric Sweater With Wide Sleeves Ab ad facilis ipsam reprehenderit ex ipsum. Quos nisi nobis itaque fugit minus modi nostrum. Eius perspiciatis mollitia veniam saepe voluptatibus. 2022-07-12 18:13:42.81728 2022-09-02 14:33:49.066631 1662129229_asymmetric-sweater-with-wide-sleeves \N \N 1 1 2022-07-12 18:13:42.927495 2022-09-02 14:33:49.066179 t \N \N \N \N -41 Flared Skirt Porro neque illum corrupti veritatis ducimus doloribus. Placeat beatae molestias quas earum voluptates modi molestiae reprehenderit. Exercitationem unde odio architecto deleniti vitae ipsa omnis nemo. Ratione pariatur rem molestiae ab animi occaecati error. Iure vitae deleniti consequuntur neque error. 2022-07-12 18:13:31.998 2022-09-02 16:27:00.004791 1662136020_flared-skirt \N \N 1 1 2022-07-12 18:13:32.106511 2022-09-02 16:27:00.004327 t \N \N \N \N -46 Floral Wrap Dress Recusandae minus temporibus cumque cupiditate necessitatibus labore reiciendis culpa. Cumque quibusdam corporis suscipit qui nostrum quidem. Culpa dignissimos eligendi deserunt neque vero. Fuga error ea porro esse ratione incidunt. 2022-07-12 18:13:33.870099 2022-09-02 16:27:24.147803 1662136044_floral-wrap-dress \N \N 1 1 2022-07-12 18:13:34.090368 2022-09-02 16:27:24.147397 t \N \N \N \N -112 Printed Pants With Holes Repellat velit laborum omnis consequatur provident libero occaecati ut. Dolorum modi excepturi perferendis occaecati. Porro eveniet molestiae nobis accusamus. 2022-07-12 18:13:59.632949 2022-09-02 16:28:41.29121 1662136121_printed-pants-with-holes \N \N 1 1 2022-07-12 18:13:59.741963 2022-09-02 16:28:41.290788 t \N \N \N \N -37 Midi Skirt With Bottoms Qui debitis nobis minima occaecati voluptatum dicta. Autem recusandae error doloribus illo laborum mollitia eligendi. Porro vero impedit ducimus numquam dicta atque. Accusantium maiores odio minus mollitia iusto natus expedita. Qui ducimus ipsam impedit tempora assumenda enim. 2022-07-12 18:13:30.546701 2022-09-02 16:28:29.317574 1662136109_midi-skirt-with-bottoms \N \N 1 1 2022-07-12 18:13:30.658555 2022-09-02 16:28:29.317165 t \N \N \N \N -84 Basic Loose T Shirt Accusamus perferendis cumque quod natus voluptates quos optio dolores. Odit reiciendis sapiente dignissimos voluptas molestiae repellendus minus. Sed praesentium aspernatur illo doloremque. Et vitae quidem delectus reiciendis. Expedita amet laboriosam cumque saepe eum rem. 2022-07-12 18:13:48.653251 2022-09-02 16:25:40.116039 1662135940_basic-loose-t-shirt \N \N 1 1 2022-07-12 18:13:48.787394 2022-09-02 16:25:40.115572 t \N \N \N \N -72 Oversized Sweatshirt Cum eveniet impedit facilis necessitatibus. Iure odit nihil neque culpa nulla veritatis ad. Incidunt pariatur magni temporibus modi voluptatibus quos nemo laborum. Dolor ut fuga adipisci quam. Fugit laborum atque hic cum adipisci natus. 2022-07-12 18:13:43.516638 2022-09-02 16:28:32.416479 1662136112_oversized-sweatshirt \N \N 1 1 2022-07-12 18:13:43.625507 2022-09-02 16:28:32.415603 t \N \N \N \N -45 Pleated Skirt 2 Fugiat iure doloremque vitae laudantium odit. Quos possimus at deserunt provident perferendis architecto natus suscipit. Deserunt corrupti consectetur dolore labore corporis quibusdam voluptatem sequi. Perspiciatis incidunt ab error nobis animi. 2022-07-12 18:13:33.459005 2022-09-02 16:28:33.073263 1662136113_pleated-skirt-2 \N \N 1 1 2022-07-12 18:13:33.572055 2022-09-02 16:28:33.072755 t \N \N \N \N -11 Regular Shirt With Rolled Up Sleeves Ducimus quas et dignissimos cupiditate. Itaque laboriosam cum repudiandae facere quod soluta aspernatur. Reprehenderit numquam beatae velit delectus iusto. Unde nostrum modi provident incidunt. 2022-07-12 18:13:20.677467 2022-09-02 16:27:31.684469 1662136051_regular-shirt-with-rolled-up-sleeves \N \N 1 1 2022-07-12 18:13:20.776635 2022-09-02 16:27:31.683771 t \N \N \N \N -16 Raw Edge T Shirt Facere officia laborum dolores animi autem tempora dolore. Suscipit sapiente dolores eaque fugiat ipsa asperiores. Animi eaque nesciunt voluptate dignissimos voluptates. Perferendis sequi suscipit rem officia quibusdam ut harum. 2022-07-12 18:13:22.376547 2022-09-02 16:28:36.211105 1662136116_raw-edge-t-shirt \N \N 1 1 2022-07-12 18:13:22.484648 2022-09-02 16:28:36.210653 t \N \N \N \N -62 Pleated Sleeve V Neck Shirt Hic at nulla omnis saepe placeat aliquam minus. Quae dolorum mollitia itaque aliquam accusantium corrupti. Ipsum iste nesciunt cum maxime animi ab maiores ex. Repudiandae ipsa laboriosam voluptates rem doloremque. 2022-07-12 18:13:39.918405 2022-09-02 16:28:44.452613 1662136124_pleated-sleeve-v-neck-shirt \N \N 1 1 2022-07-12 18:13:40.027365 2022-09-02 16:28:44.452146 t \N \N \N \N -114 Printed Pants Molestiae laudantium quidem repellendus tenetur nesciunt. Nihil sunt incidunt perferendis porro dolorum nam odio earum. Deserunt consequuntur ab nostrum alias velit unde repellendus minima. Sequi eligendi quis cupiditate dolorem. Tenetur inventore nihil ab mollitia magni sint provident. 2022-07-12 18:14:00.474266 2022-09-02 16:28:41.894097 1662136121_printed-pants \N \N 1 1 2022-07-12 18:14:00.618412 2022-09-02 16:28:41.893702 t \N \N \N \N -77 Printed T Shirt Sapiente culpa non dignissimos maxime magnam. Perspiciatis voluptas facere veniam deserunt possimus magni omnis iure. Enim ratione cupiditate aliquid adipisci perferendis consequuntur harum. Voluptatibus dolore inventore suscipit odio exercitationem quis dolor corrupti. Aspernatur libero voluptatibus totam nisi. 2022-07-12 18:13:45.606079 2022-09-02 16:28:38.092437 1662136118_printed-t-shirt \N \N 1 1 2022-07-12 18:13:45.721758 2022-09-02 16:28:38.092045 t \N \N \N \N -69 Printed Shirt Placeat eius harum facere aut. Earum quisquam sequi eaque ipsa modi. Sint quas incidunt nulla possimus facilis hic. Esse id ullam voluptas in reprehenderit quaerat corporis numquam. Hic dolores doloribus id excepturi dolore neque. 2022-07-12 18:13:42.426889 2022-09-02 16:28:40.122167 1662136120_printed-shirt \N \N 1 1 2022-07-12 18:13:42.55227 2022-09-02 16:28:40.12179 t \N \N \N \N -44 Floral Flared Skirt Earum consequatur ex ratione commodi voluptatem nesciunt minima aperiam. Incidunt provident impedit dolores dignissimos. Magnam hic nesciunt exercitationem aliquam. 2022-07-12 18:13:33.085572 2022-09-02 16:27:01.295678 1662136021_floral-flared-skirt \N \N 1 1 2022-07-12 18:13:33.201797 2022-09-02 16:27:01.295234 t \N \N \N \N -79 Pleated Sleeve T Shirt Ea nulla eligendi dolorem magni. Occaecati quidem fugit maxime fuga debitis excepturi. Odio ipsa porro doloribus ea nostrum nobis quas necessitatibus. Voluptatum natus perspiciatis dicta sint repudiandae tempora. Eveniet non sequi necessitatibus amet ipsum consequatur adipisci. 2022-07-12 18:13:46.815179 2022-09-02 16:28:45.139707 1662136125_pleated-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:46.928259 2022-09-02 16:28:45.1393 t \N \N \N \N -53 Printed Slit Sleeves Dress Ea ut distinctio odit repudiandae. Dicta placeat dolores illum esse. Architecto vel illum reiciendis totam ipsam amet repudiandae aperiam. 2022-07-12 18:13:36.560719 2022-09-02 16:28:38.718095 1662136118_printed-slit-sleeves-dress \N \N 1 1 2022-07-12 18:13:36.671818 2022-09-02 16:28:38.717644 t \N \N \N \N -71 Oversized Knitted Sweater Eius quod sunt modi nulla aspernatur illo. Magni veniam aperiam illum voluptatem alias maiores. Repellat commodi quo iste possimus. 2022-07-12 18:13:43.162257 2022-09-02 16:28:31.862087 1662136111_oversized-knitted-sweater \N \N 1 1 2022-07-12 18:13:43.280082 2022-09-02 16:28:31.861705 t \N \N \N \N -67 Semi Sheer Shirt With Pockets Suscipit quod explicabo culpa placeat incidunt animi ad. Maiores ad praesentium corrupti eos. Animi voluptas non rem occaecati. 2022-07-12 18:13:41.670246 2022-09-02 16:27:35.559877 1662136055_semi-sheer-shirt-with-pockets \N \N 1 1 2022-07-12 18:13:41.779463 2022-09-02 16:27:35.559435 t \N \N \N \N -105 Running Sweatshirt Excepturi inventore deserunt delectus dicta a. Voluptates ipsam eligendi accusantium illo quasi vel optio quibusdam. Deleniti iste facilis voluptatibus molestiae autem mollitia quisquam. Qui quam ut vitae dolores atque doloribus dicta. 2022-07-12 18:13:57.047807 2022-09-02 16:27:33.78407 1662136053_running-sweatshirt \N \N 1 1 2022-07-12 18:13:57.165606 2022-09-02 16:27:33.782368 t \N \N \N \N -19 Basic T Shirt Eligendi pariatur odit expedita labore. Sequi iste exercitationem repellendus expedita quam perspiciatis in fugit. Repellat sint iste hic tempore distinctio veritatis. In neque tenetur praesentium quidem deserunt laborum. Libero corporis recusandae cupiditate praesentium odio vero. 2022-07-12 18:13:23.566031 2022-09-02 16:25:42.061903 1662135942_basic-t-shirt \N \N 1 1 2022-07-12 18:13:23.677212 2022-09-02 16:25:42.061435 t \N \N \N \N -66 Floral Shirt Sed adipisci possimus quo impedit exercitationem. Quod culpa praesentium iste eaque placeat similique. Occaecati est saepe delectus nisi unde quia adipisci laborum. Sapiente ipsum molestiae nulla voluptatibus fugiat quaerat eaque. Vel tenetur hic eveniet rem unde assumenda nisi. 2022-07-12 18:13:41.315705 2022-09-02 16:27:02.096713 1662136022_floral-shirt \N \N 1 1 2022-07-12 18:13:41.420627 2022-09-02 16:27:02.096268 t \N \N \N \N -90 Zipped Jacket Voluptatum praesentium dolorem eum neque. Necessitatibus veniam perferendis cupiditate nulla velit. Perspiciatis ratione eligendi delectus sapiente assumenda. Vero ex explicabo dolorum fuga molestiae odio. 2022-07-12 18:13:51.087881 2022-09-02 16:28:00.577352 1662136080_zipped-jacket \N \N 1 1 2022-07-12 18:13:51.205812 2022-09-02 16:28:00.576913 t \N \N \N \N -111 Short Pants Soluta explicabo quisquam rem accusantium illo laborum ratione incidunt. Aperiam ab impedit quasi nihil odit. Maxime mollitia facere at voluptate. Veniam soluta expedita adipisci maiores vitae minus repudiandae harum. 2022-07-12 18:13:59.279977 2022-09-02 16:27:36.033786 1662136056_short-pants \N \N 1 1 2022-07-12 18:13:59.389341 2022-09-02 16:27:36.033381 t \N \N \N \N -56 Flounced Dress Fugit magnam odit nesciunt atque dolores saepe recusandae vero. Ipsa excepturi pariatur nisi rerum debitis. Temporibus quas rerum dolore perspiciatis iusto officia fugit. Nesciunt sapiente harum laboriosam impedit neque. 2022-07-12 18:13:37.669025 2022-09-02 16:27:02.759388 1662136022_flounced-dress \N \N 1 1 2022-07-12 18:13:37.775932 2022-09-02 16:27:02.758816 t \N \N \N \N -35 Jacket With Liner Animi quibusdam alias laborum adipisci quae. Eos rem quo adipisci nesciunt veritatis ad. Eius soluta ad eligendi magnam cumque repellendus eos. Officia quo rem deleniti provident. Enim aut voluptatum deleniti modi. 2022-07-12 18:13:29.807567 2022-09-02 16:27:05.414575 1662136025_jacket-with-liner \N \N 1 1 2022-07-12 18:13:29.935552 2022-09-02 16:27:05.414058 t \N \N \N \N -1 Denim Shirt Harum suscipit a sunt blanditiis nisi. Itaque labore commodi ipsa mollitia. Minus laboriosam est nemo earum sunt. 2022-07-12 18:13:17.026782 2022-09-02 16:26:09.720256 1662135969_denim-shirt \N \N 1 1 2022-07-12 18:13:17.233973 2022-09-02 16:26:09.719802 t \N \N \N \N -63 Cotton Shirt Vitae quisquam incidunt aut rem. Repudiandae quibusdam maiores doloremque dolorum facere quae. Labore corrupti delectus necessitatibus et veritatis quae explicabo. 2022-07-12 18:13:40.257348 2022-09-02 16:25:52.142342 1662135952_cotton-shirt \N \N 1 1 2022-07-12 18:13:40.3615 2022-09-02 16:25:52.141912 t \N \N \N \N -64 Blouse With Wide Flounced Sleeve Laboriosam qui quam magnam quidem aspernatur ex amet nostrum. Similique placeat ducimus incidunt illum maiores mollitia explicabo velit. Eligendi aliquid consectetur odio aperiam. 2022-07-12 18:13:40.602194 2022-09-02 16:25:43.882982 1662135943_blouse-with-wide-flounced-sleeve \N \N 1 1 2022-07-12 18:13:40.709149 2022-09-02 16:25:43.881815 t \N \N \N \N -43 Skater Short Skirt Velit quae iusto quas repellat non molestiae quisquam. Recusandae esse fugiat animi hic veniam. Debitis laborum accusantium animi voluptatum eligendi modi temporibus. Exercitationem natus voluptatibus aspernatur reiciendis suscipit. Dolor enim veniam ratione eos unde. 2022-07-12 18:13:32.719069 2022-09-02 16:27:36.748835 1662136056_skater-short-skirt \N \N 1 1 2022-07-12 18:13:32.829835 2022-09-02 16:27:36.748334 t \N \N \N \N -116 High Waist Pants Atque fuga dolore ipsam a culpa adipisci quia. Ab magni temporibus optio deleniti. Distinctio consequatur impedit eaque similique. 2022-07-12 18:14:01.217208 2022-09-02 16:27:03.555318 1662136023_high-waist-pants \N \N 1 1 2022-07-12 18:14:01.322012 2022-09-02 16:27:03.554716 t \N \N \N \N -96 Bomber Jacket Laboriosam eaque animi impedit tempora eum corrupti. Ut exercitationem mollitia necessitatibus officia nemo nobis. Qui eius dolore officiis nostrum veniam. 2022-07-12 18:13:53.587633 2022-09-02 16:25:45.516225 1662135945_bomber-jacket \N \N 1 1 2022-07-12 18:13:53.739252 2022-09-02 16:25:45.515812 t \N \N \N \N -110 Shined Pants Incidunt illo molestias eveniet dicta neque veritatis illum fugit. Doloribus consequatur dolorem est ipsa culpa. Dicta modi quo sunt blanditiis omnis magni itaque. Pariatur ipsa minima libero quis dolorum ipsum beatae. 2022-07-12 18:13:58.925767 2022-09-02 16:27:42.188495 1662136062_shined-pants \N \N 1 1 2022-07-12 18:13:59.030752 2022-09-02 16:27:42.18807 t \N \N \N \N -2 Checked Shirt Incidunt in sunt ea id nostrum assumenda nemo velit. Soluta impedit occaecati molestiae inventore vel eius minus tenetur. Quis in rerum ipsa incidunt fuga. 2022-07-12 18:13:17.470012 2022-09-02 16:25:47.21882 1662135947_checked-shirt \N \N 1 1 2022-07-12 18:13:17.570674 2022-09-02 16:25:47.218358 t \N \N \N \N -5 Short Sleeve Shirt Inventore eaque ea debitis eius nostrum neque porro. Recusandae sequi totam neque dolorum. Ducimus corporis debitis officiis omnis. 2022-07-12 18:13:18.629763 2022-09-02 16:27:42.811559 1662136062_short-sleeve-shirt \N \N 1 1 2022-07-12 18:13:18.733675 2022-09-02 16:27:42.811099 t \N \N \N \N -101 Laced Crop Top Vero rerum minima ab aliquid. Atque ab officiis perspiciatis distinctio dolore minus illo. Totam aperiam error accusantium voluptatibus consequatur. Repellat explicabo amet vel nesciunt ullam aliquid laborum itaque. 2022-07-12 18:13:55.387812 2022-09-02 16:27:08.137317 1662136028_laced-crop-top \N \N 1 1 2022-07-12 18:13:55.505438 2022-09-02 16:27:08.136895 t \N \N \N \N -61 Printed Wrapped Blouse Sapiente amet laudantium recusandae ratione illo. Sit id vero aliquid accusamus earum. Facilis autem nobis perspiciatis consectetur nesciunt vero illo corporis. 2022-07-12 18:13:39.562815 2022-09-02 16:28:36.897231 1662136116_printed-wrapped-blouse \N \N 1 1 2022-07-12 18:13:39.674399 2022-09-02 16:28:36.896745 t \N \N \N \N -7 Regular Shirt Aperiam autem amet nam laudantium quidem. Fuga consequatur voluptas qui voluptatem consectetur doloribus. Quas veritatis exercitationem excepturi consequatur aut quibusdam. 2022-07-12 18:13:19.30322 2022-09-02 16:28:35.55735 1662136115_regular-shirt \N \N 1 1 2022-07-12 18:13:19.407093 2022-09-02 16:28:35.556926 t \N \N \N \N -15 T Shirt With Holes Placeat dolores ducimus molestias animi. Quibusdam vitae necessitatibus earum corrupti exercitationem adipisci deserunt. Quisquam distinctio fuga qui nulla atque. Cumque quaerat ullam quia vel suscipit. Dolores magnam quae eos unde mollitia. 2022-07-12 18:13:22.022377 2022-09-02 16:27:45.588236 1662136065_t-shirt-with-holes \N \N 1 1 2022-07-12 18:13:22.128963 2022-09-02 16:27:45.587828 t \N \N \N \N -8 Checked Slim Fit Shirt Distinctio eum pariatur consectetur quod tempore laudantium exercitationem. Magnam occaecati accusantium debitis libero dolorum quaerat. Voluptatibus praesentium reprehenderit iusto ea cum. Beatae possimus porro velit error corrupti. Ea dolore amet nostrum voluptate similique. 2022-07-12 18:13:19.646856 2022-09-02 16:25:48.767477 1662135948_checked-slim-fit-shirt \N \N 1 1 2022-07-12 18:13:19.751861 2022-09-02 16:25:48.766138 t \N \N \N \N -28 Suede Biker Jacket Illo nemo a ipsum odit incidunt sapiente. Quasi tenetur unde tempora nihil ullam. Reiciendis cum architecto suscipit nostrum. Sint voluptate cupiditate rem temporibus quasi aliquam accusantium. Voluptates ullam excepturi voluptatem ad enim. 2022-07-12 18:13:26.906223 2022-09-02 16:27:46.199069 1662136066_suede-biker-jacket \N \N 1 1 2022-07-12 18:13:27.057238 2022-09-02 16:27:46.198637 t \N \N \N \N -21 Stripped Jumper Odio ex possimus molestias ut architecto. Dolor neque corrupti recusandae voluptas ratione doloremque aut. Error id recusandae dolorem aliquid eos. Quae consectetur ducimus cum dignissimos debitis neque enim. Sunt doloremque ullam provident nobis. 2022-07-12 18:13:24.29614 2022-09-02 16:27:46.76863 1662136066_stripped-jumper \N \N 1 1 2022-07-12 18:13:24.405774 2022-09-02 16:27:46.768189 t \N \N \N \N -40 Leather Skirt With Lacing Officia nulla corrupti explicabo eius totam quam. Minima alias consectetur exercitationem iste expedita fugiat vitae accusantium. Qui nesciunt ea fugiat autem illum dignissimos culpa tenetur. Id ea suscipit maiores consequatur beatae. 2022-07-12 18:13:31.643288 2022-09-02 16:27:09.109005 1662136029_leather-skirt-with-lacing \N \N 1 1 2022-07-12 18:13:31.751738 2022-09-02 16:27:09.108596 t \N \N \N \N -51 Striped Shirt Dress Iusto reiciendis omnis aut alias. Natus quisquam nostrum at cupiditate harum ratione accusantium. Quo dolor voluptatum distinctio odio voluptatem. Laudantium hic perspiciatis facilis commodi architecto. Adipisci earum nam dolorem at fugiat dolores. 2022-07-12 18:13:35.817391 2022-09-02 16:27:47.500164 1662136067_striped-shirt-dress \N \N 1 1 2022-07-12 18:13:35.938824 2022-09-02 16:27:47.499718 t \N \N \N \N -76 Crop Top With Tie Aut alias iste adipisci modi eos. Atque maiores dolorem error possimus ipsam. Commodi ipsa quo repudiandae autem. 2022-07-12 18:13:45.194571 2022-09-02 16:25:57.94484 1662135957_crop-top-with-tie \N \N 1 1 2022-07-12 18:13:45.312161 2022-09-02 16:25:57.944402 t \N \N \N \N -85 Coat With Pockets Similique repellendus laborum repudiandae explicabo fugit facilis. Blanditiis cum ullam magnam quidem aliquam. Deserunt laudantium consequuntur nihil repellendus quasi sint ut. 2022-07-12 18:13:49.047532 2022-09-02 16:25:50.495979 1662135950_coat-with-pockets \N \N 1 1 2022-07-12 18:13:49.162968 2022-09-02 16:25:50.495549 t \N \N \N \N -102 Sports Bra Medium Support Nulla aut dicta cum dolorum modi officiis. Quam suscipit voluptatem cumque dolorem et at itaque. Iusto ea id tempora fuga dolores expedita ducimus assumenda. Earum commodi ad provident assumenda reiciendis animi suscipit optio. 2022-07-12 18:13:55.742633 2022-09-02 16:27:48.739322 1662136068_sports-bra-medium-support \N \N 1 1 2022-07-12 18:13:55.848228 2022-09-02 16:27:48.738904 t \N \N \N \N -10 Linen Shirt Eveniet asperiores tenetur repellat placeat modi ab veritatis excepturi. Cupiditate recusandae sit quibusdam modi labore. Distinctio a ex beatae ipsa illum exercitationem nesciunt molestiae. Sed ipsa sapiente amet provident voluptate veniam. 2022-07-12 18:13:20.332429 2022-09-02 16:27:09.931541 1662136029_linen-shirt \N \N 1 1 2022-07-12 18:13:20.438071 2022-09-02 16:27:09.931078 t \N \N \N \N -24 Long Sleeve Sweatshirt Reprehenderit nulla adipisci voluptatibus eum. Modi ullam cupiditate alias adipisci enim doloremque nam. Assumenda voluptate optio provident laborum voluptatibus totam. 2022-07-12 18:13:25.361399 2022-09-02 16:27:13.599906 1662136033_long-sleeve-sweatshirt \N \N 1 1 2022-07-12 18:13:25.468421 2022-09-02 16:27:13.59943 t \N \N \N \N -97 Sports Bra Low Support Illum impedit quisquam atque cupiditate velit veniam nisi. Expedita ad quod quasi aperiam corporis repellendus. A dolore tenetur laborum sapiente animi atque. Aliquam praesentium perferendis tempora perspiciatis occaecati. Rerum illo pariatur officia consequuntur at. 2022-07-12 18:13:53.985874 2022-09-02 16:27:49.560075 1662136069_sports-bra-low-support \N \N 1 1 2022-07-12 18:13:54.100351 2022-09-02 16:27:49.559677 t \N \N \N \N -27 Long Sleeve Jumper Veritatis aspernatur vero eius rerum nam doloremque iure similique. Minima explicabo nostrum aperiam ipsam veritatis. Natus id deleniti cupiditate ex vero exercitationem amet error. 2022-07-12 18:13:26.52462 2022-09-02 16:27:10.673064 1662136030_long-sleeve-jumper \N \N 1 1 2022-07-12 18:13:26.635809 2022-09-02 16:27:10.67261 t \N \N \N \N -103 Sports Bra Ipsum magnam animi voluptatum ratione rerum eius nobis. Amet eos dolores facere aspernatur architecto. Dolorum occaecati quam impedit placeat laboriosam labore repudiandae pariatur. Quod consequatur expedita numquam repellat animi tempora. 2022-07-12 18:13:56.194397 2022-09-02 16:27:50.065306 1662136070_sports-bra \N \N 1 1 2022-07-12 18:13:56.31494 2022-09-02 16:27:50.064725 t \N \N \N \N -42 Skater Skirt Dolor sit nisi commodi nostrum beatae culpa. Molestiae quos alias odit rem distinctio dicta in. Aperiam repellat totam recusandae quaerat pariatur labore. Voluptates necessitatibus incidunt alias magnam laudantium eos. Mollitia sed corporis dolor at nemo rerum. 2022-07-12 18:13:32.349681 2022-09-02 16:27:54.077593 1662136074_skater-skirt \N \N 1 1 2022-07-12 18:13:32.468571 2022-09-02 16:27:54.077167 t \N \N \N \N -108 Sport Windproof Jacket Officiis nulla similique eos tempora. Ab qui illo incidunt maiores vero possimus. Eos modi similique nemo doloribus voluptatibus quos molestias. Alias nihil sed doloremque molestias. Tenetur nisi temporibus quo magnam molestiae blanditiis. 2022-07-12 18:13:58.181169 2022-09-02 16:27:50.776624 1662136070_sport-windproof-jacket \N \N 1 1 2022-07-12 18:13:58.285334 2022-09-02 16:27:50.776188 t \N \N \N \N -78 Scrappy Top Temporibus repellendus dolore autem unde nobis. Doloribus iure distinctio tempore alias molestias. Officia tenetur maiores possimus totam pariatur repellat consequuntur. 2022-07-12 18:13:46.3407 2022-09-02 16:27:34.866099 1662136054_scrappy-top \N \N 1 1 2022-07-12 18:13:46.48078 2022-09-02 16:27:34.865647 t \N \N \N \N -13 Long Sleeve T Shirt Nesciunt reprehenderit quia modi quae molestias odio deleniti consectetur. Veritatis perspiciatis dolore voluptas corrupti aut. Magni delectus at odio asperiores quidem. Vel unde voluptas optio id possimus impedit. Dicta consectetur ducimus placeat eum eos voluptatibus perspiciatis. 2022-07-12 18:13:21.337759 2022-09-02 16:27:13.025824 1662136033_long-sleeve-t-shirt \N \N 1 1 2022-07-12 18:13:21.447101 2022-09-02 16:27:13.025258 t \N \N \N \N -104 Sport Cropp Top Eos veritatis magni error facilis. Expedita at deleniti repellat aliquid dolore. Quos libero fugiat corrupti voluptatibus doloremque alias repellat. 2022-07-12 18:13:56.660013 2022-09-02 16:27:52.864239 1662136072_sport-cropp-top \N \N 1 1 2022-07-12 18:13:56.812783 2022-09-02 16:27:52.863785 t \N \N \N \N -109 Sport Waistcoat Perferendis harum voluptas tempora dolore maiores deleniti. Cum praesentium omnis atque corporis. Ipsum nihil quod rerum neque beatae sed vel deleniti. Temporibus et ducimus exercitationem dolorum molestiae hic corporis rem. 2022-07-12 18:13:58.547108 2022-09-02 16:27:51.346934 1662136071_sport-waistcoat \N \N 1 1 2022-07-12 18:13:58.659922 2022-09-02 16:27:51.346498 t \N \N \N \N -57 Slit Maxi Dress Veniam eaque iste incidunt omnis. Numquam totam tempore voluptates possimus quibusdam corrupti expedita magni. Eos numquam natus exercitationem ut. Velit odit facere dolorum maiores suscipit laudantium quisquam. Corrupti velit sunt vel repellendus a ipsum tempore illo. 2022-07-12 18:13:38.022248 2022-09-02 16:27:53.553408 1662136073_slit-maxi-dress \N \N 1 1 2022-07-12 18:13:38.132993 2022-09-02 16:27:53.552955 t \N \N \N \N -3 Covered Placket Shirt Distinctio fugiat iste nobis enim non earum. Autem minus facere quos minima perspiciatis vel ad. Qui deserunt ex accusantium laboriosam rerum vitae. Provident ducimus itaque modi alias perferendis consectetur. A pariatur amet dicta dolorum. 2022-07-12 18:13:17.960419 2022-09-02 16:25:54.161663 1662135954_covered-placket-shirt \N \N 1 1 2022-07-12 18:13:18.063139 2022-09-02 16:25:54.161212 t \N \N \N \N -99 Oversize T Shirt Wrapped On Back Facere provident praesentium inventore modi veritatis. Nam numquam veritatis quae non optio aperiam quisquam. Totam ab vero rerum aut. Magni amet sed praesentium voluptatem impedit nostrum alias. 2022-07-12 18:13:54.692243 2022-09-02 16:28:31.304256 1662136111_oversize-t-shirt-wrapped-on-back \N \N 1 1 2022-07-12 18:13:54.802491 2022-09-02 16:28:31.30388 t \N \N \N \N -100 Long Sleeves Crop Top Nobis deleniti corporis modi molestiae atque error. Beatae architecto corrupti voluptate repudiandae qui ullam. Sint nesciunt sed vel ab. Temporibus id tempore iste iusto. Rerum commodi quidem dolorum esse eaque vitae delectus. 2022-07-12 18:13:55.035514 2022-09-02 16:28:18.778775 1662136098_long-sleeves-crop-top \N \N 1 1 2022-07-12 18:13:55.156868 2022-09-02 16:28:18.778344 t \N \N \N \N -80 Scrappy Crop Top With Tie Quod eos consectetur nihil ut fugiat labore iusto. Exercitationem error enim commodi magnam est. Explicabo eaque iste eveniet asperiores beatae. Ex modi repudiandae labore aperiam cumque. Omnis reiciendis placeat possimus ad molestiae illo incidunt exercitationem. 2022-07-12 18:13:47.219704 2022-09-02 16:27:34.375065 1662136054_scrappy-crop-top-with-tie \N \N 1 1 2022-07-12 18:13:47.327846 2022-09-02 16:27:34.374607 t \N \N \N \N -88 Long Coat With Belt Quo animi sequi nihil maiores quisquam beatae ipsum. Nesciunt rerum quidem nihil dolore eaque illum quae nulla. Dicta esse in iste tempora fugit et nisi beatae. 2022-07-12 18:13:50.154756 2022-09-02 16:27:15.484191 1662136035_long-coat-with-belt \N \N 1 1 2022-07-12 18:13:50.273003 2022-09-02 16:27:15.483733 t \N \N \N \N -50 Long Sleeve Knitted Dress Vitae delectus voluptates ab quisquam ipsum impedit. Occaecati eaque aperiam officia assumenda cum modi. Sed quod consequatur ipsam iure aspernatur. 2022-07-12 18:13:35.44638 2022-09-02 16:27:14.243331 1662136034_long-sleeve-knitted-dress \N \N 1 1 2022-07-12 18:13:35.557525 2022-09-02 16:27:14.242862 t \N \N \N \N -26 Zipped High Neck Sweater Labore optio tempora nobis nemo officiis ipsam. Cupiditate assumenda maiores cumque totam reiciendis voluptate illum aspernatur. Numquam reprehenderit architecto repellat rem consequatur nemo illo. Esse voluptatum occaecati quas animi tempore iure. Maxime dolore error laboriosam quae. 2022-07-12 18:13:26.14777 2022-09-02 16:28:01.227568 1662136081_zipped-high-neck-sweater \N \N 1 1 2022-07-12 18:13:26.262199 2022-09-02 16:28:01.226191 t \N \N \N \N -81 Crop Top Est sint similique explicabo aperiam aliquam mollitia id. Aliquam unde error doloribus nostrum mollitia consequatur. Excepturi quidem voluptate ullam ex molestiae. Quidem dicta ab debitis blanditiis vitae repellat laborum. Facere ad minima quisquam at illum. 2022-07-12 18:13:47.567897 2022-09-02 16:25:56.144074 1662135956_crop-top \N \N 1 1 2022-07-12 18:13:47.680797 2022-09-02 16:25:56.143505 t \N \N \N \N -32 Wool Blend Short Coat At magni quas deleniti tenetur. Eum iusto molestias voluptas cum sed magni ducimus. Praesentium aliquid non necessitatibus autem repudiandae atque delectus eligendi. Laudantium molestias enim nobis illo quae natus explicabo. Inventore occaecati sunt dicta quaerat nisi dolor. 2022-07-12 18:13:28.723377 2022-09-02 16:28:01.83436 1662136081_wool-blend-short-coat \N \N 1 1 2022-07-12 18:13:28.834877 2022-09-02 16:28:01.833824 t \N \N \N \N -94 Wool Blend Coat With Belt Mollitia facere eveniet quia numquam. Illum odio adipisci corporis sint deleniti itaque. Minus quaerat sed tempora nobis. Rerum suscipit sit corporis repellat voluptates ad. 2022-07-12 18:13:52.793484 2022-09-02 16:28:02.55914 1662136082_wool-blend-coat-with-belt \N \N 1 1 2022-07-12 18:13:52.943398 2022-09-02 16:28:02.558577 t \N \N \N \N -22 Long Sleeve Jumper With Pocket Delectus ratione in aspernatur consequuntur minus praesentium laborum. Quia excepturi optio aliquid fugit voluptatibus in vel itaque. Rerum libero reiciendis temporibus recusandae possimus fuga minus distinctio. Id ipsum totam itaque recusandae magni quibusdam sed adipisci. 2022-07-12 18:13:24.645297 2022-09-02 16:27:14.899458 1662136034_long-sleeve-jumper-with-pocket \N \N 1 1 2022-07-12 18:13:24.764565 2022-09-02 16:27:14.898869 t \N \N \N \N -82 Loose T Shirt With Pocket Imitation Magni corporis iste quas nihil nisi rem doloremque aliquid. Ea fuga quaerat eaque accusamus similique. Eius ea delectus quod reprehenderit explicabo earum ullam voluptas. Mollitia dolorum libero perferendis facilis tempore iusto. 2022-07-12 18:13:47.92671 2022-09-02 16:28:20.570194 1662136100_loose-t-shirt-with-pocket-imitation \N \N 1 1 2022-07-12 18:13:48.029968 2022-09-02 16:28:20.569797 t \N \N \N \N -60 V Neck Wide Shirt Mollitia quo omnis sequi reiciendis. Recusandae tempore deserunt harum occaecati reprehenderit vero voluptatibus. Molestiae magni voluptatum amet tenetur vel. Veritatis adipisci iusto excepturi dolorem sed ab. Maxime facilis recusandae repudiandae illo alias laudantium. 2022-07-12 18:13:39.067867 2022-09-02 16:28:03.833898 1662136083_v-neck-wide-shirt \N \N 1 1 2022-07-12 18:13:39.316362 2022-09-02 16:28:03.833425 t \N \N \N \N -17 V Neck T Shirt Eveniet molestiae enim illum placeat recusandae. Distinctio praesentium nobis explicabo excepturi velit aspernatur. Incidunt eum aliquam vitae eveniet voluptate. 2022-07-12 18:13:22.719738 2022-09-02 16:28:04.512745 1662136084_v-neck-t-shirt \N \N 1 1 2022-07-12 18:13:22.972608 2022-09-02 16:28:04.512289 t \N \N \N \N -52 Printed Dress Exercitationem tempore saepe dicta aliquid atque facilis debitis. Expedita assumenda itaque non nulla quas. Repellat est ipsum at qui ex odio. Tempora quidem quas unde optio. Voluptas maiores eos totam quas. 2022-07-12 18:13:36.187544 2022-09-02 16:28:42.566088 1662136122_printed-dress \N \N 1 1 2022-07-12 18:13:36.305061 2022-09-02 16:28:42.565608 t \N \N \N \N -113 Pants Alias est molestias laudantium consequuntur in minus facere distinctio. Quae omnis natus accusamus unde ducimus. Perspiciatis quas quos blanditiis tempora soluta quam molestias minima. Quod vitae necessitatibus aut voluptatibus repellendus quidem. Atque facere amet harum voluptates. 2022-07-12 18:14:00.036039 2022-09-02 16:28:46.981352 1662136126_pants \N \N 1 1 2022-07-12 18:14:00.171791 2022-09-02 16:28:46.980958 t \N \N \N \N -47 V Neck Floral Maxi Dress Sit asperiores nihil incidunt iste iusto natus sint. Molestiae consequuntur recusandae facilis atque totam dolorem dolorum ea. Labore aspernatur vel autem minima voluptates magni. Nihil sit quod numquam eius facere eum in minima. 2022-07-12 18:13:34.354511 2022-09-02 16:28:06.321172 1662136086_v-neck-floral-maxi-dress \N \N 1 1 2022-07-12 18:13:34.473636 2022-09-02 16:28:06.320729 t \N \N \N \N -55 V Neck Floral Dress Delectus ducimus eligendi tempora quos vero cumque. Eligendi placeat perferendis maxime neque minima. Velit aliquid voluptate ex quidem voluptas in iure odio. Cum quia quos fugit harum exercitationem. Facere suscipit dolore quia sed et illo at deserunt. 2022-07-12 18:13:37.282987 2022-09-02 16:28:06.979858 1662136086_v-neck-floral-dress \N \N 1 1 2022-07-12 18:13:37.398664 2022-09-02 16:28:06.979416 t \N \N \N \N -4 Slim Fit Shirt Maxime unde magni sed eos amet asperiores. Modi est vel enim tempore iste accusantium. Error ad vitae expedita doloremque numquam. 2022-07-12 18:13:18.289352 2022-09-02 16:27:43.37352 1662136063_slim-fit-shirt \N \N 1 1 2022-07-12 18:13:18.401467 2022-09-02 16:27:43.373047 t \N \N \N \N -83 Sleeveless Loose Top Harum sint ad vero voluptate accusantium natus. Sit laudantium explicabo velit ipsa tempore. Tenetur nemo quibusdam molestiae laudantium distinctio eum adipisci. Fugiat animi voluptate quas praesentium sunt repudiandae quasi consequatur. 2022-07-12 18:13:48.268389 2022-09-02 16:27:38.217954 1662136058_sleeveless-loose-top \N \N 1 1 2022-07-12 18:13:48.404769 2022-09-02 16:27:38.217484 t \N \N \N \N -106 Lightweight Running Jacket Atque enim soluta minima fugiat. Beatae itaque doloribus dignissimos possimus laudantium qui officiis. Ut quaerat quae esse harum nemo repellat sint. Tempore error ipsum omnis illum cumque. Officiis natus explicabo illo iure at distinctio minus. 2022-07-12 18:13:57.438296 2022-09-02 16:27:16.214681 1662136036_lightweight-running-jacket \N \N 1 1 2022-07-12 18:13:57.55469 2022-09-02 16:27:16.214211 t \N \N \N \N -73 Knitted High Neck Sweater Sapiente animi eius dicta non quaerat dolorem ratione. Error laborum earum in necessitatibus facilis esse. Maiores rerum repudiandae asperiores cupiditate mollitia. Amet dicta beatae odio deserunt animi esse. Pariatur minus quam culpa distinctio vero. 2022-07-12 18:13:43.873073 2022-09-02 16:27:17.527689 1662136037_knitted-high-neck-sweater \N \N 1 1 2022-07-12 18:13:43.998569 2022-09-02 16:27:17.527239 t \N \N \N \N -18 Tank Top Tempora ipsam aliquid inventore provident dolor. Exercitationem ex magnam dolorem perferendis nemo architecto saepe. Provident quis occaecati asperiores dolorem nemo. 2022-07-12 18:13:23.209425 2022-09-02 16:28:07.527152 1662136087_tank-top \N \N 1 1 2022-07-12 18:13:23.317573 2022-09-02 16:28:07.526737 t \N \N \N \N -98 Long Sleeves Yoga Crop Top Sit dolores placeat possimus fugit eius. Libero deserunt perspiciatis similique cumque doloremque quae. Ab perferendis ducimus iste nam quisquam. 2022-07-12 18:13:54.337359 2022-09-02 16:28:19.355544 1662136099_long-sleeves-yoga-crop-top \N \N 1 1 2022-07-12 18:13:54.447803 2022-09-02 16:28:19.355125 t \N \N \N \N -74 Knitted V Neck Sweater Aspernatur laboriosam blanditiis minima ipsa exercitationem. Magnam pariatur eaque tempora saepe ad vero. Facilis commodi nihil quae quod. Itaque illum ipsa porro quibusdam. 2022-07-12 18:13:44.266041 2022-09-02 16:27:07.267267 1662136027_knitted-v-neck-sweater \N \N 1 1 2022-07-12 18:13:44.38903 2022-09-02 16:27:07.266841 t \N \N \N \N -29 Hooded Jacket Incidunt rem repellat fuga hic illum. Dolor incidunt ullam mollitia cumque. Velit cumque placeat voluptatibus enim. Ad iusto fugiat maxime necessitatibus optio. 2022-07-12 18:13:27.356685 2022-09-02 16:27:04.322036 1662136024_hooded-jacket \N \N 1 1 2022-07-12 18:13:27.474123 2022-09-02 16:27:04.321591 t \N \N \N \N -86 Long Wool Blend Coat With Belt Quidem ratione explicabo delectus nesciunt. Iusto provident atque id voluptatem debitis nihil. Fugit exercitationem tempore provident molestias distinctio quia impedit. Voluptatibus natus nesciunt adipisci qui quasi voluptatum eius harum. 2022-07-12 18:13:49.417552 2022-09-02 16:28:19.982357 1662136099_long-wool-blend-coat-with-belt \N \N 1 1 2022-07-12 18:13:49.525501 2022-09-02 16:28:19.981958 t \N \N \N \N -49 Elegant Flared Dress Iure aliquid perferendis rerum dignissimos. Ea expedita dolorum aut nihil corporis nesciunt. Dicta harum soluta corporis perspiciatis hic eum. Ex corporis consequuntur accusantium qui. 2022-07-12 18:13:35.08712 2022-09-02 16:26:05.222016 1662135965_elegant-flared-dress \N \N 1 1 2022-07-12 18:13:35.202274 2022-09-02 16:26:05.221578 t \N \N \N \N -75 Cropped Fitted Sweater Vitae non repudiandae ipsam quia expedita hic numquam. Iste iure debitis dolorum sequi amet mollitia maxime. Veritatis laborum libero atque vitae doloribus doloremque error. 2022-07-12 18:13:44.81429 2022-09-02 16:25:59.585643 1662135959_cropped-fitted-sweater \N \N 1 1 2022-07-12 18:13:44.935521 2022-09-02 16:25:59.585193 t \N \N \N \N -93 Leather Biker Jacket Accusantium asperiores vitae quo nulla vel ab placeat. Voluptate repellat reprehenderit vitae voluptatem blanditiis magni. Inventore saepe minima fugiat dignissimos alias corrupti aperiam. In quidem minima ipsa et sed culpa. Consectetur eveniet amet beatae voluptates architecto sit minus possimus. 2022-07-12 18:13:52.434348 2022-09-02 16:27:17.019323 1662136037_leather-biker-jacket \N \N 1 1 2022-07-12 18:13:52.549667 2022-09-02 16:27:17.018894 t \N \N \N \N -107 Oversize Sweatshirt Incidunt possimus nesciunt ea quo nihil. Harum repellat soluta sint nemo eius consequatur blanditiis consectetur. Eius voluptates consectetur facere maiores vel temporibus facilis ipsum. Corporis sunt saepe laboriosam porro. Porro assumenda optio reiciendis molestiae quaerat laborum. 2022-07-12 18:13:57.806171 2022-09-02 16:28:20.955353 1662136100_oversize-sweatshirt \N \N 1 1 2022-07-12 18:13:57.929854 2022-09-02 16:28:20.954945 t \N \N \N \N -95 Denim Hooded Jacket Ducimus beatae sit numquam excepturi natus minima. Aliquam provident vitae aperiam eos dicta occaecati. Impedit quam aspernatur assumenda fugit incidunt officiis. Quo inventore ipsum accusamus natus fugit. Dolores eligendi quos ipsam ab eaque asperiores similique vitae. 2022-07-12 18:13:53.188645 2022-09-02 16:26:01.376129 1662135961_denim-hooded-jacket \N \N 1 1 2022-07-12 18:13:53.29933 2022-09-02 16:26:01.375649 t \N \N \N \N -23 Jumper Voluptatibus iste aspernatur sunt quos earum amet. Facilis officia pariatur quis voluptates neque. Laborum esse adipisci omnis impedit. 2022-07-12 18:13:24.997166 2022-09-02 16:27:18.484784 1662136038_jumper \N \N 1 1 2022-07-12 18:13:25.105046 2022-09-02 16:27:18.484329 t \N \N \N \N -25 Hoodie Commodi soluta suscipit cumque neque. Voluptatem consectetur qui voluptates libero. Quibusdam omnis ad voluptates voluptatibus maxime. Unde minus optio tenetur vero accusantium eius itaque. Labore dolore hic ipsum quo accusamus quidem. 2022-07-12 18:13:25.701521 2022-09-02 16:27:21.499706 1662136041_hoodie \N \N 1 1 2022-07-12 18:13:25.822753 2022-09-02 16:27:21.49931 t \N \N \N \N -54 Dress With Belt Iusto aut architecto sequi inventore quod delectus eligendi minima. In quod animi quisquam fuga ratione. Iusto incidunt sequi quis dicta sapiente tempore. 2022-07-12 18:13:36.930584 2022-09-02 16:26:06.71989 1662135966_dress-with-belt \N \N 1 1 2022-07-12 18:13:37.043743 2022-09-02 16:26:06.71942 t \N \N \N \N -36 Flared Midi Skirt Necessitatibus ratione quos hic suscipit exercitationem corrupti. Dolorem nulla sint natus aliquid expedita. Facere officiis odio sint delectus molestiae aut recusandae. Sed molestias saepe ad nobis praesentium blanditiis. Facere corrupti sit quaerat iste officiis excepturi inventore. 2022-07-12 18:13:30.177617 2022-09-02 16:26:03.47934 1662135963_flared-midi-skirt \N \N 1 1 2022-07-12 18:13:30.290347 2022-09-02 16:26:03.478825 t \N \N \N \N -115 High Waist Pants With Pockets Quasi voluptates quo molestias nulla perferendis consequatur repellat. Voluptates enim odit libero repellendus officiis laboriosam. Iure soluta adipisci dignissimos amet eveniet. 2022-07-12 18:14:00.867015 2022-09-02 16:27:22.684622 1662136042_high-waist-pants-with-pockets \N \N 1 1 2022-07-12 18:14:00.972025 2022-09-02 16:27:22.68416 t \N \N \N \N -20 High Neck Sweater Ducimus aperiam maiores doloribus laborum nemo. Fugiat voluptates vero quibusdam beatae quidem voluptatem alias. Ab quisquam labore cum nemo alias eligendi hic provident. Laudantium placeat exercitationem nulla fugiat. 2022-07-12 18:13:23.932558 2022-09-02 16:27:23.3856 1662136043_high-neck-sweater \N \N 1 1 2022-07-12 18:13:24.047159 2022-09-02 16:27:23.38513 t \N \N \N \N -48 Flared Dress Perferendis id labore dolore corporis exercitationem quas. Doloremque consequuntur architecto exercitationem iusto. Quasi voluptatibus quae aperiam velit nisi. Commodi perferendis tempora magni neque. Minima nesciunt qui aliquam voluptatibus facilis aut quis. 2022-07-12 18:13:34.73343 2022-09-02 16:26:04.262003 1662135964_flared-dress \N \N 1 1 2022-07-12 18:13:34.84675 2022-09-02 16:26:04.261549 t \N \N \N \N -38 Fitted Skirt Amet ducimus voluptatum omnis praesentium repellat illum atque nulla. Autem praesentium consequuntur illo aperiam eos facere distinctio. Maxime quisquam maiores earum error quis temporibus. 2022-07-12 18:13:30.906301 2022-09-02 16:26:04.846644 1662135964_fitted-skirt \N \N 1 1 2022-07-12 18:13:31.026289 2022-09-02 16:26:04.846108 t \N \N \N \N -65 Elegant Blouse With Chocker Tempore unde quibusdam eaque et similique incidunt. In nostrum asperiores voluptates at soluta hic perspiciatis cum. Non nobis reiciendis possimus enim cumque. Velit voluptatum sed omnis veritatis aliquid ipsam. 2022-07-12 18:13:40.937892 2022-09-02 16:26:05.840037 1662135965_elegant-blouse-with-chocker \N \N 1 1 2022-07-12 18:13:41.049032 2022-09-02 16:26:05.839589 t \N \N \N \N -33 Down Jacket With Hood Maiores provident optio tempore inventore officiis. Repellendus quisquam sit recusandae sequi. Quaerat in porro provident ratione asperiores. Maxime vitae beatae doloremque magnam aliquid. 2022-07-12 18:13:29.092483 2022-09-02 16:26:07.131222 1662135967_down-jacket-with-hood \N \N 1 1 2022-07-12 18:13:29.206958 2022-09-02 16:26:07.130785 t \N \N \N \N -59 Striped Shirt Maiores asperiores expedita incidunt eos ex. Minus sunt voluptatum rem inventore unde eius. Occaecati excepturi incidunt id debitis quasi placeat. 2022-07-12 18:13:38.717982 2022-09-02 16:27:48.172707 1662136068_striped-shirt \N \N 1 1 2022-07-12 18:13:38.831243 2022-09-02 16:27:48.171888 t \N \N \N \N -68 V Neck Shirt Voluptate atque voluptatibus culpa vitae. Atque aliquam nemo a repellat. Iste laboriosam in maxime libero atque. Facilis molestiae optio sed ducimus vel nobis et. Adipisci vel nisi possimus autem aliquam veritatis molestias quo. 2022-07-12 18:13:42.045267 2022-09-02 16:28:05.075886 1662136085_v-neck-shirt \N \N 1 1 2022-07-12 18:13:42.165262 2022-09-02 16:28:05.075455 t \N \N \N \N -34 Wool Blend Coat Occaecati ea cum saepe dolore minus hic. Earum consectetur facere labore possimus est numquam commodi ea. Ad adipisci quidem corporis a at. Sint hic molestias temporibus recusandae debitis. 2022-07-12 18:13:29.458783 2022-09-02 16:28:03.142569 1662136083_wool-blend-coat \N \N 1 1 2022-07-12 18:13:29.567693 2022-09-02 16:28:03.141966 t \N \N \N \N -89 Down Jacket Molestiae soluta veniam illo alias voluptatum minima accusamus. Ea corporis dolores autem dolorem vitae qui id ut. Nesciunt autem voluptatibus asperiores ab facilis quam porro iusto. Asperiores blanditiis architecto non placeat corrupti excepturi consequuntur. Eius repudiandae aperiam dicta delectus. 2022-07-12 18:13:50.546399 2022-09-02 16:26:07.624198 1662135967_down-jacket \N \N 1 1 2022-07-12 18:13:50.722652 2022-09-02 16:26:07.623684 t \N \N \N \N -6 Printed Short Sleeve Shirt Voluptatibus perspiciatis tempore recusandae reiciendis. Et aliquam velit molestiae iure occaecati dolore eum. Minus facilis commodi adipisci placeat excepturi in esse. 2022-07-12 18:13:18.967612 2022-09-02 16:28:39.41427 1662136119_printed-short-sleeve-shirt \N \N 1 1 2022-07-12 18:13:19.074261 2022-09-02 16:28:39.413851 t \N \N \N \N -58 Semi Sheer Shirt With Floral Cuffs Eos quia perspiciatis nulla id qui deleniti maxime. Quisquam est ea esse ab. Atque excepturi culpa similique commodi. Sequi pariatur qui voluptatibus delectus ea corrupti cupiditate perferendis. Distinctio mollitia ad deserunt excepturi dolorum adipisci nulla. 2022-07-12 18:13:38.37956 2022-09-02 16:27:41.547134 1662136061_semi-sheer-shirt-with-floral-cuffs \N \N 1 1 2022-07-12 18:13:38.486672 2022-09-02 16:27:41.540608 t \N \N \N \N -91 Loose Fitted Jacket Quasi nobis aperiam rem harum saepe unde similique. Repellat voluptatum quibusdam in dolorem. Numquam debitis fuga esse occaecati quaerat distinctio corrupti. 2022-07-12 18:13:51.564444 2022-09-02 16:28:28.497619 1662136108_loose-fitted-jacket \N \N 1 1 2022-07-12 18:13:51.687103 2022-09-02 16:28:28.497132 t \N \N \N \N -92 Double Breasted Jacket Ullam neque quidem officiis nisi pariatur explicabo quibusdam odio. Ullam quis et laudantium eius sunt dolor ab architecto. Dignissimos explicabo quae amet incidunt omnis. 2022-07-12 18:13:51.978032 2022-09-02 16:26:08.235011 1662135968_double-breasted-jacket \N \N 1 1 2022-07-12 18:13:52.148849 2022-09-02 16:26:08.233117 t \N \N \N \N -12 Polo T Shirt Sed enim ut molestiae nisi impedit. Quibusdam commodi doloremque officiis tempore. Fugiat itaque suscipit eligendi rerum quas ut quaerat optio. 2022-07-12 18:13:21.006743 2022-09-02 16:28:43.369487 1662136123_polo-t-shirt \N \N 1 1 2022-07-12 18:13:21.109783 2022-09-02 16:28:43.369046 t \N \N \N \N -9 Dotted Shirt Mollitia magni atque alias eligendi qui cupiditate deleniti eos. Magnam excepturi voluptatum atque harum eaque architecto. Ducimus magnam at labore exercitationem quae. Possimus tempora animi qui atque voluptatem minus ipsum accusamus. 2022-07-12 18:13:19.992871 2022-09-02 16:26:09.007155 1662135969_dotted-shirt \N \N 1 1 2022-07-12 18:13:20.098254 2022-09-02 16:26:09.0067 t \N \N \N \N -31 Denim Jacket Omnis totam modi id quia atque quas. Quae ipsa quia nobis suscipit. Autem ut voluptatum quo vel occaecati. Laboriosam voluptatum at aut deleniti minima debitis. Beatae voluptates laborum inventore quibusdam. 2022-07-12 18:13:28.207573 2022-09-02 16:26:10.412079 1662135970_denim-jacket \N \N 1 1 2022-07-12 18:13:28.320011 2022-09-02 16:26:10.411643 t \N \N \N \N -118 Bits by Dre

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 Bits

Slap 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 Bits

Just 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 Bits

Show 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 Bits

With 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 Bits

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 2022-09-08 15:47:28.939313 t \N \N \N -123 OG Bits

It'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 Bits

Be 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 Bits

Everybody 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 Bits

This 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 Bits

Show 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 Bits

Remember 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 Sticker

The 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 Bits

Celebrate 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 ( + +
+

Oops, there is an error!

+ +
+
+ ) + } + + // Return children components in case of no error + + return this.props.children + } +} + +export default withRouter(ErrorBoundary) diff --git a/services/frontend/site/components/auth/ForgotPassword.tsx b/services/frontend/components/auth/ForgotPassword.tsx similarity index 100% rename from services/frontend/site/components/auth/ForgotPassword.tsx rename to services/frontend/components/auth/ForgotPassword.tsx diff --git a/services/frontend/site/components/auth/LoginView.tsx b/services/frontend/components/auth/LoginView.tsx similarity index 100% rename from services/frontend/site/components/auth/LoginView.tsx rename to services/frontend/components/auth/LoginView.tsx diff --git a/services/frontend/site/components/auth/SignUpView.tsx b/services/frontend/components/auth/SignUpView.tsx similarity index 100% rename from services/frontend/site/components/auth/SignUpView.tsx rename to services/frontend/components/auth/SignUpView.tsx diff --git a/services/frontend/site/components/auth/index.ts b/services/frontend/components/auth/index.ts similarity index 100% rename from services/frontend/site/components/auth/index.ts rename to services/frontend/components/auth/index.ts diff --git a/services/frontend/site/components/cart/CartItem/CartItem.module.css b/services/frontend/components/cart/CartItem/CartItem.module.css similarity index 86% rename from services/frontend/site/components/cart/CartItem/CartItem.module.css rename to services/frontend/components/cart/CartItem/CartItem.module.css index dd43314f..90321a02 100644 --- a/services/frontend/site/components/cart/CartItem/CartItem.module.css +++ b/services/frontend/components/cart/CartItem/CartItem.module.css @@ -17,12 +17,12 @@ } .productImage { - position: absolute; - transform: scale(1.9); + /* position: absolute; width: 100%; height: 100%; left: 30% !important; - top: 30% !important; + top: 30% !important; */ + transform: scale(1.3); z-index: 1; } diff --git a/services/frontend/site/components/cart/CartItem/CartItem.tsx b/services/frontend/components/cart/CartItem/CartItem.tsx similarity index 83% rename from services/frontend/site/components/cart/CartItem/CartItem.tsx rename to services/frontend/components/cart/CartItem/CartItem.tsx index ecd3e39a..e8240a05 100644 --- a/services/frontend/site/components/cart/CartItem/CartItem.tsx +++ b/services/frontend/components/cart/CartItem/CartItem.tsx @@ -4,10 +4,9 @@ import Image from 'next/image' import Link from 'next/link' import s from './CartItem.module.css' import { useUI } from '@components/ui/context' -import type { LineItem } from '@commerce/types/cart' -import usePrice from '@framework/product/use-price' -import useUpdateItem from '@framework/cart/use-update-item' -import useRemoveItem from '@framework/cart/use-remove-item' +import type { CartLineItem } from '@customTypes/cart' +import usePrice from '@lib/hooks/usePrice' +import { useCart } from '@lib/CartContext' import Quantity from '@components/ui/Quantity' type ItemOption = { @@ -26,14 +25,13 @@ const CartItem = ({ ...rest }: { variant?: 'default' | 'display' - item: LineItem + item: CartLineItem currencyCode: string }) => { + const { cartRemove, cartUpdate } = useCart() const { closeSidebarIfPresent } = useUI() const [removing, setRemoving] = useState(false) const [quantity, setQuantity] = useState(item.quantity) - const removeItem = useRemoveItem() - const updateItem = useUpdateItem({ item }) const { price } = usePrice({ amount: item.variant.price * item.quantity, @@ -44,20 +42,28 @@ const CartItem = ({ const handleChange = async ({ target: { value }, }: ChangeEvent) => { - setQuantity(Number(value)) - await updateItem({ quantity: Number(value) }) + try { + await cartUpdate(item.id, Number(value)) + setQuantity(Number(value)) + } catch (error) { + console.error(error) + } } - const increaseQuantity = async (n = 1) => { - const val = Number(quantity) + n - setQuantity(val) - await updateItem({ quantity: val }) + const updateQuantity = async (n = 1) => { + try { + const val = Number(quantity) + n + await cartUpdate(item.id, val) + setQuantity(val) + } catch (error) { + console.error(error) + } } const handleRemove = async () => { setRemoving(true) try { - await removeItem(item) + await cartRemove(item.id) } catch (error) { setRemoving(false) } @@ -71,7 +77,6 @@ const CartItem = ({ if (item.quantity !== Number(quantity)) { setQuantity(item.quantity) } - // TODO: currently not including quantity in deps is intended, but we should // do this differently as it could break easily // eslint-disable-next-line react-hooks/exhaustive-deps }, [item.quantity]) @@ -93,7 +98,7 @@ const CartItem = ({ width={150} height={150} src={item.variant.image?.url || placeholderImg} - alt={item.variant.image?.altText || "Product Image"} + alt={item.variant.image?.alt || 'Product Image'} unoptimized /> @@ -110,6 +115,7 @@ const CartItem = ({ + {/* TODO: determine if we want to use this */} {options && options.length > 0 && (
{options.map((option: ItemOption, i: number) => ( @@ -148,8 +154,8 @@ const CartItem = ({ value={quantity} handleRemove={handleRemove} handleChange={handleChange} - increase={() => increaseQuantity(1)} - decrease={() => increaseQuantity(-1)} + increase={() => updateQuantity(1)} + decrease={() => updateQuantity(-1)} /> )} diff --git a/services/frontend/site/components/cart/CartItem/index.ts b/services/frontend/components/cart/CartItem/index.ts similarity index 100% rename from services/frontend/site/components/cart/CartItem/index.ts rename to services/frontend/components/cart/CartItem/index.ts diff --git a/services/frontend/site/components/cart/CartSidebarView/CartSidebarView.module.css b/services/frontend/components/cart/CartSidebarView/CartSidebarView.module.css similarity index 100% rename from services/frontend/site/components/cart/CartSidebarView/CartSidebarView.module.css rename to services/frontend/components/cart/CartSidebarView/CartSidebarView.module.css diff --git a/services/frontend/components/cart/CartSidebarView/CartSidebarView.tsx b/services/frontend/components/cart/CartSidebarView/CartSidebarView.tsx new file mode 100644 index 00000000..557e8dd0 --- /dev/null +++ b/services/frontend/components/cart/CartSidebarView/CartSidebarView.tsx @@ -0,0 +1,133 @@ +import cn from 'clsx' +import Link from 'next/link' +import { FC } from 'react' +import s from './CartSidebarView.module.css' +import CartItem from '../CartItem' +import { Button, Text } from '@components/ui' +import { useUI } from '@components/ui/context' +import { Bag, Cross, Check } from '@components/icons' +import { useCart } from '@lib/CartContext' +import usePrice from '@lib/hooks/usePrice' +import SidebarLayout from '@components/common/SidebarLayout' + +const CartSidebarView: FC = () => { + const { closeSidebar, setSidebarView } = useUI() + const { cart } = useCart() + + const { price: subTotal } = usePrice( + cart && { + amount: Number(cart.subtotalPrice), + currencyCode: cart.currency.code, + } + ) + const { price: total } = usePrice( + cart && { + amount: Number(cart.totalPrice), + currencyCode: cart.currency.code, + } + ) + const handleClose = () => closeSidebar() + const goToCheckout = () => setSidebarView('CHECKOUT_VIEW') + + const error = null + const success = null + + return ( + + {!cart || !cart.lineItems.length ? ( +
+ + + +

+ Your cart is empty +

+

+ Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake. +

+
+ ) : error ? ( +
+ + + +

+ We couldn't process the purchase. Please check your card information + and try again. +

+
+ ) : success ? ( +
+ + + +

+ Thank you for your order. +

+
+ ) : ( + <> +
+ + + + My Cart + + + +
    + {cart?.lineItems.map((item: any) => ( + + ))} +
+
+ +
+
    +
  • + Subtotal + {subTotal} +
  • +
  • + Taxes + Calculated at checkout +
  • +
  • + Shipping + + {Number(cart?.shipTotal).toFixed(2) || 'TBD'} + +
  • +
+
+ Total + {total} +
+
+ +
+
+ + )} +
+ ) +} + +export default CartSidebarView diff --git a/services/frontend/site/components/cart/CartSidebarView/index.ts b/services/frontend/components/cart/CartSidebarView/index.ts similarity index 100% rename from services/frontend/site/components/cart/CartSidebarView/index.ts rename to services/frontend/components/cart/CartSidebarView/index.ts diff --git a/services/frontend/site/components/cart/index.ts b/services/frontend/components/cart/index.ts similarity index 100% rename from services/frontend/site/components/cart/index.ts rename to services/frontend/components/cart/index.ts diff --git a/services/frontend/site/components/checkout/CheckoutSidebarView/CheckoutSidebarView.module.css b/services/frontend/components/checkout/CheckoutSidebarView/CheckoutSidebarView.module.css similarity index 100% rename from services/frontend/site/components/checkout/CheckoutSidebarView/CheckoutSidebarView.module.css rename to services/frontend/components/checkout/CheckoutSidebarView/CheckoutSidebarView.module.css diff --git a/services/frontend/components/checkout/CheckoutSidebarView/CheckoutSidebarView.tsx b/services/frontend/components/checkout/CheckoutSidebarView/CheckoutSidebarView.tsx new file mode 100644 index 00000000..28d14ce8 --- /dev/null +++ b/services/frontend/components/checkout/CheckoutSidebarView/CheckoutSidebarView.tsx @@ -0,0 +1,208 @@ +import Link from 'next/link' +import { FC, useState } from 'react' +import cn from 'clsx' +import { datadogRum } from '@datadog/browser-rum' + +import CartItem from '@components/cart/CartItem' +import { Button, Text } from '@components/ui' +import { useUI } from '@components/ui/context' +import SidebarLayout from '@components/common/SidebarLayout' +import { useCart } from '@lib/CartContext' +import usePrice from '@lib/hooks/usePrice' +import ShippingWidget from '../ShippingWidget' +import PaymentWidget from '../PaymentWidget' +import { useCheckoutContext } from '../context' + +import s from './CheckoutSidebarView.module.css' + +const CheckoutSidebarView: FC = () => { + const [loadingSubmit, setLoadingSubmit] = useState(false) + const [discountInput, setDiscountInput] = useState('') + const [checkoutError, setCheckoutError] = useState(null) + const { setSidebarView, closeSidebar } = useUI() + const { cart: cartData, cartEmpty, cartInit } = useCart() + const { + shippingRate, + addressStatus, + paymentStatus, + clearCheckoutFields, + handleCompleteCheckout, + } = useCheckoutContext() + + const { price: subTotal } = usePrice( + cartData && { + amount: Number(cartData.subtotalPrice), + currencyCode: cartData.currency.code, + } + ) + const { price: total } = usePrice( + cartData && { + amount: Number(cartData.totalPrice), + currencyCode: cartData.currency.code, + } + ) + + async function handleSubmit(event: React.ChangeEvent) { + try { + setLoadingSubmit(true) + event.preventDefault() + + const res = await handleCompleteCheckout() + if (res.error) { + throw res.error + } + + datadogRum.addAction('Successful Checkout', { + id: cartData.id, + cartTotal: cartData.totalPrice, + createdAt: cartData.createdAt, + discounts: cartData.discounts, + lineItems: cartData.lineItems, + }) + + clearCheckoutFields() + setLoadingSubmit(false) + await cartEmpty() + await cartInit() + setSidebarView('ORDER_CONFIRM_VIEW') + } catch (e) { + console.log(e) + setCheckoutError(e) + setLoadingSubmit(false) + } + } + + async function handleDiscount(event: React.ChangeEvent) { + event.preventDefault() + + if (!discountInput) { + console.error('No discount input!') + return + } + + try { + const discountPath = `${process.env.NEXT_PUBLIC_DISCOUNTS_ROUTE}:${process.env.NEXT_PUBLIC_DISCOUNTS_PORT}` + const discountCode = discountInput.toUpperCase() + // call discounts service + const res = await fetch( + `${discountPath}/discount-code?discount_code=${discountCode}` + ) + const discount = await res.json() + + if (discount?.error) { + throw 'No discount found!' + } + + console.log('discount accepted', discount) + setDiscountInput('') + } catch (err) { + console.error(err) + } + } + + return ( + setSidebarView('CART_VIEW')} + > +
+ Checkout + {checkoutError && ( +
+ {checkoutError} +
+ )} + + setSidebarView('PAYMENT_VIEW')} + /> + setSidebarView('SHIPPING_VIEW')} + /> + +
    + {cartData?.lineItems.map((item: any) => ( + + ))} +
+ +
+
+ + setDiscountInput(e.target.value)} + /> +
+
+ +
+
+
+ +
+
    +
  • + Subtotal + {subTotal} +
  • +
  • + Taxes + Calculated at checkout +
  • +
  • + Shipping + + {shippingRate?.price || 'TBD'} + +
  • +
+
+ Total + {total} +
+
+ {/* Once data is correctly filled */} + +
+
+
+ ) +} + +export default CheckoutSidebarView diff --git a/services/frontend/site/components/checkout/CheckoutSidebarView/index.ts b/services/frontend/components/checkout/CheckoutSidebarView/index.ts similarity index 100% rename from services/frontend/site/components/checkout/CheckoutSidebarView/index.ts rename to services/frontend/components/checkout/CheckoutSidebarView/index.ts diff --git a/services/frontend/site/components/checkout/OrderConfirmView/OrderConfirmView.module.css b/services/frontend/components/checkout/OrderConfirmView/OrderConfirmView.module.css similarity index 100% rename from services/frontend/site/components/checkout/OrderConfirmView/OrderConfirmView.module.css rename to services/frontend/components/checkout/OrderConfirmView/OrderConfirmView.module.css diff --git a/services/frontend/site/components/checkout/OrderConfirmView/OrderConfirmView.tsx b/services/frontend/components/checkout/OrderConfirmView/OrderConfirmView.tsx similarity index 100% rename from services/frontend/site/components/checkout/OrderConfirmView/OrderConfirmView.tsx rename to services/frontend/components/checkout/OrderConfirmView/OrderConfirmView.tsx diff --git a/services/frontend/site/components/checkout/OrderConfirmView/index.ts b/services/frontend/components/checkout/OrderConfirmView/index.ts similarity index 100% rename from services/frontend/site/components/checkout/OrderConfirmView/index.ts rename to services/frontend/components/checkout/OrderConfirmView/index.ts diff --git a/services/frontend/site/components/checkout/PaymentMethodView/PaymentMethodView.module.css b/services/frontend/components/checkout/PaymentMethodView/PaymentMethodView.module.css similarity index 100% rename from services/frontend/site/components/checkout/PaymentMethodView/PaymentMethodView.module.css rename to services/frontend/components/checkout/PaymentMethodView/PaymentMethodView.module.css diff --git a/services/frontend/components/checkout/PaymentMethodView/PaymentMethodView.tsx b/services/frontend/components/checkout/PaymentMethodView/PaymentMethodView.tsx new file mode 100644 index 00000000..7f2eda58 --- /dev/null +++ b/services/frontend/components/checkout/PaymentMethodView/PaymentMethodView.tsx @@ -0,0 +1,123 @@ +import { FC, useState, useEffect } from 'react' +import cn from 'clsx' +import { Button, Text } from '@components/ui' +import { useUI } from '@components/ui/context' +import SidebarLayout from '@components/common/SidebarLayout' +import { useCheckoutContext } from '@components/checkout/context' + +import s from './PaymentMethodView.module.css' + +const PaymentMethodView: FC = () => { + const { setSidebarView } = useUI() + const { cardFields, setCardFields, paymentStatus } = useCheckoutContext() + + const [formData, setFormData] = useState({ + name: cardFields.source_attributes.name || '', + number: cardFields.source_attributes.number || '', + month: cardFields.source_attributes.month || '', + year: cardFields.source_attributes.year || '', + verification_value: cardFields.source_attributes.verification_value || '', + }) + + function handleChange(event: React.ChangeEvent) { + const target = event.target + const value = target.value + const name = target.name + setFormData((prevFormData) => ({ + ...prevFormData, + [name]: value, + })) + } + + async function handleSubmit(event: React.ChangeEvent) { + event.preventDefault() + + const cardFields = { + payment_method_id: '1', + source_attributes: { + name: formData.name, + number: formData.number, + month: formData.month, + year: formData.year, + verification_value: formData.verification_value, + cc_type: 'visa', + }, + } + + setCardFields(cardFields) + setSidebarView('CHECKOUT_VIEW') + } + + return ( +
+ setSidebarView('CHECKOUT_VIEW')}> +
+ Payment Method + {paymentStatus?.ok === false && ( +
+ {paymentStatus.message} +
+ )} +
+
+ + +
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+ +
+
+
+ ) +} + +export default PaymentMethodView diff --git a/services/frontend/site/components/checkout/PaymentMethodView/index.ts b/services/frontend/components/checkout/PaymentMethodView/index.ts similarity index 100% rename from services/frontend/site/components/checkout/PaymentMethodView/index.ts rename to services/frontend/components/checkout/PaymentMethodView/index.ts diff --git a/services/frontend/site/components/checkout/PaymentWidget/PaymentWidget.module.css b/services/frontend/components/checkout/PaymentWidget/PaymentWidget.module.css similarity index 100% rename from services/frontend/site/components/checkout/PaymentWidget/PaymentWidget.module.css rename to services/frontend/components/checkout/PaymentWidget/PaymentWidget.module.css diff --git a/services/frontend/site/components/checkout/PaymentWidget/PaymentWidget.tsx b/services/frontend/components/checkout/PaymentWidget/PaymentWidget.tsx similarity index 83% rename from services/frontend/site/components/checkout/PaymentWidget/PaymentWidget.tsx rename to services/frontend/components/checkout/PaymentWidget/PaymentWidget.tsx index 9b496bb4..ab644301 100644 --- a/services/frontend/site/components/checkout/PaymentWidget/PaymentWidget.tsx +++ b/services/frontend/components/checkout/PaymentWidget/PaymentWidget.tsx @@ -8,9 +8,6 @@ interface ComponentProps { } const PaymentWidget: FC = ({ onClick, isValid }) => { - /* Shipping Address - Only available with checkout set to true - - This means that the provider does offer checkout functionality. */ return (
@@ -21,6 +18,9 @@ const PaymentWidget: FC = ({ onClick, isValid }) => { {/* VISA #### #### #### 2345 */}
{isValid ? : }
+ {/*
+ +
*/}
) } diff --git a/services/frontend/site/components/checkout/PaymentWidget/index.ts b/services/frontend/components/checkout/PaymentWidget/index.ts similarity index 100% rename from services/frontend/site/components/checkout/PaymentWidget/index.ts rename to services/frontend/components/checkout/PaymentWidget/index.ts diff --git a/services/frontend/site/components/checkout/ShippingView/ShippingView.module.css b/services/frontend/components/checkout/ShippingView/ShippingView.module.css similarity index 100% rename from services/frontend/site/components/checkout/ShippingView/ShippingView.module.css rename to services/frontend/components/checkout/ShippingView/ShippingView.module.css diff --git a/services/frontend/components/checkout/ShippingView/ShippingView.tsx b/services/frontend/components/checkout/ShippingView/ShippingView.tsx new file mode 100644 index 00000000..3ebd2b7c --- /dev/null +++ b/services/frontend/components/checkout/ShippingView/ShippingView.tsx @@ -0,0 +1,195 @@ +import { FC, useState, useEffect } from 'react' +import cn from 'clsx' + +import Button from '@components/ui/Button' +import { useUI } from '@components/ui/context' +import SidebarLayout from '@components/common/SidebarLayout' +import { useCheckoutContext } from '@components/checkout/context' + +import s from './ShippingView.module.css' + +import countryIsoCodes from '../../../config/country_iso_codes.json' + +const ShippingView: FC = () => { + const { setSidebarView } = useUI() + const { addressFields, setAddressFields, addressStatus } = + useCheckoutContext() + + const [formData, setFormData] = useState({ + firstname: addressFields.firstname || '', + lastname: addressFields.lastname || '', + email: addressFields.email || '', + address1: addressFields.address1 || '', + address2: addressFields.address2 || '', + zipcode: addressFields.zipcode || '', + city: addressFields.city || '', + phone: addressFields.phone || '', + state_name: addressFields.state_name || '', + country_iso: addressFields.country_iso || 'US', + }) + + function handleChange(event: React.ChangeEvent) { + const target = event.target + const value = target.value + const name = target.name + + setFormData((prevFormData) => ({ + ...prevFormData, + [name]: value, + })) + } + + async function handleSubmit(event: React.ChangeEvent) { + event.preventDefault() + + const addressFields = { + firstname: formData.firstname, + lastname: formData.lastname, + email: formData.email, + address1: formData.address1, + address2: formData.address2, + zipcode: formData.zipcode, + city: formData.city, + phone: formData.phone, + state_name: formData.state_name, + country_iso: formData.country_iso, + } + + setAddressFields(addressFields) + setSidebarView('CHECKOUT_VIEW') + } + + return ( +
+ setSidebarView('CHECKOUT_VIEW')}> +
+

+ Shipping +

+ {/* display error if there is one */} + {addressStatus.ok === false && ( +
+ {addressStatus.message} +
+ )} +
+
+
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+ +
+
+
+ ) +} + +export default ShippingView diff --git a/services/frontend/site/components/checkout/ShippingView/index.ts b/services/frontend/components/checkout/ShippingView/index.ts similarity index 100% rename from services/frontend/site/components/checkout/ShippingView/index.ts rename to services/frontend/components/checkout/ShippingView/index.ts diff --git a/services/frontend/site/components/checkout/ShippingWidget/ShippingWidget.module.css b/services/frontend/components/checkout/ShippingWidget/ShippingWidget.module.css similarity index 100% rename from services/frontend/site/components/checkout/ShippingWidget/ShippingWidget.module.css rename to services/frontend/components/checkout/ShippingWidget/ShippingWidget.module.css diff --git a/services/frontend/site/components/checkout/ShippingWidget/ShippingWidget.tsx b/services/frontend/components/checkout/ShippingWidget/ShippingWidget.tsx similarity index 72% rename from services/frontend/site/components/checkout/ShippingWidget/ShippingWidget.tsx rename to services/frontend/components/checkout/ShippingWidget/ShippingWidget.tsx index 1418a2b5..75f37064 100644 --- a/services/frontend/site/components/checkout/ShippingWidget/ShippingWidget.tsx +++ b/services/frontend/components/checkout/ShippingWidget/ShippingWidget.tsx @@ -8,9 +8,6 @@ interface ComponentProps { } const ShippingWidget: FC = ({ onClick, isValid }) => { - /* Shipping Address - Only available with checkout set to true - - This means that the provider does offer checkout functionality. */ return (
@@ -18,12 +15,11 @@ const ShippingWidget: FC = ({ onClick, isValid }) => { Add Shipping Address - {/* - 1046 Kearny Street.
- San Franssisco, California -
*/}
{isValid ? : }
+ {/*
+ +
*/}
) } diff --git a/services/frontend/site/components/checkout/ShippingWidget/index.ts b/services/frontend/components/checkout/ShippingWidget/index.ts similarity index 100% rename from services/frontend/site/components/checkout/ShippingWidget/index.ts rename to services/frontend/components/checkout/ShippingWidget/index.ts diff --git a/services/frontend/components/checkout/context.tsx b/services/frontend/components/checkout/context.tsx new file mode 100644 index 00000000..169e7ba0 --- /dev/null +++ b/services/frontend/components/checkout/context.tsx @@ -0,0 +1,319 @@ +import React, { + FC, + useState, + useEffect, + useCallback, + useMemo, + useReducer, + useContext, + createContext, +} from 'react' + +import { datadogRum } from '@datadog/browser-rum' + +import { + listPaymentMethods, + listShippingRates, + updateCheckout, + completeCheckout, +} from '@lib/api/checkout' +import { useCart } from '@lib/CartContext' +import type { + PaymentAttributes, + AddressAttributes, + ShippingRateAttributes, +} from '@customTypes/checkout' + +export type State = { + cardFields: PaymentAttributes + addressFields: AddressAttributes +} + +type CheckoutContextType = State & { + shippingRate: any + addressStatus: { + ok: boolean | null + message: any + } + paymentStatus: { + ok: boolean | null + message: any + } + setCardFields: (cardFields: PaymentAttributes) => void + setAddressFields: (addressFields: AddressAttributes) => void + clearCheckoutFields: () => void + handleCompleteCheckout: () => void +} + +type Action = + | { + type: 'SET_CARD_FIELDS' + card: PaymentAttributes + } + | { + type: 'SET_ADDRESS_FIELDS' + address: AddressAttributes + } + | { + type: 'CLEAR_CHECKOUT_FIELDS' + } + +const initialState: State = { + cardFields: { + payment_method_id: '1', + source_attributes: { + name: 'Jade Angelou', + number: '4111111111111111', + month: '01', + year: '2027', + verification_value: '123', + }, + } as PaymentAttributes, + addressFields: { + firstname: 'Jade', + lastname: 'Angelou', + email: 'jade@ddtraining.datadoghq.com', + address1: '32 Stenson Drive', + address2: '', + zipcode: '94016', + city: 'San Francisco', + phone: '555-555-5555', + state_name: 'CA', + country_iso: 'US', + } as AddressAttributes, +} + +export const CheckoutContext = createContext(initialState) + +CheckoutContext.displayName = 'CheckoutContext' + +const checkoutReducer = (state: State, action: Action): State => { + switch (action.type) { + case 'SET_CARD_FIELDS': + return { + ...state, + cardFields: action.card, + } + case 'SET_ADDRESS_FIELDS': + return { + ...state, + addressFields: action.address, + } + case 'CLEAR_CHECKOUT_FIELDS': + return { + ...state, + cardFields: initialState.cardFields, + addressFields: initialState.addressFields, + } + default: + return state + } +} + +export const CheckoutProvider: FC = (props) => { + const [state, dispatch] = useReducer(checkoutReducer, initialState) + const [paymentMethods, setPaymentMethods] = useState([]) + const [shippingRate, setShippingRate] = useState<{ + id: string + selected_rate_id: string + price: number + } | null>(null) + const [addressStatus, setAddressError] = useState({ ok: null, message: null }) + const [paymentStatus, setPaymentError] = useState({ ok: null, message: null }) + const { cart, cartToken, cartUser } = useCart() + + const getPaymentMethods = useCallback(async () => { + // get payment methods + const paymentMethods = await listPaymentMethods({ order_token: cartToken }) + // set payment methods + setPaymentMethods(paymentMethods) + }, [cartToken, setPaymentMethods]) + + const getShippingRates = useCallback(async () => { + // get shipping rates + const shippingRates = await listShippingRates({ order_token: cartToken }) + + setShippingRate({ + id: shippingRates.data[0].id, + selected_rate_id: + shippingRates.data[0].relationships.selected_shipping_rate.data.id, + price: Number(shippingRates.data[0].attributes.final_price).toFixed(2), + }) + }, [cartToken, setShippingRate]) + + const updateAddress = useCallback( + async (address: AddressAttributes) => { + try { + const updatedCheckout = await updateCheckout({ + order_token: cartToken, + order: { + email: address.email, + bill_address_attributes: address, + ship_address_attributes: address, + }, + }) + + if (updatedCheckout.error) { + throw updatedCheckout.error + } + + await getShippingRates() + + setAddressError({ ok: true, message: null }) + } catch (error) { + console.log(error) + setAddressError({ ok: false, message: error }) + } + }, + [cartToken, getShippingRates] + ) + + const handleCompleteCheckout = useCallback(async () => { + try { + const completedCheckout = await completeCheckout({ + order_token: cartToken, + }) + return completedCheckout + } catch (error) { + console.log(error) + } + }, [cartToken]) + + const updatePayment = useCallback( + async (payment: PaymentAttributes) => { + try { + const updatedCheckout = await updateCheckout({ + order_token: cartToken, + order: { + payments_attributes: [payment], + }, + }) + setPaymentError({ ok: true, message: null }) + } catch (error) { + console.log(error) + setPaymentError({ ok: false, message: error }) + } + }, + [cartToken] + ) + + const updateShipping = useCallback( + async (shippingRate: ShippingRateAttributes) => { + try { + const updatedCheckout = await updateCheckout({ + order_token: cartToken, + order: { + shipments_attributes: [ + { + id: shippingRate.id, + selected_shipping_rate_id: + shippingRate.selected_shipping_rate_id, + }, + ], + }, + }) + console.log(updatedCheckout) + } catch (error) { + console.log(error) + } + }, + [cartToken] + ) + + const setCardFields = useCallback( + (card: PaymentAttributes) => dispatch({ type: 'SET_CARD_FIELDS', card }), + [dispatch] + ) + + const setAddressFields = useCallback( + (address: AddressAttributes) => + dispatch({ type: 'SET_ADDRESS_FIELDS', address }), + [dispatch] + ) + + const clearCheckoutFields = useCallback( + () => dispatch({ type: 'CLEAR_CHECKOUT_FIELDS' }), + [dispatch] + ) + + const cardFields = useMemo(() => state.cardFields, [state.cardFields]) + + const addressFields = useMemo( + () => state.addressFields, + [state.addressFields] + ) + + useEffect(() => { + if (cartToken) { + getPaymentMethods() + } + }, [cartToken, getPaymentMethods]) + + useEffect(() => { + if (cartToken && cart?.lineItems.length && addressFields.country_iso) { + updateAddress(addressFields) + } + }, [cart, cartToken, addressFields, updateAddress]) + + useEffect(() => { + if (cartToken && cardFields.source_attributes.number) { + updatePayment(cardFields) + } + }, [cartToken, cardFields, updatePayment]) + + useEffect(() => { + if (cartToken && shippingRate?.id) { + updateShipping({ + id: shippingRate.id, + selected_shipping_rate_id: shippingRate.selected_rate_id, + }) + } + }, [cartToken, shippingRate, updateShipping]) + + // set user name and email based on rum user + useEffect(() => { + if (cartUser && cartUser.name && cartUser.email) { + setAddressFields({ + ...initialState.addressFields, + email: cartUser.email, + firstname: cartUser.name.split(' ')[0], + lastname: cartUser.name.split(' ')[1], + }) + } + }, [cartUser, setAddressFields]) + + const value = useMemo( + () => ({ + cardFields, + addressFields, + shippingRate, + addressStatus, + paymentStatus, + setCardFields, + setAddressFields, + clearCheckoutFields, + handleCompleteCheckout, + }), + [ + cardFields, + addressFields, + shippingRate, + addressStatus, + paymentStatus, + setCardFields, + setAddressFields, + clearCheckoutFields, + handleCompleteCheckout, + ] + ) + + return +} + +export const useCheckoutContext = () => { + const context = useContext(CheckoutContext) + if (context === undefined) { + throw new Error(`useCheckoutContext must be used within a CheckoutProvider`) + } + return context +} diff --git a/services/frontend/components/common/Ad/Ad.tsx b/services/frontend/components/common/Ad/Ad.tsx new file mode 100644 index 00000000..698c7797 --- /dev/null +++ b/services/frontend/components/common/Ad/Ad.tsx @@ -0,0 +1,72 @@ +import { useState, useEffect, useCallback } from 'react' +import { codeStash } from 'code-stash' +import config from '../../../featureFlags.config.json' + +export interface AdDataResults { + data: object | null + path: string +} +// Advertisement banner +function Ad() { + const [data, setData] = useState(null) + const [isLoading, setLoading] = useState(false) + const adsPath = `${process.env.NEXT_PUBLIC_ADS_ROUTE}:${process.env.NEXT_PUBLIC_ADS_PORT}` + const [codeFlag, setCodeFlag] = useState(false) + + const getRandomArbitrary = useCallback((min: number, max: number) => { + return Math.floor(Math.random() * (max - min) + min) + }, []) + + const fetchAd = useCallback( + (flag: boolean) => { + const headers = { + 'X-Throw-Error': `${flag}`, + } + fetch(`${adsPath}/ads`, { headers }) + .then((res) => res.json()) + .then((data) => { + const index = getRandomArbitrary(0, data.length) + setData(data[index]) + }) + .catch((e) => console.error(e.message)) + .finally(() => { + setLoading(false) + }) + }, + [adsPath, getRandomArbitrary, setData, setLoading] + ) + + useEffect(() => { + setLoading(true) + // check for config file, then grab feature flags + if (config) { + codeStash('error-tracking', { file: config }) + .then((r: boolean) => { + setCodeFlag(r) + }) + .catch((e: Error) => console.log(e)) + } + + // Fetch ad with error + codeFlag && fetchAd(true) + + // Fetch normal ad + !codeFlag && fetchAd(false) + }, [codeFlag, fetchAd]) + + if (isLoading) + return
AD HERE
+ if (!data) + return
AD HERE
+ + return ( +
+ + + Landscape picture + +
+ ) +} + +export default Ad diff --git a/services/frontend/site/components/common/Ad/index.ts b/services/frontend/components/common/Ad/index.ts similarity index 100% rename from services/frontend/site/components/common/Ad/index.ts rename to services/frontend/components/common/Ad/index.ts diff --git a/services/frontend/site/components/common/Avatar/Avatar.tsx b/services/frontend/components/common/Avatar/Avatar.tsx similarity index 100% rename from services/frontend/site/components/common/Avatar/Avatar.tsx rename to services/frontend/components/common/Avatar/Avatar.tsx diff --git a/services/frontend/site/components/common/Avatar/index.ts b/services/frontend/components/common/Avatar/index.ts similarity index 100% rename from services/frontend/site/components/common/Avatar/index.ts rename to services/frontend/components/common/Avatar/index.ts diff --git a/services/frontend/site/components/common/Discount/Discount.tsx b/services/frontend/components/common/Discount/Discount.tsx similarity index 100% rename from services/frontend/site/components/common/Discount/Discount.tsx rename to services/frontend/components/common/Discount/Discount.tsx diff --git a/services/frontend/site/components/common/Discount/index.ts b/services/frontend/components/common/Discount/index.ts similarity index 100% rename from services/frontend/site/components/common/Discount/index.ts rename to services/frontend/components/common/Discount/index.ts diff --git a/services/frontend/site/components/common/FeatureBar/FeatureBar.module.css b/services/frontend/components/common/FeatureBar/FeatureBar.module.css similarity index 100% rename from services/frontend/site/components/common/FeatureBar/FeatureBar.module.css rename to services/frontend/components/common/FeatureBar/FeatureBar.module.css diff --git a/services/frontend/site/components/common/FeatureBar/FeatureBar.tsx b/services/frontend/components/common/FeatureBar/FeatureBar.tsx similarity index 100% rename from services/frontend/site/components/common/FeatureBar/FeatureBar.tsx rename to services/frontend/components/common/FeatureBar/FeatureBar.tsx diff --git a/services/frontend/site/components/common/FeatureBar/index.ts b/services/frontend/components/common/FeatureBar/index.ts similarity index 100% rename from services/frontend/site/components/common/FeatureBar/index.ts rename to services/frontend/components/common/FeatureBar/index.ts diff --git a/services/frontend/site/components/common/Footer/Footer.module.css b/services/frontend/components/common/Footer/Footer.module.css similarity index 100% rename from services/frontend/site/components/common/Footer/Footer.module.css rename to services/frontend/components/common/Footer/Footer.module.css diff --git a/services/frontend/components/common/Footer/Footer.tsx b/services/frontend/components/common/Footer/Footer.tsx new file mode 100644 index 00000000..1590bc69 --- /dev/null +++ b/services/frontend/components/common/Footer/Footer.tsx @@ -0,0 +1,79 @@ +import React, { FC, useState, useEffect } from 'react' +import cn from 'clsx' +import Link from 'next/link' +import { Logo, Container } from '@components/ui' +import s from './Footer.module.css' + +import { Page } from '@customTypes/page' + +interface Props { + className?: string + children?: any + pages?: Page[] +} + +const links = [ + { + name: 'Home', + url: '/', + }, +] + +const Footer: FC = ({ className, pages = [] }) => { + const rootClassName = cn(s.root, className) + + return ( +
+ +
+
+ + + + + + + +
+
+
+ {[...links, ...pages].map((page) => ( + + + + {page.name} + + + + ))} +
+
+
+
+
+ + © {new Date().getFullYear()} Storedog, Inc. All rights + reserved. + +
+ + *Unfortunately, nothing here is actually for sale. This site is + for{' '} + + Datadog + {' '} + training lab purposes only.* + +
+
+
+
+ ) +} + +export default Footer diff --git a/services/frontend/site/components/common/Footer/index.ts b/services/frontend/components/common/Footer/index.ts similarity index 100% rename from services/frontend/site/components/common/Footer/index.ts rename to services/frontend/components/common/Footer/index.ts diff --git a/services/frontend/site/components/common/Head/Head.tsx b/services/frontend/components/common/Head/Head.tsx similarity index 100% rename from services/frontend/site/components/common/Head/Head.tsx rename to services/frontend/components/common/Head/Head.tsx diff --git a/services/frontend/site/components/common/Head/index.ts b/services/frontend/components/common/Head/index.ts similarity index 100% rename from services/frontend/site/components/common/Head/index.ts rename to services/frontend/components/common/Head/index.ts diff --git a/services/frontend/site/components/common/HomeAllProductsGrid/HomeAllProductsGrid.module.css b/services/frontend/components/common/HomeAllProductsGrid/HomeAllProductsGrid.module.css similarity index 100% rename from services/frontend/site/components/common/HomeAllProductsGrid/HomeAllProductsGrid.module.css rename to services/frontend/components/common/HomeAllProductsGrid/HomeAllProductsGrid.module.css diff --git a/services/frontend/site/components/common/HomeAllProductsGrid/HomeAllProductsGrid.tsx b/services/frontend/components/common/HomeAllProductsGrid/HomeAllProductsGrid.tsx similarity index 100% rename from services/frontend/site/components/common/HomeAllProductsGrid/HomeAllProductsGrid.tsx rename to services/frontend/components/common/HomeAllProductsGrid/HomeAllProductsGrid.tsx diff --git a/services/frontend/site/components/common/HomeAllProductsGrid/index.ts b/services/frontend/components/common/HomeAllProductsGrid/index.ts similarity index 100% rename from services/frontend/site/components/common/HomeAllProductsGrid/index.ts rename to services/frontend/components/common/HomeAllProductsGrid/index.ts diff --git a/services/frontend/site/components/common/I18nWidget/I18nWidget.module.css b/services/frontend/components/common/I18nWidget/I18nWidget.module.css similarity index 100% rename from services/frontend/site/components/common/I18nWidget/I18nWidget.module.css rename to services/frontend/components/common/I18nWidget/I18nWidget.module.css diff --git a/services/frontend/site/components/common/I18nWidget/I18nWidget.tsx b/services/frontend/components/common/I18nWidget/I18nWidget.tsx similarity index 100% rename from services/frontend/site/components/common/I18nWidget/I18nWidget.tsx rename to services/frontend/components/common/I18nWidget/I18nWidget.tsx diff --git a/services/frontend/site/components/common/I18nWidget/index.ts b/services/frontend/components/common/I18nWidget/index.ts similarity index 100% rename from services/frontend/site/components/common/I18nWidget/index.ts rename to services/frontend/components/common/I18nWidget/index.ts diff --git a/services/frontend/site/components/common/Layout/Layout.module.css b/services/frontend/components/common/Layout/Layout.module.css similarity index 100% rename from services/frontend/site/components/common/Layout/Layout.module.css rename to services/frontend/components/common/Layout/Layout.module.css diff --git a/services/frontend/components/common/Layout/Layout.tsx b/services/frontend/components/common/Layout/Layout.tsx new file mode 100644 index 00000000..bd696b65 --- /dev/null +++ b/services/frontend/components/common/Layout/Layout.tsx @@ -0,0 +1,140 @@ +import { useState, useEffect, useCallback } from 'react' +import cn from 'clsx' +import s from './Layout.module.css' +import dynamic from 'next/dynamic' +// import LoginView from '@components/auth/LoginView' +import { useUI } from '@components/ui/context' +import { Navbar, Footer } from '@components/common' +import ShippingView from '@components/checkout/ShippingView' +import CartSidebarView from '@components/cart/CartSidebarView' +import { Sidebar, Button, LoadingDots } from '@components/ui' +import PaymentMethodView from '@components/checkout/PaymentMethodView' +import CheckoutSidebarView from '@components/checkout/CheckoutSidebarView' +import OrderConfirmView from '@components/checkout/OrderConfirmView' +import { CheckoutProvider } from '@components/checkout/context' +import { MenuSidebarView } from '@components/common/UserNav' +import Discount from '@components/common/Discount' +import Ad from '@components/common/Ad' +import type { Page } from '@customTypes/page' +import type { Link as LinkProps } from '../UserNav/MenuSidebarView' +import Pages from 'pages/[...pages]' + +const Loading = () => ( +
+ +
+) + +const dynamicProps = { + loading: Loading, +} + +// const SignUpView = dynamic(() => import('@components/auth/SignUpView'), { +// ...dynamicProps, +// }) + +// const ForgotPassword = dynamic( +// () => import('@components/auth/ForgotPassword'), +// { +// ...dynamicProps, +// } +// ) + +const FeatureBar = dynamic(() => import('@components/common/FeatureBar'), { + ...dynamicProps, +}) + +const Modal = dynamic(() => import('@components/ui/Modal'), { + ...dynamicProps, + ssr: false, +}) + +interface Props { + pageProps: any +} + +const ModalView: React.FC<{ modalView: string; closeModal(): any }> = ({ + modalView, + closeModal, +}) => { + return ( + + {/* {modalView === 'LOGIN_VIEW' && } */} + {/* {modalView === 'SIGNUP_VIEW' && } + {modalView === 'FORGOT_VIEW' && } */} + + ) +} + +const ModalUI: React.FC = () => { + const { displayModal, closeModal, modalView } = useUI() + return displayModal ? ( + + ) : null +} + +const SidebarView: React.FC<{ + sidebarView: string + closeSidebar(): any +}> = ({ sidebarView, closeSidebar }) => { + return ( + + {sidebarView === 'CART_VIEW' && } + {sidebarView === 'SHIPPING_VIEW' && } + {sidebarView === 'PAYMENT_VIEW' && } + {sidebarView === 'CHECKOUT_VIEW' && } + {/* {sidebarView === 'MOBILE_MENU_VIEW' && } */} + {sidebarView === 'ORDER_CONFIRM_VIEW' && } + + ) +} + +const SidebarUI: React.FC<{}> = ({}) => { + const { displaySidebar, closeSidebar, sidebarView } = useUI() + return displaySidebar ? ( + + ) : null +} + +const Layout: React.FC = ({ children, pageProps: { ...pageProps } }) => { + const [pages, setPages] = useState([]) + + useEffect(() => { + getLinks() + }, []) + + async function getLinks() { + try { + const baseUrl = '/api' + + const res = await fetch(`${baseUrl}/pages`) + + if (!res.ok) { + throw res + } + + const pages: Page[] = await res.json() + + setPages(pages) + } catch (errorRes) { + const error = await errorRes.json() + console.error(error) + } + } + + return ( +
+ + +
{children}
+ +
+ + + + +
+ ) +} + +export default Layout diff --git a/services/frontend/site/components/common/Layout/index.ts b/services/frontend/components/common/Layout/index.ts similarity index 100% rename from services/frontend/site/components/common/Layout/index.ts rename to services/frontend/components/common/Layout/index.ts diff --git a/services/frontend/site/components/common/Navbar/Navbar.module.css b/services/frontend/components/common/Navbar/Navbar.module.css similarity index 100% rename from services/frontend/site/components/common/Navbar/Navbar.module.css rename to services/frontend/components/common/Navbar/Navbar.module.css diff --git a/services/frontend/components/common/Navbar/Navbar.tsx b/services/frontend/components/common/Navbar/Navbar.tsx new file mode 100644 index 00000000..b2c0a76f --- /dev/null +++ b/services/frontend/components/common/Navbar/Navbar.tsx @@ -0,0 +1,213 @@ +import { FC, useEffect, useState, useCallback } from 'react' +import Link from 'next/link' +import s from './Navbar.module.css' +import NavbarRoot from './NavbarRoot' +import { Logo, Container } from '@components/ui' +import { Searchbar, UserNav } from '@components/common' +import { codeStash } from 'code-stash' +import config from '../../../featureFlags.config.json' + +let authUrl = `${process.env.NEXT_PUBLIC_AUTH_ROUTE}/email` +let dbmUrl = `${process.env.NEXT_PUBLIC_DBM_ROUTE}/get-item` + +if (process.env.NEXT_PUBLIC_AUTH_PORT) { + authUrl = `${process.env.NEXT_PUBLIC_AUTH_ROUTE}:${process.env.NEXT_PUBLIC_AUTH_PORT}/email` +} + +if (process.env.NEXT_PUBLIC_DBM_PORT) { + dbmUrl = `${process.env.NEXT_PUBLIC_DBM_ROUTE}:${process.env.NEXT_PUBLIC_DBM_PORT}/get-item` +} + +const Navbar: FC = ({}) => { + // Set the input value from the form to state + const [inputValue, setInputValue] = useState() + const [showWarningMessage, setShowWarningMessage] = useState(false) + const [showEmailInput, setShowEmailInput] = useState(true) + const [xssFlag, setXssFlag] = useState() + const [dbmFlag, setDbmFlag] = useState() + const [userEmail, setUserEmail] = useState() + const [productInfo, setProductInfo] = useState() + + useEffect(() => { + if (config) { + codeStash('xss', { file: config }) + .then((r: boolean) => setXssFlag(r)) + .catch((e) => console.log(e)) + codeStash('dbm', { file: config }) + .then((r: boolean) => setDbmFlag(r)) + .catch((e) => console.log(e)) + } + }, []) + + // Specific to the dbm lab, will only be active if the dbm flag is tru + useEffect(() => { + if (dbmFlag) { + // To simulate the ticker effect, we call this every 5 seconds, which will also run the query every 5 seconds + setTimeout(async () => { + await fetchRandomOrderCount() + }, 5000) + } + }, [dbmFlag, productInfo]) + + const handleSubmit = async (e: React.FormEvent) => { + // Bail early if env var isn't set + if (!xssFlag) return + e.preventDefault() + // Display warning if there is no input + if (!inputValue) { + setShowWarningMessage(true) + return + } + + try { + // Clear warning if any + if (showWarningMessage) setShowWarningMessage(false) + // set options for fetch + const options = { + method: 'POST', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + 'Access-Control-Allow-Origin': '*', + 'Access-Control-Allow-Methods': 'POST', + }, + body: `email=${inputValue}`, + } + // Execute our post request to the server + const res = await fetch(authUrl, options) + // Parse our response + const response = await res.json() + // Grab the users email from the response on a successful request + const user = response['User_Email'] + // Set the username to state to be added to the DOM + setUserEmail(user) + // Exit the function + return + } catch (e) { + // Log out any errors + console.error((e as Error).message) + } finally { + // Reset the input and hide it + setInputValue(undefined) + setShowEmailInput(false) + } + } + + const fetchRandomOrderCount = async () => { + try { + // List of products on the site + const randomProducts = [ + 'Cool Bits', + 'Hockey Bits', + 'Money Bits', + 'Octo Bits', + 'Bits By Dre', + ] + + const options = { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + 'Access-Control-Allow-Origin': '*', + 'Access-Control-Allow-Methods': 'GET', + }, + } + + const res = await fetch(dbmUrl, options) + const response = await res.json() + // select a product name from the list at random + let productName = randomProducts[Math.floor(Math.random() * 5)] + // prevent product name from repeating 2 times in a row + if (productInfo && productInfo.productName === productName) { + // remove the productName that is being displayed from the list and get a new one + randomProducts.splice( + randomProducts.findIndex((i) => i === productName), + 1 + ) + // set the name to the new one + productName = randomProducts[Math.floor(Math.random() * 4)] + } + + // set the info that is displayed + setProductInfo({ + productName, + count: response.last_hour, + }) + } catch (e) { + console.error((e as Error).message) + } + } + + return ( + + +
+
+ + + + + + +
+ {process.env.COMMERCE_SEARCH_ENABLED && ( +
+ +
+ )} +
+ +
+
+ {process.env.COMMERCE_SEARCH_ENABLED && ( +
+ +
+ )} + {xssFlag && showEmailInput && ( + // Used as an example for XSS detection in Datadog +
+
+ +
+ setInputValue(e.target.value)} + id="email-input" + className="py-2 px-2 mr-2 relative" + type="text" + placeholder="bits@dtdg.co" + /> + +
+ {showWarningMessage && ( +

+ *You must enter an email address to submit +

+ )} +
+
+ )} + {!showEmailInput && xssFlag && ( +

Thank you for signing up {userEmail}!

+ )} + {dbmFlag && productInfo && ( +

+ {productInfo.productName} was ordered {productInfo.count} times in + the last hour 🔥 +

+ )} +
+
+ ) +} + +export default Navbar diff --git a/services/frontend/site/components/common/Navbar/NavbarRoot.tsx b/services/frontend/components/common/Navbar/NavbarRoot.tsx similarity index 100% rename from services/frontend/site/components/common/Navbar/NavbarRoot.tsx rename to services/frontend/components/common/Navbar/NavbarRoot.tsx diff --git a/services/frontend/site/components/common/Navbar/index.ts b/services/frontend/components/common/Navbar/index.ts similarity index 100% rename from services/frontend/site/components/common/Navbar/index.ts rename to services/frontend/components/common/Navbar/index.ts diff --git a/services/frontend/site/components/common/SEO/SEO.tsx b/services/frontend/components/common/SEO/SEO.tsx similarity index 100% rename from services/frontend/site/components/common/SEO/SEO.tsx rename to services/frontend/components/common/SEO/SEO.tsx diff --git a/services/frontend/site/components/common/SEO/index.ts b/services/frontend/components/common/SEO/index.ts similarity index 100% rename from services/frontend/site/components/common/SEO/index.ts rename to services/frontend/components/common/SEO/index.ts diff --git a/services/frontend/site/components/common/Searchbar/Searchbar.module.css b/services/frontend/components/common/Searchbar/Searchbar.module.css similarity index 100% rename from services/frontend/site/components/common/Searchbar/Searchbar.module.css rename to services/frontend/components/common/Searchbar/Searchbar.module.css diff --git a/services/frontend/site/components/common/Searchbar/Searchbar.tsx b/services/frontend/components/common/Searchbar/Searchbar.tsx similarity index 100% rename from services/frontend/site/components/common/Searchbar/Searchbar.tsx rename to services/frontend/components/common/Searchbar/Searchbar.tsx diff --git a/services/frontend/site/components/common/Searchbar/index.ts b/services/frontend/components/common/Searchbar/index.ts similarity index 100% rename from services/frontend/site/components/common/Searchbar/index.ts rename to services/frontend/components/common/Searchbar/index.ts diff --git a/services/frontend/site/components/common/SidebarLayout/SidebarLayout.module.css b/services/frontend/components/common/SidebarLayout/SidebarLayout.module.css similarity index 100% rename from services/frontend/site/components/common/SidebarLayout/SidebarLayout.module.css rename to services/frontend/components/common/SidebarLayout/SidebarLayout.module.css diff --git a/services/frontend/components/common/SidebarLayout/SidebarLayout.tsx b/services/frontend/components/common/SidebarLayout/SidebarLayout.tsx new file mode 100644 index 00000000..8d8f8191 --- /dev/null +++ b/services/frontend/components/common/SidebarLayout/SidebarLayout.tsx @@ -0,0 +1,51 @@ +import React, { FC } from 'react' +import { Cross, ChevronLeft } from '@components/icons' +import { UserNav } from '@components/common' +import cn from 'clsx' +import s from './SidebarLayout.module.css' + +type ComponentProps = { className?: string } & ( + | { handleClose: () => any; handleBack?: never } + | { handleBack: () => any; handleClose?: never } +) + +const SidebarLayout: FC = ({ + children, + className, + handleBack, + handleClose, + ...props +}) => { + return ( +
+
+ {handleClose && ( + + )} + {handleBack && ( + + )} + + +
+
{children}
+
+ ) +} + +export default SidebarLayout diff --git a/services/frontend/site/components/common/SidebarLayout/index.ts b/services/frontend/components/common/SidebarLayout/index.ts similarity index 100% rename from services/frontend/site/components/common/SidebarLayout/index.ts rename to services/frontend/components/common/SidebarLayout/index.ts diff --git a/services/frontend/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.module.css b/services/frontend/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.module.css similarity index 100% rename from services/frontend/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.module.css rename to services/frontend/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.module.css diff --git a/services/frontend/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx b/services/frontend/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx similarity index 92% rename from services/frontend/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx rename to services/frontend/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx index 992d1717..7d69b991 100644 --- a/services/frontend/site/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx +++ b/services/frontend/components/common/UserNav/CustomerMenuContent/CustomerMenuContent.tsx @@ -3,7 +3,7 @@ import { useTheme } from 'next-themes' import { useRouter } from 'next/router' import { Moon, Sun } from '@components/icons' import s from './CustomerMenuContent.module.css' -import useLogout from '@framework/auth/use-logout' +// import useLogout from '@framework/auth/use-logout' import { DropdownContent, DropdownMenuItem, @@ -26,7 +26,7 @@ const LINKS = [ export default function CustomerMenuContent() { const router = useRouter() - const logout = useLogout() + // const logout = useLogout() const { pathname } = useRouter() const { theme, setTheme } = useTheme() @@ -73,14 +73,14 @@ export default function CustomerMenuContent() { - + {/* logout()} > Logout - + */} ) } diff --git a/services/frontend/site/components/common/UserNav/CustomerMenuContent/index.ts b/services/frontend/components/common/UserNav/CustomerMenuContent/index.ts similarity index 100% rename from services/frontend/site/components/common/UserNav/CustomerMenuContent/index.ts rename to services/frontend/components/common/UserNav/CustomerMenuContent/index.ts diff --git a/services/frontend/site/components/common/UserNav/MenuSidebarView/MenuSidebarView.module.css b/services/frontend/components/common/UserNav/MenuSidebarView/MenuSidebarView.module.css similarity index 100% rename from services/frontend/site/components/common/UserNav/MenuSidebarView/MenuSidebarView.module.css rename to services/frontend/components/common/UserNav/MenuSidebarView/MenuSidebarView.module.css diff --git a/services/frontend/site/components/common/UserNav/MenuSidebarView/MenuSidebarView.tsx b/services/frontend/components/common/UserNav/MenuSidebarView/MenuSidebarView.tsx similarity index 100% rename from services/frontend/site/components/common/UserNav/MenuSidebarView/MenuSidebarView.tsx rename to services/frontend/components/common/UserNav/MenuSidebarView/MenuSidebarView.tsx diff --git a/services/frontend/site/components/common/UserNav/MenuSidebarView/index.ts b/services/frontend/components/common/UserNav/MenuSidebarView/index.ts similarity index 100% rename from services/frontend/site/components/common/UserNav/MenuSidebarView/index.ts rename to services/frontend/components/common/UserNav/MenuSidebarView/index.ts diff --git a/services/frontend/site/components/common/UserNav/UserNav.module.css b/services/frontend/components/common/UserNav/UserNav.module.css similarity index 100% rename from services/frontend/site/components/common/UserNav/UserNav.module.css rename to services/frontend/components/common/UserNav/UserNav.module.css diff --git a/services/frontend/site/components/common/UserNav/UserNav.tsx b/services/frontend/components/common/UserNav/UserNav.tsx similarity index 52% rename from services/frontend/site/components/common/UserNav/UserNav.tsx rename to services/frontend/components/common/UserNav/UserNav.tsx index a5628f66..56d95271 100644 --- a/services/frontend/site/components/common/UserNav/UserNav.tsx +++ b/services/frontend/components/common/UserNav/UserNav.tsx @@ -1,53 +1,53 @@ -import cn from 'clsx'; -import Link from 'next/link'; -import s from './UserNav.module.css'; -import { Avatar } from '@components/common'; -import useCart from '@framework/cart/use-cart'; -import { useUI } from '@components/ui/context'; -import { Heart, Bag, Menu } from '@components/icons'; -import CustomerMenuContent from './CustomerMenuContent'; -import useCustomer from '@framework/customer/use-customer'; -import React from 'react'; +import React from 'react' +import cn from 'clsx' +import Link from 'next/link' +import s from './UserNav.module.css' +import { Avatar } from '@components/common' +import { useUI } from '@components/ui/context' +import { Heart, Bag, Menu } from '@components/icons' +import CustomerMenuContent from './CustomerMenuContent' +// import useCustomer from '@framework/customer/use-customer' +import { useCart } from '@lib/CartContext' import { Dropdown, DropdownTrigger as DropdownTriggerInst, Button, -} from '@components/ui'; +} from '@components/ui' -import type { LineItem } from '@commerce/types/cart'; +import type { LineItem } from '@commerce/types/cart' -const countItem = (count: number, item: LineItem) => count + item.quantity; +const countItem = (count: number, item: LineItem) => count + item.quantity const UserNav: React.FC<{ - className?: string; + className?: string }> = ({ className }) => { - const { data } = useCart(); - const { data: isCustomerLoggedIn } = useCustomer(); + const { cart } = useCart() + // const { data: isCustomerLoggedIn } = useCustomer() const { toggleSidebar, closeSidebarIfPresent, openModal, setSidebarView, openSidebar, - } = useUI(); + } = useUI() - const itemsCount = data?.lineItems.reduce(countItem, 0) ?? 0; - const DropdownTrigger = isCustomerLoggedIn - ? DropdownTriggerInst - : React.Fragment; + const itemsCount = cart?.lineItems?.reduce(countItem, 0) ?? 0 + // const DropdownTrigger = isCustomerLoggedIn + // ? DropdownTriggerInst + // : React.Fragment return ( -