diff --git a/src/test/binary_swap/expected/upgrading_compatibility/create_index.out b/src/test/binary_swap/expected/upgrading_compatibility/create_index.out new file mode 100644 index 00000000000..c3687a0395f --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/create_index.out @@ -0,0 +1,28 @@ +-- Create Indexes +-- B-tree +CREATE INDEX btree_idx_sales_heap_1 ON sales_heap(product_id); +CREATE INDEX btree_idx_sales_heap_2 ON sales_heap(customer_name); +CREATE INDEX btree_idx_sales_ao_1 ON sales_ao(product_id); +CREATE INDEX btree_idx_sales_ao_2 ON sales_ao(customer_name); +CREATE INDEX btree_idx_sales_aocs_1 ON sales_aocs(product_id); +CREATE INDEX btree_idx_sales_aocs_2 ON sales_aocs(product_id, sale_date); +CREATE INDEX btree_idx_sales_partition_heap_1 ON sales_partition_heap(product_id); +CREATE INDEX btree_idx_sales_partition_heap_2 ON sales_partition_heap(customer_name); +CREATE INDEX btree_idx_sales_partition_ao_1 ON sales_partition_ao(product_id); +CREATE INDEX btree_idx_sales_partition_ao_2 ON sales_partition_ao(product_id, sale_date); +CREATE INDEX btree_idx_sales_partition_ao_3 ON sales_partition_ao(customer_name); +CREATE INDEX btree_idx_sales_partition_aocs1 ON sales_partition_aocs(product_id); +CREATE INDEX btree_idx_sales_partition_aocs2 ON sales_partition_aocs(customer_name, product_id); +-- Unique +CREATE UNIQUE INDEX on sales_ao(product_id); +CREATE UNIQUE INDEX on sales_aocs(product_id,description); +CREATE UNIQUE INDEX on sales_partition_ao(product_id,order_date); +-- CREATE UNIQUE INDEX on sales_partition_aocs(product_id,description); blocked by issue #557 +-- Bitmap +CREATE INDEX bmp_idx_sales_ao ON sales_ao USING bitmap(is_audited); +CREATE INDEX bmp_idx_sales_partition_aocs ON sales_partition_aocs USING bitmap(status); +CREATE INDEX bmp_idx_sales_heap ON sales_heap USING bitmap(status); +-- Brin +-- CREATE INDEX brin_idx_sales_ao ON sales_ao USING brin (sale_date) with (pages_per_range = 1); blocked by issue #558 +CREATE INDEX brin_idx_sales_partition_heap ON sales_partition_heap USING brin (sale_date) with (pages_per_range = 1); +-- CREATE INDEX brin_idx_sales_aocs ON sales_aocs USING brin (sale_date) with (pages_per_range = 1); blocked by issue #558 diff --git a/src/test/binary_swap/expected/upgrading_compatibility/create_table.out b/src/test/binary_swap/expected/upgrading_compatibility/create_table.out new file mode 100644 index 00000000000..b7fda58b9e8 --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/create_table.out @@ -0,0 +1,182 @@ +-- Create various types of tables for migration compatibility test +-- +-- List of tables in Summary +-- Name | Type | Partition by | Storage +------------------------------+-------------------+--------------+---------------------- +-- sales_ao | table | | append only +-- sales_aocs | table | | append only columnar +-- sales_heap | table | | heap +-- sales_partition_ao | partitioned table | range | +-- sales_partition_aocs | partitioned table | hash | +-- sales_partition_heap | partitioned table | list | +-- sales_partition_ao_part1 | table | | append only +-- sales_partition_ao_part2 | table | | append only +-- sales_partition_ao_part3 | table | | append only +-- sales_partition_aocs_part1 | table | | append only columnar +-- sales_partition_aocs_part2 | table | | append only columnar +-- sales_partition_aocs_part3 | table | | append only columnar +-- sales_partition_heap_part1 | table | | heap +-- sales_partition_heap_part2 | table | | heap +-- sales_partition_heap_part3 | table | | heap +-- +-- Heap Table +DROP TABLE IF EXISTS sales_heap; +NOTICE: table "sales_heap" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_heap +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id); +-- Heap Table, Partition by LIST +DROP TABLE IF EXISTS sales_partition_heap; +NOTICE: table "sales_partition_heap" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_partition_heap +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY LIST (status); +CREATE TABLE sales_partition_heap_part1 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Cancelled'); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_heap_part2 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Closed'); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_heap_part3 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Processing'); +NOTICE: table has parent, setting distribution columns to match parent table +-- AO Table +DROP TABLE IF EXISTS sales_ao; +NOTICE: table "sales_ao" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_ao +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +WITH (appendonly=true) +DISTRIBUTED BY (product_id); +-- AO Table, Partition by Range +DROP TABLE IF EXISTS sales_partition_ao; +NOTICE: table "sales_partition_ao" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_partition_ao +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY RANGE (order_date); +CREATE TABLE sales_partition_ao_part1 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2023-01-01') TO ('2024-01-01') +WITH (appendonly=true); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_ao_part2 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2024-01-01') TO ('2025-01-01') +WITH (appendonly=true); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_ao_part3 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2025-01-01') TO ('2026-01-01') +WITH (appendonly=true); +NOTICE: table has parent, setting distribution columns to match parent table +-- AOCS Table +DROP TABLE IF EXISTS sales_aocs; +NOTICE: table "sales_aocs" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_aocs +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +WITH (appendonly=true, orientation=column) +DISTRIBUTED BY (product_id); +-- AOCS Table, Partition by Hash +DROP TABLE IF EXISTS sales_partition_aocs; +NOTICE: table "sales_partition_aocs" does not exist, skipping +CREATE TABLE IF NOT EXISTS sales_partition_aocs +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY HASH(description); +CREATE TABLE sales_partition_aocs_part1 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 0) +WITH (appendonly=true, orientation=column); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_aocs_part2 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 1) +WITH (appendonly=true, orientation=column); +NOTICE: table has parent, setting distribution columns to match parent table +CREATE TABLE sales_partition_aocs_part3 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 2) +WITH (appendonly=true, orientation=column); +NOTICE: table has parent, setting distribution columns to match parent table diff --git a/src/test/binary_swap/expected/upgrading_compatibility/delete.out b/src/test/binary_swap/expected/upgrading_compatibility/delete.out new file mode 100644 index 00000000000..511ba3d9cae --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/delete.out @@ -0,0 +1,42 @@ +DELETE FROM sales_heap WHERE product_id > 1000000; +DELETE FROM sales_ao WHERE product_id > 1000000; +DELETE FROM sales_aocs WHERE product_id > 1000000; +DELETE FROM sales_partition_heap WHERE product_id > 1000000; +DELETE FROM sales_partition_ao WHERE product_id > 1000000; +DELETE FROM sales_partition_aocs WHERE product_id > 1000000; +SELECT COUNT(*) FROM sales_heap; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_ao; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_aocs; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_heap; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_ao; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_aocs; + count +------- + 10000 +(1 row) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/insert.out b/src/test/binary_swap/expected/upgrading_compatibility/insert.out new file mode 100644 index 00000000000..8ec012a6d7e --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/insert.out @@ -0,0 +1,262 @@ +INSERT INTO sales_heap ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +INSERT INTO sales_ao ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +INSERT INTO sales_aocs ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +INSERT INTO sales_partition_heap ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +INSERT INTO sales_partition_ao ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +INSERT INTO sales_partition_aocs ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; +SELECT COUNT(*) FROM sales_heap; + count +------- + 20000 +(1 row) + +SELECT COUNT(*) FROM sales_ao; + count +------- + 20000 +(1 row) + +SELECT COUNT(*) FROM sales_aocs; + count +------- + 20000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_heap; +NOTICE: One or more columns in the following table(s) do not have statistics: sales_partition_heap +HINT: For non-partitioned tables, run analyze (). For partitioned tables, run analyze rootpartition (). See log for columns missing statistics. + count +------- + 20000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_ao; +NOTICE: One or more columns in the following table(s) do not have statistics: sales_partition_ao +HINT: For non-partitioned tables, run analyze (). For partitioned tables, run analyze rootpartition (). See log for columns missing statistics. + count +------- + 20000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_aocs; + count +------- + 20000 +(1 row) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/load_data.out b/src/test/binary_swap/expected/upgrading_compatibility/load_data.out new file mode 100644 index 00000000000..1a2994ed9aa --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/load_data.out @@ -0,0 +1,12 @@ +COPY public.sales_heap (product_id, is_audited, quantity, total_sales, unit_price, discount, description, sale_date, order_date, status, customer_name, price) FROM stdin; +INSERT INTO sales_ao SELECT * FROM sales_heap; +INSERT INTO sales_aocs SELECT * FROM sales_heap; +INSERT INTO sales_partition_heap SELECT * FROM sales_heap; +INSERT INTO sales_partition_ao SELECT * FROM sales_heap; +INSERT INTO sales_partition_aocs SELECT * FROM sales_heap; +ANALYZE sales_heap; +ANALYZE sales_ao; +ANALYZE sales_aocs; +ANALYZE rootpartition sales_partition_heap; +ANALYZE rootpartition sales_partition_ao; +ANALYZE rootpartition sales_partition_aocs; diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_ao.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_ao.out new file mode 100644 index 00000000000..588565a19bc --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_ao.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_ao +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_ao +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_ao +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_ao + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_ao +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_ao +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_aocs.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_aocs.out new file mode 100644 index 00000000000..5f12013c2ed --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_aocs.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_aocs +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_aocs +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_aocs +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_aocs + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_aocs +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_aocs +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_heap.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_heap.out new file mode 100644 index 00000000000..078b6f09c49 --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_heap.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_heap +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_heap +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_heap +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_heap + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_heap +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_heap +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_ao.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_ao.out new file mode 100644 index 00000000000..fb2f7077816 --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_ao.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_ao +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_ao +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_ao +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_ao + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_ao +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_ao +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_aocs.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_aocs.out new file mode 100644 index 00000000000..3ca44df99e3 --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_aocs.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_aocs +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_aocs +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_aocs +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_aocs + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_aocs +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_aocs +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_heap.out b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_heap.out new file mode 100644 index 00000000000..4261f9afec9 --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/query_sales_partition_heap.out @@ -0,0 +1,327 @@ +set extra_float_digits=-1; +show enable_indexscan; + enable_indexscan +------------------ + on +(1 row) + +show enable_bitmapscan; + enable_bitmapscan +------------------- + on +(1 row) + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_heap +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + product_id | description +------------+--------------------------- + 10000 | Product description 10000 + 9999 | Product description 9999 + 9998 | Product description 9998 + 9997 | Product description 9997 + 9996 | Product description 9996 + 9995 | Product description 9995 + 9994 | Product description 9994 + 9989 | Product description 9989 + 9988 | Product description 9988 + 9986 | Product description 9986 +(10 rows) + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_heap +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description +------------+----------+-------------+------------+------------------+-------------------------- + 9997 | 52 | 664200 | 15.632 | 0.20071600926189 | Product description 9997 + 9991 | 98 | 260558 | 24.799 | 0.56356715415699 | Product description 9991 + 9990 | 84 | 482141 | 24.757 | 0.98086579326338 | Product description 9990 + 9961 | 10 | 53803 | 78.575 | 0.72032278121593 | Product description 9961 + 9950 | 78 | 435689 | 36.358 | 0.31138895547812 | Product description 9950 + 9944 | 92 | 170818 | 51.792 | 0.98053487413122 | Product description 9944 + 9941 | 42 | 574027 | 81.664 | 0.78406659591726 | Product description 9941 + 9909 | 1 | 970526 | 51.848 | 0.5623460313463 | Product description 9909 + 9907 | 75 | 540200 | 92.663 | 0.33467137344455 | Product description 9907 + 9901 | 46 | 250640 | 31.31 | 0.7379296048182 | Product description 9901 +(10 rows) + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE product_id = 1; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-----------------------+---------------------------------+---------------+------------------- + 1 | 15 | 260565 | 35.085 | 0.68446827876582 | Product description 1 | Thu Aug 24 14:03:01.089303 2023 | Customer 1 | 697286.0419775450 +(1 row) + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE customer_name = 'Customer 100'; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+-------------------------+---------------------------------+---------------+------------------- + 100 | 34 | 226715 | 67.896 | 0.79691144174661 | Product description 100 | Thu Aug 05 14:03:01.089303 2021 | Customer 100 | 595766.7648534400 +(1 row) + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+------------------+---------------------------+---------------------------------+----------------+------------------- + 10000 | 76 | 183682 | 98.781 | 0.69737919584949 | Product description 10000 | Wed May 29 14:03:01.089303 2024 | Customer 10000 | 715538.9384201850 +(1 row) + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 673 | 22 | 100474 | 17.656 | 0.088971368239687 | Product description 673 | Tue Jan 03 14:03:01.089303 2023 | Customer 673 | 736871.2175393450 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 1826 | 44 | 767251 | 25.827 | 0.87655144783736 | Product description 1826 | Wed Jan 04 14:03:01.089303 2023 | Customer 1826 | 32666.5365096765 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 2985 | 69 | 517647 | 96.718 | 0.81265261041552 | Product description 2985 | Wed Jan 04 14:03:01.089303 2023 | Customer 2985 | 716825.5364521060 + 3430 | 99 | 841581 | 24.104 | 0.59218897829948 | Product description 3430 | Tue Jan 03 14:03:01.089303 2023 | Customer 3430 | 259675.1745113900 + 3468 | 34 | 726434 | 15.653 | 0.64234732802639 | Product description 3468 | Tue Jan 03 14:03:01.089303 2023 | Customer 3468 | 981543.1570081330 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 +(10 rows) + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + product_id | quantity | total_sales | unit_price | discount | description | sale_date | customer_name | price +------------+----------+-------------+------------+-------------------+--------------------------+---------------------------------+---------------+------------------- + 517 | 10 | 343834 | 0.80295 | 0.43073603707868 | Product description 517 | Mon Jan 02 14:03:01.089303 2023 | Customer 517 | 68007.3300707171 + 738 | 95 | 996678 | 51.872 | 0.08455675407475 | Product description 738 | Mon Jan 02 14:03:01.089303 2023 | Customer 738 | 896261.9958819640 + 1426 | 9 | 595087 | 73.375 | 0.3496538700504 | Product description 1426 | Mon Jan 02 14:03:01.089303 2023 | Customer 1426 | 542261.7975503990 + 2534 | 31 | 574430 | 55.15 | 0.58655444407848 | Product description 2534 | Mon Jan 02 14:03:01.089303 2023 | Customer 2534 | 399392.3579024500 + 3641 | 70 | 216018 | 58.222 | 0.087048507174686 | Product description 3641 | Mon Jan 02 14:03:01.089303 2023 | Customer 3641 | 296126.6809656240 + 4713 | 18 | 48487 | 4.9871 | 0.14635050332437 | Product description 4713 | Mon Jan 02 14:03:01.089303 2023 | Customer 4713 | 357937.2729397610 + 5108 | 23 | 640582 | 18.072 | 0.44681020850263 | Product description 5108 | Mon Jan 02 14:03:01.089303 2023 | Customer 5108 | 676383.8184852060 + 5207 | 55 | 540787 | 44.207 | 0.70162033001446 | Product description 5207 | Mon Jan 02 14:03:01.089303 2023 | Customer 5207 | 742186.2328791880 + 7617 | 52 | 49620 | 1.8385 | 0.42209151129674 | Product description 7617 | Mon Jan 02 14:03:01.089303 2023 | Customer 7617 | 372502.3619243150 + 8610 | 37 | 926583 | 50.017 | 0.32244792684085 | Product description 8610 | Mon Jan 02 14:03:01.089303 2023 | Customer 8610 | 192966.2884207590 +(10 rows) + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + status | total_sales +------------+------------- + Closed | 2831375056 + Processing | 1901312546 + Cancelled | 246856986 +(3 rows) + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_heap +ORDER BY product_id, sale_date +LIMIT 20; + product_id | sale_date | cumulative_sales +------------+---------------------------------+------------------ + 1 | Thu Aug 24 14:03:01.089303 2023 | 260565 + 2 | Fri Dec 22 14:03:01.089303 2023 | 985876 + 3 | Tue May 09 14:03:01.089303 2023 | 287889 + 4 | Mon Jun 05 14:03:01.089303 2023 | 143098 + 5 | Sat Oct 07 14:03:01.089303 2023 | 766354 + 6 | Sun Oct 30 14:03:01.089303 2022 | 36798 + 7 | Tue Jun 11 14:03:01.089303 2024 | 205530 + 8 | Tue Jun 21 14:03:01.089303 2022 | 874677 + 9 | Fri Jan 06 14:03:01.089303 2023 | 688048 + 10 | Fri Mar 29 14:03:01.089303 2024 | 112202 + 11 | Sun Dec 25 14:03:01.089303 2022 | 399227 + 12 | Sat Dec 02 14:03:01.089303 2023 | 397758 + 13 | Wed Dec 15 14:03:01.089303 2021 | 167863 + 14 | Wed Oct 18 14:03:01.089303 2023 | 800511 + 15 | Sun Jan 08 14:03:01.089303 2023 | 843010 + 16 | Fri Jul 07 14:03:01.089303 2023 | 912574 + 17 | Sat May 25 14:03:01.089303 2024 | 508372 + 18 | Wed Jan 18 14:03:01.089303 2023 | 271252 + 19 | Fri Jun 07 14:03:01.089303 2024 | 520383 + 20 | Sat Jun 24 14:03:01.089303 2023 | 892088 +(20 rows) + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_heap + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + product_id | sale_year | sale_month | monthly_sales | growth_rate +------------+-----------+------------+---------------+--------------------- + 1 | 2023 | 8 | 260565 | 260565.000000000000 + 2 | 2023 | 12 | 985876 | 985876.000000000000 + 3 | 2023 | 5 | 287889 | 287889.000000000000 + 4 | 2023 | 6 | 143098 | 143098.000000000000 + 5 | 2023 | 10 | 766354 | 766354.000000000000 + 6 | 2022 | 10 | 36798 | 36798.000000000000 + 7 | 2024 | 6 | 205530 | 205530.000000000000 + 8 | 2022 | 6 | 874677 | 874677.000000000000 + 9 | 2023 | 1 | 688048 | 688048.000000000000 + 10 | 2024 | 3 | 112202 | 112202.000000000000 + 11 | 2022 | 12 | 399227 | 399227.000000000000 + 12 | 2023 | 12 | 397758 | 397758.000000000000 + 13 | 2021 | 12 | 167863 | 167863.000000000000 + 14 | 2023 | 10 | 800511 | 800511.000000000000 + 15 | 2023 | 1 | 843010 | 843010.000000000000 + 16 | 2023 | 7 | 912574 | 912574.000000000000 + 17 | 2024 | 5 | 508372 | 508372.000000000000 + 18 | 2023 | 1 | 271252 | 271252.000000000000 + 19 | 2024 | 6 | 520383 | 520383.000000000000 + 20 | 2023 | 6 | 892088 | 892088.000000000000 +(20 rows) + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_heap +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + product_id | avg_discount +------------+------------------ + 2701 | 0.99955353321422 + 838 | 0.99945177692834 + 9957 | 0.99919860041379 + 3216 | 0.99919220994529 + 576 | 0.99916495756835 + 6710 | 0.99898658835185 + 1020 | 0.99879184392668 + 5711 | 0.99874696581862 + 3776 | 0.99873921141062 + 622 | 0.99871512143099 + 1293 | 0.99868678064545 + 7555 | 0.99867974727096 + 1227 | 0.99865755975376 + 7029 | 0.99839744831375 + 5395 | 0.99837013360828 + 8039 | 0.99834627348089 + 331 | 0.99829718779691 + 9077 | 0.99824965324473 + 1691 | 0.99823019364079 + 1789 | 0.99804340724028 +(20 rows) + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + customer_name | total_sales +---------------+------------- + Customer 2480 | 999970 + Customer 7091 | 999903 + Customer 5406 | 999810 + Customer 7974 | 999724 + Customer 9183 | 999434 + Customer 1670 | 999241 + Customer 6518 | 998771 + Customer 2674 | 998691 + Customer 5953 | 998624 + Customer 5676 | 998588 + Customer 1875 | 998256 + Customer 1255 | 998198 + Customer 3633 | 997943 + Customer 8513 | 997939 + Customer 1308 | 997925 + Customer 7354 | 997883 + Customer 8856 | 997767 + Customer 3684 | 997737 + Customer 2637 | 997722 + Customer 6101 | 997600 +(20 rows) + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_heap +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + sale_year | sale_month | product_id | monthly_sales +-----------+------------+------------+--------------- + 2021 | 8 | 3031 | 996843 + 2021 | 8 | 3864 | 996293 + 2021 | 8 | 7549 | 996127 + 2021 | 8 | 5547 | 995693 + 2021 | 8 | 8225 | 995245 + 2021 | 8 | 1876 | 992671 + 2021 | 8 | 3675 | 975330 + 2021 | 8 | 6139 | 969942 + 2021 | 8 | 9925 | 965769 + 2021 | 8 | 6651 | 962779 + 2021 | 8 | 3682 | 957252 + 2021 | 8 | 7633 | 954683 + 2021 | 8 | 4604 | 954042 + 2021 | 8 | 9360 | 953522 + 2021 | 8 | 8759 | 952251 + 2021 | 8 | 4306 | 951665 + 2021 | 8 | 4579 | 950473 + 2021 | 8 | 8838 | 945582 + 2021 | 8 | 728 | 944349 + 2021 | 8 | 424 | 943290 +(20 rows) + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; + customer_name | product_id | total_sales +---------------+------------+------------- + Customer 2480 | 2480 | 999970 + Customer 7091 | 7091 | 999903 + Customer 5406 | 5406 | 999810 + Customer 7974 | 7974 | 999724 + Customer 9183 | 9183 | 999434 + Customer 1670 | 1670 | 999241 + Customer 6518 | 6518 | 998771 + Customer 2674 | 2674 | 998691 + Customer 5953 | 5953 | 998624 + Customer 5676 | 5676 | 998588 + Customer 1875 | 1875 | 998256 + Customer 1255 | 1255 | 998198 + Customer 3633 | 3633 | 997943 + Customer 8513 | 8513 | 997939 + Customer 1308 | 1308 | 997925 + Customer 7354 | 7354 | 997883 + Customer 8856 | 8856 | 997767 + Customer 3684 | 3684 | 997737 + Customer 2637 | 2637 | 997722 + Customer 6101 | 6101 | 997600 +(20 rows) + diff --git a/src/test/binary_swap/expected/upgrading_compatibility/update.out b/src/test/binary_swap/expected/upgrading_compatibility/update.out new file mode 100644 index 00000000000..7ddd5e72a6d --- /dev/null +++ b/src/test/binary_swap/expected/upgrading_compatibility/update.out @@ -0,0 +1,73 @@ +UPDATE sales_heap +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +UPDATE sales_ao +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +UPDATE sales_aocs +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +UPDATE sales_partition_heap +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +UPDATE sales_partition_ao +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +UPDATE sales_partition_aocs +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; +SELECT COUNT(*) FROM sales_heap WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_ao WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_aocs WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_heap WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_ao WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + +SELECT COUNT(*) FROM sales_partition_aocs WHERE is_audited = 'TRUE' AND product_id > 1000000; + count +------- + 10000 +(1 row) + + diff --git a/src/test/binary_swap/schedule0 b/src/test/binary_swap/schedule0 new file mode 100644 index 00000000000..ce5d3126dbb --- /dev/null +++ b/src/test/binary_swap/schedule0 @@ -0,0 +1,12 @@ +test: upgrading_compatibility/create_table +test: upgrading_compatibility/load_data +test: upgrading_compatibility/create_index +test: upgrading_compatibility/query_sales_heap +test: upgrading_compatibility/query_sales_ao +test: upgrading_compatibility/query_sales_aocs +test: upgrading_compatibility/query_sales_partition_heap +test: upgrading_compatibility/query_sales_partition_ao +test: upgrading_compatibility/query_sales_partition_aocs +test: upgrading_compatibility/insert +test: upgrading_compatibility/update +test: upgrading_compatibility/delete diff --git a/src/test/binary_swap/schedule1 b/src/test/binary_swap/schedule1 index 9ee4ee34b01..8e396021557 100644 --- a/src/test/binary_swap/schedule1 +++ b/src/test/binary_swap/schedule1 @@ -1,4 +1,12 @@ -test: inserts views +test: upgrading_compatibility/query_sales_heap +test: upgrading_compatibility/query_sales_ao +test: upgrading_compatibility/query_sales_aocs +test: upgrading_compatibility/query_sales_partition_heap +test: upgrading_compatibility/query_sales_partition_ao +test: upgrading_compatibility/query_sales_partition_aocs +test: upgrading_compatibility/insert +test: upgrading_compatibility/update +test: upgrading_compatibility/delete test: pg_dumpall_current test: gpcheckcat test: resgroup_cleanup_basic diff --git a/src/test/binary_swap/schedule2 b/src/test/binary_swap/schedule2 index 4dff57cff72..c5d55ba1600 100644 --- a/src/test/binary_swap/schedule2 +++ b/src/test/binary_swap/schedule2 @@ -1,7 +1,14 @@ test: pg_dumpall_other test: diff_dumps -test: inserts views +test: upgrading_compatibility/query_sales_heap +test: upgrading_compatibility/query_sales_ao +test: upgrading_compatibility/query_sales_aocs +test: upgrading_compatibility/query_sales_partition_heap +test: upgrading_compatibility/query_sales_partition_ao +test: upgrading_compatibility/query_sales_partition_aocs +test: upgrading_compatibility/insert +test: upgrading_compatibility/update +test: upgrading_compatibility/delete test: pg_dumpall_other test: gpcheckcat - test: resgroup_other_2_queue diff --git a/src/test/binary_swap/schedule3 b/src/test/binary_swap/schedule3 index 1074d97ce98..75ae0b7a416 100644 --- a/src/test/binary_swap/schedule3 +++ b/src/test/binary_swap/schedule3 @@ -1,6 +1,14 @@ test: pg_dumpall_current test: diff_dumps test: gpcheckcat - test: resgroup_current_3_queue test: resgroup_cleanup_basic +test: upgrading_compatibility/query_sales_heap +test: upgrading_compatibility/query_sales_ao +test: upgrading_compatibility/query_sales_aocs +test: upgrading_compatibility/query_sales_partition_heap +test: upgrading_compatibility/query_sales_partition_ao +test: upgrading_compatibility/query_sales_partition_aocs +test: upgrading_compatibility/insert +test: upgrading_compatibility/update +test: upgrading_compatibility/delete diff --git a/src/test/binary_swap/sql/upgrading_compatibility/create_index.sql b/src/test/binary_swap/sql/upgrading_compatibility/create_index.sql new file mode 100644 index 00000000000..736bc12a090 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/create_index.sql @@ -0,0 +1,32 @@ +-- Create Indexes + +-- B-tree +CREATE INDEX btree_idx_sales_heap_1 ON sales_heap(product_id); +CREATE INDEX btree_idx_sales_heap_2 ON sales_heap(customer_name); +CREATE INDEX btree_idx_sales_ao_1 ON sales_ao(product_id); +CREATE INDEX btree_idx_sales_ao_2 ON sales_ao(customer_name); +CREATE INDEX btree_idx_sales_aocs_1 ON sales_aocs(product_id); +CREATE INDEX btree_idx_sales_aocs_2 ON sales_aocs(product_id, sale_date); +CREATE INDEX btree_idx_sales_partition_heap_1 ON sales_partition_heap(product_id); +CREATE INDEX btree_idx_sales_partition_heap_2 ON sales_partition_heap(customer_name); +CREATE INDEX btree_idx_sales_partition_ao_1 ON sales_partition_ao(product_id); +CREATE INDEX btree_idx_sales_partition_ao_2 ON sales_partition_ao(product_id, sale_date); +CREATE INDEX btree_idx_sales_partition_ao_3 ON sales_partition_ao(customer_name); +CREATE INDEX btree_idx_sales_partition_aocs1 ON sales_partition_aocs(product_id); +CREATE INDEX btree_idx_sales_partition_aocs2 ON sales_partition_aocs(customer_name, product_id); + +-- Unique +CREATE UNIQUE INDEX on sales_ao(product_id); +CREATE UNIQUE INDEX on sales_aocs(product_id,description); +CREATE UNIQUE INDEX on sales_partition_ao(product_id,order_date); +-- CREATE UNIQUE INDEX on sales_partition_aocs(product_id,description); blocked by issue #557 + +-- Bitmap +CREATE INDEX bmp_idx_sales_ao ON sales_ao USING bitmap(is_audited); +CREATE INDEX bmp_idx_sales_partition_aocs ON sales_partition_aocs USING bitmap(status); +CREATE INDEX bmp_idx_sales_heap ON sales_heap USING bitmap(status); + +-- Brin +-- CREATE INDEX brin_idx_sales_ao ON sales_ao USING brin (sale_date) with (pages_per_range = 1); blocked by issue #558 +CREATE INDEX brin_idx_sales_partition_heap ON sales_partition_heap USING brin (sale_date) with (pages_per_range = 1); +-- CREATE INDEX brin_idx_sales_aocs ON sales_aocs USING brin (sale_date) with (pages_per_range = 1); blocked by issue #558 \ No newline at end of file diff --git a/src/test/binary_swap/sql/upgrading_compatibility/create_table.sql b/src/test/binary_swap/sql/upgrading_compatibility/create_table.sql new file mode 100644 index 00000000000..5ccf76d5c00 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/create_table.sql @@ -0,0 +1,181 @@ +-- Create various types of tables for migration compatibility test +-- +-- List of tables in Summary +-- Name | Type | Partition by | Storage +------------------------------+-------------------+--------------+---------------------- +-- sales_ao | table | | append only +-- sales_aocs | table | | append only columnar +-- sales_heap | table | | heap +-- sales_partition_ao | partitioned table | range | +-- sales_partition_aocs | partitioned table | hash | +-- sales_partition_heap | partitioned table | list | +-- sales_partition_ao_part1 | table | | append only +-- sales_partition_ao_part2 | table | | append only +-- sales_partition_ao_part3 | table | | append only +-- sales_partition_aocs_part1 | table | | append only columnar +-- sales_partition_aocs_part2 | table | | append only columnar +-- sales_partition_aocs_part3 | table | | append only columnar +-- sales_partition_heap_part1 | table | | heap +-- sales_partition_heap_part2 | table | | heap +-- sales_partition_heap_part3 | table | | heap +-- +-- Heap Table +DROP TABLE IF EXISTS sales_heap; +CREATE TABLE IF NOT EXISTS sales_heap +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id); + +-- Heap Table, Partition by LIST +DROP TABLE IF EXISTS sales_partition_heap; +CREATE TABLE IF NOT EXISTS sales_partition_heap +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY LIST (status); + +CREATE TABLE sales_partition_heap_part1 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Cancelled'); + +CREATE TABLE sales_partition_heap_part2 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Closed'); + +CREATE TABLE sales_partition_heap_part3 +PARTITION OF sales_partition_heap +FOR VALUES IN ('Processing'); + +-- AO Table +DROP TABLE IF EXISTS sales_ao; +CREATE TABLE IF NOT EXISTS sales_ao +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +WITH (appendonly=true) +DISTRIBUTED BY (product_id); + +-- AO Table, Partition by Range +DROP TABLE IF EXISTS sales_partition_ao; +CREATE TABLE IF NOT EXISTS sales_partition_ao +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY RANGE (order_date); + +CREATE TABLE sales_partition_ao_part1 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2023-01-01') TO ('2024-01-01') +WITH (appendonly=true); + +CREATE TABLE sales_partition_ao_part2 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2024-01-01') TO ('2025-01-01') +WITH (appendonly=true); + +CREATE TABLE sales_partition_ao_part3 +PARTITION OF sales_partition_ao +FOR VALUES FROM ('2025-01-01') TO ('2026-01-01') +WITH (appendonly=true); + +-- AOCS Table +DROP TABLE IF EXISTS sales_aocs; +CREATE TABLE IF NOT EXISTS sales_aocs +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +WITH (appendonly=true, orientation=column) +DISTRIBUTED BY (product_id); + +-- AOCS Table, Partition by Hash +DROP TABLE IF EXISTS sales_partition_aocs; +CREATE TABLE IF NOT EXISTS sales_partition_aocs +( + product_id INT, + is_audited BOOLEAN DEFAULT FALSE, + quantity SMALLINT, + total_sales BIGINT, + unit_price REAL, + discount DOUBLE PRECISION, + description TEXT, + sale_date TIMESTAMP, + order_date DATE, + status CHAR(10), + customer_name VARCHAR(20), + price DECIMAL(20, 10) +) +DISTRIBUTED BY (product_id) +PARTITION BY HASH(description); + +CREATE TABLE sales_partition_aocs_part1 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 0) +WITH (appendonly=true, orientation=column); + +CREATE TABLE sales_partition_aocs_part2 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 1) +WITH (appendonly=true, orientation=column); + +CREATE TABLE sales_partition_aocs_part3 +PARTITION OF sales_partition_aocs +FOR VALUES WITH (MODULUS 3, REMAINDER 2) +WITH (appendonly=true, orientation=column); diff --git a/src/test/binary_swap/sql/upgrading_compatibility/delete.sql b/src/test/binary_swap/sql/upgrading_compatibility/delete.sql new file mode 100644 index 00000000000..bcc03a0a68d --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/delete.sql @@ -0,0 +1,24 @@ +DELETE FROM sales_heap WHERE product_id > 1000000; + +DELETE FROM sales_ao WHERE product_id > 1000000; + +DELETE FROM sales_aocs WHERE product_id > 1000000; + +DELETE FROM sales_partition_heap WHERE product_id > 1000000; + +DELETE FROM sales_partition_ao WHERE product_id > 1000000; + +DELETE FROM sales_partition_aocs WHERE product_id > 1000000; + +SELECT COUNT(*) FROM sales_heap; + +SELECT COUNT(*) FROM sales_ao; + +SELECT COUNT(*) FROM sales_aocs; + +SELECT COUNT(*) FROM sales_partition_heap; + +SELECT COUNT(*) FROM sales_partition_ao; + +SELECT COUNT(*) FROM sales_partition_aocs; + diff --git a/src/test/binary_swap/sql/upgrading_compatibility/insert.sql b/src/test/binary_swap/sql/upgrading_compatibility/insert.sql new file mode 100644 index 00000000000..d5fc5c246e8 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/insert.sql @@ -0,0 +1,241 @@ +INSERT INTO sales_heap ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + + +INSERT INTO sales_ao ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + + +INSERT INTO sales_aocs ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + +INSERT INTO sales_partition_heap ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + +INSERT INTO sales_partition_ao ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + +INSERT INTO sales_partition_aocs ( + product_id, + is_audited, + quantity, + total_sales, + unit_price, + discount, + description, + sale_date, + order_date, + status, + customer_name, + price +) +SELECT + x.id, -- product_id + CASE + WHEN random() < 0.5 THEN TRUE + ELSE FALSE + END AS is_audited, -- is_audited + (random() * 100)::smallint, -- quantity + (random() * 1000000)::bigint, -- total_sales + (random() * 100)::real, -- unit_price + (random() * 1)::double precision, -- discount + 'Product description ' || x.id, -- description + now() - INTERVAL '1 day' * floor(random() * 365 * 3), -- sale_date + '2023-01-01'::DATE + INTERVAL '1 day' * floor(random() * 365 * 3), -- order_date + CASE + WHEN random() < 0.05 THEN 'Cancelled' + WHEN random() < 0.5 THEN 'Closed' + ELSE 'Processing' + END AS status, -- status + 'Customer ' || x.id, -- customer_name + (random() * 1000000)::decimal(20, 10) -- price +FROM ( + SELECT * FROM generate_series(1000001, 1010000) AS id +) AS x; + +SELECT COUNT(*) FROM sales_heap; + +SELECT COUNT(*) FROM sales_ao; + +SELECT COUNT(*) FROM sales_aocs; + +SELECT COUNT(*) FROM sales_partition_heap; + +SELECT COUNT(*) FROM sales_partition_ao; + +SELECT COUNT(*) FROM sales_partition_aocs; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/load_data.sql b/src/test/binary_swap/sql/upgrading_compatibility/load_data.sql new file mode 100644 index 00000000000..494de3d55e1 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/load_data.sql @@ -0,0 +1,10018 @@ + +COPY public.sales_heap (product_id, is_audited, quantity, total_sales, unit_price, discount, description, sale_date, order_date, status, customer_name, price) FROM stdin; +2 f 56 985876 54.487537 0.7158002393987495 Product description 2 2023-12-22 14:03:01.089303 2024-05-15 Processing Customer 2 897662.7647686540 +1 t 15 260565 35.085346 0.6844682787658201 Product description 1 2023-08-24 14:03:01.089303 2025-03-27 Closed Customer 1 697286.0419775450 +5 t 11 766354 27.84505 0.6680025508214698 Product description 5 2023-10-07 14:03:01.089303 2023-11-30 Processing Customer 5 220933.5753405350 +3 f 15 287889 62.123714 0.2978495036956552 Product description 3 2023-05-09 14:03:01.089303 2024-01-23 Processing Customer 3 697706.6040967160 +12 t 13 397758 85.55619 0.7997815176930558 Product description 12 2023-12-02 14:03:01.089303 2024-03-10 Processing Customer 12 924990.2598182340 +6 t 5 36798 5.81664 0.9061811793056833 Product description 6 2022-10-30 14:03:01.089303 2025-09-27 Processing Customer 6 448818.8672977640 +4 f 90 143098 58.78606 0.8779853217073743 Product description 4 2023-06-05 14:03:01.089303 2025-11-28 Closed Customer 4 190992.2570478240 +15 t 76 843010 28.1813 0.710531217033278 Product description 15 2023-01-08 14:03:01.089303 2024-10-29 Processing Customer 15 363036.4263735650 +9 t 85 688048 75.438286 0.060014068802558995 Product description 9 2023-01-06 14:03:01.089303 2025-12-09 Cancelled Customer 9 535916.8108448810 +7 t 10 205530 86.381195 0.5625678697305823 Product description 7 2024-06-11 14:03:01.089303 2023-08-24 Processing Customer 7 573712.7700828280 +20 t 95 892088 66.926796 0.5489056591264259 Product description 20 2023-06-24 14:03:01.089303 2025-05-03 Closed Customer 20 222458.0152338440 +10 f 78 112202 48.19874 0.7982117992742239 Product description 10 2024-03-29 14:03:01.089303 2025-03-02 Processing Customer 10 645193.1645037450 +8 f 37 874677 60.036438 0.5449806676218039 Product description 8 2022-06-21 14:03:01.089303 2025-02-02 Processing Customer 8 871250.6301927480 +23 f 76 129018 31.19567 0.7998402303885541 Product description 23 2023-12-29 14:03:01.089303 2023-10-31 Processing Customer 23 708278.8536945340 +11 f 59 399227 19.334467 0.20285276074706715 Product description 11 2022-12-25 14:03:01.089303 2023-09-03 Processing Customer 11 770972.4967520800 +16 f 25 912574 25.23299 0.8238654062192516 Product description 16 2023-07-07 14:03:01.089303 2024-08-26 Closed Customer 16 875053.5338650490 +26 t 20 582526 21.893253 0.23784576453864048 Product description 26 2021-11-13 14:03:01.089303 2025-08-04 Closed Customer 26 993941.5156156630 +13 t 91 167863 89.068695 0.0881974833296475 Product description 13 2021-12-15 14:03:01.089303 2023-03-11 Cancelled Customer 13 276799.9433526530 +18 f 6 271252 46.8508 0.7392354245675428 Product description 18 2023-01-18 14:03:01.089303 2025-11-10 Closed Customer 18 566554.7849923060 +30 t 69 256316 97.65483 0.25181982449687723 Product description 30 2024-05-02 14:03:01.089303 2024-11-09 Processing Customer 30 351796.3831539070 +14 f 10 800511 79.976234 0.7632170641859872 Product description 14 2023-10-18 14:03:01.089303 2023-12-01 Processing Customer 14 32723.0658127355 +19 t 6 520383 31.391668 0.9140780016025296 Product description 19 2024-06-07 14:03:01.089303 2025-10-31 Processing Customer 19 780164.7622989590 +31 f 33 424043 24.998962 0.5872447901544646 Product description 31 2023-01-29 14:03:01.089303 2024-06-30 Closed Customer 31 315532.1496152400 +17 t 27 508372 90.42217 0.6769772368854774 Product description 17 2024-05-25 14:03:01.089303 2025-04-08 Processing Customer 17 852623.2547637810 +22 f 87 624917 2.166178 0.3512485229619706 Product description 22 2023-03-02 14:03:01.089303 2025-08-09 Closed Customer 22 790921.4752548910 +35 t 83 921206 85.893166 0.45143711499682126 Product description 35 2023-12-14 14:03:01.089303 2023-04-16 Closed Customer 35 593246.5127468980 +21 t 95 634671 53.880714 0.9439130824353086 Product description 21 2022-10-09 14:03:01.089303 2023-01-21 Closed Customer 21 322583.2328396090 +24 t 82 348960 54.09012 0.8102060999346996 Product description 24 2022-02-16 14:03:01.089303 2024-12-30 Closed Customer 24 448830.0214823160 +36 t 95 890466 20.688725 0.34600051275644006 Product description 36 2023-06-06 14:03:01.089303 2025-03-29 Closed Customer 36 379747.7070154440 +25 t 69 632232 8.7683935 0.0002834948162018236 Product description 25 2022-12-08 14:03:01.089303 2025-03-24 Processing Customer 25 559042.1843110210 +27 f 71 705664 65.55225 0.402251763242905 Product description 27 2022-10-01 14:03:01.089303 2025-06-22 Processing Customer 27 303613.7171366850 +38 t 69 208371 77.53092 0.24211786006047475 Product description 38 2024-07-18 14:03:01.089303 2024-05-11 Closed Customer 38 269727.5199130150 +28 f 78 123124 36.332012 0.8388918356156054 Product description 28 2022-03-07 14:03:01.089303 2025-02-01 Closed Customer 28 914415.9027520010 +29 t 43 812530 40.765083 0.2804098056508444 Product description 29 2021-12-23 14:03:01.089303 2025-09-16 Closed Customer 29 16594.2478388033 +40 t 92 855832 84.23679 0.4218019341232022 Product description 40 2021-10-29 14:03:01.089303 2024-02-16 Closed Customer 40 387620.1148974770 +32 t 48 357114 25.727932 0.7703878992766988 Product description 32 2024-05-05 14:03:01.089303 2024-12-10 Closed Customer 32 719929.5855050670 +34 f 98 534726 15.082001 0.004392848656937787 Product description 34 2022-03-03 14:03:01.089303 2025-11-22 Processing Customer 34 288200.6866911130 +44 t 48 149900 67.096016 0.28448935779221074 Product description 44 2024-03-03 14:03:01.089303 2025-12-10 Processing Customer 44 313945.6667282130 +33 f 58 177745 80.857506 0.3145686463287021 Product description 33 2023-02-25 14:03:01.089303 2023-03-02 Closed Customer 33 232541.5821840160 +37 f 16 298885 20.378862 0.13825137920050778 Product description 37 2021-10-15 14:03:01.089303 2024-10-27 Closed Customer 37 580469.4339198380 +46 f 0 383059 46.43335 0.3452070936489875 Product description 46 2022-02-10 14:03:01.089303 2023-12-20 Closed Customer 46 476018.0572355100 +43 t 52 135627 96.73992 0.8278596707393575 Product description 43 2023-03-26 14:03:01.089303 2025-06-19 Processing Customer 43 285976.7329787640 +39 t 8 34668 10.8754425 0.8305028002241706 Product description 39 2023-03-27 14:03:01.089303 2024-05-14 Closed Customer 39 103325.4770536440 +47 f 20 390549 52.390907 0.6061992795872726 Product description 47 2023-07-19 14:03:01.089303 2025-07-21 Cancelled Customer 47 124721.8508096070 +52 f 27 431770 83.9306 0.7661549545217596 Product description 52 2022-03-11 14:03:01.089303 2023-03-28 Closed Customer 52 276187.0983719240 +41 t 81 254299 90.83086 0.08181052981289483 Product description 41 2022-09-12 14:03:01.089303 2024-06-18 Closed Customer 41 214175.8611052110 +48 f 82 172636 16.697077 0.621038424931637 Product description 48 2023-05-05 14:03:01.089303 2024-06-29 Processing Customer 48 159504.9063256870 +56 f 29 960213 62.55765 0.14211150114266502 Product description 56 2022-02-24 14:03:01.089303 2023-07-28 Closed Customer 56 778484.4595640230 +42 t 4 667028 17.350754 0.8755219669073036 Product description 42 2022-03-21 14:03:01.089303 2023-09-22 Processing Customer 42 714051.4599671520 +49 t 63 8526 4.4632998 0.8525555338310404 Product description 49 2023-03-22 14:03:01.089303 2025-01-09 Processing Customer 49 852424.3580531990 +58 f 7 392809 2.6202083 0.5422959750774865 Product description 58 2024-02-15 14:03:01.089303 2024-02-17 Closed Customer 58 828458.7619616880 +45 f 98 409377 62.940403 0.3017566824108222 Product description 45 2023-09-07 14:03:01.089303 2023-10-02 Closed Customer 45 363147.4272525070 +50 f 17 614848 74.118774 0.04280265122069338 Product description 50 2021-10-27 14:03:01.089303 2024-04-19 Closed Customer 50 436452.3016403080 +62 t 61 604810 92.542496 0.4794015232361204 Product description 62 2024-05-26 14:03:01.089303 2024-08-13 Closed Customer 62 446464.6095737630 +51 f 47 297761 99.15012 0.26024481203061 Product description 51 2023-11-03 14:03:01.089303 2023-11-18 Processing Customer 51 183902.0454252850 +57 t 30 412007 3.623783 0.2101674693957598 Product description 57 2023-09-17 14:03:01.089303 2025-06-09 Closed Customer 57 634981.9855871030 +63 f 92 562276 2.0411172 0.7261200657858566 Product description 63 2021-08-08 14:03:01.089303 2025-12-07 Closed Customer 63 419857.5974634660 +53 f 89 617734 40.12444 0.025849389098834052 Product description 53 2023-04-08 14:03:01.089303 2025-08-27 Closed Customer 53 643636.2152456000 +61 f 65 477253 47.20046 0.7130476891241493 Product description 61 2023-01-28 14:03:01.089303 2023-10-19 Cancelled Customer 61 705279.7259109520 +67 f 38 280867 75.34725 0.916993203265946 Product description 67 2021-11-29 14:03:01.089303 2023-06-18 Closed Customer 67 3974.4252474883 +54 f 93 16656 58.935066 0.8860461289181565 Product description 54 2022-06-27 14:03:01.089303 2025-11-01 Closed Customer 54 333359.4205648470 +64 t 96 47807 98.4565 0.013290112516379793 Product description 64 2024-02-24 14:03:01.089303 2025-02-07 Closed Customer 64 101294.0553679190 +73 f 9 49711 30.928265 0.15107319017304377 Product description 73 2022-08-24 14:03:01.089303 2025-10-02 Closed Customer 73 888831.8443712860 +55 t 20 876133 29.2149 0.8695360842153512 Product description 55 2022-01-10 14:03:01.089303 2023-07-06 Closed Customer 55 591831.1908242020 +68 t 78 401063 11.620301 0.30455467844981854 Product description 68 2022-11-01 14:03:01.089303 2025-02-17 Processing Customer 68 446921.7373564580 +82 t 15 894900 6.314526 0.5605242911110935 Product description 82 2023-01-21 14:03:01.089303 2025-07-31 Closed Customer 82 583271.7970398380 +59 f 28 328049 53.865055 0.5031156270507076 Product description 59 2023-11-30 14:03:01.089303 2025-11-08 Closed Customer 59 843809.4370729200 +69 f 61 159594 46.35308 0.2403354393324335 Product description 69 2022-09-27 14:03:01.089303 2024-12-27 Closed Customer 69 944177.0786754700 +85 f 49 889675 74.43164 0.6059959966261701 Product description 85 2024-07-16 14:03:01.089303 2025-03-31 Closed Customer 85 960494.2867024030 +60 t 76 514218 47.23958 0.8663332581594254 Product description 60 2022-10-25 14:03:01.089303 2023-10-22 Processing Customer 60 841435.3675392970 +71 t 8 901603 20.878262 0.12806460862451274 Product description 71 2022-09-07 14:03:01.089303 2023-11-02 Closed Customer 71 708875.8118316430 +96 t 35 784269 38.47732 0.3057096008950566 Product description 96 2024-05-14 14:03:01.089303 2024-08-27 Processing Customer 96 505371.2823083710 +65 f 32 15560 24.49443 0.5765242472770815 Product description 65 2021-11-07 14:03:01.089303 2025-12-05 Processing Customer 65 403001.2677905010 +72 t 13 420259 49.890812 0.7055938992228832 Product description 72 2023-08-11 14:03:01.089303 2024-05-21 Processing Customer 72 188102.8544086300 +100 f 34 226715 67.89565 0.7969114417466088 Product description 100 2021-08-05 14:03:01.089303 2025-05-08 Processing Customer 100 595766.7648534400 +66 f 37 312620 70.11868 0.8311456615796224 Product description 66 2022-04-22 14:03:01.089303 2024-09-22 Closed Customer 66 443226.4956734640 +74 t 53 721272 44.961117 0.12157226255254727 Product description 74 2023-11-19 14:03:01.089303 2025-01-21 Closed Customer 74 95326.3655501892 +105 f 40 262778 46.80269 0.8722249597962701 Product description 105 2023-10-10 14:03:01.089303 2025-10-09 Closed Customer 105 497157.2434900610 +70 f 7 443423 85.76852 0.6118694232583017 Product description 70 2023-12-18 14:03:01.089303 2024-10-08 Closed Customer 70 598445.8303916680 +76 t 70 347474 54.280704 0.3541061195304067 Product description 76 2023-06-12 14:03:01.089303 2025-03-03 Closed Customer 76 466604.2497558780 +106 t 26 701025 68.18456 0.002654124389970036 Product description 106 2023-02-27 14:03:01.089303 2023-01-18 Cancelled Customer 106 113909.0437070320 +75 f 61 973940 41.110703 0.8788561605457623 Product description 75 2024-07-06 14:03:01.089303 2025-06-23 Processing Customer 75 47484.8829904531 +78 f 21 18461 49.37801 0.11604590762375722 Product description 78 2022-07-04 14:03:01.089303 2023-10-13 Processing Customer 78 812704.7742448890 +107 t 78 741250 52.90471 0.6390856863573084 Product description 107 2023-11-25 14:03:01.089303 2024-03-09 Processing Customer 107 595163.3610909970 +77 t 8 111491 38.305298 0.9886181188717167 Product description 77 2021-09-21 14:03:01.089303 2024-06-17 Processing Customer 77 21345.3414958451 +79 t 24 838359 7.6351542 0.7877722945791206 Product description 79 2023-09-23 14:03:01.089303 2023-12-07 Processing Customer 79 542269.9330444410 +108 f 3 652247 37.761253 0.28345451162782 Product description 108 2022-12-25 14:03:01.089303 2025-02-14 Processing Customer 108 430802.4100468440 +80 f 7 241521 43.792244 0.4842891575136967 Product description 80 2022-05-01 14:03:01.089303 2025-10-22 Closed Customer 80 747659.9007350510 +83 f 36 606601 97.98637 0.6534378122223359 Product description 83 2021-10-29 14:03:01.089303 2025-11-21 Closed Customer 83 168979.4976808480 +110 f 50 856773 80.74841 0.1711681054266201 Product description 110 2021-08-18 14:03:01.089303 2023-09-01 Processing Customer 110 717765.3070767750 +81 f 4 841469 40.56228 0.01353115025733942 Product description 81 2022-09-18 14:03:01.089303 2025-11-08 Closed Customer 81 751291.7808304420 +86 f 73 901401 45.721924 0.6901741706287581 Product description 86 2023-05-23 14:03:01.089303 2025-08-08 Closed Customer 86 526473.2244998560 +111 f 15 930022 0.19993599 0.5442517331970258 Product description 111 2023-12-02 14:03:01.089303 2023-04-20 Closed Customer 111 88233.6893959135 +84 t 26 361101 41.0062 0.07352088473900764 Product description 84 2022-10-30 14:03:01.089303 2024-01-19 Processing Customer 84 907240.6308921400 +87 f 65 167656 15.372355 0.2809980238962879 Product description 87 2023-05-10 14:03:01.089303 2025-12-11 Processing Customer 87 118883.3399843180 +112 t 44 838992 91.12902 0.7015096471642188 Product description 112 2024-04-21 14:03:01.089303 2024-03-21 Processing Customer 112 316545.0713047020 +90 f 31 90117 52.96883 0.7832803590499857 Product description 90 2023-01-13 14:03:01.089303 2023-02-06 Closed Customer 90 59883.5746022246 +88 t 32 256064 7.9098897 0.45273223745669355 Product description 88 2022-10-17 14:03:01.089303 2024-07-08 Closed Customer 88 729913.7856791340 +116 t 61 439917 2.5657883 0.015036101143447667 Product description 116 2022-09-25 14:03:01.089303 2024-09-10 Closed Customer 116 454250.0891335170 +92 f 14 101376 77.501816 0.3166131787974642 Product description 92 2023-11-20 14:03:01.089303 2024-12-13 Cancelled Customer 92 136199.0120711990 +89 f 80 59695 14.296223 0.6364506034909709 Product description 89 2021-10-07 14:03:01.089303 2023-12-11 Closed Customer 89 39787.6331559210 +117 f 8 553352 47.464226 0.13377563246330126 Product description 117 2021-08-06 14:03:01.089303 2025-05-10 Closed Customer 117 124270.9569546890 +93 f 88 378412 0.3330368 0.9562522946688077 Product description 93 2023-02-19 14:03:01.089303 2023-05-09 Closed Customer 93 142242.3057635920 +91 t 21 637076 31.266142 0.1405889060630514 Product description 91 2024-01-23 14:03:01.089303 2025-11-19 Closed Customer 91 722528.4467870990 +119 t 32 81683 96.78513 0.8996081223314398 Product description 119 2022-12-20 14:03:01.089303 2023-03-24 Closed Customer 119 789977.6267668490 +94 f 80 291200 29.749268 0.5017370723033139 Product description 94 2022-06-01 14:03:01.089303 2023-05-05 Processing Customer 94 425047.7858890030 +95 t 87 734331 89.41783 0.9558103170320038 Product description 95 2022-01-26 14:03:01.089303 2024-08-14 Closed Customer 95 7150.2026702426 +121 f 50 143831 71.049126 0.7111932174394759 Product description 121 2024-02-11 14:03:01.089303 2024-01-15 Closed Customer 121 544627.6783592200 +97 t 16 799776 2.6332982 0.06516279433734695 Product description 97 2024-01-19 14:03:01.089303 2023-09-21 Closed Customer 97 223442.5360042030 +98 t 20 59494 28.850924 0.7613498155195302 Product description 98 2022-12-09 14:03:01.089303 2024-05-22 Closed Customer 98 428050.6461343410 +123 t 93 415944 21.341417 0.572106601644844 Product description 123 2022-04-28 14:03:01.089303 2025-08-15 Processing Customer 123 173473.7794483790 +99 t 99 350538 72.86491 0.21450134546272182 Product description 99 2021-11-10 14:03:01.089303 2025-05-05 Cancelled Customer 99 262740.8477752620 +114 f 18 518791 28.708952 0.8732314651213358 Product description 114 2023-08-01 14:03:01.089303 2023-08-03 Closed Customer 114 770398.3307532350 +125 f 23 193819 85.2875 0.9669457044192491 Product description 125 2021-12-05 14:03:01.089303 2024-01-09 Processing Customer 125 194613.4475119270 +101 f 7 493698 46.374653 0.14316553075047622 Product description 101 2024-04-15 14:03:01.089303 2024-12-08 Closed Customer 101 704928.2940314540 +122 f 5 219023 6.900783 0.33531117003921196 Product description 122 2022-01-31 14:03:01.089303 2024-12-09 Closed Customer 122 681239.1974502850 +128 f 69 274525 18.782394 0.5822220078770748 Product description 128 2021-08-22 14:03:01.089303 2025-07-09 Processing Customer 128 126199.2241695180 +102 t 18 291374 46.006508 0.9751034897486512 Product description 102 2024-02-27 14:03:01.089303 2024-12-02 Processing Customer 102 275029.1974463860 +124 t 86 258014 85.31818 0.33699625837003566 Product description 124 2024-01-09 14:03:01.089303 2024-07-06 Closed Customer 124 305267.3872745510 +132 f 77 373823 15.800847 0.004790368558278857 Product description 132 2021-10-26 14:03:01.089303 2023-06-12 Processing Customer 132 288569.5608670320 +103 f 64 44794 66.2306 0.2476211946933624 Product description 103 2024-07-27 14:03:01.089303 2025-12-19 Closed Customer 103 63005.7462040767 +134 t 36 706722 11.154383 0.13802772243251837 Product description 134 2024-07-13 14:03:01.089303 2024-01-28 Closed Customer 134 819126.7211261850 +133 f 26 983983 10.4151945 0.5778732167393166 Product description 133 2023-09-20 14:03:01.089303 2024-02-06 Processing Customer 133 455488.0040340310 +104 f 27 802619 33.719315 0.8740973442763682 Product description 104 2024-06-27 14:03:01.089303 2023-10-01 Processing Customer 104 460863.3932821530 +136 t 34 461934 73.95123 0.39635698943237685 Product description 136 2023-06-26 14:03:01.089303 2023-11-03 Closed Customer 136 23133.1626939060 +135 t 34 100416 1.4538968 0.25025800969938317 Product description 135 2024-07-01 14:03:01.089303 2024-05-21 Closed Customer 135 703037.0226387670 +109 t 27 970066 40.565166 0.25255253379750897 Product description 109 2022-06-29 14:03:01.089303 2025-12-13 Closed Customer 109 959907.2433198120 +148 f 52 98135 26.485373 0.6491352547336149 Product description 148 2023-11-08 14:03:01.089303 2025-02-27 Processing Customer 148 761751.3872304790 +137 f 18 52854 69.68196 0.2541830897423232 Product description 137 2024-01-20 14:03:01.089303 2023-11-16 Processing Customer 137 948072.8546962850 +113 f 22 958639 98.12955 0.9776378950952029 Product description 113 2023-04-05 14:03:01.089303 2025-02-15 Closed Customer 113 55153.0884696234 +149 f 4 397087 22.396624 0.7323582700280582 Product description 149 2022-11-09 14:03:01.089303 2024-02-17 Closed Customer 149 378509.0246587510 +138 t 73 539669 97.62026 0.17261375866036488 Product description 138 2023-06-21 14:03:01.089303 2023-10-31 Closed Customer 138 698235.2351946450 +115 t 78 369062 44.028694 0.47061478909146714 Product description 115 2022-01-03 14:03:01.089303 2023-10-06 Closed Customer 115 484697.9943115390 +150 t 5 977281 36.750954 0.7274597234319558 Product description 150 2022-02-12 14:03:01.089303 2025-07-05 Closed Customer 150 128552.9338127170 +141 f 12 464231 80.332054 0.20771850517801838 Product description 141 2022-01-18 14:03:01.089303 2025-06-29 Closed Customer 141 215162.0307623080 +118 t 43 405026 39.706642 0.44219282727728526 Product description 118 2022-11-03 14:03:01.089303 2025-11-25 Processing Customer 118 255821.2350635930 +152 t 28 313586 87.55732 0.527021857442918 Product description 152 2022-11-04 14:03:01.089303 2023-09-03 Processing Customer 152 50010.6421650024 +144 t 68 330465 33.380444 0.007074615628045677 Product description 144 2023-08-28 14:03:01.089303 2025-04-28 Closed Customer 144 747730.6448024590 +120 t 92 7140 84.89828 0.5831285203652747 Product description 120 2023-10-09 14:03:01.089303 2025-04-28 Processing Customer 120 96752.0101677977 +155 t 34 22019 97.894005 0.7019741979253027 Product description 155 2021-11-21 14:03:01.089303 2024-01-05 Processing Customer 155 215380.5560923880 +145 t 78 709057 53.910496 0.03460477505404569 Product description 145 2024-06-01 14:03:01.089303 2024-03-16 Processing Customer 145 715367.3471957590 +126 t 30 415362 37.708126 0.5013775651938523 Product description 126 2023-01-30 14:03:01.089303 2025-01-15 Processing Customer 126 644387.5304967290 +157 t 50 349783 79.702065 0.4575411518832624 Product description 157 2022-02-28 14:03:01.089303 2024-01-18 Closed Customer 157 35728.9911632783 +153 f 32 183726 72.018654 0.7182850882274785 Product description 153 2022-07-31 14:03:01.089303 2025-08-24 Processing Customer 153 17222.5144381883 +127 f 52 219208 53.40122 0.3316042915309474 Product description 127 2023-05-03 14:03:01.089303 2025-03-04 Closed Customer 127 250759.2536961950 +158 t 68 808568 90.46411 0.8595808890234409 Product description 158 2022-09-29 14:03:01.089303 2023-02-21 Closed Customer 158 870946.5231152830 +154 f 55 60979 54.770367 0.8995406721176202 Product description 154 2021-12-14 14:03:01.089303 2025-08-04 Closed Customer 154 862676.8580463350 +129 t 41 202558 33.961834 0.8034733172626609 Product description 129 2022-08-20 14:03:01.089303 2025-10-30 Processing Customer 129 961565.6071326550 +159 t 63 827376 73.643005 0.8366943662249469 Product description 159 2023-10-26 14:03:01.089303 2025-10-06 Processing Customer 159 749729.4856200330 +156 t 79 177953 55.200397 0.11806844063413635 Product description 156 2023-12-06 14:03:01.089303 2023-08-04 Processing Customer 156 213857.7670904450 +130 f 7 297174 36.906734 0.48595529097766743 Product description 130 2021-09-17 14:03:01.089303 2025-01-19 Closed Customer 130 771522.9958383600 +160 f 27 591913 15.524543 0.9906005020759565 Product description 160 2021-08-28 14:03:01.089303 2024-08-12 Processing Customer 160 223260.5808526140 +161 t 97 765246 26.606026 0.24981136654448832 Product description 161 2022-03-17 14:03:01.089303 2023-06-20 Closed Customer 161 85501.1966247403 +131 f 97 175385 60.370697 0.6675442047150604 Product description 131 2023-11-13 14:03:01.089303 2025-05-22 Processing Customer 131 982589.8938933480 +162 f 50 687189 92.76257 0.7219587156456129 Product description 162 2024-06-14 14:03:01.089303 2025-03-10 Closed Customer 162 521569.1808262020 +164 f 69 155895 29.41672 0.4769427753019535 Product description 164 2024-02-25 14:03:01.089303 2024-07-11 Processing Customer 164 729761.1655069290 +139 t 1 52375 10.892512 0.8725383078353666 Product description 139 2021-09-05 14:03:01.089303 2025-03-28 Closed Customer 139 433706.8042719280 +166 f 75 41091 37.12596 0.5659714190728309 Product description 166 2022-07-09 14:03:01.089303 2025-05-18 Processing Customer 166 844416.6570169390 +172 f 7 242192 89.52242 0.12463024496450359 Product description 172 2021-10-17 14:03:01.089303 2025-10-27 Closed Customer 172 740576.6600862690 +140 f 12 884651 75.38445 0.7220971942466186 Product description 140 2022-08-07 14:03:01.089303 2024-04-20 Processing Customer 140 445182.8116582420 +167 f 56 846259 54.396523 0.9113318088569997 Product description 167 2022-01-31 14:03:01.089303 2024-09-18 Closed Customer 167 165177.8836853990 +173 t 17 308323 35.334293 0.2093887579914231 Product description 173 2024-06-05 14:03:01.089303 2023-04-12 Closed Customer 173 861320.0301193160 +142 t 59 806438 98.113434 0.3825421776873519 Product description 142 2022-10-30 14:03:01.089303 2023-09-04 Closed Customer 142 269290.8402791620 +168 t 58 512828 75.95499 0.9393483783732464 Product description 168 2023-10-11 14:03:01.089303 2023-11-29 Closed Customer 168 850020.4055740180 +175 t 3 806144 33.345886 0.2766696677472815 Product description 175 2021-08-08 14:03:01.089303 2025-02-23 Processing Customer 175 231282.1997541690 +143 t 61 49288 93.41184 0.4513438193077697 Product description 143 2023-06-16 14:03:01.089303 2025-08-29 Closed Customer 143 898604.1225796980 +169 t 22 734389 62.737877 0.3143048076640156 Product description 169 2021-11-22 14:03:01.089303 2023-10-27 Processing Customer 169 517690.4903094450 +176 f 97 376109 21.064703 0.34257457729953344 Product description 176 2024-07-17 14:03:01.089303 2024-11-21 Closed Customer 176 986108.3084553140 +146 t 26 966559 16.580149 0.16614347655582762 Product description 146 2022-03-20 14:03:01.089303 2025-09-01 Closed Customer 146 191937.7221372190 +170 f 78 645456 32.269 0.9435209420558905 Product description 170 2022-09-27 14:03:01.089303 2024-11-30 Closed Customer 170 917114.0305410470 +177 t 72 4539 43.99653 0.8812230263795975 Product description 177 2022-10-05 14:03:01.089303 2024-04-05 Closed Customer 177 440948.1389143580 +147 f 64 300989 87.591644 0.16449819358978246 Product description 147 2021-12-06 14:03:01.089303 2023-12-14 Processing Customer 147 942630.9001879930 +171 t 17 225153 29.428837 0.11557391986826815 Product description 171 2022-03-22 14:03:01.089303 2025-01-29 Processing Customer 171 963979.7670009180 +179 t 49 119254 36.34778 0.8380040143171534 Product description 179 2024-05-21 14:03:01.089303 2024-03-06 Closed Customer 179 712212.1592001070 +151 t 60 518685 46.611324 0.28015469242361846 Product description 151 2023-07-07 14:03:01.089303 2025-03-27 Processing Customer 151 15600.6900917092 +174 f 50 762632 85.7344 0.9629476817531852 Product description 174 2023-01-28 14:03:01.089303 2025-11-02 Closed Customer 174 596868.9216793200 +186 f 5 486753 83.34868 0.15145880383064636 Product description 186 2021-09-02 14:03:01.089303 2025-03-31 Closed Customer 186 403353.2447447000 +163 f 49 673191 14.349989 0.6171269054664243 Product description 163 2021-10-18 14:03:01.089303 2025-04-03 Processing Customer 163 41262.7846687741 +178 t 94 472802 20.18589 0.2738364646060205 Product description 178 2024-07-21 14:03:01.089303 2024-09-28 Closed Customer 178 10478.9091106561 +188 f 4 889617 1.3292686 0.28180059886955533 Product description 188 2023-11-04 14:03:01.089303 2024-09-05 Processing Customer 188 423292.3647041810 +165 f 71 174782 45.484333 0.16710815165110304 Product description 165 2022-09-13 14:03:01.089303 2023-02-14 Closed Customer 165 355507.7418130780 +181 t 49 161236 48.281628 0.1699492367322577 Product description 181 2021-09-04 14:03:01.089303 2023-08-13 Closed Customer 181 186397.2316131600 +189 f 84 330300 87.48258 0.5386895295219851 Product description 189 2021-08-14 14:03:01.089303 2023-01-01 Closed Customer 189 808300.2930049400 +180 f 22 62828 74.40392 0.5099233462630259 Product description 180 2024-06-01 14:03:01.089303 2024-02-06 Closed Customer 180 61221.9984869284 +184 f 83 741158 47.552032 0.25843416156405397 Product description 184 2022-06-19 14:03:01.089303 2024-11-19 Processing Customer 184 394784.3658225700 +195 t 21 542330 78.91321 0.6141450585320918 Product description 195 2021-08-18 14:03:01.089303 2023-04-15 Processing Customer 195 273276.8996505680 +182 t 52 753985 27.516052 0.6629824358993197 Product description 182 2022-01-04 14:03:01.089303 2023-04-01 Closed Customer 182 62226.3606044910 +191 t 32 891190 60.627827 0.09657376541711216 Product description 191 2021-11-26 14:03:01.089303 2023-05-25 Processing Customer 191 914225.9372370670 +198 t 23 261933 37.269093 0.09811736939593274 Product description 198 2021-11-13 14:03:01.089303 2025-09-02 Processing Customer 198 621530.0456075350 +183 f 19 978746 73.80038 0.9446071807422278 Product description 183 2022-06-02 14:03:01.089303 2023-09-09 Closed Customer 183 986835.0841030780 +194 f 34 429935 11.146384 0.0158435086516846 Product description 194 2023-07-05 14:03:01.089303 2025-10-06 Closed Customer 194 98499.4201388467 +200 f 97 158932 29.306593 0.06943993775562163 Product description 200 2023-01-22 14:03:01.089303 2025-10-17 Closed Customer 200 436533.9232917480 +185 f 3 393519 30.512571 0.060844706078409416 Product description 185 2022-09-18 14:03:01.089303 2024-08-14 Processing Customer 185 161080.9940302930 +196 f 28 141323 39.80971 0.14081838600935015 Product description 196 2021-09-02 14:03:01.089303 2025-03-29 Closed Customer 196 158351.4705093480 +204 t 84 6835 92.83298 0.907391413109405 Product description 204 2022-08-06 14:03:01.089303 2024-09-18 Processing Customer 204 505006.1747150140 +187 t 87 567098 47.490772 0.4697693276195203 Product description 187 2024-05-07 14:03:01.089303 2024-05-30 Processing Customer 187 190682.5503824340 +199 t 78 12743 85.1049 0.1723601891231965 Product description 199 2022-01-07 14:03:01.089303 2023-07-16 Processing Customer 199 943450.6747155600 +205 f 44 403773 87.88349 0.2494046894851074 Product description 205 2022-02-21 14:03:01.089303 2024-11-29 Cancelled Customer 205 285683.5049265700 +190 f 97 870837 74.500206 0.7909350659050141 Product description 190 2023-06-12 14:03:01.089303 2024-08-04 Closed Customer 190 985111.1205657400 +201 t 87 52229 34.09184 0.3663615458589291 Product description 201 2022-06-10 14:03:01.089303 2023-09-16 Closed Customer 201 742044.9873730810 +209 t 35 489942 63.994175 0.18927023962105238 Product description 209 2023-05-31 14:03:01.089303 2025-08-07 Processing Customer 209 677209.0382581660 +192 f 57 769888 31.931522 0.9578392937517641 Product description 192 2021-12-15 14:03:01.089303 2023-04-26 Processing Customer 192 936647.6399305130 +202 f 68 172179 51.85844 0.5681954513422198 Product description 202 2022-07-30 14:03:01.089303 2023-03-10 Closed Customer 202 310040.7282319220 +210 t 75 215841 95.52778 0.8922524220487773 Product description 210 2022-07-30 14:03:01.089303 2025-06-20 Processing Customer 210 108135.1578327090 +193 f 70 186186 23.868935 0.8471656613729515 Product description 193 2023-09-08 14:03:01.089303 2024-02-11 Closed Customer 193 613498.1288316150 +206 f 26 365102 92.20615 0.01896043526183888 Product description 206 2023-07-14 14:03:01.089303 2023-12-14 Closed Customer 206 194028.0810940640 +212 f 32 651802 87.48071 0.8124610023647847 Product description 212 2021-10-11 14:03:01.089303 2024-12-08 Closed Customer 212 895532.1724632730 +197 f 85 267531 30.180607 0.34001531037820953 Product description 197 2023-02-07 14:03:01.089303 2024-08-29 Processing Customer 197 904975.3185062170 +208 f 56 801843 17.62085 0.7341363948580977 Product description 208 2023-08-18 14:03:01.089303 2025-03-29 Processing Customer 208 425973.7461658480 +218 t 23 178468 64.70159 0.0030297616302803476 Product description 218 2023-05-24 14:03:01.089303 2023-10-15 Processing Customer 218 889259.5047378540 +203 t 5 383060 23.215239 0.4192804363184415 Product description 203 2024-06-12 14:03:01.089303 2024-02-19 Closed Customer 203 500555.8904714530 +213 f 83 168490 39.33898 0.34804613191821687 Product description 213 2024-08-01 14:03:01.089303 2023-03-06 Closed Customer 213 885231.5502605310 +221 t 27 749830 54.809086 0.7915997471465772 Product description 221 2024-07-09 14:03:01.089303 2025-10-03 Closed Customer 221 425653.5145424430 +207 t 83 709596 68.65225 0.32666376593610735 Product description 207 2023-11-09 14:03:01.089303 2023-06-14 Closed Customer 207 857081.4023600660 +214 t 47 821939 30.166466 0.6705831377240514 Product description 214 2024-05-15 14:03:01.089303 2023-07-24 Processing Customer 214 779414.1466942330 +230 t 52 236282 41.253876 0.2123122396315793 Product description 230 2022-06-13 14:03:01.089303 2025-10-17 Closed Customer 230 522340.6652530580 +211 f 53 666746 44.267426 0.6432791607943606 Product description 211 2023-11-16 14:03:01.089303 2023-12-23 Processing Customer 211 522699.3962545170 +216 t 69 459760 94.97476 0.4647836898723128 Product description 216 2023-08-19 14:03:01.089303 2024-05-25 Closed Customer 216 598656.0145506880 +233 t 38 900031 49.810368 0.3349966649512055 Product description 233 2023-10-23 14:03:01.089303 2023-07-19 Closed Customer 233 615933.8544099700 +215 t 6 420396 47.630955 0.059683230021835953 Product description 215 2023-03-21 14:03:01.089303 2024-09-03 Processing Customer 215 703668.5423238680 +217 t 96 581579 67.433975 0.7789529945279696 Product description 217 2021-12-11 14:03:01.089303 2025-04-19 Processing Customer 217 548945.0494382560 +236 t 37 158858 18.56975 0.4262158837468988 Product description 236 2022-11-09 14:03:01.089303 2024-04-19 Processing Customer 236 530573.8094808740 +219 t 56 277892 55.630142 0.7150343306574563 Product description 219 2021-12-08 14:03:01.089303 2025-04-14 Closed Customer 219 630129.7080442860 +220 t 6 834797 4.0568995 0.2920564338748548 Product description 220 2023-02-06 14:03:01.089303 2023-06-01 Processing Customer 220 802068.0456417360 +237 f 7 828080 71.606735 0.4946062705804337 Product description 237 2023-04-18 14:03:01.089303 2025-12-29 Closed Customer 237 668447.6087788590 +223 f 99 938860 94.18028 0.09958522952354443 Product description 223 2021-08-16 14:03:01.089303 2025-10-13 Closed Customer 223 258874.6372378950 +222 f 83 482321 16.532827 0.4890491249289113 Product description 222 2022-04-06 14:03:01.089303 2024-08-30 Processing Customer 222 690240.2844322740 +238 f 81 616001 78.81895 0.01901526809819387 Product description 238 2024-06-07 14:03:01.089303 2025-10-11 Processing Customer 238 337216.4537145360 +224 f 97 364009 78.324036 0.21882961611815333 Product description 224 2022-10-01 14:03:01.089303 2024-09-24 Closed Customer 224 992278.3193601320 +226 f 10 351278 58.424553 0.9497098492587597 Product description 226 2024-04-28 14:03:01.089303 2024-06-21 Closed Customer 226 391209.3588078740 +240 f 27 309397 20.64304 0.7526630565138817 Product description 240 2021-12-20 14:03:01.089303 2025-07-21 Closed Customer 240 225561.2955408960 +225 f 94 216963 25.371275 0.9281391833126413 Product description 225 2022-02-04 14:03:01.089303 2023-09-25 Closed Customer 225 614489.2163426330 +227 f 5 917365 8.744803 0.6880676810959301 Product description 227 2023-11-28 14:03:01.089303 2023-10-12 Processing Customer 227 43534.4435092837 +242 t 87 282072 90.273125 0.7744493713182194 Product description 242 2023-06-24 14:03:01.089303 2024-12-24 Processing Customer 242 696399.9783098730 +229 t 21 607830 83.16335 0.6899565265045418 Product description 229 2022-06-07 14:03:01.089303 2023-11-20 Closed Customer 229 425441.3768789580 +228 t 33 174054 99.67963 0.7803022311007695 Product description 228 2023-04-23 14:03:01.089303 2023-01-24 Processing Customer 228 185314.8053348300 +245 f 54 509229 83.11048 0.2315887461818562 Product description 245 2023-11-20 14:03:01.089303 2025-07-26 Closed Customer 245 178960.4316515570 +239 t 25 250245 68.77226 0.9475578386490362 Product description 239 2023-08-01 14:03:01.089303 2025-01-10 Processing Customer 239 63638.4730844526 +231 f 27 570729 85.56354 0.6056273518305915 Product description 231 2021-11-04 14:03:01.089303 2023-12-29 Closed Customer 231 734777.4887666500 +246 t 56 824408 23.83577 0.7721136903031933 Product description 246 2021-08-09 14:03:01.089303 2025-04-07 Closed Customer 246 693880.4757774510 +241 t 80 473937 6.162343 0.5852796706503334 Product description 241 2024-07-10 14:03:01.089303 2023-03-22 Closed Customer 241 19730.6568740245 +232 f 2 655098 46.144695 0.34503323715448886 Product description 232 2024-07-10 14:03:01.089303 2025-01-21 Closed Customer 232 984097.7293648230 +253 f 33 447033 45.077606 0.7705404875467536 Product description 253 2022-08-22 14:03:01.089303 2024-03-29 Closed Customer 253 464623.3992127370 +244 t 8 180675 95.67207 0.7451824931288691 Product description 244 2021-12-18 14:03:01.089303 2025-02-15 Processing Customer 244 757799.0138880470 +234 f 82 30452 13.71821 0.16583743382057037 Product description 234 2022-09-15 14:03:01.089303 2023-03-11 Closed Customer 234 335426.6254027570 +254 f 38 678296 33.943047 0.7884435859076362 Product description 254 2022-09-06 14:03:01.089303 2024-05-15 Processing Customer 254 819251.2317224930 +247 f 41 246126 35.957195 0.7952032396310322 Product description 247 2022-03-28 14:03:01.089303 2024-07-05 Processing Customer 247 100825.2767697750 +235 f 41 877750 18.065622 0.12305923928443718 Product description 235 2022-08-15 14:03:01.089303 2025-09-19 Processing Customer 235 548664.0176784230 +255 f 38 400022 59.90652 0.9263041972744048 Product description 255 2024-01-10 14:03:01.089303 2023-04-15 Processing Customer 255 719167.8569169930 +251 t 64 219902 38.149136 0.6499095430835418 Product description 251 2022-10-23 14:03:01.089303 2024-06-03 Closed Customer 251 162718.0673332730 +243 t 80 837185 40.066605 0.7563892189189829 Product description 243 2021-11-24 14:03:01.089303 2025-09-27 Closed Customer 243 960416.3114984310 +263 t 87 320548 45.81261 0.29684281756686204 Product description 263 2023-05-23 14:03:01.089303 2025-02-21 Closed Customer 263 966626.9647464850 +252 t 91 185298 63.5525 0.052749933543264405 Product description 252 2021-10-28 14:03:01.089303 2025-01-30 Processing Customer 252 908502.4152043890 +248 f 63 711238 28.430387 0.92478245040612 Product description 248 2024-03-26 14:03:01.089303 2025-09-14 Closed Customer 248 726379.1897186030 +264 f 71 861012 43.2483 0.8284944984427511 Product description 264 2021-08-07 14:03:01.089303 2024-10-04 Processing Customer 264 318186.4666439620 +256 f 24 954044 54.260506 0.5802517853251921 Product description 256 2022-08-30 14:03:01.089303 2024-07-16 Closed Customer 256 959082.9443400250 +249 t 95 890490 28.361614 0.863499633072621 Product description 249 2023-09-19 14:03:01.089303 2024-12-09 Closed Customer 249 350840.2277564320 +268 t 14 146587 92.82311 0.19567397407673326 Product description 268 2023-05-20 14:03:01.089303 2024-10-23 Closed Customer 268 852237.7163169250 +257 f 98 44509 75.74177 0.42913130914916664 Product description 257 2021-09-02 14:03:01.089303 2025-06-04 Processing Customer 257 915158.3767359240 +250 t 79 85440 7.5193024 0.6037707807437656 Product description 250 2023-07-20 14:03:01.089303 2025-11-29 Processing Customer 250 895481.4603673670 +275 t 41 973729 75.662865 0.5236163531825042 Product description 275 2021-12-27 14:03:01.089303 2023-11-24 Processing Customer 275 734901.8702827940 +258 t 92 964544 4.5294847 0.13664472652633108 Product description 258 2024-03-17 14:03:01.089303 2023-07-08 Closed Customer 258 337009.0109120410 +259 f 34 273790 73.90097 0.5109197600320243 Product description 259 2023-01-28 14:03:01.089303 2023-07-14 Processing Customer 259 277784.5783080400 +284 f 50 337853 36.337357 0.5608305900356854 Product description 284 2023-03-13 14:03:01.089303 2025-07-17 Closed Customer 284 523058.3004105150 +260 t 9 253261 35.813847 0.03950325299093649 Product description 260 2022-11-11 14:03:01.089303 2023-09-03 Processing Customer 260 388229.7321033190 +265 f 52 469552 72.43397 0.023703811055263202 Product description 265 2023-11-30 14:03:01.089303 2023-01-12 Closed Customer 265 518778.1720966490 +285 f 27 560246 1.8400959 0.9570126383729587 Product description 285 2021-10-20 14:03:01.089303 2023-11-14 Processing Customer 285 977588.8022939190 +261 f 76 128628 18.594011 0.35071023582019123 Product description 261 2021-11-05 14:03:01.089303 2025-12-28 Processing Customer 261 887142.3942190690 +269 f 8 317498 75.23241 0.05493319376734007 Product description 269 2022-07-01 14:03:01.089303 2024-05-05 Processing Customer 269 477703.0519476820 +286 t 94 285938 21.338047 0.4343057142606668 Product description 286 2022-07-12 14:03:01.089303 2024-02-05 Closed Customer 286 164492.8079401820 +262 f 86 511557 90.457756 0.9974447975200995 Product description 262 2021-08-24 14:03:01.089303 2024-07-09 Closed Customer 262 293439.5542601250 +271 f 89 586737 87.29962 0.2352487238429788 Product description 271 2023-09-12 14:03:01.089303 2024-10-07 Closed Customer 271 442278.6486327690 +288 t 5 634519 52.217087 0.49673061002589236 Product description 288 2023-04-13 14:03:01.089303 2023-09-19 Closed Customer 288 357241.7716191400 +266 t 55 233888 82.187515 0.5156225239134109 Product description 266 2021-11-02 14:03:01.089303 2023-01-08 Closed Customer 266 176065.1528065720 +273 f 91 208732 7.2372804 0.7122241500861861 Product description 273 2022-03-21 14:03:01.089303 2023-10-14 Processing Customer 273 89477.9540647726 +290 f 29 179186 9.690084 0.4225351303265299 Product description 290 2022-05-15 14:03:01.089303 2024-05-28 Closed Customer 290 856803.1250876120 +267 t 85 516023 2.2462866 0.0725806083817524 Product description 267 2022-11-03 14:03:01.089303 2025-03-08 Closed Customer 267 692102.5167367740 +276 t 94 838088 73.58547 0.8502750689695162 Product description 276 2024-04-29 14:03:01.089303 2024-07-31 Closed Customer 276 494923.6816975610 +295 f 48 945184 3.7614894 0.03267751278150399 Product description 295 2024-06-28 14:03:01.089303 2025-09-29 Closed Customer 295 164042.7048010300 +270 t 68 581010 13.219875 0.8940549586140101 Product description 270 2021-09-06 14:03:01.089303 2025-09-20 Closed Customer 270 993535.7650131780 +277 t 48 863639 91.44938 0.5237319928032491 Product description 277 2022-03-18 14:03:01.089303 2024-02-01 Processing Customer 277 901252.2356063890 +297 f 16 421517 37.602787 0.5174268827475501 Product description 297 2022-12-07 14:03:01.089303 2024-10-21 Closed Customer 297 854611.0801806070 +272 f 18 541306 60.15548 0.8338199917459939 Product description 272 2021-09-28 14:03:01.089303 2025-10-09 Closed Customer 272 484426.3867563040 +278 f 12 64735 75.09151 0.902670420029132 Product description 278 2022-05-01 14:03:01.089303 2024-01-24 Processing Customer 278 296115.8382193540 +299 t 84 720271 94.65396 0.27501557751260464 Product description 299 2022-08-12 14:03:01.089303 2024-05-21 Processing Customer 299 294062.1230807880 +274 f 26 374212 31.081192 0.6586159446951889 Product description 274 2022-07-05 14:03:01.089303 2024-11-29 Closed Customer 274 510810.5887483280 +280 t 13 621330 78.34001 0.028291355446114608 Product description 280 2023-10-28 14:03:01.089303 2025-10-09 Closed Customer 280 964251.2091250910 +306 t 83 260150 52.928158 0.4761187977201402 Product description 306 2022-10-25 14:03:01.089303 2025-01-27 Closed Customer 306 212235.9931783430 +279 t 4 601325 14.015905 0.8526660139869584 Product description 279 2021-09-03 14:03:01.089303 2023-04-28 Cancelled Customer 279 401563.0632850640 +281 f 25 420963 99.72117 0.369696864788402 Product description 281 2024-06-03 14:03:01.089303 2025-02-21 Closed Customer 281 80605.8801433274 +309 f 51 584737 16.949356 0.21760837488679385 Product description 309 2023-09-04 14:03:01.089303 2025-08-24 Closed Customer 309 158692.6423081780 +282 t 35 856891 86.85222 0.4769016184569992 Product description 282 2023-10-28 14:03:01.089303 2025-11-10 Closed Customer 282 891029.4952813760 +283 f 13 691534 25.0336 0.1812744283978418 Product description 283 2022-08-10 14:03:01.089303 2024-01-06 Closed Customer 283 514773.4658431740 +310 t 56 669984 53.347534 0.5379838672774682 Product description 310 2023-09-12 14:03:01.089303 2024-01-28 Processing Customer 310 506298.3776577460 +287 f 94 866138 66.40394 0.056599880786265544 Product description 287 2022-05-16 14:03:01.089303 2025-06-23 Closed Customer 287 945207.9187358710 +289 t 72 741344 5.3728523 0.6369324295038794 Product description 289 2022-11-26 14:03:01.089303 2024-07-04 Processing Customer 289 943144.1351133320 +311 f 41 105349 12.982603 0.5686380183711179 Product description 311 2022-03-31 14:03:01.089303 2025-08-23 Closed Customer 311 661572.6482178670 +291 f 71 763773 30.517443 0.22349994640659787 Product description 291 2024-04-18 14:03:01.089303 2024-02-16 Closed Customer 291 654210.6639373240 +292 f 36 114089 79.59364 0.40501829607406137 Product description 292 2024-03-08 14:03:01.089303 2023-01-26 Closed Customer 292 28575.7041978165 +312 f 18 452068 9.382429 0.5327062526695769 Product description 312 2024-06-10 14:03:01.089303 2025-10-01 Processing Customer 312 137996.6499304890 +294 f 18 541493 65.27371 0.93205392320084 Product description 294 2021-09-03 14:03:01.089303 2023-12-27 Processing Customer 294 84488.3021218799 +293 f 3 791917 64.37823 0.7430985254498736 Product description 293 2024-05-04 14:03:01.089303 2023-01-09 Closed Customer 293 591481.9563461050 +313 f 49 681133 77.831436 0.7275550990797228 Product description 313 2022-09-25 14:03:01.089303 2023-02-10 Closed Customer 313 864843.7235034370 +296 t 76 915420 61.05218 0.5806773277293544 Product description 296 2023-02-28 14:03:01.089303 2025-11-09 Closed Customer 296 852253.0105167650 +300 f 85 268322 30.280096 0.7020745117108902 Product description 300 2023-06-30 14:03:01.089303 2023-01-28 Closed Customer 300 368888.6620210750 +314 t 81 129388 71.69147 0.18297981927674556 Product description 314 2022-02-24 14:03:01.089303 2023-06-12 Closed Customer 314 368442.2460627030 +298 t 62 697409 76.48424 0.4408969809175147 Product description 298 2024-03-13 14:03:01.089303 2024-02-21 Closed Customer 298 622743.0185729860 +302 f 76 832917 88.1918 0.2863358890461214 Product description 302 2023-09-24 14:03:01.089303 2025-09-07 Processing Customer 302 394752.7764738690 +318 t 55 464279 30.635794 0.004714549562280013 Product description 318 2023-11-30 14:03:01.089303 2024-08-30 Processing Customer 318 552755.5996535620 +301 t 52 304299 3.9688156 0.6536060952853617 Product description 301 2024-01-12 14:03:01.089303 2025-05-12 Processing Customer 301 554401.3181039880 +303 f 38 33354 82.23399 0.5549244510997227 Product description 303 2022-07-27 14:03:01.089303 2024-02-16 Closed Customer 303 775788.9238543320 +320 f 43 495787 24.522726 0.8492631038892213 Product description 320 2022-02-17 14:03:01.089303 2025-03-16 Processing Customer 320 254739.8476183280 +304 t 67 955654 51.980988 0.8614998303137043 Product description 304 2021-12-22 14:03:01.089303 2024-11-27 Processing Customer 304 643595.4920032960 +305 f 24 575646 68.858185 0.53673382706301 Product description 305 2023-05-25 14:03:01.089303 2024-05-18 Processing Customer 305 909545.0054926640 +328 f 78 666935 22.647717 0.8399299366094795 Product description 328 2022-09-24 14:03:01.089303 2024-07-04 Processing Customer 328 990769.8882042520 +308 t 66 208237 43.43542 0.542505378735747 Product description 308 2023-10-04 14:03:01.089303 2023-05-18 Closed Customer 308 489668.0834720580 +307 f 22 453540 23.662405 0.6355514536459737 Product description 307 2021-08-11 14:03:01.089303 2023-03-22 Processing Customer 307 166746.8643988140 +333 f 39 226999 14.77992 0.14991099824309373 Product description 333 2022-03-09 14:03:01.089303 2025-01-20 Closed Customer 333 931068.7834021150 +315 f 22 839950 22.040665 0.7853884211490794 Product description 315 2022-03-12 14:03:01.089303 2025-01-03 Processing Customer 315 268062.6630131930 +316 t 53 678607 57.576237 0.03524243800115556 Product description 316 2021-08-04 14:03:01.089303 2023-07-08 Processing Customer 316 858295.4597212940 +336 f 37 312931 36.752617 0.834410036911649 Product description 336 2024-04-07 14:03:01.089303 2024-08-14 Closed Customer 336 167926.4254068290 +319 f 31 263634 44.56287 0.17482818809246936 Product description 319 2022-05-21 14:03:01.089303 2023-05-12 Closed Customer 319 621448.6165501580 +317 t 6 942101 4.1091204 0.8670634019511141 Product description 317 2024-02-26 14:03:01.089303 2023-05-05 Closed Customer 317 302632.2012619400 +337 f 37 383433 6.295216 0.9438707727899711 Product description 337 2021-09-12 14:03:01.089303 2024-09-12 Closed Customer 337 902429.4198395810 +322 f 88 498246 50.17451 0.9021481227840695 Product description 322 2021-11-19 14:03:01.089303 2023-12-30 Processing Customer 322 520087.9095851820 +321 t 21 641292 53.93135 0.7987314223925281 Product description 321 2024-03-28 14:03:01.089303 2023-08-22 Processing Customer 321 689802.4493496460 +342 t 21 137278 40.6328 0.22591401644757525 Product description 342 2023-11-26 14:03:01.089303 2023-07-12 Processing Customer 342 985456.5538132040 +325 f 86 464795 99.97063 0.5215775595630774 Product description 325 2022-08-26 14:03:01.089303 2024-03-07 Closed Customer 325 140092.9242584860 +323 t 58 473857 85.69781 0.03245627222085545 Product description 323 2022-12-06 14:03:01.089303 2023-01-03 Closed Customer 323 637668.3774737690 +347 f 98 712540 43.006813 0.5390799242972619 Product description 347 2022-05-16 14:03:01.089303 2024-01-11 Processing Customer 347 889159.7893988640 +326 f 81 882988 94.06712 0.4308148636946072 Product description 326 2024-05-12 14:03:01.089303 2025-07-13 Closed Customer 326 846280.3182254780 +324 f 98 264278 86.62912 0.055253680951956596 Product description 324 2023-10-18 14:03:01.089303 2023-03-31 Closed Customer 324 851127.4092351790 +349 f 1 655755 49.068684 0.7213891773028678 Product description 349 2023-03-23 14:03:01.089303 2024-09-02 Cancelled Customer 349 846983.5318406070 +329 f 58 956256 89.83197 0.04906750046105657 Product description 329 2022-11-14 14:03:01.089303 2024-12-10 Closed Customer 329 877913.0717191390 +327 f 45 16529 37.782246 0.2807643696871054 Product description 327 2021-08-28 14:03:01.089303 2024-12-02 Processing Customer 327 573793.0892184800 +357 f 55 396039 63.74718 0.5330390033197112 Product description 357 2022-06-06 14:03:01.089303 2024-11-03 Closed Customer 357 127270.7537100710 +331 f 65 79180 41.095913 0.9982971877969078 Product description 331 2021-11-10 14:03:01.089303 2024-09-17 Closed Customer 331 291014.4898927700 +330 f 37 650900 81.44897 0.1410036927207372 Product description 330 2021-11-26 14:03:01.089303 2025-03-10 Processing Customer 330 990993.3435927380 +359 t 92 520661 23.53739 0.4698711565298517 Product description 359 2023-10-12 14:03:01.089303 2024-07-12 Closed Customer 359 954312.0635276950 +334 t 79 145658 83.0871 0.7226277280090372 Product description 334 2023-01-24 14:03:01.089303 2023-11-21 Processing Customer 334 464783.4553064780 +332 t 11 349057 21.251923 0.609545508397332 Product description 332 2023-10-03 14:03:01.089303 2024-06-22 Closed Customer 332 728237.5293527790 +365 f 32 402397 64.46199 0.5537617212857349 Product description 365 2024-03-11 14:03:01.089303 2023-08-10 Processing Customer 365 986861.7106155780 +335 f 71 890400 86.92951 0.08727647985584497 Product description 335 2022-04-02 14:03:01.089303 2023-11-29 Processing Customer 335 401642.0194013040 +339 t 69 131371 2.320783 0.0676312280882101 Product description 339 2024-06-27 14:03:01.089303 2023-10-24 Processing Customer 339 759692.6826153980 +367 f 0 619897 43.57112 0.1722664824374256 Product description 367 2022-04-02 14:03:01.089303 2024-11-04 Closed Customer 367 979551.4144570350 +338 t 33 286478 20.420399 0.055665411950023724 Product description 338 2022-02-17 14:03:01.089303 2024-09-27 Processing Customer 338 271758.5423618120 +340 f 93 962576 72.40279 0.7293133656722404 Product description 340 2022-02-28 14:03:01.089303 2024-06-07 Processing Customer 340 187139.1450663500 +369 t 86 482354 35.48911 0.8360292039205284 Product description 369 2022-08-08 14:03:01.089303 2025-12-15 Closed Customer 369 225906.4355982400 +341 t 54 997344 43.09414 0.8488269542914963 Product description 341 2022-09-24 14:03:01.089303 2025-07-18 Processing Customer 341 416520.6514873570 +343 f 27 50408 23.649298 0.16020684635255833 Product description 343 2022-09-18 14:03:01.089303 2024-10-03 Processing Customer 343 197806.7303629030 +370 f 52 156798 68.06631 0.006155794546575777 Product description 370 2024-07-06 14:03:01.089303 2024-10-10 Processing Customer 370 918006.4770394120 +344 f 53 553086 18.3517 0.5402438655009476 Product description 344 2023-07-11 14:03:01.089303 2024-07-06 Processing Customer 344 535183.4441648040 +351 t 70 561147 20.937082 0.8676937007611798 Product description 351 2024-05-08 14:03:01.089303 2024-10-06 Closed Customer 351 437534.7209788990 +371 f 93 436011 98.47742 0.1651358716919269 Product description 371 2021-09-14 14:03:01.089303 2024-03-22 Closed Customer 371 446014.8776987790 +345 f 23 227179 9.557673 0.31059651952070055 Product description 345 2022-08-01 14:03:01.089303 2024-12-15 Processing Customer 345 97637.7038864022 +353 f 44 332981 17.070845 0.7450884167887253 Product description 353 2021-08-06 14:03:01.089303 2025-12-25 Processing Customer 353 959659.0309593050 +372 f 11 244948 0.8044878 0.12432837751071091 Product description 372 2024-04-27 14:03:01.089303 2025-05-14 Processing Customer 372 871107.4109663460 +346 t 70 498137 68.87959 0.8361439458332356 Product description 346 2021-09-09 14:03:01.089303 2025-03-17 Processing Customer 346 480427.5044278260 +368 f 57 729111 12.009532 0.729410137234467 Product description 368 2023-03-26 14:03:01.089303 2024-10-29 Closed Customer 368 265650.2095640400 +373 f 39 59543 72.907524 0.5438595741313428 Product description 373 2024-05-26 14:03:01.089303 2025-05-03 Processing Customer 373 155280.7801129820 +348 t 86 28539 98.205956 0.22483338607398196 Product description 348 2024-01-08 14:03:01.089303 2025-10-20 Processing Customer 348 27173.4700827118 +375 f 28 341694 73.58846 0.8841841485292363 Product description 375 2024-04-16 14:03:01.089303 2023-07-16 Closed Customer 375 606946.0067527820 +374 f 75 464076 85.65036 0.21788185733038645 Product description 374 2022-01-22 14:03:01.089303 2024-07-18 Processing Customer 374 978328.9692845050 +350 t 77 90588 95.08764 0.6945903864467269 Product description 350 2021-10-23 14:03:01.089303 2024-05-30 Closed Customer 350 754075.2176595940 +376 t 1 142291 99.55966 0.37648783194282487 Product description 376 2023-07-08 14:03:01.089303 2024-10-07 Closed Customer 376 792143.7515422520 +378 f 22 971857 8.639022 0.39920539736565885 Product description 378 2022-06-03 14:03:01.089303 2024-11-18 Closed Customer 378 569213.8761606240 +352 t 76 777984 86.03219 0.8599953436129653 Product description 352 2023-10-14 14:03:01.089303 2024-01-02 Processing Customer 352 251425.7843638280 +377 f 26 178532 6.419824 0.6867488804328516 Product description 377 2023-12-04 14:03:01.089303 2023-12-15 Closed Customer 377 758605.4401081450 +380 f 59 967219 53.962708 0.18624228338747528 Product description 380 2021-11-23 14:03:01.089303 2025-06-26 Closed Customer 380 140939.3061910580 +354 f 35 681105 63.595627 0.18892895201616255 Product description 354 2023-11-28 14:03:01.089303 2025-10-02 Cancelled Customer 354 25207.3532330499 +382 t 58 631475 15.293556 0.5682136524464028 Product description 382 2022-04-19 14:03:01.089303 2024-03-03 Closed Customer 382 536626.5722933110 +383 f 18 217611 51.289295 0.9850349660005087 Product description 383 2022-10-28 14:03:01.089303 2023-03-06 Processing Customer 383 912200.9125640100 +355 f 60 101364 26.886997 0.5794731982565828 Product description 355 2023-01-15 14:03:01.089303 2025-03-20 Processing Customer 355 488111.8902212760 +385 f 36 131443 3.8963568 0.4391132300163676 Product description 385 2022-12-13 14:03:01.089303 2024-11-04 Processing Customer 385 85517.0924264037 +384 t 57 540316 75.80919 0.9817766607404543 Product description 384 2023-01-07 14:03:01.089303 2023-12-15 Closed Customer 384 578261.2976320960 +356 f 7 283350 83.271355 0.6738345358805411 Product description 356 2024-01-14 14:03:01.089303 2025-05-05 Processing Customer 356 608754.5761823990 +386 f 24 897300 23.997366 0.6424485221693601 Product description 386 2024-03-25 14:03:01.089303 2023-11-13 Closed Customer 386 906765.7189030700 +389 f 92 353226 44.486607 0.6927148853662963 Product description 389 2023-06-06 14:03:01.089303 2024-05-04 Processing Customer 389 718241.6567286150 +358 t 8 961199 70.07271 0.39929429511635206 Product description 358 2021-09-11 14:03:01.089303 2025-07-18 Processing Customer 358 458112.3559936200 +387 t 72 993739 2.4223533 0.16198119295652447 Product description 387 2022-04-24 14:03:01.089303 2024-02-18 Closed Customer 387 599525.2923158350 +390 f 84 255681 57.256634 0.6267322409236051 Product description 390 2022-11-12 14:03:01.089303 2024-02-10 Closed Customer 390 105582.9275148030 +360 f 52 600902 4.4059052 0.3407277928056054 Product description 360 2023-04-03 14:03:01.089303 2023-02-11 Closed Customer 360 284907.5040720450 +388 f 83 492229 57.3365 0.3220154306707599 Product description 388 2024-02-15 14:03:01.089303 2025-04-02 Processing Customer 388 374570.7286801510 +395 f 63 796539 54.376038 0.17508279557776163 Product description 395 2024-07-19 14:03:01.089303 2024-10-15 Processing Customer 395 100260.3965249950 +361 t 98 627100 82.23272 0.4690745168424577 Product description 361 2024-04-20 14:03:01.089303 2023-12-19 Closed Customer 361 868609.0077698480 +392 f 3 16069 92.95243 0.7976174841318695 Product description 392 2021-11-16 14:03:01.089303 2024-01-31 Closed Customer 392 777600.9920753100 +397 t 51 566319 14.134226 0.041552339698004204 Product description 397 2024-07-21 14:03:01.089303 2024-05-15 Closed Customer 397 330596.3648538040 +362 t 55 971560 73.92468 0.06022525909791554 Product description 362 2022-12-31 14:03:01.089303 2025-09-25 Closed Customer 362 300827.6707201320 +396 f 37 172692 82.43823 0.5883743078385351 Product description 396 2023-06-13 14:03:01.089303 2025-08-06 Closed Customer 396 307716.1063550840 +399 t 46 738634 56.072456 0.39885693195359906 Product description 399 2022-01-26 14:03:01.089303 2025-01-03 Cancelled Customer 399 978217.2268685340 +363 f 56 184546 3.8865094 0.7602656123577454 Product description 363 2021-08-04 14:03:01.089303 2023-03-03 Processing Customer 363 131655.6893245890 +398 t 66 14184 40.850975 0.9369828801685642 Product description 398 2023-08-13 14:03:01.089303 2023-06-22 Closed Customer 398 171415.9002932300 +403 t 2 141033 67.77763 0.9839214878086366 Product description 403 2021-09-09 14:03:01.089303 2023-07-21 Processing Customer 403 487518.0764451880 +364 t 73 53223 21.39225 0.8944146958538077 Product description 364 2021-11-14 14:03:01.089303 2025-12-08 Closed Customer 364 350939.5569849470 +400 f 75 55349 42.453327 0.6290565880105561 Product description 400 2024-06-17 14:03:01.089303 2023-08-01 Closed Customer 400 581210.7462076130 +406 t 50 945656 59.402645 0.014913001011862548 Product description 406 2022-09-15 14:03:01.089303 2024-10-12 Closed Customer 406 216442.6924164320 +366 t 2 257847 30.515388 0.6603842694064248 Product description 366 2023-06-12 14:03:01.089303 2025-04-30 Processing Customer 366 44427.8442617616 +401 t 80 831642 7.595825 0.28939062447951613 Product description 401 2022-05-24 14:03:01.089303 2025-12-30 Processing Customer 401 933504.1609142430 +412 f 48 234975 37.557194 0.9097435946409504 Product description 412 2021-08-28 14:03:01.089303 2023-12-07 Closed Customer 412 938361.6209532770 +379 t 57 751553 42.701477 0.04070668904683927 Product description 379 2024-04-20 14:03:01.089303 2024-01-05 Closed Customer 379 617204.3139574370 +402 f 28 436876 89.58888 0.6879069055053435 Product description 402 2024-02-11 14:03:01.089303 2025-10-27 Processing Customer 402 709276.9795573550 +413 f 28 377258 3.4181266 0.6589986044922682 Product description 413 2022-06-17 14:03:01.089303 2024-06-08 Closed Customer 413 32751.6909515246 +381 f 75 1877 35.291977 0.4533145759770498 Product description 381 2023-04-12 14:03:01.089303 2023-06-10 Closed Customer 381 777598.8102772830 +405 t 94 828684 96.88158 0.27240115134285503 Product description 405 2021-08-14 14:03:01.089303 2023-04-13 Closed Customer 405 312482.9780809970 +415 t 36 702946 38.72491 0.222774665381543 Product description 415 2022-05-18 14:03:01.089303 2023-09-01 Processing Customer 415 147560.5052060050 +391 t 55 438856 97.95992 0.45828359467011737 Product description 391 2023-07-22 14:03:01.089303 2025-08-16 Processing Customer 391 697700.1187916940 +407 t 57 235797 79.00685 0.7337310293047352 Product description 407 2022-01-25 14:03:01.089303 2023-02-01 Closed Customer 407 954453.5698986860 +419 f 62 687545 10.639494 0.6468482392697155 Product description 419 2024-05-22 14:03:01.089303 2024-03-16 Closed Customer 419 315057.7124536480 +393 t 99 435675 17.9584 0.8395865570171317 Product description 393 2024-01-05 14:03:01.089303 2023-06-19 Closed Customer 393 351817.2530864230 +408 t 16 173783 79.628654 0.5334225381536655 Product description 408 2022-06-20 14:03:01.089303 2024-08-18 Processing Customer 408 566062.8939194970 +420 f 4 187705 91.73409 0.6287501482144009 Product description 420 2024-07-05 14:03:01.089303 2023-10-25 Closed Customer 420 344407.2551750600 +394 f 84 694948 39.791676 0.2919113627972756 Product description 394 2023-12-12 14:03:01.089303 2025-12-18 Processing Customer 394 589133.0664479640 +409 t 99 944812 68.26036 0.22226692417183358 Product description 409 2021-10-30 14:03:01.089303 2023-08-22 Processing Customer 409 226821.5299627020 +423 f 31 378049 79.80577 0.306055193775876 Product description 423 2023-07-08 14:03:01.089303 2024-06-19 Closed Customer 423 958229.3674405340 +404 f 87 722058 2.496598 0.048907636186090286 Product description 404 2023-11-14 14:03:01.089303 2023-03-02 Processing Customer 404 693517.3245647660 +411 t 2 492702 68.638466 0.6109417671020267 Product description 411 2023-07-06 14:03:01.089303 2024-06-14 Cancelled Customer 411 116183.5933424630 +425 t 97 437602 45.03173 0.011584584552629451 Product description 425 2023-05-08 14:03:01.089303 2024-12-27 Processing Customer 425 319165.2492746790 +410 f 24 250151 96.11199 0.20120964804806007 Product description 410 2022-06-22 14:03:01.089303 2023-12-05 Processing Customer 410 438192.2039918390 +417 f 93 698404 72.82994 0.6192457772283326 Product description 417 2022-02-16 14:03:01.089303 2023-09-03 Processing Customer 417 176026.7419565760 +426 t 53 71478 94.35701 0.2888758488828813 Product description 426 2023-01-07 14:03:01.089303 2025-09-05 Processing Customer 426 421615.6054322480 +414 f 44 78988 12.585273 0.5413957779108252 Product description 414 2024-04-25 14:03:01.089303 2025-10-18 Processing Customer 414 643279.3662239790 +430 t 19 248701 37.46555 0.39640961641125827 Product description 430 2022-11-01 14:03:01.089303 2025-04-03 Closed Customer 430 453751.9788876030 +427 f 72 284302 90.07624 0.06605190314237319 Product description 427 2023-10-12 14:03:01.089303 2024-01-16 Closed Customer 427 308726.6928804870 +416 t 51 291494 1.3359939 0.34213604485269045 Product description 416 2023-01-30 14:03:01.089303 2023-03-03 Processing Customer 416 422448.5994937130 +431 f 92 556024 92.553055 0.9666567559482964 Product description 431 2021-09-22 14:03:01.089303 2023-09-30 Closed Customer 431 81290.2327660225 +429 f 70 978640 38.163868 0.6691282085132286 Product description 429 2022-02-22 14:03:01.089303 2025-10-19 Processing Customer 429 267343.2647726170 +418 t 58 368399 3.920698 0.6244264744320169 Product description 418 2024-06-26 14:03:01.089303 2024-10-01 Closed Customer 418 635726.9539971360 +432 f 1 730385 54.243443 0.20809240498526194 Product description 432 2022-11-27 14:03:01.089303 2024-10-02 Processing Customer 432 164215.2181720960 +433 t 66 577873 97.21237 0.660654098818874 Product description 433 2024-04-26 14:03:01.089303 2025-11-05 Processing Customer 433 511408.5410037350 +421 t 70 631094 65.503105 0.2767867519736136 Product description 421 2023-01-19 14:03:01.089303 2023-12-07 Processing Customer 421 99132.7675041944 +434 f 18 273077 11.733582 0.9663681122986141 Product description 434 2024-05-26 14:03:01.089303 2023-10-17 Closed Customer 434 135861.6280005550 +443 f 55 960737 31.39099 0.7629408146042778 Product description 443 2022-10-10 14:03:01.089303 2023-05-30 Closed Customer 443 986056.4274557470 +422 f 87 645203 1.3908119 0.8852059683593474 Product description 422 2021-10-13 14:03:01.089303 2023-02-12 Closed Customer 422 922659.8559430810 +440 t 22 440282 31.2733 0.7608028279038841 Product description 440 2023-06-15 14:03:01.089303 2025-10-09 Closed Customer 440 550613.3606604140 +447 t 19 940187 32.65138 0.821109938447016 Product description 447 2023-11-19 14:03:01.089303 2023-09-30 Closed Customer 447 746435.3135942080 +424 f 7 943290 30.314579 0.8406562844639716 Product description 424 2021-08-24 14:03:01.089303 2024-03-17 Closed Customer 424 183083.9100440970 +441 t 93 510696 5.218655 0.6281388764713576 Product description 441 2022-04-26 14:03:01.089303 2024-11-26 Closed Customer 441 79451.3662965670 +449 f 10 841451 46.710358 0.2741814092966024 Product description 449 2023-11-12 14:03:01.089303 2025-09-09 Closed Customer 449 53657.4639826277 +428 f 80 802413 84.7436 0.277190455990155 Product description 428 2023-02-01 14:03:01.089303 2025-05-15 Closed Customer 428 617071.1133953550 +442 t 50 905486 65.68011 0.8149646166079485 Product description 442 2023-01-07 14:03:01.089303 2023-06-17 Processing Customer 442 497294.7886127700 +451 f 59 587994 16.998566 0.7627104305728452 Product description 451 2023-06-05 14:03:01.089303 2025-12-16 Processing Customer 451 517878.4815876480 +435 t 96 132728 18.284204 0.19686582511905826 Product description 435 2021-11-01 14:03:01.089303 2024-07-25 Closed Customer 435 625049.8385417200 +445 t 51 404469 90.473915 0.3926810554074116 Product description 445 2024-03-20 14:03:01.089303 2025-02-28 Closed Customer 445 320351.7166863040 +452 f 19 846774 76.080215 0.9503594594127236 Product description 452 2022-06-24 14:03:01.089303 2024-03-08 Closed Customer 452 282959.5373060660 +436 t 52 47782 54.504574 0.1389808127886205 Product description 436 2022-04-11 14:03:01.089303 2025-05-29 Processing Customer 436 894294.0207784460 +448 f 25 57513 52.567585 0.7000833284991721 Product description 448 2024-08-02 14:03:01.089303 2024-02-08 Processing Customer 448 789224.7485557180 +454 f 20 436175 81.283165 0.4286307213379459 Product description 454 2023-05-11 14:03:01.089303 2024-11-24 Processing Customer 454 439740.5893623620 +437 t 31 193138 90.0952 0.318821254010242 Product description 437 2022-11-22 14:03:01.089303 2024-09-17 Closed Customer 437 278054.6806755740 +450 f 49 413964 43.185272 0.22561469605756557 Product description 450 2023-07-11 14:03:01.089303 2025-03-11 Closed Customer 450 500908.8943603930 +460 t 72 274785 8.828402 0.6343243987712697 Product description 460 2023-11-29 14:03:01.089303 2024-12-11 Closed Customer 460 642852.5041116270 +438 f 42 63395 39.009254 0.7706549324714054 Product description 438 2023-04-21 14:03:01.089303 2023-11-20 Closed Customer 438 310.3322926847 +453 t 60 33046 63.739746 0.9455540754467897 Product description 453 2022-06-08 14:03:01.089303 2024-02-14 Closed Customer 453 198785.4767096950 +462 f 56 603221 0.5777504 0.3090103997651923 Product description 462 2023-04-16 14:03:01.089303 2024-07-05 Processing Customer 462 297433.8332247760 +439 f 54 715660 85.156876 0.7211806263802849 Product description 439 2021-08-25 14:03:01.089303 2025-03-16 Closed Customer 439 410594.1091373000 +463 t 71 287473 80.199745 0.22152541439239215 Product description 463 2024-05-09 14:03:01.089303 2023-08-19 Processing Customer 463 459274.8839813790 +464 t 55 801740 65.03267 0.21683623514137196 Product description 464 2022-02-23 14:03:01.089303 2023-09-21 Closed Customer 464 960126.4185279600 +444 f 48 993551 29.872618 0.3636003876007443 Product description 444 2022-12-24 14:03:01.089303 2024-01-02 Closed Customer 444 341888.6274288160 +468 t 82 551052 9.76854 0.1663185222803314 Product description 468 2021-11-04 14:03:01.089303 2025-05-26 Closed Customer 468 107395.4654468780 +467 t 29 641926 60.40899 0.7981924731122874 Product description 467 2022-03-12 14:03:01.089303 2024-12-16 Processing Customer 467 395677.7484049960 +446 f 45 581361 0.8906379 0.7994046985246932 Product description 446 2024-04-17 14:03:01.089303 2024-02-28 Closed Customer 446 976941.4194174640 +477 t 74 236506 98.60669 0.16182351163613262 Product description 477 2023-05-04 14:03:01.089303 2023-05-25 Cancelled Customer 477 70676.8520458816 +469 t 97 872176 17.94476 0.04385607318312168 Product description 469 2023-02-14 14:03:01.089303 2023-08-20 Closed Customer 469 331622.0203618590 +455 t 5 679686 46.178688 0.7603491149473207 Product description 455 2022-04-09 14:03:01.089303 2024-10-13 Processing Customer 455 627500.4843143390 +478 t 37 751700 66.5512 0.7056004523845729 Product description 478 2022-08-01 14:03:01.089303 2024-03-09 Closed Customer 478 709917.9364724610 +472 t 88 848617 73.68507 0.19904707010864087 Product description 472 2022-05-05 14:03:01.089303 2024-01-25 Closed Customer 472 724024.2813110490 +456 f 66 665970 32.388897 0.9266658407856845 Product description 456 2022-11-10 14:03:01.089303 2023-12-17 Closed Customer 456 340953.8933360140 +483 t 59 992295 49.011597 0.22123820444344489 Product description 483 2022-02-26 14:03:01.089303 2025-06-11 Processing Customer 483 643625.8465325330 +474 f 82 884452 75.79139 0.27210518504217873 Product description 474 2024-02-14 14:03:01.089303 2025-10-21 Closed Customer 474 833643.4896115850 +457 f 26 6450 74.11243 0.41088851565283235 Product description 457 2022-03-27 14:03:01.089303 2024-05-06 Closed Customer 457 503796.0027159580 +489 f 29 124847 68.98403 0.6998937417301221 Product description 489 2022-02-01 14:03:01.089303 2023-02-23 Processing Customer 489 947539.2442309210 +475 f 31 857160 91.28488 0.4860258090415286 Product description 475 2024-02-05 14:03:01.089303 2023-07-23 Closed Customer 475 574631.1519642870 +458 t 68 452165 31.035006 0.9202581389435629 Product description 458 2023-09-10 14:03:01.089303 2023-07-20 Closed Customer 458 102684.0766895920 +492 f 16 534184 53.53172 0.8831661345171185 Product description 492 2022-10-18 14:03:01.089303 2025-01-01 Processing Customer 492 82387.4844278016 +480 t 11 932890 68.59837 0.16211157887013883 Product description 480 2024-06-16 14:03:01.089303 2025-03-27 Closed Customer 480 788958.1838264480 +459 f 91 673358 38.45798 0.9572500508959827 Product description 459 2021-12-07 14:03:01.089303 2024-11-29 Closed Customer 459 304848.3496259850 +496 f 53 229447 60.795956 0.8513463870342548 Product description 496 2024-02-16 14:03:01.089303 2025-04-30 Closed Customer 496 518205.5625036770 +481 f 43 95727 77.321785 0.7028482913391159 Product description 481 2023-07-23 14:03:01.089303 2024-06-20 Processing Customer 481 803991.3561185050 +461 t 80 908176 79.01538 0.4452674826047449 Product description 461 2023-11-10 14:03:01.089303 2024-12-30 Processing Customer 461 657176.4355695460 +497 f 47 297747 97.33548 0.1420539543519297 Product description 497 2024-07-18 14:03:01.089303 2023-03-23 Closed Customer 497 171131.4127630640 +484 f 51 594947 68.18132 0.4677666349270311 Product description 484 2023-10-19 14:03:01.089303 2024-10-18 Processing Customer 484 647228.8573513470 +465 t 87 885323 72.94987 0.6003024208457113 Product description 465 2022-04-16 14:03:01.089303 2023-09-13 Closed Customer 465 768563.4322453300 +499 t 3 31347 29.371988 0.9758403249805525 Product description 499 2022-06-08 14:03:01.089303 2024-07-16 Processing Customer 499 955858.1254361900 +488 t 76 224397 79.022896 0.08498991201081907 Product description 488 2023-10-15 14:03:01.089303 2023-03-01 Closed Customer 488 938158.2300516880 +466 t 27 488604 17.274052 0.829132784156382 Product description 466 2021-10-11 14:03:01.089303 2023-07-29 Closed Customer 466 60542.8991173582 +504 t 74 794693 84.98693 0.6297411425873278 Product description 504 2021-10-29 14:03:01.089303 2024-08-24 Closed Customer 504 848355.8327981090 +498 f 90 126392 29.146551 0.7466403615883337 Product description 498 2024-07-29 14:03:01.089303 2025-09-23 Closed Customer 498 551008.8041219170 +470 t 90 227087 38.296963 0.028672050671804783 Product description 470 2022-03-18 14:03:01.089303 2025-08-29 Closed Customer 470 947884.5983417160 +507 t 39 250423 83.63917 0.10971390437285322 Product description 507 2024-03-24 14:03:01.089303 2024-09-24 Processing Customer 507 11695.1619172845 +503 t 17 232468 53.82975 0.6780216785496194 Product description 503 2023-10-10 14:03:01.089303 2023-11-29 Closed Customer 503 792277.0159118250 +471 f 7 547562 3.5471885 0.9654909769844799 Product description 471 2023-05-29 14:03:01.089303 2024-07-07 Closed Customer 471 956362.6092283430 +517 t 10 343834 0.8029532 0.430736037078681 Product description 517 2023-01-02 14:03:01.089303 2023-05-31 Processing Customer 517 68007.3300707171 +505 f 38 747127 72.23179 0.35036623202616113 Product description 505 2023-09-08 14:03:01.089303 2024-10-27 Closed Customer 505 135737.2809591300 +473 f 27 606007 18.025833 0.48227418477560846 Product description 473 2022-04-16 14:03:01.089303 2024-08-14 Closed Customer 473 78117.4849090149 +518 t 60 91810 46.235786 0.18380821349522591 Product description 518 2023-04-11 14:03:01.089303 2025-08-17 Processing Customer 518 910936.2190297750 +506 t 71 761718 4.4660616 0.9650745621763335 Product description 506 2024-07-15 14:03:01.089303 2024-03-26 Cancelled Customer 506 196881.1005518560 +476 t 46 244524 31.174435 0.9786069194356166 Product description 476 2024-05-06 14:03:01.089303 2025-02-13 Closed Customer 476 570368.3424898930 +523 t 11 472254 81.61205 0.5310791894088354 Product description 523 2023-10-21 14:03:01.089303 2023-09-19 Cancelled Customer 523 275079.8349350210 +508 t 78 462525 84.11029 0.8673189465652662 Product description 508 2024-06-23 14:03:01.089303 2023-06-05 Closed Customer 508 761968.4364819220 +479 t 10 510312 14.145121 0.010383721702385884 Product description 479 2024-07-04 14:03:01.089303 2025-05-20 Closed Customer 479 83395.8452821264 +527 t 63 834849 86.48967 0.21460169398230633 Product description 527 2024-01-08 14:03:01.089303 2024-05-25 Cancelled Customer 527 725298.0197422860 +510 f 38 546234 44.4463 0.6213343016818094 Product description 510 2023-11-10 14:03:01.089303 2024-08-06 Processing Customer 510 331382.6634837870 +482 f 26 354066 70.23138 0.980627593941815 Product description 482 2022-10-14 14:03:01.089303 2024-11-06 Cancelled Customer 482 39784.9158612011 +528 f 67 605877 47.80598 0.1467494380388814 Product description 528 2024-07-07 14:03:01.089303 2023-09-25 Closed Customer 528 582800.4770380310 +511 f 34 919949 55.97206 0.30807541938596117 Product description 511 2024-07-26 14:03:01.089303 2024-02-10 Closed Customer 511 387060.8896136220 +485 f 71 476643 72.19612 0.8586428562439821 Product description 485 2023-12-16 14:03:01.089303 2024-08-07 Closed Customer 485 157269.6097692480 +529 t 36 731345 6.951367 0.9798811665735698 Product description 529 2023-11-24 14:03:01.089303 2024-11-24 Closed Customer 529 925400.3834850590 +521 f 5 457371 56.500633 0.8355029799060922 Product description 521 2022-06-29 14:03:01.089303 2023-06-22 Closed Customer 521 899653.7835280450 +486 t 33 857108 46.23022 0.3229230002186796 Product description 486 2024-04-11 14:03:01.089303 2024-05-27 Processing Customer 486 589334.8739195940 +532 t 19 798339 19.42045 0.28518785905582433 Product description 532 2023-06-05 14:03:01.089303 2024-06-19 Closed Customer 532 145393.9716816240 +526 t 97 888043 79.15882 0.8343396561449232 Product description 526 2022-01-29 14:03:01.089303 2024-07-19 Closed Customer 526 741155.1883988780 +487 f 53 126738 97.13647 0.7686770925365707 Product description 487 2023-01-24 14:03:01.089303 2023-02-25 Processing Customer 487 757899.5786027210 +534 t 40 785891 38.54708 0.9185215723774078 Product description 534 2024-01-10 14:03:01.089303 2025-06-28 Closed Customer 534 544154.7858773280 +530 t 28 892417 33.50957 0.38168348310365374 Product description 530 2024-02-04 14:03:01.089303 2023-07-08 Processing Customer 530 16252.3148355476 +490 t 89 997443 31.105 0.3625576145571614 Product description 490 2023-04-14 14:03:01.089303 2023-02-06 Processing Customer 490 178615.1378535230 +538 f 58 914950 31.579773 0.9459012060522127 Product description 538 2022-11-05 14:03:01.089303 2024-02-01 Closed Customer 538 125992.3280681470 +533 t 60 884798 85.26657 0.024446267231144958 Product description 533 2023-07-02 14:03:01.089303 2023-10-29 Closed Customer 533 975556.3172338100 +491 t 33 772662 14.28703 0.694221322627719 Product description 491 2024-01-07 14:03:01.089303 2023-02-01 Closed Customer 491 488804.5537687620 +540 f 34 222268 40.12933 0.25543767020827346 Product description 540 2024-05-03 14:03:01.089303 2025-12-18 Closed Customer 540 344062.9334083700 +536 f 38 788119 13.638583 0.4557252126596971 Product description 536 2022-04-14 14:03:01.089303 2025-05-23 Processing Customer 536 472278.6009391840 +493 t 48 480608 51.701027 0.12901554968462392 Product description 493 2024-04-19 14:03:01.089303 2025-11-22 Processing Customer 493 990569.8065906810 +544 t 77 643809 52.611057 0.9677230875652896 Product description 544 2023-12-04 14:03:01.089303 2024-07-26 Processing Customer 544 985047.5036507870 +537 f 42 219069 74.83278 0.7395536718158873 Product description 537 2023-09-07 14:03:01.089303 2025-12-25 Cancelled Customer 537 5896.0874176428 +494 t 36 977142 49.304623 0.7916640368218069 Product description 494 2024-07-27 14:03:01.089303 2025-04-14 Closed Customer 494 46927.3049604944 +545 t 61 326557 37.040337 0.7536062147739457 Product description 545 2022-04-02 14:03:01.089303 2024-11-22 Closed Customer 545 215969.2796154680 +539 f 8 815954 34.798477 0.5469457223678091 Product description 539 2023-08-20 14:03:01.089303 2024-04-11 Closed Customer 539 943923.0995608310 +495 f 34 143584 29.464132 0.23262509806430387 Product description 495 2023-06-20 14:03:01.089303 2025-03-07 Closed Customer 495 959056.0950337410 +546 f 54 301161 54.943237 0.11143037999786998 Product description 546 2024-05-06 14:03:01.089303 2023-06-28 Closed Customer 546 674853.3698403460 +542 t 83 533239 39.1786 0.9791981444814226 Product description 542 2022-03-06 14:03:01.089303 2023-05-28 Processing Customer 542 916385.3829570350 +500 t 77 260035 77.707184 0.6289545100411189 Product description 500 2022-01-14 14:03:01.089303 2024-05-02 Closed Customer 500 645046.7823498410 +551 f 29 937372 9.661808 0.8954427358172907 Product description 551 2022-03-01 14:03:01.089303 2025-10-26 Processing Customer 551 881611.9960331470 +543 t 41 811350 42.48186 0.10900122461437434 Product description 543 2023-02-16 14:03:01.089303 2024-08-30 Processing Customer 543 879653.2655576460 +501 f 74 61103 91.06051 0.43867400735013007 Product description 501 2023-12-07 14:03:01.089303 2024-07-26 Processing Customer 501 574682.1897346840 +554 t 63 823086 35.74394 0.8657766498574659 Product description 554 2022-05-17 14:03:01.089303 2025-11-18 Closed Customer 554 33460.3230840393 +547 t 45 41309 16.690723 0.700537770266429 Product description 547 2023-02-05 14:03:01.089303 2025-05-14 Closed Customer 547 473149.3067734970 +502 f 46 275445 18.122316 0.8591527938581933 Product description 502 2024-02-13 14:03:01.089303 2025-08-19 Closed Customer 502 912216.1803655080 +557 f 7 136570 86.3287 0.940019937946424 Product description 557 2023-06-10 14:03:01.089303 2025-07-19 Processing Customer 557 367999.9272627760 +549 f 22 264932 47.597824 0.08886476824696388 Product description 549 2021-09-23 14:03:01.089303 2023-12-15 Processing Customer 549 116100.4937050870 +509 t 41 322837 42.300182 0.49133290892963544 Product description 509 2021-10-29 14:03:01.089303 2023-04-25 Processing Customer 509 123430.2132546180 +559 t 5 725225 11.31328 0.6618149042129176 Product description 559 2022-11-20 14:03:01.089303 2024-05-30 Closed Customer 559 25401.0265871862 +552 t 74 329356 82.71138 0.523334734937329 Product description 552 2021-12-20 14:03:01.089303 2024-09-06 Closed Customer 552 179083.3004754440 +512 f 63 47391 91.1392 0.7633537602182727 Product description 512 2022-11-02 14:03:01.089303 2024-12-22 Processing Customer 512 464445.8889421690 +568 f 9 200645 98.22603 0.04665374155622004 Product description 568 2022-06-19 14:03:01.089303 2023-04-28 Closed Customer 568 594424.6369893200 +553 f 63 327946 85.309044 0.8580611286554216 Product description 553 2021-09-17 14:03:01.089303 2023-08-08 Closed Customer 553 503200.7191476100 +513 t 42 271822 35.402412 0.7666086790850102 Product description 513 2024-05-21 14:03:01.089303 2023-12-02 Processing Customer 513 85704.6876052117 +569 f 19 810987 81.10788 0.8747089358022464 Product description 569 2022-10-21 14:03:01.089303 2023-01-03 Processing Customer 569 940851.2851344530 +555 t 42 555950 61.33293 0.3650292130090449 Product description 555 2021-10-29 14:03:01.089303 2025-09-17 Cancelled Customer 555 292118.5004472660 +514 t 94 457401 20.932 0.5451427610150645 Product description 514 2024-06-16 14:03:01.089303 2023-11-19 Closed Customer 514 218961.4961965310 +570 f 35 768953 74.35351 0.08251486469773539 Product description 570 2024-05-09 14:03:01.089303 2025-07-20 Closed Customer 570 73458.1861958539 +561 t 1 224615 69.044395 0.24419251201149805 Product description 561 2022-09-23 14:03:01.089303 2025-01-28 Closed Customer 561 458285.8930112510 +515 t 36 547464 61.973217 0.19231148406929321 Product description 515 2021-10-05 14:03:01.089303 2025-12-30 Closed Customer 515 268284.0758885550 +579 f 1 798714 17.200678 0.47276612907896265 Product description 579 2021-10-10 14:03:01.089303 2025-02-13 Closed Customer 579 414899.6465317760 +562 f 45 149901 70.18055 0.46308343035071786 Product description 562 2022-01-17 14:03:01.089303 2024-11-15 Closed Customer 562 393464.5241501680 +516 f 28 143755 37.089058 0.4813089796459096 Product description 516 2024-02-08 14:03:01.089303 2025-07-03 Closed Customer 516 39546.2362223107 +583 t 73 932156 50.33247 0.1724489006837544 Product description 583 2023-08-04 14:03:01.089303 2023-10-23 Processing Customer 583 536815.6356565270 +566 t 88 853520 74.28466 0.4311330738518002 Product description 566 2022-09-30 14:03:01.089303 2024-02-23 Closed Customer 566 820775.4355620690 +519 f 14 299889 62.056282 0.42545227431071453 Product description 519 2024-07-18 14:03:01.089303 2024-05-09 Closed Customer 519 377566.8301292360 +585 t 66 957487 84.12964 0.7421539941188229 Product description 585 2023-08-14 14:03:01.089303 2023-07-27 Closed Customer 585 258592.7619107730 +567 t 64 944326 55.69926 0.29048400231161153 Product description 567 2022-06-14 14:03:01.089303 2024-02-18 Closed Customer 567 230172.7718321800 +520 f 60 685741 7.6161933 0.011787332166598219 Product description 520 2024-07-13 14:03:01.089303 2024-12-06 Closed Customer 520 910908.9468387060 +588 t 88 523883 29.861557 0.6662876081815554 Product description 588 2023-06-07 14:03:01.089303 2024-05-29 Processing Customer 588 877546.7445249950 +571 t 43 546745 53.54417 0.7025153275503762 Product description 571 2023-05-20 14:03:01.089303 2023-05-15 Processing Customer 571 956283.2437127180 +522 f 28 950111 47.176872 0.7013194326554668 Product description 522 2022-12-28 14:03:01.089303 2024-08-21 Closed Customer 522 33751.6948255931 +591 f 32 884200 64.97034 0.11897695922505136 Product description 591 2023-12-31 14:03:01.089303 2024-10-02 Closed Customer 591 326993.6360144320 +572 f 36 310728 26.563923 0.21058196734638202 Product description 572 2023-09-18 14:03:01.089303 2025-01-01 Closed Customer 572 487264.7439639120 +524 t 21 838069 45.12249 0.30544738919146397 Product description 524 2024-02-08 14:03:01.089303 2025-09-07 Closed Customer 524 450023.0271757920 +595 f 65 288074 77.17713 0.13421016203813707 Product description 595 2023-02-28 14:03:01.089303 2023-07-26 Processing Customer 595 789359.2579779100 +573 t 43 647013 2.0980794 0.582064387000532 Product description 573 2022-05-31 14:03:01.089303 2024-07-28 Cancelled Customer 573 194273.7644892280 +525 f 53 363283 3.0673811 0.16625320953770029 Product description 525 2023-06-07 14:03:01.089303 2024-03-29 Processing Customer 525 927057.6224365890 +597 f 70 144268 21.166212 0.6975031427673031 Product description 597 2022-07-17 14:03:01.089303 2024-04-07 Closed Customer 597 850894.4701160420 +574 t 98 237462 8.504513 0.39568948250037295 Product description 574 2023-12-12 14:03:01.089303 2023-04-21 Closed Customer 574 143133.7104206810 +531 t 71 784084 85.04406 0.3152497977410249 Product description 531 2021-11-28 14:03:01.089303 2023-12-30 Processing Customer 531 590904.3764353360 +599 t 73 224473 77.18012 0.9738919766085345 Product description 599 2022-06-05 14:03:01.089303 2024-07-21 Closed Customer 599 785286.8519218990 +576 f 41 15761 61.197945 0.9991649575683468 Product description 576 2023-08-19 14:03:01.089303 2024-06-01 Closed Customer 576 677181.7988175040 +535 f 38 109436 52.95077 0.4335085567253003 Product description 535 2024-07-05 14:03:01.089303 2024-04-07 Closed Customer 535 824279.3613664330 +602 t 59 135692 56.810093 0.5568820027681625 Product description 602 2021-11-15 14:03:01.089303 2023-04-22 Processing Customer 602 82947.6569128040 +577 f 93 240166 30.090225 0.906374417492458 Product description 577 2021-11-22 14:03:01.089303 2023-07-14 Processing Customer 577 803258.5949674990 +541 f 42 978788 34.77833 0.4624236473273342 Product description 541 2023-09-01 14:03:01.089303 2025-11-09 Closed Customer 541 910907.1655268690 +606 t 9 419072 85.253746 0.7721119714144962 Product description 606 2023-06-11 14:03:01.089303 2024-01-18 Closed Customer 606 310343.5442275250 +578 f 17 622028 65.87604 0.9121293792806355 Product description 578 2023-04-15 14:03:01.089303 2024-12-25 Processing Customer 578 740314.2144864920 +548 t 44 14668 13.633252 0.817360063331023 Product description 548 2023-02-19 14:03:01.089303 2023-02-09 Closed Customer 548 233023.3915110360 +608 f 73 50313 79.89869 0.21434699151073744 Product description 608 2022-01-24 14:03:01.089303 2023-12-02 Closed Customer 608 651325.4410812510 +584 f 87 209772 85.79925 0.2816862318720581 Product description 584 2023-05-27 14:03:01.089303 2024-12-29 Processing Customer 584 3069.1905290432 +550 t 57 443681 47.214546 0.8187837091863415 Product description 550 2021-10-10 14:03:01.089303 2024-01-08 Processing Customer 550 501510.8550464080 +625 f 48 131907 98.57919 0.33415336404868157 Product description 625 2024-07-01 14:03:01.089303 2023-04-02 Processing Customer 625 610823.5023150610 +587 t 75 434049 15.719692 0.668025410251964 Product description 587 2022-09-26 14:03:01.089303 2025-09-04 Closed Customer 587 422049.3247418240 +556 t 59 691243 79.55253 0.4166709656008294 Product description 556 2022-09-14 14:03:01.089303 2024-01-07 Closed Customer 556 648633.2195886000 +630 t 24 604249 42.347565 0.5294416844819239 Product description 630 2021-12-28 14:03:01.089303 2025-03-09 Closed Customer 630 460723.6236835740 +589 f 22 195475 15.469658 0.6181088305548315 Product description 589 2022-07-10 14:03:01.089303 2025-06-25 Cancelled Customer 589 420230.0810648720 +558 t 77 98536 31.843586 0.5213310442169572 Product description 558 2021-12-13 14:03:01.089303 2024-11-05 Processing Customer 558 990570.4387390880 +632 t 62 131444 26.385242 0.23082980985868318 Product description 632 2022-04-17 14:03:01.089303 2025-09-22 Closed Customer 632 86705.9886844892 +592 t 75 120259 61.544094 0.8010695821135521 Product description 592 2022-02-12 14:03:01.089303 2024-01-05 Closed Customer 592 185721.7995029360 +560 f 6 490779 91.23734 0.35056070809477546 Product description 560 2022-07-14 14:03:01.089303 2023-09-24 Processing Customer 560 762475.9187910650 +633 f 35 526963 12.589665 0.4631573707881813 Product description 633 2021-12-19 14:03:01.089303 2025-12-13 Closed Customer 633 258345.2757721250 +593 f 11 763143 89.259995 0.5285509339458834 Product description 593 2022-07-13 14:03:01.089303 2023-04-03 Closed Customer 593 114992.3497049770 +563 t 55 316426 95.96243 0.5142156863681535 Product description 563 2023-06-06 14:03:01.089303 2025-09-23 Processing Customer 563 277549.7736669800 +636 t 94 976121 68.53057 0.3475245245955634 Product description 636 2023-02-26 14:03:01.089303 2023-02-07 Processing Customer 636 499030.0016559570 +594 t 5 216283 56.184624 0.005223906725429828 Product description 594 2024-02-17 14:03:01.089303 2024-05-22 Processing Customer 594 687464.7173712350 +564 t 22 992438 27.814444 0.8637263407605786 Product description 564 2022-01-04 14:03:01.089303 2023-06-30 Processing Customer 564 757931.0172638820 +638 t 77 948731 56.280502 0.6530638482841766 Product description 638 2024-02-18 14:03:01.089303 2024-06-20 Closed Customer 638 408819.5488538670 +596 f 0 918283 48.23959 0.3947774610596788 Product description 596 2023-12-09 14:03:01.089303 2025-02-25 Closed Customer 596 268509.3763375190 +565 t 100 767263 11.069381 0.00846252642832468 Product description 565 2022-03-27 14:03:01.089303 2023-10-16 Closed Customer 565 495425.3692897800 +639 f 21 595632 44.66576 0.6125964873932404 Product description 639 2023-01-20 14:03:01.089303 2023-02-02 Closed Customer 639 612557.3006669960 +598 t 70 403626 39.082775 0.20885827351939312 Product description 598 2024-05-27 14:03:01.089303 2023-11-09 Closed Customer 598 142836.3579999470 +575 f 82 937372 53.270817 0.2886912065659999 Product description 575 2023-11-09 14:03:01.089303 2025-04-13 Closed Customer 575 710731.2200484980 +641 f 84 450984 15.454181 0.6687172235394172 Product description 641 2024-01-08 14:03:01.089303 2023-05-16 Closed Customer 641 954836.1398471850 +600 f 5 363205 18.566536 0.19307325618492044 Product description 600 2022-08-27 14:03:01.089303 2023-12-08 Processing Customer 600 612724.8065243410 +580 t 57 374184 43.050694 0.0461727089152717 Product description 580 2021-12-06 14:03:01.089303 2023-02-25 Processing Customer 580 425430.4600585530 +642 f 95 516765 53.567932 0.27236148965794627 Product description 642 2023-05-05 14:03:01.089303 2024-02-27 Processing Customer 642 372616.2664591650 +601 t 52 859091 46.330265 0.22218256037541195 Product description 601 2021-11-22 14:03:01.089303 2023-04-05 Closed Customer 601 19706.9996330086 +581 f 59 499523 14.723288 0.501183970303444 Product description 581 2021-10-06 14:03:01.089303 2025-02-09 Closed Customer 581 132509.8019051540 +643 f 50 862920 29.436674 0.6321279369340118 Product description 643 2024-06-17 14:03:01.089303 2023-05-03 Closed Customer 643 528240.5982904910 +605 t 14 698916 87.05197 0.47144573621338637 Product description 605 2022-06-28 14:03:01.089303 2025-07-30 Closed Customer 605 845370.9678768890 +582 t 91 902103 25.92658 0.5979393745405659 Product description 582 2023-11-23 14:03:01.089303 2023-01-12 Processing Customer 582 91926.8924216006 +644 f 38 13436 1.7615999 0.533198233191122 Product description 644 2022-09-15 14:03:01.089303 2024-08-22 Closed Customer 644 306407.7488793120 +609 t 40 451006 24.336847 0.9870440440836994 Product description 609 2023-05-03 14:03:01.089303 2024-03-12 Closed Customer 609 161648.6809801000 +586 f 24 67234 61.10941 0.2605311234086969 Product description 586 2024-03-04 14:03:01.089303 2024-01-16 Closed Customer 586 230394.6463730670 +645 t 18 948616 3.5077376 0.15028307912196226 Product description 645 2023-05-10 14:03:01.089303 2024-03-03 Closed Customer 645 108697.2663451990 +610 t 17 572476 3.6839 0.7438807498432887 Product description 610 2024-07-29 14:03:01.089303 2025-05-31 Processing Customer 610 667923.1753548440 +590 t 0 87295 18.554487 0.882809995028687 Product description 590 2022-09-28 14:03:01.089303 2024-05-22 Closed Customer 590 98390.6298465662 +646 f 59 393853 78.9718 0.45288745064450353 Product description 646 2023-12-10 14:03:01.089303 2025-04-12 Processing Customer 646 531578.0113195280 +614 f 34 3323 21.659636 0.07431470617811087 Product description 614 2021-11-20 14:03:01.089303 2025-02-14 Closed Customer 614 491216.4967024420 +603 f 20 754021 22.19991 0.8700407346454853 Product description 603 2021-09-14 14:03:01.089303 2023-02-06 Closed Customer 603 521761.6420207310 +647 f 26 57787 26.855286 0.9381783993289048 Product description 647 2024-05-03 14:03:01.089303 2024-07-11 Processing Customer 647 383668.0300751390 +615 f 13 633622 43.61975 0.762495620767428 Product description 615 2022-03-28 14:03:01.089303 2024-08-10 Processing Customer 615 328570.4975794910 +604 t 22 13064 71.644356 0.3302644184092216 Product description 604 2023-05-31 14:03:01.089303 2023-04-05 Closed Customer 604 741345.8310742450 +653 t 13 328051 96.101524 0.8059166857127948 Product description 653 2023-07-11 14:03:01.089303 2024-11-02 Closed Customer 653 92468.4035248937 +618 t 23 511532 53.06548 0.49485102004414827 Product description 618 2022-08-30 14:03:01.089303 2023-11-12 Closed Customer 618 802821.1725244820 +607 f 77 692598 61.913162 0.8066534647985577 Product description 607 2023-12-16 14:03:01.089303 2025-06-17 Processing Customer 607 952953.2925910720 +654 t 48 64256 69.492966 0.29219129096098584 Product description 654 2021-09-10 14:03:01.089303 2024-08-24 Processing Customer 654 564884.0460801630 +619 f 63 830486 80.52298 0.9166254824157996 Product description 619 2021-08-16 14:03:01.089303 2024-02-27 Closed Customer 619 281896.6048436100 +611 t 44 554267 72.64931 0.3824596337695496 Product description 611 2022-09-12 14:03:01.089303 2023-04-19 Closed Customer 611 382277.7998371160 +659 t 70 278524 49.14761 0.5221514918072145 Product description 659 2024-06-23 14:03:01.089303 2023-08-19 Processing Customer 659 636706.7961094970 +621 f 98 897300 8.341036 0.43030583088909324 Product description 621 2022-03-18 14:03:01.089303 2024-04-02 Closed Customer 621 499342.9768104600 +612 t 57 654142 24.418558 0.19155278759025407 Product description 612 2024-03-22 14:03:01.089303 2023-09-03 Cancelled Customer 612 802520.0559274310 +665 t 65 521469 49.782597 0.5887055382925723 Product description 665 2023-03-25 14:03:01.089303 2025-01-04 Closed Customer 665 873837.0033136640 +622 f 53 260056 59.987175 0.998715121430994 Product description 622 2023-07-30 14:03:01.089303 2025-08-07 Closed Customer 622 937319.6966968890 +613 f 9 235264 52.09577 0.915445238589907 Product description 613 2023-08-18 14:03:01.089303 2025-09-19 Processing Customer 613 855432.4096796010 +667 f 69 640166 53.693813 0.7840869488223419 Product description 667 2024-03-14 14:03:01.089303 2024-08-22 Processing Customer 667 16907.4031387346 +623 f 4 804474 75.24668 0.9092499491949972 Product description 623 2023-02-14 14:03:01.089303 2023-12-06 Closed Customer 623 383995.5764702480 +616 f 8 597889 61.32895 0.0584236291795186 Product description 616 2023-11-09 14:03:01.089303 2023-07-02 Closed Customer 616 640536.8348712130 +669 f 44 784318 87.849976 0.06859578207276229 Product description 669 2024-05-11 14:03:01.089303 2023-12-26 Processing Customer 669 573844.0983219100 +624 t 45 93601 95.29646 0.2132601596035677 Product description 624 2022-05-28 14:03:01.089303 2025-08-21 Processing Customer 624 474508.8724644400 +617 f 87 792548 69.99928 0.4824763086749435 Product description 617 2023-03-10 14:03:01.089303 2023-12-11 Cancelled Customer 617 147836.2639656970 +674 f 83 491527 72.33462 0.12207812050908018 Product description 674 2024-07-29 14:03:01.089303 2023-04-09 Processing Customer 674 845013.7160597710 +627 f 80 59457 57.961487 0.267831372464709 Product description 627 2022-08-15 14:03:01.089303 2025-06-05 Processing Customer 627 946436.3906154530 +620 t 98 265134 14.770428 0.8151425010899018 Product description 620 2022-08-27 14:03:01.089303 2025-01-06 Closed Customer 620 405299.5410265550 +680 f 15 819564 24.900213 0.3645335742441773 Product description 680 2024-04-29 14:03:01.089303 2024-04-28 Closed Customer 680 841329.5557075710 +629 f 48 907742 15.184449 0.2193060829496325 Product description 629 2021-08-16 14:03:01.089303 2023-02-20 Closed Customer 629 661639.7243156910 +626 f 62 47102 57.455284 0.34740911191336465 Product description 626 2022-03-26 14:03:01.089303 2024-09-22 Closed Customer 626 245557.4604459900 +681 f 33 978716 58.639507 0.8548559423981956 Product description 681 2023-04-01 14:03:01.089303 2024-12-07 Processing Customer 681 446699.1855920850 +631 t 31 69210 94.01592 0.08807044191682323 Product description 631 2022-01-03 14:03:01.089303 2024-05-07 Closed Customer 631 355713.8979747310 +628 t 78 825718 94.238754 0.5382722938201923 Product description 628 2022-01-05 14:03:01.089303 2024-07-09 Closed Customer 628 250706.5906478270 +683 f 48 819989 50.183586 0.02825160510228386 Product description 683 2024-02-15 14:03:01.089303 2023-12-02 Processing Customer 683 17123.0268405047 +634 t 29 120032 88.73435 0.12374168447424339 Product description 634 2022-12-14 14:03:01.089303 2023-06-07 Closed Customer 634 530263.4620420010 +635 f 3 941026 70.49261 0.05142123783107877 Product description 635 2023-12-23 14:03:01.089303 2023-09-15 Processing Customer 635 211865.2951785660 +685 f 19 320566 82.1782 0.04774260468177971 Product description 685 2022-03-12 14:03:01.089303 2024-06-10 Processing Customer 685 932302.3304263710 +637 t 32 201002 93.998665 0.7369925427873874 Product description 637 2021-10-20 14:03:01.089303 2025-03-01 Closed Customer 637 296443.7761963340 +640 t 92 78159 76.998985 0.7602745164289573 Product description 640 2023-09-09 14:03:01.089303 2023-12-10 Closed Customer 640 546607.1369837700 +687 t 93 394626 93.65534 0.9151872626395061 Product description 687 2023-01-14 14:03:01.089303 2025-04-10 Cancelled Customer 687 414790.2314940810 +648 f 45 596072 8.084185 0.6320102364317428 Product description 648 2024-01-11 14:03:01.089303 2025-04-23 Closed Customer 648 600655.5840235850 +650 t 34 668374 4.695952 0.9465456702910018 Product description 650 2023-04-09 14:03:01.089303 2025-08-31 Closed Customer 650 855827.6473011510 +689 f 18 708662 46.648144 0.0986839972654927 Product description 689 2024-01-02 14:03:01.089303 2024-09-14 Closed Customer 689 763353.4988063030 +649 t 12 186072 59.506706 0.3128939815544065 Product description 649 2024-04-13 14:03:01.089303 2025-06-11 Cancelled Customer 649 320024.3562181660 +652 t 9 508522 62.12686 0.07075328346592613 Product description 652 2023-05-16 14:03:01.089303 2024-03-16 Cancelled Customer 652 336470.6145685050 +693 t 89 802863 70.20157 0.9729401375308733 Product description 693 2022-02-02 14:03:01.089303 2024-10-26 Closed Customer 693 903122.8849075600 +651 t 35 461504 94.65371 0.7994720716599559 Product description 651 2023-11-24 14:03:01.089303 2025-07-13 Closed Customer 651 116981.1745461440 +655 t 69 209227 38.328983 0.48690108960201783 Product description 655 2023-05-25 14:03:01.089303 2024-05-06 Closed Customer 655 846222.2568944780 +694 t 32 621865 23.731754 0.6871718072009934 Product description 694 2024-06-15 14:03:01.089303 2023-06-20 Processing Customer 694 238584.9625538650 +660 t 6 215922 68.65 0.3145193301514695 Product description 660 2022-03-01 14:03:01.089303 2023-01-23 Closed Customer 660 709909.9802946220 +656 t 76 536966 65.47413 0.18680173087410523 Product description 656 2023-01-11 14:03:01.089303 2023-04-02 Closed Customer 656 535933.5652330730 +698 f 50 706182 17.6312 0.07238013833904589 Product description 698 2022-06-08 14:03:01.089303 2023-08-06 Closed Customer 698 80900.1886405412 +661 f 14 654480 54.0404 0.24727514404093398 Product description 661 2024-06-04 14:03:01.089303 2024-02-23 Closed Customer 661 950495.0140428900 +657 t 71 979082 88.634346 0.8193894282854792 Product description 657 2022-02-12 14:03:01.089303 2023-09-12 Closed Customer 657 793353.7874525030 +706 t 35 744242 71.85744 0.37206225409600435 Product description 706 2024-01-26 14:03:01.089303 2024-03-06 Processing Customer 706 973818.6129035780 +666 f 79 884757 24.871374 0.08819346723083754 Product description 666 2023-08-04 14:03:01.089303 2024-10-24 Closed Customer 666 253958.8704241250 +658 f 64 769374 61.7952 0.9320518938186773 Product description 658 2023-09-14 14:03:01.089303 2024-08-16 Closed Customer 658 560540.4756094360 +712 f 24 694316 54.63108 0.4457580790528546 Product description 712 2022-12-16 14:03:01.089303 2025-09-10 Closed Customer 712 551851.1619146690 +668 f 58 942547 93.96707 0.026132631623063673 Product description 668 2023-03-03 14:03:01.089303 2024-04-19 Closed Customer 668 780463.1379744120 +662 t 71 653227 79.01634 0.14432266792778492 Product description 662 2022-01-21 14:03:01.089303 2023-12-30 Closed Customer 662 633931.4325561960 +714 t 27 202544 9.094617 0.29482820317036484 Product description 714 2021-09-14 14:03:01.089303 2024-01-10 Closed Customer 714 250133.7954310050 +676 f 5 874100 9.125736 0.7848567520238845 Product description 676 2021-12-01 14:03:01.089303 2024-08-04 Closed Customer 676 348061.4193517330 +663 f 67 13994 42.293953 0.5166309580063562 Product description 663 2022-07-22 14:03:01.089303 2025-08-27 Processing Customer 663 779424.1796203710 +716 t 90 54300 32.23763 0.28551169936949705 Product description 716 2022-03-31 14:03:01.089303 2023-08-12 Processing Customer 716 495767.9736184700 +677 t 85 617245 81.56079 0.3268890413811718 Product description 677 2021-10-01 14:03:01.089303 2025-05-08 Processing Customer 677 868678.0554042350 +664 f 64 744168 27.600973 0.8859102561683763 Product description 664 2023-06-24 14:03:01.089303 2024-12-15 Processing Customer 664 723740.5900655750 +717 f 68 194014 51.595547 0.8458864080515802 Product description 717 2022-06-10 14:03:01.089303 2025-05-28 Closed Customer 717 204409.3309890160 +679 f 98 142064 20.790035 0.5125426494501824 Product description 679 2023-11-02 14:03:01.089303 2025-02-18 Processing Customer 679 449600.6843873740 +670 t 20 693160 50.968063 0.7389793584980531 Product description 670 2024-01-24 14:03:01.089303 2025-09-24 Processing Customer 670 159422.6300706580 +719 f 64 50724 31.10939 0.8245309578917279 Product description 719 2022-02-04 14:03:01.089303 2024-01-12 Closed Customer 719 738390.9922539540 +682 f 26 678912 58.27379 0.7985747118988016 Product description 682 2024-05-13 14:03:01.089303 2025-12-22 Cancelled Customer 682 259669.4420219520 +671 t 89 463928 71.30455 0.5103126360402577 Product description 671 2023-06-07 14:03:01.089303 2025-03-24 Processing Customer 671 366465.7359178280 +722 f 89 319800 13.7154 0.2767524276349853 Product description 722 2022-10-02 14:03:01.089303 2023-09-27 Closed Customer 722 719952.5213261850 +684 f 47 251479 17.06311 0.5442580147487384 Product description 684 2021-10-01 14:03:01.089303 2025-10-25 Processing Customer 684 742142.1761322900 +672 t 33 173087 61.62595 0.2696961963213873 Product description 672 2024-07-07 14:03:01.089303 2023-05-17 Closed Customer 672 953886.5025501980 +724 t 24 346308 57.579224 0.41445108090454497 Product description 724 2023-09-04 14:03:01.089303 2024-07-08 Closed Customer 724 522630.8306504140 +686 f 3 479310 83.856094 0.020345749469409924 Product description 686 2021-08-14 14:03:01.089303 2024-03-21 Processing Customer 686 165157.2442480710 +673 f 22 100474 17.656107 0.08897136823968665 Product description 673 2023-01-03 14:03:01.089303 2023-03-10 Processing Customer 673 736871.2175393450 +734 f 82 608311 40.648388 0.7106955831174382 Product description 734 2022-12-17 14:03:01.089303 2023-08-25 Processing Customer 734 259175.5271655460 +688 f 91 426356 27.951538 0.9771316265002135 Product description 688 2023-03-13 14:03:01.089303 2023-08-11 Closed Customer 688 103631.9971745030 +675 t 56 409476 39.170177 0.37821106922168823 Product description 675 2022-04-12 14:03:01.089303 2025-12-15 Closed Customer 675 450910.2608935580 +735 t 57 518045 48.443726 0.7150755656091583 Product description 735 2023-11-25 14:03:01.089303 2024-05-15 Closed Customer 735 479371.9094474800 +690 t 33 941225 0.9477986 0.2191921052496575 Product description 690 2023-11-19 14:03:01.089303 2024-02-13 Processing Customer 690 265937.0193827260 +678 f 21 791163 44.79517 0.8869168927133764 Product description 678 2024-03-11 14:03:01.089303 2024-08-04 Closed Customer 678 736553.5925010110 +737 t 15 859254 45.027985 0.9877786693311315 Product description 737 2023-04-01 14:03:01.089303 2024-01-03 Closed Customer 737 848380.4304655180 +692 f 70 887364 57.83085 0.2065308836991342 Product description 692 2023-06-28 14:03:01.089303 2024-06-25 Closed Customer 692 861247.5928019590 +691 f 64 436320 13.922481 0.49138852162705504 Product description 691 2022-05-12 14:03:01.089303 2025-02-26 Closed Customer 691 118622.9165720580 +740 t 44 507605 54.454205 0.6953879028441499 Product description 740 2023-10-23 14:03:01.089303 2025-04-07 Processing Customer 740 615685.9561717880 +695 t 23 91906 83.957146 0.8605778325156415 Product description 695 2021-08-23 14:03:01.089303 2025-09-16 Closed Customer 695 586929.3879921780 +697 f 45 322215 98.69343 0.7710828545052273 Product description 697 2023-05-28 14:03:01.089303 2024-10-31 Processing Customer 697 431373.6838797690 +743 f 71 725185 90.25927 0.712284596662311 Product description 743 2023-05-23 14:03:01.089303 2023-06-01 Processing Customer 743 971379.4842351930 +696 t 87 258900 82.94775 0.6922719846795111 Product description 696 2024-03-19 14:03:01.089303 2024-05-14 Closed Customer 696 325318.8451989640 +700 t 90 369343 97.29714 0.4726323230712488 Product description 700 2023-08-29 14:03:01.089303 2023-09-01 Closed Customer 700 221231.9958886230 +748 f 22 763796 91.55049 0.43068747499755844 Product description 748 2023-08-19 14:03:01.089303 2025-08-05 Closed Customer 748 654461.9878351060 +699 t 69 700680 38.91644 0.31402611939936875 Product description 699 2024-05-03 14:03:01.089303 2023-05-21 Closed Customer 699 78917.0068806513 +702 f 35 719733 79.255196 0.07065008994718269 Product description 702 2022-05-09 14:03:01.089303 2025-04-27 Processing Customer 702 963820.9634867540 +760 f 80 629564 86.06911 0.7948981371541457 Product description 760 2024-02-27 14:03:01.089303 2024-03-12 Closed Customer 760 202502.8894578110 +701 f 43 326994 1.5291892 0.4272200828587138 Product description 701 2022-07-03 14:03:01.089303 2025-05-23 Closed Customer 701 346136.3152748620 +708 f 15 477064 41.452625 0.8403676058513945 Product description 708 2023-01-31 14:03:01.089303 2025-09-10 Closed Customer 708 815974.3423710420 +763 f 89 982502 18.816372 0.12126109189370382 Product description 763 2021-09-05 14:03:01.089303 2024-02-09 Cancelled Customer 763 889566.6889302620 +703 f 46 339251 14.41294 0.42722609330848726 Product description 703 2022-10-06 14:03:01.089303 2025-10-20 Closed Customer 703 600866.5886151970 +721 f 68 519744 99.929504 0.4830102943276309 Product description 721 2023-05-30 14:03:01.089303 2025-04-09 Closed Customer 721 676645.3021007520 +764 t 74 587713 83.61946 0.36754101426134866 Product description 764 2024-02-13 14:03:01.089303 2024-02-08 Closed Customer 764 345959.5983258020 +704 f 53 278590 83.90377 0.6503600900593689 Product description 704 2023-09-11 14:03:01.089303 2024-07-23 Closed Customer 704 338354.5958857470 +723 t 94 474300 55.25612 0.010306999386923366 Product description 723 2023-12-12 14:03:01.089303 2025-06-17 Closed Customer 723 525841.8898159010 +766 f 16 303735 58.99603 0.9334359468145479 Product description 766 2022-10-12 14:03:01.089303 2024-06-24 Closed Customer 766 398416.7840382360 +705 t 76 258555 8.606778 0.4167827531930577 Product description 705 2024-07-05 14:03:01.089303 2024-11-15 Closed Customer 705 36543.3000722177 +726 t 69 873195 55.16518 0.124024383625855 Product description 726 2023-02-12 14:03:01.089303 2023-04-04 Closed Customer 726 181775.6046055900 +767 t 18 878465 63.790817 0.06068634976647047 Product description 767 2023-04-14 14:03:01.089303 2023-11-05 Processing Customer 767 222112.2740495040 +707 t 20 605671 60.532795 0.8432553345265781 Product description 707 2022-11-01 14:03:01.089303 2024-10-17 Closed Customer 707 176771.5983457090 +729 f 85 90223 53.61179 0.94216010309189 Product description 729 2021-11-29 14:03:01.089303 2023-09-10 Closed Customer 729 241896.0065233410 +768 f 7 288915 70.3454 0.9289330635655446 Product description 768 2024-03-14 14:03:01.089303 2024-01-25 Closed Customer 768 90968.3338364182 +709 f 62 325118 88.77954 0.5806234418485268 Product description 709 2024-01-31 14:03:01.089303 2023-10-29 Closed Customer 709 263375.2750672680 +731 t 7 358653 75.6185 0.054423933262359725 Product description 731 2021-08-08 14:03:01.089303 2025-03-18 Closed Customer 731 519620.4399709930 +769 t 73 100401 14.133801 0.5112941130940669 Product description 769 2021-08-09 14:03:01.089303 2025-06-20 Processing Customer 769 348939.8238814050 +710 f 37 653140 85.44088 0.31703466240083245 Product description 710 2022-03-15 14:03:01.089303 2023-05-26 Processing Customer 710 913903.4366105390 +738 t 95 996678 51.871723 0.08455675407475027 Product description 738 2023-01-02 14:03:01.089303 2025-03-04 Processing Customer 738 896261.9958819640 +773 f 44 928081 13.489203 0.9847373979949694 Product description 773 2021-10-30 14:03:01.089303 2024-08-22 Processing Customer 773 115450.6220747780 +711 f 1 331225 53.50082 0.9131291356139108 Product description 711 2023-08-20 14:03:01.089303 2023-12-04 Closed Customer 711 352326.9099676940 +741 f 52 232893 89.45423 0.7756611385824819 Product description 741 2023-01-24 14:03:01.089303 2023-04-23 Processing Customer 741 590226.5438387670 +774 f 93 932685 67.42163 0.9293560198488393 Product description 774 2024-01-25 14:03:01.089303 2024-07-26 Processing Customer 774 769618.2804570350 +713 t 16 242009 3.768572 0.9434055355183268 Product description 713 2022-01-03 14:03:01.089303 2024-08-24 Closed Customer 713 485049.3843078430 +742 t 74 708771 56.92333 0.1686813831378906 Product description 742 2023-05-13 14:03:01.089303 2025-03-17 Processing Customer 742 194732.4051135620 +776 t 54 885275 86.35156 0.09559647904375623 Product description 776 2021-11-30 14:03:01.089303 2024-03-26 Closed Customer 776 666208.8052444980 +715 t 13 86826 81.80689 0.2733222870761516 Product description 715 2021-08-04 14:03:01.089303 2025-10-31 Closed Customer 715 790110.5645567630 +744 t 7 180766 19.149923 0.7440738074645203 Product description 744 2023-06-20 14:03:01.089303 2025-12-02 Closed Customer 744 114496.0775796730 +780 f 61 873320 63.19824 0.6524337852395092 Product description 780 2024-07-13 14:03:01.089303 2025-07-22 Cancelled Customer 780 77718.7843357439 +718 t 73 134920 26.098703 0.6875188339279568 Product description 718 2022-09-22 14:03:01.089303 2024-05-20 Closed Customer 718 118058.8663597890 +746 t 85 210912 32.194225 0.518841124863652 Product description 746 2022-09-18 14:03:01.089303 2024-11-05 Closed Customer 746 66655.5051690025 +782 f 60 128794 17.867037 0.220856570942896 Product description 782 2022-04-20 14:03:01.089303 2023-01-26 Closed Customer 782 518714.7561993230 +720 f 46 967189 41.892914 0.8365096372998089 Product description 720 2024-02-10 14:03:01.089303 2024-07-27 Processing Customer 720 86633.8258183745 +749 t 29 654190 14.518195 0.883342277523699 Product description 749 2022-11-02 14:03:01.089303 2025-02-09 Closed Customer 749 368896.8345710890 +784 f 0 145215 22.677753 0.07746283312717495 Product description 784 2023-04-08 14:03:01.089303 2023-07-05 Closed Customer 784 286005.7714338780 +725 f 48 37428 36.119095 0.403630730938108 Product description 725 2022-12-06 14:03:01.089303 2023-04-17 Closed Customer 725 342811.6717982160 +751 f 10 955076 76.11466 0.08492206754429432 Product description 751 2022-11-26 14:03:01.089303 2025-12-28 Processing Customer 751 17920.2229795052 +786 t 62 234708 30.241608 0.1214534249638426 Product description 786 2022-01-11 14:03:01.089303 2024-11-10 Closed Customer 786 756427.8640216810 +727 t 45 525867 41.793324 0.8430311301657092 Product description 727 2024-01-31 14:03:01.089303 2024-09-23 Processing Customer 727 96495.1722430456 +752 f 62 980206 74.6119 0.12894516136960377 Product description 752 2023-02-06 14:03:01.089303 2025-07-27 Closed Customer 752 402130.2546116200 +789 t 56 854583 35.586044 0.5923986503661958 Product description 789 2022-12-16 14:03:01.089303 2024-11-30 Closed Customer 789 739860.2336631230 +728 f 17 944349 7.174493 0.21286348433642743 Product description 728 2021-08-24 14:03:01.089303 2025-03-19 Closed Customer 728 42667.6000065953 +754 t 25 927559 98.71945 0.2060589088403013 Product description 754 2022-08-22 14:03:01.089303 2025-07-08 Closed Customer 754 326972.4950116670 +790 f 68 461920 52.53808 0.994718800466881 Product description 790 2023-12-21 14:03:01.089303 2024-11-16 Processing Customer 790 770862.4462023220 +730 f 84 900327 34.744343 0.47721262512287055 Product description 730 2023-03-26 14:03:01.089303 2024-02-12 Processing Customer 730 57081.2632187696 +755 t 67 324584 21.99624 0.9773657757673142 Product description 755 2022-05-18 14:03:01.089303 2023-09-21 Closed Customer 755 911464.2033360520 +799 t 32 521962 76.76599 0.499731705233291 Product description 799 2022-05-20 14:03:01.089303 2025-08-29 Closed Customer 799 734265.4470039630 +732 f 49 685170 85.24035 0.8180305921620921 Product description 732 2022-12-27 14:03:01.089303 2024-12-22 Cancelled Customer 732 613188.5586892490 +756 f 61 604697 75.56042 0.17611113583462767 Product description 756 2022-03-28 14:03:01.089303 2025-03-10 Closed Customer 756 448637.0308499870 +807 f 48 387811 0.8764567 0.4753793045508665 Product description 807 2023-06-13 14:03:01.089303 2024-06-21 Closed Customer 807 487964.9579172640 +733 t 43 238403 81.58133 0.7607779338931238 Product description 733 2023-09-21 14:03:01.089303 2023-10-25 Processing Customer 733 513624.1216305950 +757 t 75 715985 23.594162 0.8654813168512767 Product description 757 2023-07-01 14:03:01.089303 2024-10-12 Closed Customer 757 157430.0577225640 +812 f 75 249185 48.119404 0.39351357686198085 Product description 812 2022-10-05 14:03:01.089303 2024-04-04 Closed Customer 812 520387.1682848130 +736 t 79 886448 62.57939 0.7654296265411844 Product description 736 2023-03-17 14:03:01.089303 2023-01-17 Closed Customer 736 10941.4625452935 +761 t 22 501580 13.752383 0.37958648608994494 Product description 761 2021-09-28 14:03:01.089303 2024-03-24 Closed Customer 761 258924.3898372970 +813 f 91 959296 75.52432 0.3813328769538309 Product description 813 2022-03-28 14:03:01.089303 2024-06-12 Closed Customer 813 241198.2011794510 +739 f 68 865335 32.57765 0.2059199734555648 Product description 739 2023-10-08 14:03:01.089303 2024-09-04 Closed Customer 739 131797.2665561590 +770 f 86 952282 71.78494 0.515827616246046 Product description 770 2023-06-14 14:03:01.089303 2023-02-25 Processing Customer 770 408990.7737938890 +816 f 89 716084 76.35648 0.9573864081156565 Product description 816 2024-05-09 14:03:01.089303 2024-12-23 Closed Customer 816 51738.3491682324 +745 f 85 459545 41.642937 0.05989766129071228 Product description 745 2023-09-11 14:03:01.089303 2024-05-16 Processing Customer 745 204556.9400689300 +772 t 64 360911 63.920452 0.12198768191164433 Product description 772 2023-03-18 14:03:01.089303 2024-03-21 Processing Customer 772 136952.6451413710 +818 t 16 881906 44.710285 0.4284725883294662 Product description 818 2022-03-15 14:03:01.089303 2025-12-07 Processing Customer 818 751143.9718527200 +747 t 27 765166 7.393401 0.4869888006603986 Product description 747 2023-09-01 14:03:01.089303 2024-06-20 Processing Customer 747 574312.5312777520 +779 t 6 752193 49.32116 0.4608439645593485 Product description 779 2024-04-22 14:03:01.089303 2025-05-31 Cancelled Customer 779 520234.7676001620 +822 t 53 812359 41.07405 0.866752454493966 Product description 822 2021-12-03 14:03:01.089303 2024-09-03 Processing Customer 822 197414.5637764050 +750 t 68 171880 9.817639 0.4410768102183553 Product description 750 2022-07-28 14:03:01.089303 2024-07-20 Processing Customer 750 633408.8870807650 +783 t 44 275497 79.759705 0.31494253753028545 Product description 783 2023-12-25 14:03:01.089303 2024-11-21 Processing Customer 783 79102.1295374428 +824 t 34 1691 77.10508 0.5225173298934287 Product description 824 2023-11-24 14:03:01.089303 2025-11-03 Processing Customer 824 529821.0020997590 +753 f 7 624920 89.89873 0.8588573963153294 Product description 753 2023-02-07 14:03:01.089303 2023-09-07 Processing Customer 753 463883.7883506960 +785 f 75 164478 79.90557 0.6139794797588465 Product description 785 2024-03-14 14:03:01.089303 2025-01-24 Closed Customer 785 950460.5038383610 +825 t 83 323591 30.495192 0.46356688888808506 Product description 825 2023-05-05 14:03:01.089303 2024-06-05 Closed Customer 825 849752.3399735770 +758 f 53 769251 59.570328 0.24476825210638964 Product description 758 2022-03-16 14:03:01.089303 2024-12-13 Closed Customer 758 718210.3991609420 +787 t 64 836891 88.99121 0.789605765437642 Product description 787 2022-02-17 14:03:01.089303 2025-07-12 Closed Customer 787 39472.4429204665 +828 f 10 385425 63.7452 0.23930173551917377 Product description 828 2023-09-23 14:03:01.089303 2024-12-14 Processing Customer 828 129404.7541264900 +759 t 84 654259 36.904633 0.9809699848480733 Product description 759 2023-05-17 14:03:01.089303 2025-05-11 Closed Customer 759 545879.3267540720 +794 f 83 55004 80.76245 0.7014707817626586 Product description 794 2022-05-28 14:03:01.089303 2024-07-04 Processing Customer 794 69194.1155507756 +829 f 33 608548 59.79123 0.19135251979290402 Product description 829 2022-01-10 14:03:01.089303 2025-04-15 Processing Customer 829 759772.2583954150 +762 t 16 828662 82.26819 0.3766394593709137 Product description 762 2023-06-04 14:03:01.089303 2024-11-07 Processing Customer 762 959403.8824175080 +798 t 89 656879 3.7192006 0.10405443235661949 Product description 798 2024-07-22 14:03:01.089303 2024-05-25 Closed Customer 798 710991.0706972580 +836 t 68 733747 75.91765 0.309067795771238 Product description 836 2023-12-16 14:03:01.089303 2024-06-03 Closed Customer 836 792032.8439857020 +765 f 85 737409 18.530058 0.9078930636383404 Product description 765 2022-12-08 14:03:01.089303 2023-05-17 Closed Customer 765 675945.2612588140 +800 t 2 326915 77.7617 0.6103309439712277 Product description 800 2022-03-03 14:03:01.089303 2023-04-07 Processing Customer 800 288527.8638156200 +837 t 51 474085 97.04849 0.07236567750799239 Product description 837 2023-10-31 14:03:01.089303 2025-09-12 Closed Customer 837 75435.0956687802 +771 f 94 591040 14.335572 0.21189999666425052 Product description 771 2021-11-19 14:03:01.089303 2024-02-18 Processing Customer 771 902.2242876462 +801 t 93 195778 64.97127 0.04329103442802307 Product description 801 2022-11-17 14:03:01.089303 2024-10-06 Processing Customer 801 844635.6325098880 +838 t 23 157408 79.0722 0.9994517769283355 Product description 838 2021-10-27 14:03:01.089303 2025-03-21 Processing Customer 838 573100.2416343710 +775 f 82 489122 95.553116 0.4220916412283344 Product description 775 2022-05-14 14:03:01.089303 2023-05-13 Closed Customer 775 487810.0427603550 +802 f 27 113277 66.88001 0.9001117352807526 Product description 802 2022-08-02 14:03:01.089303 2025-01-10 Closed Customer 802 494843.9283205380 +839 f 25 84464 50.6004 0.905284936189279 Product description 839 2023-01-11 14:03:01.089303 2024-08-21 Processing Customer 839 928226.5014001470 +777 f 99 409982 49.140602 0.05706940018966833 Product description 777 2023-06-10 14:03:01.089303 2024-09-03 Closed Customer 777 315187.1221653160 +803 f 64 76498 42.696743 0.18994224328766052 Product description 803 2023-10-03 14:03:01.089303 2024-10-29 Processing Customer 803 996871.0127048550 +840 t 81 471392 77.558205 0.3290800592693408 Product description 840 2023-02-27 14:03:01.089303 2024-10-02 Processing Customer 840 968368.4679020460 +778 t 1 869980 24.536716 0.6276463998200938 Product description 778 2023-08-24 14:03:01.089303 2023-11-19 Closed Customer 778 825897.4594836520 +808 f 41 565058 72.14493 0.45587920162326867 Product description 808 2022-07-10 14:03:01.089303 2024-03-03 Processing Customer 808 22279.3219601733 +843 t 55 223135 61.530685 0.23241888184971415 Product description 843 2023-07-30 14:03:01.089303 2024-09-23 Closed Customer 843 209182.7749269440 +781 t 63 804245 91.040375 0.9572016721064713 Product description 781 2023-07-09 14:03:01.089303 2024-12-24 Closed Customer 781 181719.9169164820 +810 f 33 401803 15.996331 0.6547245314791041 Product description 810 2023-07-18 14:03:01.089303 2024-01-03 Closed Customer 810 633508.4431287580 +848 f 62 543627 9.587736 0.012609170272181558 Product description 848 2021-12-06 14:03:01.089303 2023-03-30 Closed Customer 848 866934.3530217550 +788 f 69 672720 97.206726 0.8840317027902671 Product description 788 2023-04-10 14:03:01.089303 2024-11-24 Closed Customer 788 249532.0436266400 +817 t 51 174581 7.3626065 0.3464296061515384 Product description 817 2024-03-29 14:03:01.089303 2025-05-01 Closed Customer 817 145423.5106692220 +855 f 76 436730 57.388535 0.35793112004975924 Product description 855 2021-09-18 14:03:01.089303 2025-05-22 Closed Customer 855 45591.3100233403 +791 t 98 737837 90.34768 0.8709789285539031 Product description 791 2023-12-07 14:03:01.089303 2023-09-09 Processing Customer 791 150048.5315169050 +819 f 44 668609 97.09589 0.01404036410581 Product description 819 2021-12-04 14:03:01.089303 2025-10-08 Processing Customer 819 438597.4858997590 +856 f 31 918351 75.31003 0.05292642240886991 Product description 856 2022-06-17 14:03:01.089303 2024-07-24 Closed Customer 856 247353.0974003420 +792 t 58 539773 53.10051 0.031697811556426814 Product description 792 2022-04-07 14:03:01.089303 2024-04-15 Closed Customer 792 583050.8578225950 +821 t 32 552058 60.398582 0.9636821898213199 Product description 821 2021-12-25 14:03:01.089303 2023-10-29 Processing Customer 821 948167.3118704810 +857 f 96 53761 81.0759 0.9462804545673755 Product description 857 2023-03-27 14:03:01.089303 2023-06-17 Closed Customer 857 786783.2662305150 +793 f 94 62744 65.88862 0.6429203885039456 Product description 793 2023-05-15 14:03:01.089303 2024-04-13 Closed Customer 793 933346.6846275690 +826 t 1 284178 50.54628 0.8790816828731067 Product description 826 2022-01-26 14:03:01.089303 2023-05-21 Closed Customer 826 8299.9613360890 +860 f 42 728367 37.559685 0.4619509844093521 Product description 860 2023-11-08 14:03:01.089303 2024-03-09 Closed Customer 860 230838.9458617410 +795 t 9 604573 72.35236 0.06420742051379591 Product description 795 2024-07-18 14:03:01.089303 2023-01-17 Processing Customer 795 307047.0432726150 +832 f 44 755513 60.752853 0.2912342584287515 Product description 832 2022-09-24 14:03:01.089303 2025-12-16 Closed Customer 832 432537.6910599950 +861 t 95 195472 43.819584 0.6619169722922642 Product description 861 2023-06-12 14:03:01.089303 2024-10-23 Processing Customer 861 337347.0667412310 +796 t 24 195116 73.91302 0.9650487463659871 Product description 796 2022-01-26 14:03:01.089303 2023-05-02 Processing Customer 796 164468.7474091210 +833 f 35 460382 90.71299 0.13019622336783243 Product description 833 2022-11-11 14:03:01.089303 2023-12-27 Processing Customer 833 719302.5627560810 +865 f 50 640756 29.342419 0.8535487317125607 Product description 865 2022-10-05 14:03:01.089303 2023-01-11 Cancelled Customer 865 749918.0523956250 +797 t 39 335074 78.65931 0.2563557264272731 Product description 797 2023-04-13 14:03:01.089303 2023-02-24 Closed Customer 797 158896.0790263590 +841 t 25 789180 93.42156 0.023633590685982142 Product description 841 2023-07-04 14:03:01.089303 2023-08-19 Closed Customer 841 956591.8761002090 +866 f 14 800983 23.512583 0.2728555742670622 Product description 866 2023-07-03 14:03:01.089303 2023-09-14 Closed Customer 866 264431.1564261880 +804 t 19 408512 11.073324 0.1563155965104741 Product description 804 2022-05-15 14:03:01.089303 2023-12-17 Closed Customer 804 177640.7517693070 +844 f 86 112487 4.2865505 0.7773390094019135 Product description 844 2024-07-28 14:03:01.089303 2024-03-26 Closed Customer 844 549899.8815536670 +868 f 94 970448 33.78187 0.7438784668142517 Product description 868 2022-08-25 14:03:01.089303 2025-09-23 Processing Customer 868 984289.5262412520 +805 f 49 495136 7.5579777 0.5384687821109111 Product description 805 2023-11-24 14:03:01.089303 2025-02-13 Processing Customer 805 374913.2421724080 +847 t 66 55838 16.97057 0.24849704497481895 Product description 847 2022-06-30 14:03:01.089303 2023-02-26 Processing Customer 847 452951.0752471460 +870 f 63 893482 65.71838 0.9920265998756221 Product description 870 2021-09-03 14:03:01.089303 2024-05-21 Closed Customer 870 332338.8845394570 +806 f 86 423357 76.74151 0.1916375351540509 Product description 806 2022-03-10 14:03:01.089303 2024-10-02 Closed Customer 806 732955.4520361970 +849 t 5 647161 77.50595 0.7078502220059448 Product description 849 2023-01-25 14:03:01.089303 2023-08-24 Processing Customer 849 394929.6452989690 +877 f 7 704279 42.561325 0.37383879746474236 Product description 877 2023-01-11 14:03:01.089303 2025-04-23 Processing Customer 877 59124.7634019076 +809 f 13 204093 20.285685 0.09146590595551629 Product description 809 2023-07-17 14:03:01.089303 2024-08-21 Closed Customer 809 691843.0841390340 +850 t 36 961366 78.724205 0.6371590825060522 Product description 850 2023-11-20 14:03:01.089303 2025-07-25 Closed Customer 850 63899.3302989270 +879 t 17 435246 50.23199 0.1412388267988618 Product description 879 2024-05-04 14:03:01.089303 2024-08-06 Closed Customer 879 465735.3661031070 +811 t 79 758813 61.887978 0.9063864168553337 Product description 811 2022-07-19 14:03:01.089303 2025-09-15 Closed Customer 811 671842.3022550760 +851 f 87 97950 48.81082 0.01536060769984715 Product description 851 2023-10-25 14:03:01.089303 2023-02-10 Closed Customer 851 239399.9611155630 +883 t 69 251689 5.8455944 0.7437717422948111 Product description 883 2024-02-28 14:03:01.089303 2023-05-15 Closed Customer 883 679909.2361331240 +814 f 50 70845 43.403057 0.6559524913748049 Product description 814 2024-03-10 14:03:01.089303 2023-05-12 Processing Customer 814 302396.6614019110 +852 t 56 315177 56.421665 0.020171284231260245 Product description 852 2022-04-08 14:03:01.089303 2024-02-06 Closed Customer 852 535351.9730205430 +894 t 70 789089 3.1650836 0.5876159975264201 Product description 894 2022-06-05 14:03:01.089303 2024-05-25 Processing Customer 894 272938.9845187780 +815 t 80 53752 62.964756 0.6875875517083543 Product description 815 2022-01-13 14:03:01.089303 2024-03-03 Processing Customer 815 939212.0504181950 +853 t 14 690559 22.056429 0.8802407334899414 Product description 853 2022-04-03 14:03:01.089303 2025-07-07 Closed Customer 853 866672.0687442190 +900 f 53 566176 35.691303 0.2715820848576982 Product description 900 2023-10-17 14:03:01.089303 2024-08-17 Processing Customer 900 279298.4629347150 +820 f 23 88589 65.29124 0.5353687460315655 Product description 820 2023-07-15 14:03:01.089303 2024-09-25 Closed Customer 820 89362.5921472072 +854 f 72 891289 94.10171 0.8839203805042857 Product description 854 2022-07-05 14:03:01.089303 2023-10-16 Closed Customer 854 906231.0936736150 +904 t 64 215138 51.820515 0.1510020799291354 Product description 904 2022-07-20 14:03:01.089303 2023-09-29 Closed Customer 904 497518.5447200690 +823 f 12 922449 38.643246 0.5690099576898504 Product description 823 2021-09-10 14:03:01.089303 2024-03-13 Processing Customer 823 307225.6814541880 +858 f 50 408509 80.13344 0.0077197771452972574 Product description 858 2021-08-26 14:03:01.089303 2025-12-14 Cancelled Customer 858 527292.9340186320 +906 t 34 452071 53.23872 0.6943923921637776 Product description 906 2024-04-09 14:03:01.089303 2025-01-30 Closed Customer 906 295824.0236384420 +827 f 5 10083 25.436085 0.31497175227754326 Product description 827 2023-11-06 14:03:01.089303 2025-06-17 Processing Customer 827 447181.5663467390 +859 t 6 65735 45.78247 0.048945786017537074 Product description 859 2022-11-13 14:03:01.089303 2025-07-20 Processing Customer 859 282322.7298674670 +907 t 11 396810 18.039812 0.5743732803799944 Product description 907 2023-10-08 14:03:01.089303 2023-01-14 Cancelled Customer 907 34296.1855194872 +830 f 55 6239 72.84299 0.38100969301697063 Product description 830 2021-12-25 14:03:01.089303 2023-06-09 Processing Customer 830 827428.9752277360 +862 t 28 975079 62.355957 0.27288330788180204 Product description 862 2022-03-18 14:03:01.089303 2023-12-03 Closed Customer 862 535269.4511438470 +908 f 77 503981 88.81937 0.6823925936115565 Product description 908 2022-10-29 14:03:01.089303 2025-07-13 Processing Customer 908 938684.2965346740 +831 f 74 969640 45.46893 0.7052118400942788 Product description 831 2024-04-06 14:03:01.089303 2024-06-24 Closed Customer 831 31173.5277662955 +863 t 76 376169 64.71925 0.3844182949368893 Product description 863 2022-04-12 14:03:01.089303 2025-05-19 Processing Customer 863 208322.7467152900 +909 f 60 811729 9.764463 0.8566157514887145 Product description 909 2022-11-10 14:03:01.089303 2024-10-21 Cancelled Customer 909 909090.0036995850 +834 t 82 535847 81.302414 0.20276234830360096 Product description 834 2023-03-17 14:03:01.089303 2023-11-17 Closed Customer 834 378772.2966301920 +864 t 5 879044 7.4603696 0.556602922697639 Product description 864 2022-05-13 14:03:01.089303 2025-12-02 Processing Customer 864 840817.9136790890 +915 t 95 731074 85.560104 0.8176020371635175 Product description 915 2023-04-29 14:03:01.089303 2023-05-27 Closed Customer 915 874966.6793185930 +835 f 24 193455 3.2061098 0.8930436644568971 Product description 835 2021-09-09 14:03:01.089303 2024-06-19 Processing Customer 835 685850.1851489610 +867 t 48 124460 32.760757 0.23505088537622143 Product description 867 2023-06-27 14:03:01.089303 2023-09-14 Processing Customer 867 935990.0296957660 +918 f 49 249571 49.955124 0.47579276728988873 Product description 918 2022-09-26 14:03:01.089303 2024-03-17 Closed Customer 918 613459.1656908800 +842 f 71 704964 92.099625 0.6378705402664124 Product description 842 2023-09-06 14:03:01.089303 2024-04-22 Closed Customer 842 290870.7145781650 +871 t 49 732497 97.12448 0.9911833456331358 Product description 871 2023-10-12 14:03:01.089303 2025-11-10 Processing Customer 871 292665.9098642120 +922 f 79 567434 30.765966 0.734256050697546 Product description 922 2022-02-23 14:03:01.089303 2023-09-19 Closed Customer 922 379479.4693092070 +845 t 64 339132 74.936325 0.2941766429588597 Product description 845 2022-02-02 14:03:01.089303 2023-11-01 Closed Customer 845 318565.6086922070 +872 t 1 481164 20.459768 0.03703114987794365 Product description 872 2024-04-06 14:03:01.089303 2024-01-14 Processing Customer 872 155675.3409880470 +924 t 7 581863 10.657408 0.047138201308172256 Product description 924 2022-03-04 14:03:01.089303 2023-12-18 Closed Customer 924 25544.8931242448 +846 t 36 451371 48.205723 0.5258582802258687 Product description 846 2022-01-10 14:03:01.089303 2023-11-29 Closed Customer 846 542447.4678796720 +873 t 86 866830 39.002914 0.7854247747365584 Product description 873 2024-07-19 14:03:01.089303 2025-01-22 Closed Customer 873 11634.3454687211 +927 f 57 10146 27.739489 0.9719490843338363 Product description 927 2022-07-05 14:03:01.089303 2023-12-02 Closed Customer 927 509788.1901159590 +869 f 64 751207 26.02861 0.5426325992329595 Product description 869 2021-12-01 14:03:01.089303 2024-07-20 Cancelled Customer 869 877625.8770332960 +874 t 27 603051 48.753075 0.5703242172244067 Product description 874 2022-01-13 14:03:01.089303 2024-02-14 Cancelled Customer 874 746631.1392074050 +933 f 70 279978 14.701704 0.5942981795350164 Product description 933 2024-07-08 14:03:01.089303 2025-03-07 Processing Customer 933 9538.3416802797 +876 t 88 346287 27.814133 0.6658400198785692 Product description 876 2023-08-06 14:03:01.089303 2024-11-21 Processing Customer 876 33117.2523249066 +875 f 40 166529 89.94926 0.3763984210017455 Product description 875 2024-05-18 14:03:01.089303 2025-12-20 Closed Customer 875 150959.3308359490 +939 f 64 127064 83.43245 0.6371706612881027 Product description 939 2024-04-03 14:03:01.089303 2025-01-05 Closed Customer 939 32988.4490404488 +878 t 97 11507 21.309282 0.2621867382400218 Product description 878 2024-06-27 14:03:01.089303 2023-03-31 Cancelled Customer 878 718287.6776829690 +880 t 4 283500 38.490215 0.8128939093064815 Product description 880 2021-12-16 14:03:01.089303 2025-10-01 Processing Customer 880 308999.2512972910 +941 f 79 739780 33.389683 0.7259287195931279 Product description 941 2024-03-11 14:03:01.089303 2025-01-03 Closed Customer 941 959695.4545806360 +882 f 2 285208 45.515656 0.6580751707061268 Product description 882 2023-01-13 14:03:01.089303 2023-07-05 Closed Customer 882 435177.3892818150 +881 f 53 32810 24.080978 0.7960774464455866 Product description 881 2022-09-28 14:03:01.089303 2024-10-07 Closed Customer 881 683135.3350942670 +943 f 47 851497 3.8884544 0.5796745930101181 Product description 943 2021-12-17 14:03:01.089303 2024-11-06 Processing Customer 943 726469.5776906680 +886 f 67 19954 66.60992 0.4462513768820102 Product description 886 2021-11-11 14:03:01.089303 2025-09-22 Closed Customer 886 538804.0365840290 +884 f 65 758578 1.27689 0.6380919331964776 Product description 884 2022-04-21 14:03:01.089303 2025-02-22 Processing Customer 884 491876.3560762860 +944 t 20 642474 76.71136 0.5107286855525359 Product description 944 2022-01-01 14:03:01.089303 2023-10-26 Closed Customer 944 420676.2975304170 +889 f 84 954796 79.706314 0.4363167094039824 Product description 889 2024-07-30 14:03:01.089303 2025-07-14 Processing Customer 889 678700.0616967130 +885 f 29 290434 15.059521 0.35616949423147304 Product description 885 2023-12-13 14:03:01.089303 2025-10-16 Processing Customer 885 183020.0071830780 +952 t 33 949778 58.100964 0.1947110034435795 Product description 952 2023-05-09 14:03:01.089303 2024-02-05 Processing Customer 952 217556.2710124730 +890 t 59 575602 56.36676 0.06176366604633898 Product description 890 2021-10-30 14:03:01.089303 2023-11-17 Closed Customer 890 964155.9641205970 +887 t 0 876258 69.25681 0.8750773328126087 Product description 887 2022-02-23 14:03:01.089303 2024-02-06 Closed Customer 887 588208.4467100230 +954 t 63 911301 22.243988 0.05835747881118891 Product description 954 2024-05-26 14:03:01.089303 2023-02-14 Closed Customer 954 902964.5100517560 +895 t 89 43923 81.02837 0.7692429130561038 Product description 895 2022-12-17 14:03:01.089303 2024-03-14 Processing Customer 895 683035.0478379290 +888 f 38 776305 71.83597 0.7771815557537636 Product description 888 2023-05-27 14:03:01.089303 2023-02-18 Processing Customer 888 243589.7904009220 +959 t 77 593322 73.58491 0.5594716250230718 Product description 959 2023-11-09 14:03:01.089303 2025-07-15 Processing Customer 959 704056.2866590710 +897 t 30 124978 71.279076 0.1432189389047167 Product description 897 2022-11-10 14:03:01.089303 2023-03-26 Cancelled Customer 897 528315.1581080500 +891 t 8 400999 28.177835 0.193469024667138 Product description 891 2021-11-24 14:03:01.089303 2025-07-29 Processing Customer 891 139634.3863295860 +960 t 35 300415 42.239418 0.9633079564697908 Product description 960 2021-12-27 14:03:01.089303 2025-04-30 Closed Customer 960 127373.9933410350 +898 f 47 226296 5.2731757 0.07787736569288839 Product description 898 2023-10-28 14:03:01.089303 2023-10-14 Closed Customer 898 536937.5267439980 +892 f 97 559731 65.41041 0.6091369033731624 Product description 892 2022-01-11 14:03:01.089303 2024-11-23 Processing Customer 892 975763.2644909540 +964 f 10 337985 85.540245 0.8617764444873544 Product description 964 2022-07-17 14:03:01.089303 2025-08-16 Closed Customer 964 694645.7175311770 +899 t 38 469116 34.94292 0.6483632605248282 Product description 899 2023-04-02 14:03:01.089303 2024-08-14 Cancelled Customer 899 758899.8737308080 +893 f 8 309568 94.0535 0.7123700957450438 Product description 893 2022-12-03 14:03:01.089303 2025-10-07 Cancelled Customer 893 504192.0921229060 +965 f 95 946396 15.272577 0.7389006099920152 Product description 965 2024-02-08 14:03:01.089303 2024-07-21 Processing Customer 965 248739.5849091140 +901 f 38 792866 41.52431 0.35876388882498844 Product description 901 2022-10-03 14:03:01.089303 2024-05-31 Closed Customer 901 485116.5242076730 +896 f 35 464197 58.637566 0.5164747768169171 Product description 896 2021-08-12 14:03:01.089303 2024-02-15 Closed Customer 896 403722.2757532180 +966 f 41 139024 28.818487 0.047997214332333726 Product description 966 2022-07-27 14:03:01.089303 2025-02-04 Processing Customer 966 952537.0527130440 +903 t 99 179961 4.247933 0.7750738419419179 Product description 903 2024-02-25 14:03:01.089303 2025-12-11 Closed Customer 903 924929.3025461860 +902 t 33 111377 62.259075 0.5731815777296028 Product description 902 2023-04-02 14:03:01.089303 2025-02-14 Closed Customer 902 817082.7447328720 +967 f 69 289329 41.821507 0.27140088288849995 Product description 967 2024-07-09 14:03:01.089303 2025-10-31 Closed Customer 967 119375.0730472050 +905 f 18 541112 68.849625 0.718097522752636 Product description 905 2023-11-10 14:03:01.089303 2024-08-01 Processing Customer 905 286436.7318381970 +910 f 86 180291 53.12857 0.1794894043950812 Product description 910 2021-10-07 14:03:01.089303 2023-03-02 Closed Customer 910 638627.7669376380 +969 f 99 103822 33.148605 0.44439611550247804 Product description 969 2023-02-21 14:03:01.089303 2023-11-08 Closed Customer 969 221524.1983284280 +912 f 38 56579 5.741735 0.13859824727863668 Product description 912 2024-01-02 14:03:01.089303 2025-03-03 Processing Customer 912 907480.2309997200 +911 t 35 953995 70.410416 0.7493188720150847 Product description 911 2024-06-03 14:03:01.089303 2024-04-08 Closed Customer 911 960891.8265532790 +972 t 95 964914 74.01411 0.6463478403915417 Product description 972 2023-04-16 14:03:01.089303 2023-03-23 Cancelled Customer 972 790392.0903026320 +914 t 76 625556 36.6304 0.9015288401081918 Product description 914 2022-05-23 14:03:01.089303 2023-04-16 Closed Customer 914 958901.2148745900 +913 t 27 174601 8.653438 0.046729799669261496 Product description 913 2022-06-05 14:03:01.089303 2024-05-26 Processing Customer 913 759533.9538879740 +974 f 85 59102 76.551605 0.780367845847632 Product description 974 2021-09-12 14:03:01.089303 2023-06-20 Closed Customer 974 186771.5871972490 +916 f 53 759914 67.469185 0.38559431454137894 Product description 916 2024-04-12 14:03:01.089303 2024-03-13 Processing Customer 916 498081.0862244280 +917 f 5 86909 89.275734 0.9873193161472251 Product description 917 2024-06-08 14:03:01.089303 2024-02-20 Processing Customer 917 368867.9048517120 +977 f 38 660114 3.5620623 0.18216281437124238 Product description 977 2022-09-22 14:03:01.089303 2024-04-17 Closed Customer 977 231387.0611171750 +925 t 90 604722 4.6853147 0.3627105757198663 Product description 925 2023-03-22 14:03:01.089303 2025-02-01 Closed Customer 925 79655.3229040775 +919 f 4 406900 91.73876 0.0021144553777610042 Product description 919 2024-01-11 14:03:01.089303 2023-11-14 Processing Customer 919 874273.4605009090 +982 f 53 678890 46.076473 0.942895549826968 Product description 982 2022-08-17 14:03:01.089303 2024-05-13 Processing Customer 982 570442.7389969240 +926 f 40 506097 16.53237 0.922101210099882 Product description 926 2023-05-03 14:03:01.089303 2025-09-21 Closed Customer 926 879765.9137583870 +920 f 66 840665 83.18494 0.03146560879587312 Product description 920 2023-02-26 14:03:01.089303 2024-09-04 Processing Customer 920 212564.5102893540 +984 f 62 200072 29.978561 0.7641945282382245 Product description 984 2023-04-26 14:03:01.089303 2025-12-14 Processing Customer 984 960400.0926763800 +928 f 65 669557 18.595053 0.01025353594061329 Product description 928 2022-12-07 14:03:01.089303 2024-12-10 Processing Customer 928 891448.0462942050 +921 t 48 854135 46.902866 0.9689789241763513 Product description 921 2022-06-23 14:03:01.089303 2023-02-19 Processing Customer 921 932416.4330093150 +985 f 33 17095 82.898994 0.8814650700035251 Product description 985 2023-08-07 14:03:01.089303 2025-06-17 Processing Customer 985 434138.8773770730 +929 t 16 98047 51.421494 0.5994431319540752 Product description 929 2021-10-22 14:03:01.089303 2023-12-17 Processing Customer 929 427320.2744578520 +923 f 17 29745 20.9517 0.8502632207453225 Product description 923 2023-10-31 14:03:01.089303 2024-09-24 Closed Customer 923 304017.7585314580 +987 f 34 995631 25.311367 0.8634504608445361 Product description 987 2023-09-26 14:03:01.089303 2025-09-03 Closed Customer 987 570002.2171446620 +930 t 66 980180 55.51958 0.5064756999963507 Product description 930 2022-06-24 14:03:01.089303 2024-11-10 Closed Customer 930 285039.9669890220 +932 t 84 110637 76.50444 0.5047240913686828 Product description 932 2023-03-22 14:03:01.089303 2023-04-09 Closed Customer 932 519429.8005607080 +990 f 88 571272 88.686386 0.7453638280738026 Product description 990 2024-04-28 14:03:01.089303 2024-04-12 Processing Customer 990 687435.0780237040 +931 t 94 745408 61.521107 0.17259319013741958 Product description 931 2024-06-16 14:03:01.089303 2024-12-25 Closed Customer 931 337689.7410931680 +934 f 37 284087 7.1790276 0.08764735560966486 Product description 934 2023-10-04 14:03:01.089303 2023-08-20 Cancelled Customer 934 631628.4199119520 +993 f 96 472571 51.570183 0.8021327757094276 Product description 993 2024-01-08 14:03:01.089303 2025-05-26 Closed Customer 993 844883.5687383820 +935 t 30 112004 70.718605 0.8552398238604653 Product description 935 2022-09-09 14:03:01.089303 2023-08-14 Closed Customer 935 15375.0977835507 +940 t 33 310071 14.242434 0.333509831722111 Product description 940 2023-11-05 14:03:01.089303 2024-12-04 Closed Customer 940 361532.2570508500 +994 f 80 724260 64.17524 0.6503893058029853 Product description 994 2023-03-11 14:03:01.089303 2024-11-15 Processing Customer 994 794580.0097066850 +936 t 92 284570 13.651092 0.579413781170274 Product description 936 2023-05-29 14:03:01.089303 2025-01-18 Closed Customer 936 571891.6413712770 +949 t 5 380260 71.858086 0.2745831337678837 Product description 949 2024-01-12 14:03:01.089303 2024-04-02 Closed Customer 949 496418.7100825830 +996 t 13 286272 44.614456 0.6418134770043658 Product description 996 2023-09-08 14:03:01.089303 2023-11-16 Processing Customer 996 473039.9761929790 +937 t 5 888409 2.257246 0.5117527480248398 Product description 937 2022-06-20 14:03:01.089303 2024-10-25 Closed Customer 937 493500.6436611250 +951 t 62 33437 75.87501 0.6541409260115927 Product description 951 2022-11-29 14:03:01.089303 2025-01-05 Closed Customer 951 195941.1489724760 +998 f 22 978293 81.574425 0.7985816493870139 Product description 998 2024-01-26 14:03:01.089303 2023-10-07 Processing Customer 998 306563.0962644900 +938 f 39 745007 60.934937 0.24164325522356478 Product description 938 2022-08-18 14:03:01.089303 2024-04-11 Closed Customer 938 91956.5156617743 +955 f 62 155110 19.890383 0.6688580220938221 Product description 955 2023-12-16 14:03:01.089303 2024-06-10 Closed Customer 955 496175.6734546760 +1002 f 41 53688 8.715465 0.8206073404269638 Product description 1002 2023-03-28 14:03:01.089303 2025-02-24 Closed Customer 1002 208960.7841586630 +942 f 40 948588 61.01277 0.5680347240630326 Product description 942 2022-04-13 14:03:01.089303 2024-10-02 Closed Customer 942 4660.6438270267 +956 t 88 962542 55.74536 0.7212841032796717 Product description 956 2024-06-02 14:03:01.089303 2025-09-17 Closed Customer 956 792087.5761772490 +1004 f 76 390367 18.53063 0.7166620978321809 Product description 1004 2022-03-17 14:03:01.089303 2025-04-28 Processing Customer 1004 978719.3655329460 +945 t 88 318173 24.40085 0.7909561026315544 Product description 945 2023-05-01 14:03:01.089303 2025-11-05 Closed Customer 945 163828.8643929650 +958 t 47 63645 89.82531 0.017169518008920193 Product description 958 2021-11-25 14:03:01.089303 2025-09-22 Closed Customer 958 867632.0248995530 +1005 f 93 235150 19.73399 0.5215714820343926 Product description 1005 2023-07-22 14:03:01.089303 2025-12-01 Processing Customer 1005 460733.3869994080 +946 t 70 157426 36.038948 0.2868565829378795 Product description 946 2022-05-18 14:03:01.089303 2023-07-05 Closed Customer 946 4949.4445269183 +963 t 46 297957 10.122045 0.8462608838202073 Product description 963 2023-11-11 14:03:01.089303 2024-11-03 Closed Customer 963 874741.5408232050 +1007 f 53 488149 98.118805 0.31799047731086816 Product description 1007 2021-11-05 14:03:01.089303 2023-02-16 Closed Customer 1007 963573.4946936980 +947 t 29 584510 27.752432 0.7304833651522671 Product description 947 2023-09-30 14:03:01.089303 2025-09-20 Closed Customer 947 465284.9644300370 +968 t 96 655869 82.952866 0.4986511838442951 Product description 968 2022-05-24 14:03:01.089303 2025-04-26 Processing Customer 968 854693.4012520390 +1010 f 77 846138 67.22719 0.9058423930544599 Product description 1010 2022-02-24 14:03:01.089303 2024-07-19 Cancelled Customer 1010 783432.3916694250 +948 t 76 496243 78.955574 0.000263033093681031 Product description 948 2024-01-14 14:03:01.089303 2024-09-17 Closed Customer 948 428959.3230999070 +973 t 95 247325 66.794975 0.01570633989548753 Product description 973 2023-07-14 14:03:01.089303 2024-07-25 Closed Customer 973 194608.7590268450 +1012 t 82 286665 82.51338 0.12272846263778092 Product description 1012 2023-09-17 14:03:01.089303 2023-10-13 Closed Customer 1012 184303.0464977420 +950 t 59 749875 19.464565 0.8126305694151483 Product description 950 2022-02-17 14:03:01.089303 2024-03-13 Processing Customer 950 672911.6482494500 +976 t 51 967946 71.11426 0.6304918103380928 Product description 976 2024-03-13 14:03:01.089303 2023-11-26 Closed Customer 976 390336.6655717270 +1014 t 93 808250 7.933572 0.22387417407123422 Product description 1014 2022-06-24 14:03:01.089303 2024-10-05 Cancelled Customer 1014 671063.0334948390 +953 t 8 669023 6.737538 0.11045336099227399 Product description 953 2022-05-26 14:03:01.089303 2025-12-19 Closed Customer 953 899188.6454836370 +978 f 94 829074 38.395508 0.5200652406344659 Product description 978 2024-01-30 14:03:01.089303 2024-12-05 Closed Customer 978 111270.1822727010 +1018 f 91 837424 55.36824 0.11126482921973846 Product description 1018 2024-03-27 14:03:01.089303 2023-12-26 Processing Customer 1018 13379.8150247060 +957 t 42 870351 9.098954 0.5597862478177973 Product description 957 2022-03-28 14:03:01.089303 2024-05-30 Closed Customer 957 30791.7768818236 +979 f 31 55561 65.24305 0.002401862267767285 Product description 979 2023-09-05 14:03:01.089303 2023-05-10 Processing Customer 979 833557.1092666820 +1021 t 45 919177 3.844043 0.8135498343738412 Product description 1021 2023-04-22 14:03:01.089303 2023-10-24 Cancelled Customer 1021 98383.8865720195 +961 f 87 61446 30.56887 0.16300287340268227 Product description 961 2024-06-16 14:03:01.089303 2025-05-11 Processing Customer 961 830413.0050626560 +980 t 17 869180 95.328636 0.16150651341449418 Product description 980 2022-06-10 14:03:01.089303 2023-05-20 Closed Customer 980 28207.1836912614 +1025 f 52 984585 31.288742 0.8100242633902823 Product description 1025 2022-02-11 14:03:01.089303 2025-05-01 Closed Customer 1025 484756.3643191570 +962 t 96 917371 43.38674 0.79061411823713 Product description 962 2022-04-09 14:03:01.089303 2025-06-30 Processing Customer 962 443142.5099100710 +988 f 26 116423 38.77337 0.9499754029270022 Product description 988 2023-08-21 14:03:01.089303 2023-09-22 Closed Customer 988 640805.0981153400 +1028 t 90 357117 2.5773692 0.835322020955573 Product description 1028 2024-02-21 14:03:01.089303 2024-12-10 Closed Customer 1028 126890.1025148320 +970 f 36 346002 93.85336 0.06553113193567839 Product description 970 2023-08-07 14:03:01.089303 2024-02-20 Processing Customer 970 650207.1728313620 +989 f 38 334816 61.524113 0.8394730799083163 Product description 989 2022-03-15 14:03:01.089303 2025-07-06 Processing Customer 989 664121.7082927790 +1033 f 24 174982 70.84044 0.5020499324566643 Product description 1033 2023-04-18 14:03:01.089303 2024-06-28 Processing Customer 1033 78238.3561295070 +971 t 10 694945 95.64997 0.10923030080509477 Product description 971 2022-09-18 14:03:01.089303 2024-07-22 Processing Customer 971 841759.1957802240 +992 f 64 435856 94.83616 0.07480849178626414 Product description 992 2022-11-21 14:03:01.089303 2025-04-21 Closed Customer 992 488151.5668649610 +1037 t 93 726835 22.328571 0.16688364968793223 Product description 1037 2023-12-28 14:03:01.089303 2024-06-03 Closed Customer 1037 129083.9380444700 +975 f 86 335059 88.64774 0.9374329485274799 Product description 975 2022-05-04 14:03:01.089303 2024-07-08 Processing Customer 975 457410.6998291720 +995 t 97 928829 73.59582 0.34431450217535087 Product description 995 2022-11-05 14:03:01.089303 2023-12-21 Processing Customer 995 548313.6952776810 +1041 t 92 841528 70.44416 0.7545434001062503 Product description 1041 2021-12-07 14:03:01.089303 2024-01-26 Closed Customer 1041 172308.2182914940 +981 f 91 287340 84.54899 0.6389726201650774 Product description 981 2024-06-02 14:03:01.089303 2025-03-05 Processing Customer 981 805363.5858093420 +999 f 40 608265 93.12295 0.8234686007013678 Product description 999 2023-07-15 14:03:01.089303 2023-01-06 Processing Customer 999 856168.3796337900 +1043 t 25 988661 4.1822405 0.19357140587399613 Product description 1043 2024-01-06 14:03:01.089303 2023-02-19 Closed Customer 1043 818352.5765148510 +983 t 25 247523 34.381756 0.5647867983209451 Product description 983 2023-10-31 14:03:01.089303 2024-02-21 Processing Customer 983 176249.9651981420 +1000 t 12 681164 42.52934 0.6174932396548058 Product description 1000 2023-09-17 14:03:01.089303 2024-08-19 Closed Customer 1000 676023.3747337700 +1052 t 33 639785 31.394995 0.984165325197786 Product description 1052 2023-09-03 14:03:01.089303 2024-06-15 Closed Customer 1052 688396.1341504840 +986 f 81 936589 46.530922 0.36108613757239993 Product description 986 2022-08-23 14:03:01.089303 2024-10-05 Closed Customer 986 641097.9280581270 +1013 f 64 939856 73.4987 0.4617725395910739 Product description 1013 2023-09-11 14:03:01.089303 2023-07-11 Processing Customer 1013 613149.2522991980 +1053 t 13 79299 90.711205 0.6904388567559039 Product description 1053 2022-08-07 14:03:01.089303 2024-05-05 Closed Customer 1053 157370.5558651390 +991 t 41 429419 2.4904964 0.34376932616802236 Product description 991 2021-10-10 14:03:01.089303 2023-12-08 Processing Customer 991 663384.6695120730 +1015 f 12 696675 38.90465 0.8663757341779359 Product description 1015 2023-08-21 14:03:01.089303 2025-09-24 Processing Customer 1015 597891.4328760930 +1055 f 92 604996 71.28055 0.5818309408092475 Product description 1055 2023-04-06 14:03:01.089303 2025-02-15 Processing Customer 1055 261868.9300865250 +997 f 39 150757 83.85997 0.9790166414308317 Product description 997 2022-02-14 14:03:01.089303 2023-03-03 Processing Customer 997 758329.1351752700 +1017 f 55 461199 1.2558497 0.10129928509262953 Product description 1017 2023-03-05 14:03:01.089303 2025-10-22 Closed Customer 1017 618399.9909153680 +1058 f 11 287342 54.226257 0.9721643500504911 Product description 1058 2024-06-02 14:03:01.089303 2024-10-29 Closed Customer 1058 462911.8998830640 +1001 f 75 512929 76.30811 0.0986855372838491 Product description 1001 2022-10-05 14:03:01.089303 2023-10-27 Closed Customer 1001 832282.5457312360 +1019 t 48 410437 51.672604 0.7614060696577667 Product description 1019 2023-11-12 14:03:01.089303 2023-09-02 Processing Customer 1019 882168.3419873200 +1060 f 88 558048 74.673965 0.9604096071985353 Product description 1060 2023-03-02 14:03:01.089303 2025-08-08 Closed Customer 1060 305435.1059213650 +1003 t 29 879948 96.44032 0.4517859598667968 Product description 1003 2024-04-25 14:03:01.089303 2025-02-20 Closed Customer 1003 192137.4559163200 +1022 f 68 612043 99.74465 0.6557405278233048 Product description 1022 2022-12-12 14:03:01.089303 2023-01-08 Processing Customer 1022 766088.5494716790 +1062 f 32 589243 77.15631 0.3884281568629291 Product description 1062 2021-09-21 14:03:01.089303 2023-02-10 Processing Customer 1062 161743.4091791200 +1006 f 2 724316 57.122498 0.5080486339207866 Product description 1006 2023-03-01 14:03:01.089303 2024-07-07 Processing Customer 1006 983612.7117481690 +1024 f 78 647081 36.973103 0.4554266584368776 Product description 1024 2022-05-30 14:03:01.089303 2024-05-27 Closed Customer 1024 555773.1758746730 +1069 f 77 804222 76.529724 0.725357529003098 Product description 1069 2023-09-25 14:03:01.089303 2024-01-16 Closed Customer 1069 397400.6182751740 +1008 t 19 800016 82.06653 0.10890870723397938 Product description 1008 2022-09-13 14:03:01.089303 2025-03-26 Closed Customer 1008 479494.7257917630 +1027 t 26 898518 55.481003 0.00780225802636636 Product description 1027 2023-03-06 14:03:01.089303 2024-07-04 Closed Customer 1027 417386.1634767950 +1070 t 61 934098 40.065285 0.016777341407959057 Product description 1070 2022-11-02 14:03:01.089303 2023-08-12 Closed Customer 1070 870368.8967990180 +1009 f 8 473561 88.593056 0.6431128507998167 Product description 1009 2022-06-22 14:03:01.089303 2025-09-28 Closed Customer 1009 496980.9315075830 +1031 t 57 543287 19.303905 0.5140963498773488 Product description 1031 2023-11-16 14:03:01.089303 2023-02-12 Closed Customer 1031 868144.7914738920 +1072 t 22 199043 16.857792 0.5033342672479435 Product description 1072 2022-03-21 14:03:01.089303 2023-09-10 Closed Customer 1072 894582.6316099250 +1011 f 58 973957 84.08604 0.41141350051329084 Product description 1011 2022-10-16 14:03:01.089303 2024-11-06 Processing Customer 1011 806946.1407072360 +1035 t 83 860580 68.26999 0.36326685806157144 Product description 1035 2023-10-30 14:03:01.089303 2023-06-12 Closed Customer 1035 555795.8854335010 +1078 f 21 725420 46.87445 0.406062206491967 Product description 1078 2024-07-12 14:03:01.089303 2024-09-05 Closed Customer 1078 692207.9046224600 +1016 t 64 845740 35.776783 0.47510361493711883 Product description 1016 2023-10-24 14:03:01.089303 2024-11-18 Closed Customer 1016 439129.3986072250 +1036 f 30 363982 50.97878 0.6509256011617452 Product description 1036 2023-05-13 14:03:01.089303 2023-04-22 Closed Customer 1036 238052.1647014400 +1085 f 54 673607 99.678024 0.12099250119438665 Product description 1085 2023-09-16 14:03:01.089303 2023-10-09 Processing Customer 1085 192656.7439326910 +1020 t 9 356719 57.129604 0.9987918439266821 Product description 1020 2022-07-04 14:03:01.089303 2023-04-27 Cancelled Customer 1020 448076.9486597040 +1042 t 85 674927 53.007572 0.9459835259131566 Product description 1042 2021-09-11 14:03:01.089303 2024-12-28 Closed Customer 1042 744724.5467556800 +1086 t 98 362345 64.79133 0.31209399012516315 Product description 1086 2024-05-08 14:03:01.089303 2023-06-14 Closed Customer 1086 465807.8480732650 +1023 f 99 335714 23.738024 0.4884207084692598 Product description 1023 2024-03-18 14:03:01.089303 2023-05-09 Closed Customer 1023 152674.5258778350 +1044 t 42 392711 97.27194 0.7416899579400251 Product description 1044 2022-08-09 14:03:01.089303 2025-07-19 Closed Customer 1044 136768.7362830980 +1088 f 78 467832 34.763412 0.7545705890560228 Product description 1088 2022-08-31 14:03:01.089303 2023-03-06 Closed Customer 1088 629058.9277747110 +1026 f 29 878057 3.7093 0.665129894302158 Product description 1026 2024-02-17 14:03:01.089303 2023-10-03 Processing Customer 1026 536668.9168004650 +1045 t 70 7937 73.30771 0.3625769791324345 Product description 1045 2023-07-27 14:03:01.089303 2023-02-10 Cancelled Customer 1045 173274.1882325610 +1090 f 79 816840 74.258575 0.46776324083039356 Product description 1090 2023-04-06 14:03:01.089303 2025-09-25 Closed Customer 1090 271163.4206990650 +1029 t 57 22064 16.477215 0.8128865290405507 Product description 1029 2024-01-17 14:03:01.089303 2023-03-15 Processing Customer 1029 18206.7416633984 +1046 f 84 745305 20.298254 0.40514424281973405 Product description 1046 2023-11-30 14:03:01.089303 2023-05-05 Closed Customer 1046 737090.7676209700 +1092 f 18 294826 6.5060916 0.3403854026338067 Product description 1092 2024-02-08 14:03:01.089303 2023-11-25 Closed Customer 1092 798606.9146108900 +1030 f 94 125182 61.527206 0.9265909039084228 Product description 1030 2023-05-04 14:03:01.089303 2025-08-12 Closed Customer 1030 461827.9526845440 +1047 f 81 749925 13.030643 0.3168736656516238 Product description 1047 2023-11-21 14:03:01.089303 2024-11-08 Closed Customer 1047 510572.9001375960 +1093 t 98 588372 47.571735 0.8950110396936282 Product description 1093 2023-01-01 14:03:01.089303 2024-02-01 Processing Customer 1093 313034.2593682620 +1032 t 96 739772 44.28536 0.4831110841058255 Product description 1032 2021-09-10 14:03:01.089303 2025-05-09 Closed Customer 1032 737904.1842377990 +1048 f 47 153498 59.605522 0.8483130041490234 Product description 1048 2024-02-10 14:03:01.089303 2023-11-11 Processing Customer 1048 732800.3672234190 +1094 f 22 836740 33.68453 0.7446702314787572 Product description 1094 2022-10-30 14:03:01.089303 2024-08-27 Closed Customer 1094 698692.3048394860 +1034 f 39 242379 36.940292 0.6251387054200457 Product description 1034 2021-09-12 14:03:01.089303 2024-12-02 Processing Customer 1034 990757.4424173330 +1049 f 15 458484 31.866728 0.5252745907962257 Product description 1049 2021-09-07 14:03:01.089303 2024-01-03 Processing Customer 1049 367797.1228956310 +1095 t 44 72316 15.881172 0.9014250284609346 Product description 1095 2024-07-10 14:03:01.089303 2024-12-09 Processing Customer 1095 495819.1376776250 +1038 f 2 589350 17.369484 0.7208124109077652 Product description 1038 2023-12-05 14:03:01.089303 2023-10-20 Processing Customer 1038 813388.0115396790 +1050 f 86 535693 52.575848 0.68894574320014 Product description 1050 2022-02-19 14:03:01.089303 2024-12-10 Processing Customer 1050 862483.2125333340 +1096 f 17 689046 79.33784 0.8144058297786998 Product description 1096 2023-08-24 14:03:01.089303 2024-11-10 Processing Customer 1096 73794.6183030722 +1039 t 42 378739 61.997654 0.1107770498354661 Product description 1039 2022-02-28 14:03:01.089303 2024-12-17 Closed Customer 1039 358969.1306156480 +1051 t 100 345059 66.151115 0.5727750963640084 Product description 1051 2021-12-25 14:03:01.089303 2024-02-18 Closed Customer 1051 8030.0087067897 +1100 t 1 60272 56.860065 0.2186281075277634 Product description 1100 2021-12-26 14:03:01.089303 2025-06-12 Processing Customer 1100 620195.1321658580 +1040 f 48 572597 67.63929 0.004817450004434676 Product description 1040 2021-08-18 14:03:01.089303 2023-09-02 Closed Customer 1040 53788.5649838969 +1057 f 39 529637 20.475742 0.33283148335837964 Product description 1057 2023-04-15 14:03:01.089303 2023-06-12 Processing Customer 1057 923623.6323936990 +1103 t 60 666121 77.78879 0.6729534762845972 Product description 1103 2024-03-16 14:03:01.089303 2024-01-24 Closed Customer 1103 38377.1245994105 +1054 f 64 849797 3.6330638 0.0005258357075099696 Product description 1054 2022-01-25 14:03:01.089303 2025-09-03 Processing Customer 1054 776898.0485415110 +1063 t 22 597752 22.226507 0.4531088470130378 Product description 1063 2023-06-17 14:03:01.089303 2023-04-10 Cancelled Customer 1063 815252.8958282480 +1106 t 52 244864 79.719246 0.19495374798863452 Product description 1106 2022-03-19 14:03:01.089303 2024-10-26 Closed Customer 1106 344121.1055866910 +1056 t 60 125465 97.23805 0.26563406279739965 Product description 1056 2023-01-12 14:03:01.089303 2025-02-05 Closed Customer 1056 449383.9220750790 +1064 t 23 642612 99.01196 0.9095225743447841 Product description 1064 2023-04-02 14:03:01.089303 2023-04-02 Processing Customer 1064 795503.5709880500 +1111 t 44 249578 41.58957 0.2676437967424121 Product description 1111 2022-01-25 14:03:01.089303 2024-07-25 Processing Customer 1111 238761.9206047480 +1059 f 72 606587 20.207928 0.009847305875016588 Product description 1059 2023-02-24 14:03:01.089303 2024-10-31 Closed Customer 1059 304844.2403173370 +1065 t 92 452338 30.466166 0.20950564429487883 Product description 1065 2021-09-11 14:03:01.089303 2023-07-30 Closed Customer 1065 270043.8925285020 +1114 t 42 791955 92.37535 0.21619718051883297 Product description 1114 2021-11-11 14:03:01.089303 2024-03-24 Closed Customer 1114 427319.2863094800 +1061 t 36 383883 25.173813 0.14146359140012166 Product description 1061 2021-11-12 14:03:01.089303 2025-10-17 Processing Customer 1061 996968.9536531730 +1066 t 50 451410 72.03445 0.4616230802371817 Product description 1066 2024-06-09 14:03:01.089303 2024-09-05 Cancelled Customer 1066 466966.1883621710 +1115 t 38 598164 34.344532 0.8313556219780835 Product description 1115 2024-06-25 14:03:01.089303 2024-08-21 Processing Customer 1115 699793.6672120810 +1068 f 75 351248 5.130238 0.2749357611212311 Product description 1068 2024-07-13 14:03:01.089303 2023-05-11 Closed Customer 1068 224055.8185488060 +1067 t 51 821768 46.86779 0.01591708719198337 Product description 1067 2024-01-14 14:03:01.089303 2023-02-19 Closed Customer 1067 521235.0631602620 +1116 t 12 161071 75.88832 0.7136603432444844 Product description 1116 2023-09-28 14:03:01.089303 2023-08-07 Closed Customer 1116 526994.5053860110 +1075 f 18 70144 88.025925 0.26030912175056287 Product description 1075 2022-08-12 14:03:01.089303 2025-01-25 Closed Customer 1075 567013.4509107710 +1071 f 34 302788 99.96111 0.5743994409676354 Product description 1071 2021-08-28 14:03:01.089303 2023-02-06 Closed Customer 1071 128507.1353737730 +1121 t 86 593702 74.60474 0.2750118854960917 Product description 1121 2022-02-20 14:03:01.089303 2025-04-03 Processing Customer 1121 88057.9707732814 +1076 t 90 159565 36.829514 0.6711620142849632 Product description 1076 2021-10-13 14:03:01.089303 2023-01-09 Closed Customer 1076 441561.7344414930 +1073 t 36 493326 60.866 0.8388940037923938 Product description 1073 2024-01-26 14:03:01.089303 2023-10-20 Closed Customer 1073 29762.3641473308 +1122 t 62 870018 33.79703 0.049559453423398736 Product description 1122 2023-11-03 14:03:01.089303 2025-12-20 Processing Customer 1122 31960.5954491600 +1077 t 40 376562 66.00355 0.9477596902176337 Product description 1077 2023-11-10 14:03:01.089303 2024-08-10 Closed Customer 1077 120597.7274098520 +1074 t 87 378544 43.30839 0.6567691516633793 Product description 1074 2022-01-24 14:03:01.089303 2023-10-25 Closed Customer 1074 572910.1517946230 +1124 t 40 724079 14.006638 0.5994260646962246 Product description 1124 2022-08-10 14:03:01.089303 2023-10-02 Processing Customer 1124 422816.9096265650 +1079 t 98 263846 30.219503 0.8641840537118419 Product description 1079 2021-09-30 14:03:01.089303 2023-07-04 Closed Customer 1079 758297.6145383210 +1080 f 69 693001 69.23752 0.8943708581263685 Product description 1080 2022-02-15 14:03:01.089303 2025-11-02 Closed Customer 1080 107957.8319742470 +1125 f 9 109986 25.28031 0.020551476206335906 Product description 1125 2021-11-26 14:03:01.089303 2024-04-04 Closed Customer 1125 351775.3708922660 +1082 t 82 692219 87.76231 0.0055636634530706885 Product description 1082 2023-05-27 14:03:01.089303 2025-01-31 Processing Customer 1082 249126.4609447580 +1081 t 31 636808 62.838818 0.40698505475868885 Product description 1081 2023-05-28 14:03:01.089303 2023-04-20 Processing Customer 1081 95786.6462984427 +1126 t 92 507168 91.27937 0.7977795020885523 Product description 1126 2024-03-30 14:03:01.089303 2025-11-30 Processing Customer 1126 556980.9748895870 +1084 f 18 176885 25.360096 0.3334893217005721 Product description 1084 2024-07-06 14:03:01.089303 2023-02-27 Closed Customer 1084 716058.1590271850 +1083 f 95 359734 39.29332 0.9936259205804454 Product description 1083 2021-12-17 14:03:01.089303 2023-11-17 Closed Customer 1083 594726.5913805490 +1128 t 72 398814 79.298775 0.668198660476861 Product description 1128 2023-05-31 14:03:01.089303 2024-12-28 Processing Customer 1128 346822.3092175120 +1087 f 61 324270 1.5956795 0.6890032333985339 Product description 1087 2022-08-26 14:03:01.089303 2023-08-08 Closed Customer 1087 154142.9817485990 +1098 f 16 519051 41.93393 0.2185048226704076 Product description 1098 2024-06-25 14:03:01.089303 2024-06-05 Closed Customer 1098 755073.8104116660 +1130 t 71 647874 48.47314 0.8370486696932531 Product description 1130 2024-01-31 14:03:01.089303 2023-07-09 Closed Customer 1130 827299.0299035460 +1089 t 36 432619 84.12236 0.34924195427293014 Product description 1089 2022-04-04 14:03:01.089303 2025-02-17 Closed Customer 1089 133893.9776715900 +1101 f 11 420593 51.96409 0.09528655680421494 Product description 1101 2023-05-22 14:03:01.089303 2023-11-25 Closed Customer 1101 581950.3942530700 +1132 f 35 516721 46.73796 0.9612927592777254 Product description 1132 2023-09-14 14:03:01.089303 2025-02-15 Closed Customer 1132 465026.3515373290 +1091 t 2 129425 17.476166 0.548729216672168 Product description 1091 2022-01-26 14:03:01.089303 2025-05-23 Closed Customer 1091 668548.2997218980 +1102 f 39 10824 91.19293 0.39007616596564887 Product description 1102 2024-03-07 14:03:01.089303 2025-01-18 Processing Customer 1102 743688.8749243380 +1134 f 3 155841 41.627632 0.6589086236498289 Product description 1134 2023-05-08 14:03:01.089303 2024-05-19 Closed Customer 1134 695086.1068250060 +1097 t 70 604987 32.86383 0.34371558567631055 Product description 1097 2022-10-12 14:03:01.089303 2023-05-12 Closed Customer 1097 716913.4213019530 +1107 t 28 375274 57.783424 0.9944379654547113 Product description 1107 2023-07-08 14:03:01.089303 2025-07-11 Closed Customer 1107 89265.5194947167 +1136 f 5 82861 5.34516 0.852891613122722 Product description 1136 2023-01-28 14:03:01.089303 2024-09-10 Cancelled Customer 1136 842235.5012617830 +1099 f 78 831696 24.805943 0.8531189425295729 Product description 1099 2022-08-15 14:03:01.089303 2024-03-20 Closed Customer 1099 682648.4565752300 +1109 t 28 142537 10.65664 0.5250274704749494 Product description 1109 2022-02-26 14:03:01.089303 2025-03-06 Closed Customer 1109 504421.4259409400 +1137 f 11 147543 39.9007 0.3403133163942691 Product description 1137 2022-12-01 14:03:01.089303 2025-03-05 Closed Customer 1137 334599.3759212080 +1104 f 88 807771 58.84499 0.545369207013966 Product description 1104 2024-02-23 14:03:01.089303 2025-01-05 Processing Customer 1104 341340.0119711700 +1110 f 34 147332 71.933586 0.8290250383515776 Product description 1110 2022-02-14 14:03:01.089303 2024-09-16 Closed Customer 1110 580781.6868254890 +1142 f 24 77777 41.287865 0.40762335780197034 Product description 1142 2023-09-07 14:03:01.089303 2024-03-18 Cancelled Customer 1142 815862.8995717580 +1105 f 13 662452 70.839935 0.21901276872108255 Product description 1105 2021-11-23 14:03:01.089303 2025-08-26 Closed Customer 1105 645311.8515216900 +1117 t 86 826780 22.54889 0.4996536436463366 Product description 1117 2023-08-17 14:03:01.089303 2025-07-05 Processing Customer 1117 411928.4065019360 +1143 t 3 846622 51.57105 0.14619211087521933 Product description 1143 2024-02-29 14:03:01.089303 2023-07-13 Processing Customer 1143 677280.9600374610 +1108 f 47 829634 68.58527 0.39946539579066 Product description 1108 2024-07-03 14:03:01.089303 2024-07-20 Closed Customer 1108 813527.5458253800 +1120 f 60 191362 25.144049 0.16950827482095931 Product description 1120 2022-05-08 14:03:01.089303 2024-03-02 Closed Customer 1120 449702.5729709210 +1144 t 88 669134 50.429432 0.9357412568206698 Product description 1144 2021-11-14 14:03:01.089303 2024-02-12 Processing Customer 1144 846988.2408881700 +1112 f 79 237400 61.068806 0.34112449235045617 Product description 1112 2023-07-14 14:03:01.089303 2023-09-06 Closed Customer 1112 506841.5839304730 +1123 f 8 560769 18.569555 0.22726181590752148 Product description 1123 2024-04-03 14:03:01.089303 2024-02-18 Closed Customer 1123 963368.9455759580 +1145 f 61 576778 67.03128 0.38159002899715233 Product description 1145 2022-01-16 14:03:01.089303 2025-11-30 Closed Customer 1145 868383.2570109150 +1113 f 10 315790 58.602726 0.7123573144602808 Product description 1113 2022-07-11 14:03:01.089303 2025-02-17 Processing Customer 1113 294986.9019693380 +1127 t 2 623241 33.13476 0.5122581500236585 Product description 1127 2022-12-13 14:03:01.089303 2024-11-27 Closed Customer 1127 110240.0677654170 +1148 f 51 449716 37.88292 0.9590989481057548 Product description 1148 2023-06-11 14:03:01.089303 2023-09-17 Processing Customer 1148 888857.8658599930 +1118 f 21 466682 77.21272 0.20339043577953575 Product description 1118 2022-02-19 14:03:01.089303 2023-04-13 Closed Customer 1118 228808.1456594360 +1129 f 41 895046 4.134289 0.20126603621163142 Product description 1129 2022-02-04 14:03:01.089303 2024-02-28 Processing Customer 1129 273010.2541229580 +1150 f 34 96502 75.57386 0.32979291513522924 Product description 1150 2022-08-30 14:03:01.089303 2024-10-05 Closed Customer 1150 438513.4396941450 +1119 t 70 756757 51.853535 0.6711285237670417 Product description 1119 2022-05-11 14:03:01.089303 2025-08-18 Processing Customer 1119 860995.1006155680 +1131 t 15 149903 25.992264 0.01611230898690863 Product description 1131 2021-08-19 14:03:01.089303 2024-06-16 Processing Customer 1131 679052.6950514680 +1155 t 46 690807 16.67091 0.05095014931813324 Product description 1155 2022-10-01 14:03:01.089303 2023-09-19 Closed Customer 1155 561196.9016714400 +1139 t 58 979189 33.007076 0.39952909821912996 Product description 1139 2022-09-01 14:03:01.089303 2025-08-01 Closed Customer 1139 558021.5421224390 +1133 t 70 377186 87.49597 0.15135562950635162 Product description 1133 2023-09-09 14:03:01.089303 2024-04-09 Cancelled Customer 1133 367694.3651762880 +1157 t 16 704404 41.36693 0.18937295690480482 Product description 1157 2022-02-03 14:03:01.089303 2025-08-19 Closed Customer 1157 586006.7072128710 +1140 t 23 412352 68.34617 0.7157281832832219 Product description 1140 2024-01-23 14:03:01.089303 2023-01-12 Closed Customer 1140 200827.2770975170 +1135 f 82 29169 66.466736 0.904545047047911 Product description 1135 2021-11-09 14:03:01.089303 2025-01-10 Cancelled Customer 1135 710518.8695216000 +1159 t 68 278691 91.54812 0.6743993495607938 Product description 1159 2022-01-01 14:03:01.089303 2024-08-07 Cancelled Customer 1159 504965.1958072940 +1146 f 71 496192 30.1004 0.5962607843983356 Product description 1146 2024-05-08 14:03:01.089303 2025-06-23 Processing Customer 1146 226150.6870164070 +1138 t 39 641253 53.59527 0.6847164703862951 Product description 1138 2024-01-21 14:03:01.089303 2025-01-08 Closed Customer 1138 232628.8485151760 +1160 f 82 684679 13.340455 0.061842899683444585 Product description 1160 2023-03-10 14:03:01.089303 2024-04-27 Processing Customer 1160 380783.0929472400 +1149 f 88 2700 35.32227 0.502298929563981 Product description 1149 2022-11-20 14:03:01.089303 2023-01-12 Closed Customer 1149 609990.0373991570 +1141 f 64 558985 20.466078 0.5330698110847258 Product description 1141 2022-12-04 14:03:01.089303 2024-08-17 Processing Customer 1141 779155.7779668990 +1162 f 28 728658 43.179104 0.31705295123424193 Product description 1162 2021-09-02 14:03:01.089303 2024-01-03 Closed Customer 1162 998788.1264808110 +1153 t 89 793930 83.88638 0.2927423651127121 Product description 1153 2022-05-02 14:03:01.089303 2023-11-13 Closed Customer 1153 750448.2635333930 +1147 f 60 832628 49.806767 0.8930476251242574 Product description 1147 2022-02-24 14:03:01.089303 2025-08-19 Closed Customer 1147 458357.3481217230 +1163 f 83 166247 26.880049 0.4930293483998618 Product description 1163 2024-02-05 14:03:01.089303 2025-08-01 Closed Customer 1163 338740.5240715250 +1166 f 76 995740 93.35823 0.984865944263607 Product description 1166 2022-05-24 14:03:01.089303 2025-08-20 Closed Customer 1166 709079.1982070360 +1151 f 86 824676 42.809032 0.2023207216512013 Product description 1151 2022-01-11 14:03:01.089303 2025-08-14 Closed Customer 1151 596164.8811661820 +1169 t 16 266992 18.121357 0.3990630311027523 Product description 1169 2024-05-04 14:03:01.089303 2025-12-30 Closed Customer 1169 396645.2031167690 +1168 t 52 96971 55.02234 0.8061891030161767 Product description 1168 2023-02-18 14:03:01.089303 2024-03-20 Closed Customer 1168 59962.7373146419 +1152 t 100 426337 85.900696 0.8258680505600786 Product description 1152 2021-08-12 14:03:01.089303 2024-07-27 Closed Customer 1152 570307.4784509990 +1171 f 81 179059 58.075146 0.14552682195686728 Product description 1171 2021-08-16 14:03:01.089303 2024-01-25 Processing Customer 1171 634670.3321591180 +1170 f 69 460999 19.84483 0.564388762887635 Product description 1170 2024-06-13 14:03:01.089303 2023-06-09 Processing Customer 1170 743200.2526254990 +1154 t 85 525786 67.03471 0.8455387081888084 Product description 1154 2024-05-01 14:03:01.089303 2023-05-10 Processing Customer 1154 56237.3999715575 +1173 t 77 788768 33.973034 0.40953250069699365 Product description 1173 2021-09-13 14:03:01.089303 2024-05-31 Processing Customer 1173 314655.8997313280 +1172 t 83 706642 10.125042 0.42939110324219243 Product description 1172 2024-05-22 14:03:01.089303 2024-10-09 Processing Customer 1172 818992.4058664740 +1156 f 68 688661 86.69837 0.5167875421397135 Product description 1156 2022-12-03 14:03:01.089303 2025-07-25 Closed Customer 1156 918349.3057087730 +1175 f 29 588927 12.3316145 0.9020647517395481 Product description 1175 2024-07-06 14:03:01.089303 2024-05-15 Closed Customer 1175 135883.1445627260 +1180 f 66 731604 3.4578898 0.6814425420916059 Product description 1180 2022-03-15 14:03:01.089303 2025-05-22 Processing Customer 1180 566565.1041118740 +1158 f 70 925166 22.614382 0.2107995559038578 Product description 1158 2022-01-02 14:03:01.089303 2023-07-24 Closed Customer 1158 242673.0903931190 +1176 t 79 785257 4.735395 0.57199527563834 Product description 1176 2023-12-29 14:03:01.089303 2023-07-27 Processing Customer 1176 680058.8552047130 +1187 f 94 419935 3.3723588 0.4345192348167721 Product description 1187 2021-08-11 14:03:01.089303 2023-10-22 Closed Customer 1187 456960.8381519930 +1161 f 77 421621 16.127436 0.297168642912343 Product description 1161 2024-01-18 14:03:01.089303 2025-10-26 Closed Customer 1161 256453.7808424490 +1177 f 1 740840 90.25873 0.17172111650269883 Product description 1177 2024-03-07 14:03:01.089303 2025-07-05 Closed Customer 1177 890424.9085460950 +1190 f 3 900511 53.163055 0.5491881120798077 Product description 1190 2023-03-28 14:03:01.089303 2025-05-07 Closed Customer 1190 148327.7383856180 +1164 t 64 849940 25.213755 0.7366381568768468 Product description 1164 2023-11-07 14:03:01.089303 2025-01-22 Processing Customer 1164 831015.6234572540 +1186 t 7 420064 84.251884 0.6948745380134902 Product description 1186 2023-06-13 14:03:01.089303 2023-05-24 Processing Customer 1186 26082.8282194510 +1191 f 83 378004 98.480125 0.6535121278590275 Product description 1191 2022-11-29 14:03:01.089303 2025-01-01 Processing Customer 1191 11095.3590979861 +1165 t 91 452967 99.15272 0.5069198490672768 Product description 1165 2022-01-13 14:03:01.089303 2024-04-13 Closed Customer 1165 782215.3622530270 +1192 t 92 795297 99.072174 0.6245329934077155 Product description 1192 2022-04-10 14:03:01.089303 2023-12-07 Closed Customer 1192 784740.7926204970 +1196 f 44 493184 86.53789 0.5901305032061721 Product description 1196 2022-02-01 14:03:01.089303 2024-01-18 Closed Customer 1196 500483.6185439960 +1167 f 21 743862 22.836452 0.7622906781089931 Product description 1167 2023-07-24 14:03:01.089303 2024-02-25 Processing Customer 1167 924917.9756936670 +1193 f 82 140208 37.859493 0.1706182911426133 Product description 1193 2022-08-29 14:03:01.089303 2025-02-05 Closed Customer 1193 469107.5058906550 +1198 f 46 709216 62.084072 0.7533248957544423 Product description 1198 2022-05-24 14:03:01.089303 2024-03-07 Processing Customer 1198 243121.9293130550 +1174 t 69 442586 91.18072 0.4089659481965704 Product description 1174 2024-04-14 14:03:01.089303 2025-06-16 Closed Customer 1174 697115.2816507100 +1194 f 15 863315 38.36083 0.87171591864983 Product description 1194 2022-07-26 14:03:01.089303 2023-05-08 Closed Customer 1194 765068.2697669420 +1199 f 6 418645 96.09184 0.7223990648345797 Product description 1199 2022-12-26 14:03:01.089303 2023-03-01 Closed Customer 1199 632396.7548765810 +1178 f 15 494128 82.14249 0.38568432070665537 Product description 1178 2021-11-08 14:03:01.089303 2024-02-13 Processing Customer 1178 241280.8009084340 +1202 t 57 804263 81.671875 0.1394146187513705 Product description 1202 2023-04-08 14:03:01.089303 2023-07-28 Closed Customer 1202 128262.4529078260 +1200 f 74 24900 49.56552 0.689909373331755 Product description 1200 2021-08-06 14:03:01.089303 2025-05-27 Processing Customer 1200 479627.4229008690 +1179 f 58 819436 46.165615 0.44623545038162504 Product description 1179 2022-05-24 14:03:01.089303 2025-04-18 Closed Customer 1179 909106.7690484350 +1203 t 5 508648 76.853035 0.722256303662622 Product description 1203 2023-09-08 14:03:01.089303 2025-10-22 Closed Customer 1203 64022.1377473580 +1201 t 3 555713 52.97986 0.87347910237715 Product description 1201 2021-09-30 14:03:01.089303 2023-06-29 Closed Customer 1201 488023.6804119140 +1181 f 86 534235 51.140625 0.17860369585366342 Product description 1181 2024-01-28 14:03:01.089303 2024-10-18 Processing Customer 1181 290928.0978946140 +1204 f 71 98760 71.151726 0.6021834659448864 Product description 1204 2023-12-21 14:03:01.089303 2024-08-15 Closed Customer 1204 37563.8124705162 +1205 f 67 77327 62.758446 0.7041177140762862 Product description 1205 2022-07-08 14:03:01.089303 2024-08-17 Closed Customer 1205 951885.4783716010 +1182 t 97 562363 40.629204 0.4000070558446147 Product description 1182 2023-11-09 14:03:01.089303 2023-08-18 Processing Customer 1182 306724.5550848410 +1207 t 61 764582 91.356224 0.27117194512307563 Product description 1207 2023-10-18 14:03:01.089303 2024-08-21 Closed Customer 1207 157712.5581239900 +1211 t 1 523658 47.010708 0.9316804576966753 Product description 1211 2024-01-31 14:03:01.089303 2024-01-14 Closed Customer 1211 783089.0185519050 +1183 t 84 595248 41.686314 0.670843977254787 Product description 1183 2022-04-04 14:03:01.089303 2023-07-29 Closed Customer 1183 733833.6647572630 +1209 f 39 774957 95.312584 0.021619670758692422 Product description 1209 2021-11-24 14:03:01.089303 2025-02-20 Closed Customer 1209 286940.9642943380 +1215 t 71 805397 96.01808 0.2925339640707527 Product description 1215 2023-01-30 14:03:01.089303 2025-05-04 Closed Customer 1215 357021.3518049950 +1184 f 2 688390 62.477154 0.44365684045441256 Product description 1184 2024-01-21 14:03:01.089303 2025-12-16 Processing Customer 1184 768604.9593467320 +1210 f 79 934571 71.98196 0.8736439006230263 Product description 1210 2021-12-10 14:03:01.089303 2023-01-21 Processing Customer 1210 99639.4478035683 +1223 t 29 399501 34.93194 0.9939629612331835 Product description 1223 2022-12-08 14:03:01.089303 2024-01-22 Processing Customer 1223 395372.0227530940 +1185 t 36 459604 75.64467 0.7683844089230227 Product description 1185 2023-08-24 14:03:01.089303 2025-10-16 Processing Customer 1185 222040.4010863960 +1212 f 20 612777 32.701683 0.5625993590948717 Product description 1212 2023-07-24 14:03:01.089303 2024-05-01 Processing Customer 1212 180785.7709892100 +1224 t 62 446186 58.384064 0.9139245401690594 Product description 1224 2022-05-03 14:03:01.089303 2025-05-18 Processing Customer 1224 38756.1001001373 +1188 t 33 124518 2.1958945 0.20519064433176837 Product description 1188 2023-02-10 14:03:01.089303 2024-09-02 Closed Customer 1188 539713.9146208330 +1213 t 30 631367 32.641212 0.18582898942166892 Product description 1213 2023-10-22 14:03:01.089303 2025-07-23 Closed Customer 1213 788071.7974012730 +1229 t 3 351417 38.227398 0.9644975037946928 Product description 1229 2023-06-25 14:03:01.089303 2023-06-23 Closed Customer 1229 90051.4625986233 +1189 f 19 989320 76.829 0.22018926402908434 Product description 1189 2024-06-11 14:03:01.089303 2025-05-13 Closed Customer 1189 654899.0467992940 +1214 t 5 816857 24.571098 0.09914148504108411 Product description 1214 2023-02-02 14:03:01.089303 2025-07-04 Closed Customer 1214 418816.8646683510 +1230 t 92 267542 90.913055 0.4855661973792671 Product description 1230 2023-10-21 14:03:01.089303 2023-03-13 Closed Customer 1230 781097.5278599060 +1195 t 98 665407 53.909428 0.19000233165981584 Product description 1195 2022-03-01 14:03:01.089303 2025-11-18 Processing Customer 1195 314507.4315456780 +1216 t 81 169400 33.94987 0.5764112316488799 Product description 1216 2022-06-21 14:03:01.089303 2025-07-18 Processing Customer 1216 429312.7819793060 +1232 f 77 473314 92.50022 0.7985949244385502 Product description 1232 2023-08-16 14:03:01.089303 2023-08-03 Closed Customer 1232 205016.5882708370 +1197 f 72 645258 6.8413944 0.9302997775334312 Product description 1197 2023-01-20 14:03:01.089303 2023-05-07 Closed Customer 1197 64194.9935927144 +1217 f 91 596321 63.97363 0.599846065415857 Product description 1217 2023-03-27 14:03:01.089303 2023-02-27 Processing Customer 1217 560067.2032344320 +1235 f 11 931616 10.878283 0.5817918880588842 Product description 1235 2024-04-21 14:03:01.089303 2025-04-17 Processing Customer 1235 238836.2067022240 +1206 t 36 901999 66.83532 0.722263464073567 Product description 1206 2023-06-19 14:03:01.089303 2024-12-01 Closed Customer 1206 779606.3384567020 +1218 f 34 111658 91.28257 0.7674129721904315 Product description 1218 2023-04-07 14:03:01.089303 2023-06-28 Closed Customer 1218 468959.9342559060 +1236 f 95 34725 56.157513 0.4840783007623237 Product description 1236 2024-07-04 14:03:01.089303 2024-11-08 Closed Customer 1236 752598.6888816330 +1208 t 52 292125 96.97674 0.503177724979377 Product description 1208 2023-01-01 14:03:01.089303 2025-10-19 Processing Customer 1208 103357.9340959460 +1219 t 4 66069 26.86412 0.5334433343854776 Product description 1219 2022-07-05 14:03:01.089303 2024-10-02 Closed Customer 1219 530776.4229084530 +1242 t 51 200645 49.940147 0.4089487058088359 Product description 1242 2021-09-26 14:03:01.089303 2025-06-21 Closed Customer 1242 589286.0830656090 +1220 t 44 928115 88.6897 0.6550438081758791 Product description 1220 2022-11-06 14:03:01.089303 2023-06-18 Closed Customer 1220 149393.6998211610 +1227 t 78 427668 25.726002 0.9986575597537559 Product description 1227 2024-01-22 14:03:01.089303 2024-11-21 Cancelled Customer 1227 390509.6157197820 +1244 t 76 47949 72.59688 0.985127871722046 Product description 1244 2023-04-20 14:03:01.089303 2025-04-08 Closed Customer 1244 691850.0318462580 +1221 f 30 667443 25.971476 0.4781820046402707 Product description 1221 2022-01-23 14:03:01.089303 2025-03-05 Closed Customer 1221 945610.8874972880 +1228 t 75 609184 93.93074 0.42899741170120365 Product description 1228 2022-07-12 14:03:01.089303 2025-03-23 Processing Customer 1228 737772.8688833510 +1252 f 85 78831 98.40005 0.22647068239191626 Product description 1252 2023-01-01 14:03:01.089303 2025-08-27 Closed Customer 1252 3232.2923831671 +1222 t 1 766999 24.149601 0.7071302923074576 Product description 1222 2023-08-04 14:03:01.089303 2025-04-08 Closed Customer 1222 495403.1860442430 +1231 t 24 624461 92.62799 0.24896544978745538 Product description 1231 2024-06-16 14:03:01.089303 2024-12-31 Closed Customer 1231 388323.8898869230 +1254 f 23 537249 91.268005 0.13603703330068484 Product description 1254 2022-02-05 14:03:01.089303 2025-06-10 Processing Customer 1254 819958.7929959620 +1225 t 29 869352 10.462607 0.4616116126844467 Product description 1225 2022-02-28 14:03:01.089303 2025-02-13 Closed Customer 1225 989089.1211294320 +1234 t 29 910056 13.101787 0.2508094564885681 Product description 1234 2022-02-01 14:03:01.089303 2025-01-19 Closed Customer 1234 508732.5088185640 +1255 t 83 998198 79.38666 0.683440379097231 Product description 1255 2021-10-14 14:03:01.089303 2024-06-22 Cancelled Customer 1255 966342.0460853980 +1226 f 2 421926 38.998035 0.4056248511847862 Product description 1226 2021-09-03 14:03:01.089303 2024-10-19 Closed Customer 1226 245748.9000937580 +1238 t 69 852100 85.959366 0.2659883283054043 Product description 1238 2023-10-18 14:03:01.089303 2024-09-12 Closed Customer 1238 188287.9426564340 +1260 t 92 376198 34.94909 0.6550411416712976 Product description 1260 2021-10-26 14:03:01.089303 2025-09-25 Processing Customer 1260 674466.2761134100 +1233 f 100 241188 82.762024 0.9005645936485926 Product description 1233 2021-11-19 14:03:01.089303 2024-07-21 Closed Customer 1233 139247.2377433550 +1239 f 24 644145 74.75778 0.2453703521766215 Product description 1239 2023-12-12 14:03:01.089303 2023-07-21 Closed Customer 1239 72144.2362498088 +1262 t 76 610417 1.7527922 0.07732813444870601 Product description 1262 2023-12-22 14:03:01.089303 2025-10-17 Cancelled Customer 1262 819757.3573623630 +1237 t 54 249237 77.27476 0.26045436191245486 Product description 1237 2023-06-07 14:03:01.089303 2025-02-08 Closed Customer 1237 888565.8248380680 +1246 t 85 288829 46.6637 0.6652175587818832 Product description 1246 2022-10-30 14:03:01.089303 2025-12-12 Closed Customer 1246 496287.9749172410 +1263 t 1 321951 77.57185 0.3392861650829353 Product description 1263 2021-10-15 14:03:01.089303 2025-06-10 Closed Customer 1263 264892.8913148230 +1240 t 64 269283 20.450338 0.8012007137933885 Product description 1240 2022-12-29 14:03:01.089303 2023-08-11 Processing Customer 1240 185000.7804757400 +1248 f 74 924002 65.225365 0.20828051826926242 Product description 1248 2021-10-06 14:03:01.089303 2025-07-05 Closed Customer 1248 217807.2854575920 +1265 f 44 368000 54.672962 0.4433463290167232 Product description 1265 2024-04-03 14:03:01.089303 2025-09-06 Processing Customer 1265 361370.7251551400 +1241 t 9 623998 10.6695795 0.24823889367518248 Product description 1241 2023-02-22 14:03:01.089303 2024-09-10 Processing Customer 1241 631024.2017204070 +1249 t 19 235860 74.23174 0.44819406193223443 Product description 1249 2022-03-20 14:03:01.089303 2025-09-11 Closed Customer 1249 244279.6186699530 +1268 t 36 28125 70.547905 0.5025619921616276 Product description 1268 2022-07-07 14:03:01.089303 2023-04-14 Processing Customer 1268 739597.7763204020 +1243 f 38 498865 1.1692871 0.9047385553547223 Product description 1243 2023-10-07 14:03:01.089303 2023-02-09 Processing Customer 1243 327868.6843215510 +1250 f 9 810123 3.867931 0.9061188895512657 Product description 1250 2023-05-07 14:03:01.089303 2023-11-28 Closed Customer 1250 568671.5884198430 +1270 t 68 85883 99.8813 0.7976175780182366 Product description 1270 2023-11-14 14:03:01.089303 2024-11-01 Closed Customer 1270 10384.1238008044 +1245 f 82 154048 0.37276834 0.7324830786199108 Product description 1245 2023-11-25 14:03:01.089303 2023-12-18 Closed Customer 1245 973614.8489025570 +1251 t 35 395371 52.415867 0.5154135174162562 Product description 1251 2024-01-25 14:03:01.089303 2023-02-04 Processing Customer 1251 86077.9650401504 +1272 f 42 876637 44.407665 0.2190647917641364 Product description 1272 2021-10-19 14:03:01.089303 2024-06-28 Closed Customer 1272 702910.6345467040 +1247 t 71 961549 90.9714 0.9681732777994903 Product description 1247 2022-06-05 14:03:01.089303 2025-08-28 Processing Customer 1247 763871.3367613190 +1253 f 51 590271 14.92814 0.5522853817348476 Product description 1253 2023-12-19 14:03:01.089303 2024-04-08 Closed Customer 1253 48924.3462445579 +1273 t 99 672991 30.161871 0.660856662107765 Product description 1273 2021-09-20 14:03:01.089303 2025-04-15 Processing Customer 1273 481156.7090280990 +1258 t 87 674280 48.298256 0.1543498755496735 Product description 1258 2022-10-31 14:03:01.089303 2025-02-08 Closed Customer 1258 991864.7378017910 +1256 f 44 974562 62.256245 0.41307340775329493 Product description 1256 2024-02-02 14:03:01.089303 2024-12-07 Closed Customer 1256 364.6210287407 +1279 t 96 160919 47.778584 0.4359252613533151 Product description 1279 2024-07-15 14:03:01.089303 2023-08-26 Closed Customer 1279 962053.4023067290 +1266 t 42 412486 38.111374 0.01440225044694543 Product description 1266 2023-12-18 14:03:01.089303 2023-02-01 Processing Customer 1266 185197.4635617990 +1257 t 80 188667 39.3127 0.9781114069423893 Product description 1257 2024-01-25 14:03:01.089303 2024-09-22 Processing Customer 1257 220214.7499831390 +1280 t 81 699761 90.46966 0.8902286146941272 Product description 1280 2022-07-24 14:03:01.089303 2024-12-13 Closed Customer 1280 289255.3485441170 +1267 t 4 986908 31.493574 0.7685416535685228 Product description 1267 2021-10-05 14:03:01.089303 2025-10-14 Closed Customer 1267 661347.1335173390 +1259 f 92 890078 85.65561 0.9002608463340565 Product description 1259 2022-12-09 14:03:01.089303 2025-10-17 Closed Customer 1259 645416.5805371050 +1281 t 7 730596 29.636572 0.010938509479071712 Product description 1281 2023-01-22 14:03:01.089303 2024-08-12 Processing Customer 1281 397034.8970944210 +1269 t 81 527259 58.989513 0.01994994172475728 Product description 1269 2022-05-16 14:03:01.089303 2024-11-16 Processing Customer 1269 569908.0911690760 +1261 f 14 688794 86.36588 0.6538741068262226 Product description 1261 2023-04-12 14:03:01.089303 2025-07-28 Processing Customer 1261 149261.3366795120 +1283 f 94 680943 58.505558 0.8437493183307687 Product description 1283 2022-05-10 14:03:01.089303 2025-06-02 Processing Customer 1283 604690.6314011120 +1276 t 60 513324 17.92998 0.21287068224062367 Product description 1276 2023-04-05 14:03:01.089303 2024-10-28 Closed Customer 1276 106837.3294960740 +1264 f 14 981625 56.357677 0.8530885766903893 Product description 1264 2021-10-10 14:03:01.089303 2025-11-11 Closed Customer 1264 546726.2765035810 +1285 t 94 663935 84.95292 0.8061489816459861 Product description 1285 2021-08-13 14:03:01.089303 2024-06-30 Cancelled Customer 1285 680711.3707129670 +1278 f 11 605114 37.149677 0.19017366639340239 Product description 1278 2022-08-18 14:03:01.089303 2025-06-04 Closed Customer 1278 898549.0170448220 +1271 f 65 571849 36.269917 0.5383894303548971 Product description 1271 2023-08-10 14:03:01.089303 2025-05-09 Processing Customer 1271 173993.4794495890 +1286 f 5 703850 15.20533 0.7080655898933017 Product description 1286 2024-04-22 14:03:01.089303 2024-09-11 Closed Customer 1286 233614.8715766950 +1282 t 49 287447 28.825214 0.14439509065670464 Product description 1282 2021-08-09 14:03:01.089303 2025-03-26 Closed Customer 1282 945897.5324219380 +1274 f 35 289050 13.682048 0.6481143194909365 Product description 1274 2024-01-01 14:03:01.089303 2025-12-02 Cancelled Customer 1274 357964.1391862010 +1291 t 18 441939 65.8356 0.7532788922045057 Product description 1291 2022-09-01 14:03:01.089303 2023-05-29 Closed Customer 1291 611312.0070190340 +1287 t 36 778789 48.17204 0.0647158557932066 Product description 1287 2022-05-24 14:03:01.089303 2025-07-10 Processing Customer 1287 789971.1062593080 +1275 t 10 892767 86.95774 1.2309537925858649e-05 Product description 1275 2022-02-21 14:03:01.089303 2024-03-01 Processing Customer 1275 850294.4033750740 +1292 t 32 824196 15.378005 0.5890405280205968 Product description 1292 2023-10-25 14:03:01.089303 2024-12-04 Processing Customer 1292 351890.3179268480 +1288 f 75 788605 50.099907 0.6715974625373811 Product description 1288 2022-03-31 14:03:01.089303 2024-04-09 Closed Customer 1288 377341.8422296120 +1277 t 50 602446 96.79114 0.005667641623855246 Product description 1277 2021-08-24 14:03:01.089303 2024-11-11 Closed Customer 1277 491336.3418891170 +1295 f 96 654591 96.51163 0.17498064679139702 Product description 1295 2024-01-19 14:03:01.089303 2025-11-21 Closed Customer 1295 733856.5612226620 +1290 f 80 20443 6.675227 0.4236792400453133 Product description 1290 2023-06-24 14:03:01.089303 2023-07-16 Closed Customer 1290 126511.8891489080 +1284 f 42 114661 53.738506 0.7703161689307514 Product description 1284 2023-09-09 14:03:01.089303 2023-01-18 Processing Customer 1284 217539.4031285830 +1298 t 43 338376 78.037796 0.7745954980895604 Product description 1298 2021-12-25 14:03:01.089303 2025-09-20 Closed Customer 1298 817049.1526179870 +1293 t 71 113708 69.229256 0.9986867806454462 Product description 1293 2024-02-17 14:03:01.089303 2024-07-27 Processing Customer 1293 735348.5868402030 +1289 t 47 67234 72.968636 0.952961904842379 Product description 1289 2024-02-07 14:03:01.089303 2023-12-13 Closed Customer 1289 568063.1053821440 +1299 f 86 539721 48.53033 0.6718742091861571 Product description 1299 2021-10-09 14:03:01.089303 2025-07-12 Closed Customer 1299 237468.0457149160 +1300 f 96 651811 60.45752 0.6917965276710554 Product description 1300 2023-07-27 14:03:01.089303 2023-06-08 Closed Customer 1300 760698.9233712160 +1294 t 86 487169 33.179287 0.9902426311506254 Product description 1294 2021-08-25 14:03:01.089303 2023-03-14 Closed Customer 1294 199880.7204301160 +1301 t 29 913426 76.32496 0.2676171766971649 Product description 1301 2021-09-19 14:03:01.089303 2024-02-13 Closed Customer 1301 810200.8758295550 +1302 f 1 694435 72.15961 0.978030733828053 Product description 1302 2023-07-19 14:03:01.089303 2025-06-08 Processing Customer 1302 492991.5741952580 +1296 f 56 274059 66.23362 0.8873296215035928 Product description 1296 2021-10-29 14:03:01.089303 2023-08-05 Closed Customer 1296 747051.3465965850 +1304 f 23 112198 5.50126 0.4935027964468759 Product description 1304 2024-01-20 14:03:01.089303 2023-07-21 Cancelled Customer 1304 56672.2751348863 +1303 t 89 674422 30.378935 0.01862864978366119 Product description 1303 2023-05-24 14:03:01.089303 2023-08-03 Cancelled Customer 1303 323225.1674738610 +1297 t 72 686329 76.37738 0.40031210341408396 Product description 1297 2023-05-24 14:03:01.089303 2024-05-13 Closed Customer 1297 353052.9468273330 +1305 t 14 135436 36.75204 0.24226802257704705 Product description 1305 2023-04-07 14:03:01.089303 2024-05-09 Closed Customer 1305 950969.2960584390 +1309 t 45 943062 83.63437 0.3446245333975 Product description 1309 2024-05-30 14:03:01.089303 2023-08-31 Processing Customer 1309 77839.1729617915 +1307 f 65 568308 48.63842 0.9298072701913433 Product description 1307 2023-12-24 14:03:01.089303 2023-05-16 Closed Customer 1307 575281.6164125460 +1306 t 62 457163 45.845757 0.7563041154586365 Product description 1306 2023-08-17 14:03:01.089303 2025-02-21 Closed Customer 1306 999235.3620156390 +1312 t 38 394181 10.760844 0.8254422929531984 Product description 1312 2022-01-22 14:03:01.089303 2023-03-03 Processing Customer 1312 339393.5086227170 +1315 t 28 694418 6.303016 0.1610790451014914 Product description 1315 2023-10-05 14:03:01.089303 2025-10-26 Cancelled Customer 1315 263775.0063608770 +1308 f 75 997925 39.83915 0.0549455973280395 Product description 1308 2023-09-21 14:03:01.089303 2024-10-12 Processing Customer 1308 626680.6199461500 +1314 f 7 287531 59.50882 0.7065654545325586 Product description 1314 2024-04-04 14:03:01.089303 2023-10-17 Closed Customer 1314 318514.8067142090 +1316 t 78 314325 49.40674 0.2552651110541575 Product description 1316 2022-10-23 14:03:01.089303 2025-05-03 Processing Customer 1316 11192.0262961682 +1310 f 71 666972 69.6971 0.5912327217949986 Product description 1310 2022-08-25 14:03:01.089303 2023-02-20 Closed Customer 1310 631756.3180684690 +1324 t 19 172978 99.89855 0.86632294732199 Product description 1324 2022-02-21 14:03:01.089303 2025-12-19 Closed Customer 1324 558173.8366150940 +1317 f 21 528001 9.946383 0.8724764855891962 Product description 1317 2021-09-02 14:03:01.089303 2025-03-11 Closed Customer 1317 693956.0751423990 +1311 t 56 246846 24.390808 0.8177553787263996 Product description 1311 2024-01-01 14:03:01.089303 2025-10-08 Processing Customer 1311 256933.0319232610 +1326 t 60 223198 10.265028 0.1261455157214968 Product description 1326 2023-02-26 14:03:01.089303 2023-11-29 Processing Customer 1326 176173.9080770790 +1319 t 14 215623 20.237928 0.9440754221426744 Product description 1319 2022-05-28 14:03:01.089303 2025-05-25 Closed Customer 1319 575237.5315774110 +1313 t 52 625200 95.85 0.10846019096438297 Product description 1313 2021-08-18 14:03:01.089303 2023-12-28 Closed Customer 1313 541199.8567502110 +1328 f 8 684362 71.05224 0.460843482336287 Product description 1328 2021-12-07 14:03:01.089303 2025-07-07 Closed Customer 1328 696251.9568952780 +1320 t 40 581006 58.868416 0.769974369578371 Product description 1320 2023-03-05 14:03:01.089303 2023-08-21 Processing Customer 1320 536814.5732959460 +1318 f 77 540100 71.81366 0.4459075962077428 Product description 1318 2023-11-15 14:03:01.089303 2025-02-07 Closed Customer 1318 836246.0627452680 +1330 t 90 713375 24.661596 0.01969560800356618 Product description 1330 2023-05-26 14:03:01.089303 2024-03-15 Closed Customer 1330 382842.1881527260 +1321 f 9 123982 20.66914 0.46863585484560133 Product description 1321 2021-08-11 14:03:01.089303 2025-11-23 Closed Customer 1321 395087.5750445380 +1323 t 88 466515 14.154346 0.6508946077122211 Product description 1323 2022-12-02 14:03:01.089303 2023-04-29 Closed Customer 1323 991311.1882998610 +1333 f 2 635664 10.53052 0.12877790792445865 Product description 1333 2021-09-30 14:03:01.089303 2023-02-24 Closed Customer 1333 471237.6314773050 +1322 f 8 397267 92.453186 0.936691451431777 Product description 1322 2022-05-29 14:03:01.089303 2025-05-11 Closed Customer 1322 499080.6719901180 +1325 f 16 487630 51.721287 0.3594361236785737 Product description 1325 2022-01-10 14:03:01.089303 2025-06-25 Closed Customer 1325 663020.3422078220 +1335 f 71 953896 31.17758 0.4004610661293029 Product description 1335 2021-09-28 14:03:01.089303 2024-02-17 Processing Customer 1335 509190.0947809510 +1337 t 71 903589 94.905266 0.3207633983564051 Product description 1337 2022-08-25 14:03:01.089303 2023-09-29 Closed Customer 1337 855424.4824347810 +1327 f 68 559915 71.6776 0.139282063504357 Product description 1327 2022-09-19 14:03:01.089303 2024-09-19 Closed Customer 1327 141127.8144323380 +1339 t 66 832864 0.33484456 0.22653806629745077 Product description 1339 2023-11-21 14:03:01.089303 2024-06-26 Closed Customer 1339 151615.7606919780 +1341 f 50 90798 68.005165 0.9374249947018782 Product description 1341 2022-03-08 14:03:01.089303 2025-09-12 Closed Customer 1341 841875.5188900240 +1329 f 81 405261 5.27544 0.646936388453323 Product description 1329 2023-10-21 14:03:01.089303 2025-08-01 Processing Customer 1329 483174.4339544240 +1340 t 80 974372 67.98767 0.12470517602714182 Product description 1340 2023-02-27 14:03:01.089303 2024-11-07 Closed Customer 1340 870813.4428071940 +1342 f 100 9493 95.90813 0.032753201600272064 Product description 1342 2023-08-13 14:03:01.089303 2023-11-14 Processing Customer 1342 718567.5232545460 +1331 t 4 855502 46.7233 0.5771413483510663 Product description 1331 2023-12-28 14:03:01.089303 2025-10-11 Closed Customer 1331 424349.6114395810 +1344 t 52 156274 64.261955 0.012259241392271747 Product description 1344 2022-03-09 14:03:01.089303 2023-09-16 Closed Customer 1344 476965.5074816900 +1353 f 7 298572 2.5692596 0.8050720410517656 Product description 1353 2023-06-10 14:03:01.089303 2023-11-11 Closed Customer 1353 700550.4260550200 +1332 f 39 747267 23.015718 0.736727232413255 Product description 1332 2023-07-30 14:03:01.089303 2025-05-25 Closed Customer 1332 985812.6776932110 +1346 f 24 871053 20.513557 0.22488959956071852 Product description 1346 2022-01-08 14:03:01.089303 2024-09-04 Closed Customer 1346 290883.7334576230 +1355 f 66 17896 67.94507 0.1343311199572952 Product description 1355 2022-03-26 14:03:01.089303 2024-10-08 Closed Customer 1355 1065.4435110062 +1334 t 22 747714 33.759342 0.37895532896091666 Product description 1334 2022-11-01 14:03:01.089303 2025-10-20 Closed Customer 1334 458646.0762869820 +1350 t 74 434095 29.278166 0.17477860071389273 Product description 1350 2022-05-06 14:03:01.089303 2025-09-18 Processing Customer 1350 621491.8073735270 +1357 f 63 636070 17.305666 0.41449204653074645 Product description 1357 2022-09-09 14:03:01.089303 2023-08-11 Closed Customer 1357 145114.2013043560 +1336 t 4 453780 38.184643 0.38221682525601963 Product description 1336 2023-09-19 14:03:01.089303 2023-07-14 Processing Customer 1336 735603.8808180830 +1352 t 17 576583 33.562675 0.3817364975369415 Product description 1352 2024-07-27 14:03:01.089303 2024-01-29 Closed Customer 1352 640978.5513862440 +1361 f 45 49286 85.61167 0.6319185604027524 Product description 1361 2021-10-25 14:03:01.089303 2024-06-27 Closed Customer 1361 843907.5612612720 +1338 f 56 459063 68.33715 0.8238081249340645 Product description 1338 2023-10-27 14:03:01.089303 2024-07-27 Closed Customer 1338 258280.2999904320 +1354 t 31 475859 80.85801 0.5217839220444347 Product description 1354 2022-03-26 14:03:01.089303 2023-05-11 Closed Customer 1354 968262.6147318670 +1363 t 21 914120 85.34539 0.5537717715969208 Product description 1363 2022-04-20 14:03:01.089303 2025-06-24 Closed Customer 1363 69063.1925239877 +1343 f 48 319044 3.1438224 0.8680948012378273 Product description 1343 2024-05-30 14:03:01.089303 2023-06-01 Closed Customer 1343 404417.0649547920 +1358 f 49 699832 22.001705 0.029760487637808808 Product description 1358 2023-08-29 14:03:01.089303 2024-02-21 Closed Customer 1358 29187.1264453967 +1365 f 24 318942 32.396313 0.519242112933739 Product description 1365 2023-09-26 14:03:01.089303 2023-03-11 Closed Customer 1365 720303.9350041500 +1345 t 38 464905 14.452453 0.32400536975341154 Product description 1345 2021-10-25 14:03:01.089303 2024-07-13 Closed Customer 1345 339167.9105377820 +1359 f 62 443291 97.75066 0.49427666515452984 Product description 1359 2023-09-24 14:03:01.089303 2024-02-07 Closed Customer 1359 182908.3035186120 +1366 t 33 839124 74.232765 0.5449672864132324 Product description 1366 2022-02-19 14:03:01.089303 2023-05-06 Closed Customer 1366 19899.3480304104 +1347 f 73 139056 79.697365 0.5415321474996766 Product description 1347 2024-01-28 14:03:01.089303 2024-11-09 Processing Customer 1347 903381.2310092700 +1364 f 64 149031 85.20991 0.2815056991930831 Product description 1364 2023-11-12 14:03:01.089303 2024-10-21 Closed Customer 1364 571560.7871236190 +1368 f 57 179063 89.97878 0.5695352083486824 Product description 1368 2022-01-03 14:03:01.089303 2023-08-22 Closed Customer 1368 976584.9989727360 +1348 t 73 705277 18.136637 0.19158108478712066 Product description 1348 2023-12-04 14:03:01.089303 2025-10-21 Closed Customer 1348 88329.9563782742 +1370 t 18 878078 47.818607 0.4474464820990107 Product description 1370 2024-03-17 14:03:01.089303 2023-09-05 Closed Customer 1370 163174.6810724160 +1369 f 61 34099 72.69888 0.7014908789688761 Product description 1369 2022-01-12 14:03:01.089303 2025-09-21 Closed Customer 1369 562790.0836561710 +1349 t 33 407769 73.62032 0.9633548264147684 Product description 1349 2024-07-04 14:03:01.089303 2023-09-13 Closed Customer 1349 341887.8213833450 +1371 f 96 789122 7.9547734 0.88896064398633 Product description 1371 2024-04-04 14:03:01.089303 2025-02-25 Processing Customer 1371 647962.9263936780 +1373 f 13 647313 28.10333 0.015356782924783374 Product description 1373 2021-10-27 14:03:01.089303 2025-03-08 Processing Customer 1373 841713.2285755110 +1351 f 49 566150 39.537167 0.3695493148773217 Product description 1351 2023-11-30 14:03:01.089303 2024-12-05 Closed Customer 1351 778430.5435445160 +1375 f 65 950347 10.328997 0.689632781407596 Product description 1375 2023-12-21 14:03:01.089303 2023-08-30 Closed Customer 1375 24510.8988576952 +1380 t 11 785804 68.76726 0.13328297413458046 Product description 1380 2022-11-11 14:03:01.089303 2025-12-05 Processing Customer 1380 368635.3011768270 +1356 f 10 540377 94.37393 0.9442994788961947 Product description 1356 2023-11-13 14:03:01.089303 2025-08-04 Closed Customer 1356 606238.7926421660 +1376 f 10 788492 99.63089 0.7593029740934654 Product description 1376 2022-08-12 14:03:01.089303 2024-10-23 Closed Customer 1376 700313.5609186340 +1381 f 53 626990 46.24526 0.4980567217981928 Product description 1381 2023-07-08 14:03:01.089303 2025-02-04 Closed Customer 1381 814691.6660793230 +1360 t 87 551949 8.316981 0.3694969858574133 Product description 1360 2024-07-16 14:03:01.089303 2024-06-24 Processing Customer 1360 54627.0572938425 +1379 t 95 42377 36.076256 0.031917033991007315 Product description 1379 2023-05-24 14:03:01.089303 2024-01-29 Closed Customer 1379 132325.9672299560 +1386 t 33 280381 24.432545 0.2997374493481786 Product description 1386 2022-09-01 14:03:01.089303 2024-04-10 Closed Customer 1386 373831.8355604130 +1362 f 34 366803 58.12966 0.40771764276219 Product description 1362 2023-01-17 14:03:01.089303 2023-09-01 Processing Customer 1362 289886.5285680120 +1383 t 17 42929 69.8647 0.10722400659084741 Product description 1383 2022-03-28 14:03:01.089303 2025-08-11 Closed Customer 1383 39689.9036751570 +1389 f 42 471571 36.169434 0.3739387573927502 Product description 1389 2023-02-01 14:03:01.089303 2025-10-01 Closed Customer 1389 782929.3136296050 +1367 f 61 546905 83.66273 0.888456760014197 Product description 1367 2024-02-02 14:03:01.089303 2023-03-16 Processing Customer 1367 20342.0552594196 +1399 f 26 421534 41.243935 0.7048361943739678 Product description 1399 2023-07-01 14:03:01.089303 2024-03-13 Processing Customer 1399 969795.4145158820 +1390 f 7 776553 7.8017216 0.4681345297460169 Product description 1390 2022-04-06 14:03:01.089303 2024-02-07 Cancelled Customer 1390 820612.9227631540 +1372 f 61 80442 56.387108 0.7198515425706908 Product description 1372 2023-04-26 14:03:01.089303 2024-04-20 Closed Customer 1372 79865.7847168229 +1403 t 78 790774 60.23988 0.48670072333909076 Product description 1403 2023-08-08 14:03:01.089303 2023-09-20 Processing Customer 1403 863931.9005708650 +1392 f 38 727880 71.640144 0.49190402261250554 Product description 1392 2022-11-28 14:03:01.089303 2024-06-12 Closed Customer 1392 469662.1622472610 +1374 f 92 798289 28.136932 0.24739029759115638 Product description 1374 2022-04-24 14:03:01.089303 2025-01-19 Closed Customer 1374 68955.4759862148 +1406 f 71 94881 56.80677 0.5326469724387977 Product description 1406 2022-05-31 14:03:01.089303 2023-12-10 Processing Customer 1406 137900.6866148520 +1394 f 48 10852 17.454023 0.7213195439298055 Product description 1394 2022-08-28 14:03:01.089303 2025-01-11 Processing Customer 1394 901267.5548272360 +1377 f 16 84122 34.5353 0.8100674773056475 Product description 1377 2022-12-11 14:03:01.089303 2024-01-19 Closed Customer 1377 948559.0238066880 +1407 t 71 371011 87.32773 0.6084473644491695 Product description 1407 2024-03-05 14:03:01.089303 2024-01-16 Closed Customer 1407 90130.7160562972 +1396 t 73 718389 25.627329 0.553819263131917 Product description 1396 2023-10-28 14:03:01.089303 2025-04-01 Closed Customer 1396 295912.9206059150 +1378 f 27 614238 44.450348 0.648123593415523 Product description 1378 2023-08-26 14:03:01.089303 2025-06-05 Closed Customer 1378 921102.7268929680 +1408 t 94 663905 76.92514 0.00954179071683825 Product description 1408 2024-03-23 14:03:01.089303 2025-06-08 Closed Customer 1408 214120.9743930080 +1401 f 37 268448 46.692745 0.5219189427622659 Product description 1401 2023-12-14 14:03:01.089303 2023-02-20 Closed Customer 1401 494450.3200408620 +1382 t 70 650468 10.864655 0.9148349624244894 Product description 1382 2023-04-02 14:03:01.089303 2023-04-18 Processing Customer 1382 382966.4390116320 +1413 f 11 846751 3.3654063 0.7507412889690173 Product description 1413 2021-12-15 14:03:01.089303 2025-12-09 Processing Customer 1413 533094.0035622160 +1405 f 20 454018 88.11369 0.4260591361187558 Product description 1405 2024-01-03 14:03:01.089303 2025-12-13 Closed Customer 1405 506247.9881923420 +1384 t 22 7404 54.19007 0.04790226012434928 Product description 1384 2023-04-06 14:03:01.089303 2023-06-05 Closed Customer 1384 456662.5616485710 +1414 f 41 127898 98.150055 0.6393841628997023 Product description 1414 2022-11-20 14:03:01.089303 2025-12-19 Closed Customer 1414 380878.0948616960 +1409 t 66 464090 25.396143 0.10426511311714748 Product description 1409 2024-02-27 14:03:01.089303 2025-07-27 Closed Customer 1409 909550.4533501710 +1385 t 81 926384 83.29129 0.11003888555934438 Product description 1385 2023-01-19 14:03:01.089303 2023-01-13 Closed Customer 1385 749897.2320094810 +1417 t 33 694564 38.925575 0.5243550382917235 Product description 1417 2021-10-29 14:03:01.089303 2024-10-24 Processing Customer 1417 33654.7763292465 +1410 f 69 355280 36.300877 0.9105596951311874 Product description 1410 2023-04-24 14:03:01.089303 2023-08-21 Cancelled Customer 1410 373150.1505749190 +1387 f 11 528752 78.65229 0.22919608576363615 Product description 1387 2022-07-17 14:03:01.089303 2023-10-14 Closed Customer 1387 604167.4911797660 +1418 t 32 713477 48.857872 0.5271829931583625 Product description 1418 2024-02-04 14:03:01.089303 2023-07-27 Closed Customer 1418 398092.6510090480 +1415 t 24 790916 20.494743 0.7228907434869427 Product description 1415 2023-01-20 14:03:01.089303 2023-08-23 Closed Customer 1415 263806.2015631950 +1388 f 76 245708 30.223314 0.3262908231040704 Product description 1388 2022-11-20 14:03:01.089303 2025-03-02 Processing Customer 1388 917810.8769391780 +1419 t 96 923049 61.939255 0.8985400692805641 Product description 1419 2023-02-20 14:03:01.089303 2025-01-26 Closed Customer 1419 997216.1153394590 +1420 t 55 907244 89.16367 0.5130445596496784 Product description 1420 2022-06-21 14:03:01.089303 2025-01-07 Closed Customer 1420 807050.3484078740 +1391 f 70 609461 83.04258 0.9409242162396403 Product description 1391 2022-08-10 14:03:01.089303 2023-12-23 Closed Customer 1391 948932.8575368600 +1422 f 41 358357 34.251102 0.6460759855553562 Product description 1422 2022-01-04 14:03:01.089303 2025-11-13 Closed Customer 1422 500301.7666866860 +1429 t 30 801846 18.096968 0.5345329776188095 Product description 1429 2024-03-17 14:03:01.089303 2025-06-26 Closed Customer 1429 127116.0435325490 +1393 t 54 670453 95.7088 0.2917721505148556 Product description 1393 2021-12-04 14:03:01.089303 2024-10-16 Processing Customer 1393 685392.7227608590 +1424 f 16 262478 13.708271 0.4541239876314975 Product description 1424 2022-12-28 14:03:01.089303 2025-08-24 Processing Customer 1424 346522.1261083010 +1430 f 53 892619 26.195356 0.1747903479397266 Product description 1430 2021-10-31 14:03:01.089303 2023-08-19 Closed Customer 1430 332209.1868376620 +1395 f 55 289918 68.08244 0.11546521471281679 Product description 1395 2022-05-16 14:03:01.089303 2025-11-06 Closed Customer 1395 728467.6981351480 +1425 f 100 950792 77.14043 0.5505810308139019 Product description 1425 2023-02-07 14:03:01.089303 2024-11-15 Processing Customer 1425 402598.0496429860 +1433 t 48 246666 26.11634 0.9391057743795841 Product description 1433 2021-12-12 14:03:01.089303 2023-07-19 Closed Customer 1433 224096.3224402850 +1397 t 34 125315 34.698868 0.7279284749041004 Product description 1397 2024-02-15 14:03:01.089303 2025-12-09 Closed Customer 1397 982448.9273810930 +1426 f 9 595087 73.37502 0.34965387005039616 Product description 1426 2023-01-02 14:03:01.089303 2024-08-09 Closed Customer 1426 542261.7975503990 +1438 t 22 659225 81.91085 0.6918567794525146 Product description 1438 2023-12-05 14:03:01.089303 2023-06-25 Processing Customer 1438 889994.2640020160 +1398 t 48 80570 96.97045 0.44885534304242825 Product description 1398 2023-04-01 14:03:01.089303 2025-02-25 Closed Customer 1398 336615.2019620050 +1427 t 49 651162 5.7698894 0.12096516646748512 Product description 1427 2022-03-31 14:03:01.089303 2025-01-25 Processing Customer 1427 696683.8901400190 +1444 t 12 666277 21.83392 0.1193866750986814 Product description 1444 2022-11-03 14:03:01.089303 2023-04-02 Closed Customer 1444 603875.9724780900 +1400 t 68 903631 79.690575 0.1868000369154963 Product description 1400 2023-01-15 14:03:01.089303 2025-08-18 Closed Customer 1400 367577.9398061180 +1431 t 31 659665 55.06882 0.09311997891017398 Product description 1431 2021-09-02 14:03:01.089303 2025-02-27 Processing Customer 1431 265317.0364940430 +1446 f 92 714230 32.267937 0.267937851321129 Product description 1446 2022-03-22 14:03:01.089303 2024-06-22 Closed Customer 1446 359223.1653761250 +1402 t 74 327919 72.97523 0.6602840073136811 Product description 1402 2023-07-20 14:03:01.089303 2023-08-27 Processing Customer 1402 396411.9716931410 +1432 f 32 6277 15.9317665 0.4635625484544903 Product description 1432 2022-03-11 14:03:01.089303 2023-05-13 Closed Customer 1432 294727.5670932720 +1448 f 5 151518 36.411568 0.3975155880337695 Product description 1448 2022-03-31 14:03:01.089303 2025-03-28 Closed Customer 1448 644514.8104000640 +1404 f 43 952884 18.249683 0.6072988824326693 Product description 1404 2023-04-07 14:03:01.089303 2024-10-14 Processing Customer 1404 34671.1140175344 +1435 f 72 554333 68.0456 0.8592284076721128 Product description 1435 2023-12-17 14:03:01.089303 2023-08-08 Closed Customer 1435 785454.4631867700 +1455 t 54 720491 73.58131 0.9345528932629819 Product description 1455 2021-08-25 14:03:01.089303 2025-01-29 Processing Customer 1455 864715.0369672010 +1411 f 22 198873 83.7831 0.6278127228093275 Product description 1411 2023-01-25 14:03:01.089303 2025-10-30 Closed Customer 1411 379017.5187962600 +1437 t 10 345349 30.871868 0.5696598900447185 Product description 1437 2022-01-19 14:03:01.089303 2023-04-17 Closed Customer 1437 161215.7208314320 +1457 f 80 261877 63.256992 0.16038526007507414 Product description 1457 2023-02-06 14:03:01.089303 2024-05-04 Processing Customer 1457 80237.2264774753 +1412 t 7 456829 55.331284 0.06433860589445928 Product description 1412 2022-03-30 14:03:01.089303 2025-06-03 Closed Customer 1412 420090.1127277840 +1440 f 34 421184 20.069416 0.3126845120060793 Product description 1440 2022-11-20 14:03:01.089303 2024-08-04 Closed Customer 1440 428852.8688082810 +1459 t 59 228358 0.6435257 0.7456116523426815 Product description 1459 2023-12-10 14:03:01.089303 2024-07-21 Closed Customer 1459 427666.8837793130 +1416 f 2 737213 85.99624 0.20224349602399982 Product description 1416 2024-05-03 14:03:01.089303 2025-01-23 Closed Customer 1416 838537.4951163840 +1442 f 27 432848 65.9049 0.16619908008814832 Product description 1442 2023-01-15 14:03:01.089303 2023-11-16 Closed Customer 1442 679003.3738879760 +1460 f 5 713832 71.08208 0.4788692868112321 Product description 1460 2022-05-07 14:03:01.089303 2024-10-31 Closed Customer 1460 747042.8248830070 +1421 t 50 347638 83.60877 0.26301912836686014 Product description 1421 2024-04-11 14:03:01.089303 2023-06-11 Closed Customer 1421 965965.1031669300 +1445 f 26 371939 32.600967 0.05185294272596508 Product description 1445 2022-08-23 14:03:01.089303 2024-08-27 Closed Customer 1445 882499.8680869990 +1462 t 57 483099 1.5622214 0.8444869648101374 Product description 1462 2022-01-19 14:03:01.089303 2023-03-04 Processing Customer 1462 981326.6642424630 +1423 f 24 267053 57.599205 0.7179395049621213 Product description 1423 2022-01-27 14:03:01.089303 2023-01-23 Closed Customer 1423 749560.1666343670 +1451 f 79 189127 18.699305 0.24318624946106127 Product description 1451 2024-04-19 14:03:01.089303 2024-03-23 Cancelled Customer 1451 145850.6100474890 +1467 t 32 478165 14.382898 0.6925277232888476 Product description 1467 2022-10-30 14:03:01.089303 2025-03-22 Closed Customer 1467 847206.5657658840 +1428 f 61 549180 28.192186 0.20432510755484756 Product description 1428 2022-02-10 14:03:01.089303 2024-02-10 Processing Customer 1428 612181.9230775930 +1464 f 31 526333 60.43638 0.6667337530474775 Product description 1464 2023-08-26 14:03:01.089303 2024-03-03 Processing Customer 1464 495577.0979424370 +1468 f 63 624790 95.46191 0.2934544529564036 Product description 1468 2023-08-27 14:03:01.089303 2023-05-14 Closed Customer 1468 607607.6450987000 +1434 t 29 240297 21.319149 0.2014756965090676 Product description 1434 2024-04-29 14:03:01.089303 2025-02-11 Processing Customer 1434 528284.6255686590 +1465 t 67 834444 69.4493 0.9587194163483765 Product description 1465 2022-10-30 14:03:01.089303 2024-01-01 Processing Customer 1465 52810.9025399459 +1470 t 59 130768 92.02471 0.1814463795264203 Product description 1470 2022-01-19 14:03:01.089303 2024-03-07 Closed Customer 1470 921658.2867186640 +1436 f 78 781102 43.482025 0.6238949961267757 Product description 1436 2022-09-09 14:03:01.089303 2025-02-14 Closed Customer 1436 958129.9656515870 +1469 t 57 368897 36.755768 0.48324511294385886 Product description 1469 2023-11-15 14:03:01.089303 2025-04-29 Processing Customer 1469 681644.3588872050 +1473 f 86 650189 76.4658 0.9399755367364051 Product description 1473 2024-03-03 14:03:01.089303 2025-09-08 Processing Customer 1473 249416.4414431490 +1439 f 23 859368 68.9446 0.6952147236203281 Product description 1439 2022-04-12 14:03:01.089303 2023-05-14 Cancelled Customer 1439 720906.9634661380 +1474 f 9 643851 71.42618 0.23436787624727984 Product description 1474 2022-03-03 14:03:01.089303 2023-05-31 Closed Customer 1474 430125.7781342830 +1476 t 57 688207 62.33187 0.08117145735307929 Product description 1476 2021-09-15 14:03:01.089303 2024-01-26 Cancelled Customer 1476 305025.9849915160 +1441 f 89 316214 46.80891 0.6409328500566289 Product description 1441 2023-04-23 14:03:01.089303 2023-07-25 Processing Customer 1441 940728.8484109100 +1478 f 23 920566 1.5862312 0.8885659995341619 Product description 1478 2024-02-02 14:03:01.089303 2025-01-04 Cancelled Customer 1478 619717.4305413390 +1477 f 91 283797 76.22313 0.7890385186717559 Product description 1477 2024-03-24 14:03:01.089303 2024-10-05 Processing Customer 1477 388265.1196056560 +1443 f 6 485905 0.47745582 0.6000001572957743 Product description 1443 2023-05-25 14:03:01.089303 2023-08-19 Processing Customer 1443 972809.2505546080 +1479 f 77 208473 66.081116 0.7471101529067639 Product description 1479 2021-09-17 14:03:01.089303 2024-08-29 Closed Customer 1479 771096.6573274800 +1481 t 98 166065 50.963825 0.568308887141459 Product description 1481 2023-03-30 14:03:01.089303 2024-11-10 Processing Customer 1481 139304.3954991100 +1447 t 96 787601 79.023964 0.8873796881438949 Product description 1447 2023-04-02 14:03:01.089303 2023-02-05 Cancelled Customer 1447 887615.7014080660 +1480 t 25 648134 82.67674 0.6049546691353385 Product description 1480 2023-06-05 14:03:01.089303 2023-07-21 Closed Customer 1480 495262.2080015170 +1483 f 23 802902 85.73353 0.4341370002848741 Product description 1483 2021-08-06 14:03:01.089303 2024-08-31 Closed Customer 1483 145667.9237930630 +1449 t 43 76104 28.654032 0.10156451949714196 Product description 1449 2023-02-06 14:03:01.089303 2025-10-12 Processing Customer 1449 645224.1994581770 +1482 t 31 847897 67.16597 0.5609409278544675 Product description 1482 2021-09-13 14:03:01.089303 2023-02-27 Closed Customer 1482 955593.4574172260 +1488 t 21 649564 77.11261 0.4740672302894957 Product description 1488 2021-09-29 14:03:01.089303 2023-04-18 Closed Customer 1488 541533.0747504470 +1450 t 69 535424 52.26725 0.7854952312273475 Product description 1450 2022-08-12 14:03:01.089303 2024-10-31 Processing Customer 1450 539390.3164765990 +1484 t 95 462239 77.70335 0.04156103293122726 Product description 1484 2024-06-06 14:03:01.089303 2025-10-11 Processing Customer 1484 667075.7855217280 +1491 f 77 316428 1.1952617 0.7949980036287592 Product description 1491 2022-06-21 14:03:01.089303 2023-03-19 Closed Customer 1491 976471.1375709470 +1452 f 2 140551 17.054865 0.15260551350580087 Product description 1452 2023-10-30 14:03:01.089303 2024-12-16 Closed Customer 1452 264836.9305847420 +1485 t 41 387532 62.217552 0.37166773133562714 Product description 1485 2022-07-23 14:03:01.089303 2024-10-24 Closed Customer 1485 900193.3909842600 +1502 f 49 522868 20.529753 0.675020171573582 Product description 1502 2023-10-18 14:03:01.089303 2024-08-18 Processing Customer 1502 88545.9255928112 +1453 t 40 60426 95.28882 0.04541177933329621 Product description 1453 2022-10-27 14:03:01.089303 2024-11-06 Closed Customer 1453 140562.1334225770 +1486 t 88 80257 89.023506 0.6151807306224271 Product description 1486 2023-11-20 14:03:01.089303 2025-05-02 Cancelled Customer 1486 322498.2824882400 +1509 t 56 203059 74.88953 0.8924326713688906 Product description 1509 2021-09-18 14:03:01.089303 2025-09-21 Processing Customer 1509 939626.9838849700 +1454 f 14 492126 49.444527 0.7234453468930688 Product description 1454 2024-04-05 14:03:01.089303 2025-10-27 Processing Customer 1454 903039.5088324280 +1492 t 96 22689 46.365788 0.04009924279027288 Product description 1492 2024-04-14 14:03:01.089303 2024-12-16 Processing Customer 1492 542770.9257298760 +1513 t 80 896373 26.533455 0.9807411146151885 Product description 1513 2023-03-03 14:03:01.089303 2023-11-19 Closed Customer 1513 582584.4215322040 +1456 t 64 455471 84.6455 0.31910571169291657 Product description 1456 2022-06-25 14:03:01.089303 2024-09-26 Cancelled Customer 1456 688640.9578780110 +1494 t 72 176574 26.19495 0.19406617674578186 Product description 1494 2024-01-14 14:03:01.089303 2025-02-10 Processing Customer 1494 731295.7735247780 +1516 t 35 480590 36.546368 0.3032424582445934 Product description 1516 2024-01-05 14:03:01.089303 2025-08-07 Closed Customer 1516 948960.3376028480 +1458 t 1 596951 44.39574 0.8531634869841298 Product description 1458 2022-03-13 14:03:01.089303 2025-05-24 Closed Customer 1458 630627.6316552970 +1495 t 56 213447 62.053722 0.8848152075415179 Product description 1495 2023-03-18 14:03:01.089303 2024-04-27 Cancelled Customer 1495 217400.4239949560 +1520 f 10 329903 21.216732 0.3584407707471975 Product description 1520 2023-08-12 14:03:01.089303 2025-12-03 Processing Customer 1520 967128.7749155370 +1461 f 43 30772 18.98441 0.07566307062641187 Product description 1461 2021-11-10 14:03:01.089303 2025-04-05 Closed Customer 1461 626205.4740366840 +1496 f 56 601853 31.611319 0.5307273904380381 Product description 1496 2024-07-17 14:03:01.089303 2024-04-19 Closed Customer 1496 576285.3775583960 +1527 f 81 446074 66.67332 0.5950579634250737 Product description 1527 2022-03-01 14:03:01.089303 2025-06-03 Closed Customer 1527 265729.4670059610 +1463 t 93 834057 82.03778 0.6745066698695581 Product description 1463 2024-03-06 14:03:01.089303 2023-01-11 Closed Customer 1463 475874.3409362120 +1497 f 5 507330 45.334366 0.24380500521309045 Product description 1497 2021-10-17 14:03:01.089303 2023-08-10 Processing Customer 1497 932381.8586666700 +1528 t 82 462141 26.03083 0.24008242418215175 Product description 1528 2021-11-06 14:03:01.089303 2024-05-19 Processing Customer 1528 226441.1971547990 +1466 t 57 328720 38.924908 0.37080253079937364 Product description 1466 2023-09-24 14:03:01.089303 2024-03-09 Closed Customer 1466 632205.5002403490 +1498 t 62 592584 62.769173 0.7334420971840601 Product description 1498 2024-01-19 14:03:01.089303 2024-06-08 Closed Customer 1498 469780.3338552870 +1529 t 78 912414 49.924347 0.5447149868005816 Product description 1529 2023-08-11 14:03:01.089303 2025-05-08 Closed Customer 1529 190033.6071987350 +1471 t 1 622649 66.61823 0.5115368455966518 Product description 1471 2022-06-01 14:03:01.089303 2023-08-03 Processing Customer 1471 411413.5065161660 +1503 t 97 883485 4.1725035 0.4876338219254279 Product description 1503 2023-01-01 14:03:01.089303 2024-12-10 Closed Customer 1503 543210.0936470010 +1530 f 33 479736 35.200348 0.5468004285390329 Product description 1530 2023-06-07 14:03:01.089303 2023-06-17 Closed Customer 1530 887041.8186964310 +1472 f 91 322651 24.837408 0.6360659245243667 Product description 1472 2022-04-24 14:03:01.089303 2023-05-30 Processing Customer 1472 885517.8943480020 +1504 t 15 115634 15.645637 0.9701033633818881 Product description 1504 2023-11-22 14:03:01.089303 2025-10-11 Processing Customer 1504 799351.1456854950 +1532 f 39 805808 65.65466 0.707091189106773 Product description 1532 2021-12-08 14:03:01.089303 2024-11-14 Closed Customer 1532 716987.2892181320 +1475 f 7 618837 4.7125716 0.7852833186579602 Product description 1475 2022-11-03 14:03:01.089303 2023-12-27 Closed Customer 1475 218633.7456649990 +1506 t 48 314981 27.018291 0.7904818911885627 Product description 1506 2023-03-31 14:03:01.089303 2023-05-11 Processing Customer 1506 263797.1573805620 +1539 t 16 136944 19.038565 0.3509560354518335 Product description 1539 2024-07-23 14:03:01.089303 2025-05-16 Processing Customer 1539 413841.1628551920 +1487 f 59 263216 49.682957 0.5635178544460686 Product description 1487 2023-06-23 14:03:01.089303 2023-09-19 Closed Customer 1487 45393.3804344508 +1511 f 95 775311 41.834087 0.39447887486307565 Product description 1511 2021-09-18 14:03:01.089303 2025-10-05 Processing Customer 1511 491786.7046018820 +1540 t 89 352408 11.552586 0.48352964715729385 Product description 1540 2024-04-24 14:03:01.089303 2025-08-24 Closed Customer 1540 125458.9426197370 +1489 t 69 77203 62.906258 0.9912057978351925 Product description 1489 2023-06-05 14:03:01.089303 2025-09-14 Closed Customer 1489 866401.8098865220 +1512 t 8 229768 16.887186 0.2121678157407274 Product description 1512 2024-01-16 14:03:01.089303 2023-02-25 Processing Customer 1512 639648.6782391090 +1541 f 52 486654 25.732025 0.34819788962576936 Product description 1541 2024-07-16 14:03:01.089303 2024-11-27 Processing Customer 1541 355180.3198290170 +1490 f 42 885060 46.292294 0.027645939789444185 Product description 1490 2023-02-17 14:03:01.089303 2025-11-21 Closed Customer 1490 623678.2207664680 +1514 t 12 503393 24.521494 0.5484298165184995 Product description 1514 2022-05-24 14:03:01.089303 2023-07-28 Processing Customer 1514 914622.4584845190 +1542 f 10 410431 45.11316 0.529637979492815 Product description 1542 2022-06-22 14:03:01.089303 2025-01-24 Closed Customer 1542 285076.7153423350 +1493 f 84 840609 37.891685 0.23599995608024926 Product description 1493 2021-08-26 14:03:01.089303 2023-05-31 Closed Customer 1493 214499.4671536260 +1518 t 27 800513 71.894775 0.628305070498385 Product description 1518 2024-01-18 14:03:01.089303 2023-12-13 Closed Customer 1518 303433.5967804190 +1543 t 67 247193 90.59868 0.14162551225580344 Product description 1543 2022-05-31 14:03:01.089303 2023-05-28 Closed Customer 1543 892120.2076899420 +1499 f 53 226172 31.505964 0.7011721317248814 Product description 1499 2022-06-05 14:03:01.089303 2023-03-08 Closed Customer 1499 875155.8935057520 +1519 t 2 152888 42.750076 0.3006470847381948 Product description 1519 2022-10-16 14:03:01.089303 2025-10-08 Closed Customer 1519 177059.0139253190 +1547 t 54 505180 41.036686 0.6462563869441986 Product description 1547 2022-12-14 14:03:01.089303 2023-08-27 Closed Customer 1547 698989.2752094780 +1500 t 40 676079 6.082468 0.6753776366069246 Product description 1500 2022-05-22 14:03:01.089303 2024-12-05 Processing Customer 1500 711425.9123692900 +1523 f 93 146047 86.010765 0.6549250048544053 Product description 1523 2023-11-09 14:03:01.089303 2024-01-14 Processing Customer 1523 310870.9729292340 +1551 t 16 217501 56.54169 0.41652814867723365 Product description 1551 2022-09-21 14:03:01.089303 2025-01-16 Processing Customer 1551 293638.5984058770 +1501 t 97 354710 45.43482 0.45679992238815004 Product description 1501 2023-08-29 14:03:01.089303 2025-08-22 Closed Customer 1501 537937.2677311130 +1533 f 31 981053 37.37724 0.5526502119721997 Product description 1533 2022-10-28 14:03:01.089303 2025-12-16 Processing Customer 1533 677021.4123692600 +1552 t 66 624286 45.02683 0.3602427194531792 Product description 1552 2022-02-27 14:03:01.089303 2025-12-13 Processing Customer 1552 821510.1350144710 +1505 t 84 536079 35.864983 0.1903034423301193 Product description 1505 2023-04-22 14:03:01.089303 2024-03-02 Processing Customer 1505 153420.4214007780 +1534 f 90 440668 88.230064 0.617710241003806 Product description 1534 2023-03-20 14:03:01.089303 2024-06-01 Closed Customer 1534 29638.0602146620 +1558 t 15 917923 26.58152 0.8417587889794227 Product description 1558 2023-05-15 14:03:01.089303 2023-04-01 Processing Customer 1558 179726.9914890760 +1507 f 1 512464 28.91171 0.9416288337398768 Product description 1507 2023-11-27 14:03:01.089303 2023-09-10 Closed Customer 1507 838732.5830461130 +1536 f 75 891951 67.62753 0.41809725361077454 Product description 1536 2022-04-26 14:03:01.089303 2024-10-28 Closed Customer 1536 600021.0921124310 +1559 f 48 919712 95.8698 0.25956035749589645 Product description 1559 2021-10-29 14:03:01.089303 2023-12-26 Processing Customer 1559 205372.3402543210 +1508 f 100 662266 11.057157 0.8838632018929218 Product description 1508 2023-01-31 14:03:01.089303 2023-01-18 Processing Customer 1508 935379.0863487710 +1537 f 85 609502 58.549824 0.4510649564104625 Product description 1537 2023-12-10 14:03:01.089303 2023-06-06 Processing Customer 1537 810584.1719816560 +1561 f 85 617299 30.924376 0.4227992945813277 Product description 1561 2024-06-16 14:03:01.089303 2024-06-28 Closed Customer 1561 910642.9981893740 +1510 t 19 523643 88.80303 0.5914340336308683 Product description 1510 2023-11-07 14:03:01.089303 2024-09-16 Processing Customer 1510 823792.6731184790 +1544 t 29 425599 86.73489 0.92035540715775 Product description 1544 2021-09-01 14:03:01.089303 2025-06-24 Closed Customer 1544 685975.2545559450 +1564 t 21 748191 48.351387 0.9767330961128202 Product description 1564 2024-06-21 14:03:01.089303 2023-10-22 Closed Customer 1564 325102.7377285920 +1515 t 52 261073 72.715546 0.571641862406679 Product description 1515 2023-01-12 14:03:01.089303 2025-01-30 Closed Customer 1515 694664.9396838720 +1548 t 49 369323 15.240559 0.8398036227567047 Product description 1548 2021-09-18 14:03:01.089303 2023-02-20 Closed Customer 1548 188895.0024336080 +1566 f 33 692300 1.8015761 0.7677976919413148 Product description 1566 2021-08-09 14:03:01.089303 2024-12-29 Closed Customer 1566 517806.7177538140 +1517 f 95 997382 31.945148 0.7293625946525069 Product description 1517 2022-02-20 14:03:01.089303 2025-04-22 Processing Customer 1517 32380.6334839283 +1549 f 47 42240 98.241196 0.5607505479773991 Product description 1549 2022-08-16 14:03:01.089303 2024-03-04 Closed Customer 1549 273211.6258198440 +1567 f 78 334820 65.079445 0.08343315436306042 Product description 1567 2022-04-27 14:03:01.089303 2024-06-18 Closed Customer 1567 101343.0669007460 +1521 t 30 986816 83.14401 0.9464877791951949 Product description 1521 2024-07-10 14:03:01.089303 2024-09-03 Processing Customer 1521 674275.4050098900 +1550 t 14 965031 0.32339197 0.38120940872748577 Product description 1550 2023-08-18 14:03:01.089303 2024-02-11 Closed Customer 1550 163499.8009588280 +1569 f 48 325685 21.888288 0.5427581391538219 Product description 1569 2021-10-15 14:03:01.089303 2025-11-04 Processing Customer 1569 488195.7066590270 +1522 f 38 474706 1.7409797 0.03444034909558269 Product description 1522 2023-08-26 14:03:01.089303 2024-07-06 Closed Customer 1522 558523.8363396210 +1554 f 77 968316 90.91125 0.6369257372331205 Product description 1554 2022-10-18 14:03:01.089303 2023-11-13 Processing Customer 1554 714110.7564324510 +1574 t 74 153186 31.503834 0.27480171549175836 Product description 1574 2023-07-15 14:03:01.089303 2025-10-15 Closed Customer 1574 904275.3466324530 +1524 f 49 716446 22.39227 0.048251218781459215 Product description 1524 2023-03-26 14:03:01.089303 2025-03-30 Cancelled Customer 1524 816129.4937407040 +1555 f 1 84582 0.183022 0.9313867022718227 Product description 1555 2023-07-10 14:03:01.089303 2024-08-30 Processing Customer 1555 97081.9439456214 +1577 f 38 500580 91.89282 0.2827081446717621 Product description 1577 2023-03-27 14:03:01.089303 2023-10-23 Processing Customer 1577 230881.6243887580 +1525 f 1 99685 29.148756 0.8363482791102932 Product description 1525 2021-11-05 14:03:01.089303 2025-07-14 Processing Customer 1525 414540.4013469050 +1562 f 91 660304 13.870546 0.5163956485053589 Product description 1562 2023-12-06 14:03:01.089303 2025-12-03 Closed Customer 1562 59408.3448282028 +1578 t 44 533037 56.55659 0.18369884572620876 Product description 1578 2022-08-22 14:03:01.089303 2023-05-16 Closed Customer 1578 159253.0301454720 +1526 f 41 872545 21.640343 0.6683490696320327 Product description 1526 2022-03-24 14:03:01.089303 2023-10-02 Closed Customer 1526 677421.8133449920 +1563 f 9 969953 53.690044 0.44412313205647536 Product description 1563 2024-03-23 14:03:01.089303 2024-03-22 Closed Customer 1563 18299.8166988675 +1579 f 61 92881 53.120895 0.7047516322861362 Product description 1579 2023-04-04 14:03:01.089303 2023-11-20 Closed Customer 1579 965976.5477761800 +1531 f 90 638609 30.672094 0.7757922342570787 Product description 1531 2023-07-20 14:03:01.089303 2025-08-27 Processing Customer 1531 9502.2200271657 +1565 f 42 171961 7.459181 0.35191233247658005 Product description 1565 2022-10-11 14:03:01.089303 2024-10-31 Closed Customer 1565 18916.9173108219 +1581 t 72 202026 42.874252 0.2116990548995652 Product description 1581 2022-10-02 14:03:01.089303 2024-10-25 Closed Customer 1581 209023.7333411200 +1535 f 66 235117 74.04948 0.7129866855699056 Product description 1535 2022-05-09 14:03:01.089303 2025-02-23 Closed Customer 1535 653206.7747350540 +1570 t 0 617076 0.47047848 0.5529241301803438 Product description 1570 2021-12-04 14:03:01.089303 2023-06-09 Processing Customer 1570 34632.3216354811 +1582 f 4 249051 87.498924 0.014760715293153481 Product description 1582 2021-12-31 14:03:01.089303 2025-08-25 Processing Customer 1582 60257.3426591846 +1538 f 7 899106 49.2443 0.7707993184822008 Product description 1538 2022-02-19 14:03:01.089303 2023-06-26 Closed Customer 1538 236477.8303085660 +1571 t 3 450957 76.47306 0.9480093565027587 Product description 1571 2022-09-08 14:03:01.089303 2023-11-28 Closed Customer 1571 731774.8604687640 +1584 t 42 376029 82.330185 0.5251729625404344 Product description 1584 2023-10-19 14:03:01.089303 2023-10-18 Processing Customer 1584 227405.5684139640 +1545 f 87 218968 39.047394 0.8192634396370728 Product description 1545 2024-02-10 14:03:01.089303 2025-03-13 Closed Customer 1545 513599.7002169720 +1575 f 92 440382 63.002308 0.3806515413528331 Product description 1575 2024-05-18 14:03:01.089303 2025-06-12 Closed Customer 1575 261639.5801568210 +1585 f 72 697865 94.53331 0.20600887798423528 Product description 1585 2023-04-29 14:03:01.089303 2025-04-29 Processing Customer 1585 920776.4291065670 +1546 f 33 499215 61.259792 0.6937963123412025 Product description 1546 2022-08-19 14:03:01.089303 2024-02-17 Closed Customer 1546 320115.4715331640 +1576 f 84 866747 97.04636 0.7155426803537281 Product description 1576 2022-09-11 14:03:01.089303 2024-04-07 Closed Customer 1576 691361.5942662150 +1586 f 67 583174 61.72482 0.11173233116236858 Product description 1586 2022-07-18 14:03:01.089303 2023-01-31 Closed Customer 1586 229923.7985342800 +1553 t 13 482832 7.8421474 0.7436281468900354 Product description 1553 2022-03-01 14:03:01.089303 2024-08-13 Closed Customer 1553 243515.2473814530 +1580 t 88 712125 95.55798 0.7825761101554463 Product description 1580 2023-08-30 14:03:01.089303 2023-05-24 Processing Customer 1580 116007.3069730710 +1587 t 91 859072 38.650036 0.5748739767056072 Product description 1587 2024-07-16 14:03:01.089303 2025-12-28 Closed Customer 1587 581635.8372640590 +1556 t 56 252796 20.145102 0.42805717915942054 Product description 1556 2023-02-16 14:03:01.089303 2025-06-07 Processing Customer 1556 805718.0868710600 +1583 f 81 310405 16.591978 0.27479922339887963 Product description 1583 2023-03-08 14:03:01.089303 2024-06-06 Closed Customer 1583 156425.9076754730 +1590 t 93 855832 52.398136 0.6857979367392169 Product description 1590 2023-07-09 14:03:01.089303 2024-03-28 Processing Customer 1590 416829.2327429480 +1557 f 97 165946 9.057662 0.20316140300269936 Product description 1557 2023-07-10 14:03:01.089303 2024-03-31 Closed Customer 1557 259417.3650038410 +1588 t 57 146153 54.72998 0.5870559302031353 Product description 1588 2021-08-29 14:03:01.089303 2025-06-08 Closed Customer 1588 119780.7196878210 +1592 t 87 646609 55.77231 0.2010363782517608 Product description 1592 2023-04-09 14:03:01.089303 2024-01-30 Closed Customer 1592 166712.6874414320 +1560 f 23 813779 85.89745 0.8231387294249934 Product description 1560 2022-02-25 14:03:01.089303 2025-06-13 Closed Customer 1560 845808.4753173050 +1595 t 16 689725 7.198383 0.25752450454009335 Product description 1595 2023-11-01 14:03:01.089303 2025-01-17 Closed Customer 1595 694080.4662653940 +1593 f 17 983875 28.995203 0.5738351772605021 Product description 1593 2022-02-19 14:03:01.089303 2024-02-27 Processing Customer 1593 620331.0656028620 +1568 t 72 428049 83.25724 0.9104169215076077 Product description 1568 2023-11-30 14:03:01.089303 2024-10-10 Processing Customer 1568 601031.8559702340 +1600 f 83 930937 86.01838 0.746018179500453 Product description 1600 2023-04-10 14:03:01.089303 2025-09-08 Closed Customer 1600 26573.5156405320 +1594 f 4 427125 72.13921 0.7981859627808952 Product description 1594 2023-05-02 14:03:01.089303 2024-09-30 Closed Customer 1594 772517.2029153950 +1572 t 49 256563 53.541912 0.689197423148979 Product description 1572 2022-12-14 14:03:01.089303 2025-09-05 Closed Customer 1572 394332.5315575020 +1601 f 74 952853 99.98195 0.011880556750419657 Product description 1601 2021-10-06 14:03:01.089303 2025-10-19 Closed Customer 1601 811064.5551156530 +1596 f 8 688523 84.69845 0.19227378632544045 Product description 1596 2021-09-23 14:03:01.089303 2025-01-07 Processing Customer 1596 746136.2960825470 +1573 f 69 867834 18.078384 0.6633952154022928 Product description 1573 2023-06-28 14:03:01.089303 2025-05-21 Processing Customer 1573 527879.9933509080 +1604 f 99 406843 90.932205 0.45061375754731614 Product description 1604 2023-11-20 14:03:01.089303 2023-04-06 Closed Customer 1604 252767.2148502620 +1598 f 17 284686 96.3432 0.4925769442705281 Product description 1598 2023-01-21 14:03:01.089303 2025-07-21 Closed Customer 1598 733703.1395577900 +1589 t 100 5574 20.7575 0.032021273586746446 Product description 1589 2022-03-22 14:03:01.089303 2025-03-25 Closed Customer 1589 428966.0907461650 +1605 f 68 248116 83.4777 0.10786109566492286 Product description 1605 2022-11-14 14:03:01.089303 2024-10-20 Processing Customer 1605 371639.5532878960 +1599 f 95 361832 21.318645 0.6872933324549244 Product description 1599 2022-08-27 14:03:01.089303 2025-10-05 Closed Customer 1599 112971.9971105980 +1591 f 99 383149 64.657776 0.16326491280885946 Product description 1591 2023-02-10 14:03:01.089303 2024-05-29 Processing Customer 1591 327509.6105957970 +1609 f 90 84812 53.028835 0.7146228442902043 Product description 1609 2022-07-30 14:03:01.089303 2025-12-18 Closed Customer 1609 313928.8449059980 +1603 t 9 298898 5.2780476 0.8529018162677922 Product description 1603 2022-02-09 14:03:01.089303 2024-01-29 Closed Customer 1603 155324.1553145880 +1597 t 31 521170 83.567894 0.16620728177926125 Product description 1597 2023-06-25 14:03:01.089303 2024-08-30 Closed Customer 1597 580875.3251735440 +1610 t 90 6477 29.643202 0.9781642187892388 Product description 1610 2022-02-19 14:03:01.089303 2024-03-16 Processing Customer 1610 123852.7603524380 +1606 t 68 200623 26.401606 0.9591481586777455 Product description 1606 2023-11-28 14:03:01.089303 2024-11-13 Closed Customer 1606 144277.1137336720 +1602 t 17 179478 3.0623336 0.9618972222049855 Product description 1602 2021-10-21 14:03:01.089303 2024-12-28 Closed Customer 1602 826263.8624615160 +1612 t 44 303350 99.62129 0.14132798133688595 Product description 1612 2024-01-04 14:03:01.089303 2023-06-05 Processing Customer 1612 405628.3433071250 +1607 t 14 96257 21.865536 0.01359052683151063 Product description 1607 2023-11-16 14:03:01.089303 2024-08-20 Closed Customer 1607 420152.2072584820 +1608 t 27 12921 11.633313 0.5032051450935846 Product description 1608 2024-05-13 14:03:01.089303 2023-10-14 Processing Customer 1608 955489.7767595140 +1615 f 99 609385 91.9392 0.4931802910417886 Product description 1615 2023-06-17 14:03:01.089303 2023-11-14 Processing Customer 1615 876505.3236430060 +1611 f 25 439313 59.96321 0.008781863480532337 Product description 1611 2021-12-20 14:03:01.089303 2024-03-31 Processing Customer 1611 173413.7063361560 +1613 f 58 892736 48.219013 0.5355364174808592 Product description 1613 2022-02-01 14:03:01.089303 2023-11-14 Closed Customer 1613 530626.4921954380 +1617 t 38 81370 50.414757 0.23367909445627788 Product description 1617 2024-03-17 14:03:01.089303 2023-10-14 Closed Customer 1617 995913.9875720350 +1614 t 76 253705 25.602385 0.4080985366119769 Product description 1614 2023-07-28 14:03:01.089303 2023-07-14 Processing Customer 1614 708784.6169163470 +1616 f 31 963154 65.00754 0.9175649568188611 Product description 1616 2022-03-17 14:03:01.089303 2025-02-04 Processing Customer 1616 118982.5158072680 +1620 t 99 575014 40.7868 0.3689456960272324 Product description 1620 2021-11-02 14:03:01.089303 2023-11-15 Processing Customer 1620 918434.4594920650 +1618 t 56 13370 59.92834 0.07602515590033576 Product description 1618 2023-09-07 14:03:01.089303 2025-09-26 Processing Customer 1618 235415.1884362990 +1623 f 43 298095 54.0746 0.07768900921914579 Product description 1623 2021-12-26 14:03:01.089303 2025-06-19 Closed Customer 1623 917030.0051996070 +1622 t 70 537646 23.549772 0.8008159957698098 Product description 1622 2022-12-28 14:03:01.089303 2023-05-11 Closed Customer 1622 521912.4459035630 +1619 t 23 880382 2.487793 0.37797303046943753 Product description 1619 2023-01-28 14:03:01.089303 2023-04-09 Cancelled Customer 1619 101316.6813908870 +1624 t 23 697474 26.242298 0.012928060407272568 Product description 1624 2024-07-31 14:03:01.089303 2023-02-10 Closed Customer 1624 422940.1549749450 +1630 f 27 509338 91.09807 0.7321183631516348 Product description 1630 2022-05-15 14:03:01.089303 2024-03-08 Closed Customer 1630 146739.2351856520 +1621 t 70 320475 43.89956 0.0744787113591201 Product description 1621 2022-03-30 14:03:01.089303 2024-08-30 Closed Customer 1621 429654.6426043020 +1625 t 69 598850 30.953058 0.6068968186439072 Product description 1625 2022-09-03 14:03:01.089303 2024-02-14 Processing Customer 1625 733048.7023757830 +1633 t 53 83093 3.448517 0.5776773867066822 Product description 1633 2022-02-03 14:03:01.089303 2024-12-07 Processing Customer 1633 103992.4838269110 +1627 f 61 112415 68.01356 0.17915505247618313 Product description 1627 2023-04-17 14:03:01.089303 2023-02-05 Processing Customer 1627 752658.7884841300 +1626 f 65 694301 34.74655 0.09396895363888902 Product description 1626 2024-01-12 14:03:01.089303 2024-08-14 Processing Customer 1626 91998.0804799607 +1637 f 11 277817 77.21057 0.932849980933959 Product description 1637 2023-11-30 14:03:01.089303 2023-07-23 Processing Customer 1637 84038.1932691550 +1628 f 88 951122 31.617105 0.3594420406504497 Product description 1628 2022-05-25 14:03:01.089303 2023-01-06 Closed Customer 1628 309230.2599358270 +1629 f 41 489511 95.65892 0.312409787139476 Product description 1629 2023-03-26 14:03:01.089303 2024-07-03 Closed Customer 1629 328786.1301126750 +1638 f 2 747754 20.065214 0.882925291242671 Product description 1638 2022-11-14 14:03:01.089303 2025-12-07 Closed Customer 1638 846925.7774988930 +1631 f 84 911087 19.578949 0.3161582762773705 Product description 1631 2021-11-23 14:03:01.089303 2024-07-27 Closed Customer 1631 570578.3475700520 +1634 t 77 857537 93.969406 0.5971399673350497 Product description 1634 2023-07-12 14:03:01.089303 2024-07-13 Processing Customer 1634 931989.8526387010 +1640 t 8 264207 24.164768 0.3995891391438917 Product description 1640 2022-03-21 14:03:01.089303 2025-06-09 Processing Customer 1640 795066.3686343550 +1632 t 6 917389 50.76337 0.062431587698057456 Product description 1632 2024-01-05 14:03:01.089303 2025-09-06 Closed Customer 1632 336520.9108025300 +1635 f 28 866928 14.961469 0.3974633496016118 Product description 1635 2022-05-22 14:03:01.089303 2024-01-11 Closed Customer 1635 762795.2209174400 +1641 f 17 856025 93.77609 0.971289245670647 Product description 1641 2023-12-27 14:03:01.089303 2024-06-28 Processing Customer 1641 418377.4848268310 +1636 f 59 760918 58.96511 0.9749745741656071 Product description 1636 2024-04-11 14:03:01.089303 2025-10-13 Closed Customer 1636 946303.6491598620 +1644 f 64 926079 41.214172 0.427822182746862 Product description 1644 2023-01-07 14:03:01.089303 2025-04-22 Processing Customer 1644 583515.8374633880 +1643 f 57 204065 96.64739 0.39220086920264663 Product description 1643 2024-04-06 14:03:01.089303 2023-03-16 Closed Customer 1643 453844.0840231070 +1639 f 28 205838 33.78871 0.3505528274659895 Product description 1639 2023-06-05 14:03:01.089303 2024-06-19 Closed Customer 1639 310777.1111134920 +1651 f 88 414897 27.658413 0.7260878866508484 Product description 1651 2023-12-29 14:03:01.089303 2025-08-24 Processing Customer 1651 433953.2915157780 +1645 f 19 515639 88.91587 0.1203495186607455 Product description 1645 2023-02-15 14:03:01.089303 2025-11-23 Closed Customer 1645 451371.0236310930 +1642 t 67 438156 94.671814 0.40863985833288297 Product description 1642 2023-01-11 14:03:01.089303 2023-09-03 Processing Customer 1642 919710.3454908020 +1652 t 88 417475 9.960861 0.5211035139036078 Product description 1652 2021-12-01 14:03:01.089303 2024-09-16 Closed Customer 1652 980001.3226883020 +1646 f 55 873720 12.946832 0.43230773612128104 Product description 1646 2021-12-20 14:03:01.089303 2025-07-21 Closed Customer 1646 523850.6236943470 +1648 t 75 524183 73.16223 0.562513879002779 Product description 1648 2024-06-26 14:03:01.089303 2024-08-07 Closed Customer 1648 428063.9725110940 +1653 t 40 144254 68.244705 0.3009544614117665 Product description 1653 2021-12-02 14:03:01.089303 2023-06-18 Processing Customer 1653 194392.1963485020 +1647 t 73 320252 18.145628 0.5625221961591365 Product description 1647 2023-08-04 14:03:01.089303 2024-06-26 Closed Customer 1647 70228.7143372438 +1649 t 17 408899 56.189487 0.5137570820576869 Product description 1649 2022-04-20 14:03:01.089303 2025-05-24 Closed Customer 1649 201867.3777303410 +1656 t 83 622687 6.042287 0.8052708785203002 Product description 1656 2024-06-11 14:03:01.089303 2025-03-01 Processing Customer 1656 930640.2077791990 +1650 t 45 45943 39.854477 0.8015473386202032 Product description 1650 2023-11-19 14:03:01.089303 2025-03-09 Processing Customer 1650 770307.7905187320 +1658 t 96 673523 97.32743 0.1002692279830768 Product description 1658 2023-04-25 14:03:01.089303 2025-05-26 Processing Customer 1658 418400.2256526580 +1657 t 36 55585 3.8996115 0.4781370536420049 Product description 1657 2022-05-15 14:03:01.089303 2023-02-10 Cancelled Customer 1657 165248.9108974070 +1654 t 33 392627 2.2532763 0.21749520224661012 Product description 1654 2024-06-01 14:03:01.089303 2024-08-17 Processing Customer 1654 790650.3755919620 +1659 f 89 122307 24.508741 0.005165502658108778 Product description 1659 2023-12-20 14:03:01.089303 2024-06-16 Processing Customer 1659 440381.4252951190 +1663 f 36 740570 82.23049 0.6276306085937335 Product description 1663 2024-05-30 14:03:01.089303 2024-02-10 Closed Customer 1663 290685.9171306980 +1655 t 59 209331 23.586395 0.2067273594739376 Product description 1655 2024-02-20 14:03:01.089303 2025-08-07 Cancelled Customer 1655 490353.9196169860 +1661 f 6 215206 13.780485 0.10671509512425814 Product description 1661 2024-06-07 14:03:01.089303 2025-05-16 Closed Customer 1661 127897.2512406790 +1666 t 98 895964 26.964426 0.06463508020778619 Product description 1666 2024-04-07 14:03:01.089303 2025-02-11 Processing Customer 1666 824172.5349936680 +1660 t 4 703514 60.383705 0.20037622838936286 Product description 1660 2024-04-27 14:03:01.089303 2023-06-14 Processing Customer 1660 947370.6372436790 +1662 t 69 624293 24.383099 0.9824365889847755 Product description 1662 2022-03-15 14:03:01.089303 2025-10-08 Processing Customer 1662 442563.1564747090 +1668 f 86 686822 98.50389 0.3226313600894315 Product description 1668 2023-10-16 14:03:01.089303 2023-07-04 Processing Customer 1668 157097.9782893110 +1664 f 73 115035 91.09426 0.13544426094157913 Product description 1664 2022-05-03 14:03:01.089303 2024-02-12 Closed Customer 1664 193623.8198096520 +1665 f 57 515850 40.175804 0.010700231071879784 Product description 1665 2023-06-27 14:03:01.089303 2025-02-03 Processing Customer 1665 858457.4850278660 +1672 t 28 197449 49.627247 0.405274319084036 Product description 1672 2022-05-24 14:03:01.089303 2025-09-05 Processing Customer 1672 556389.7807701790 +1676 f 14 896170 1.0149348 0.6156629146397741 Product description 1676 2021-11-19 14:03:01.089303 2023-06-12 Processing Customer 1676 420207.1972297860 +1667 f 13 949930 72.82457 0.6379116632515931 Product description 1667 2023-04-28 14:03:01.089303 2025-02-02 Closed Customer 1667 788254.5080365910 +1677 f 96 67071 15.581498 0.2761176047063998 Product description 1677 2023-03-13 14:03:01.089303 2023-06-03 Closed Customer 1677 226545.5100639110 +1683 t 33 304813 49.529476 0.4119717565543475 Product description 1683 2024-06-25 14:03:01.089303 2024-01-23 Closed Customer 1683 648468.1966267730 +1669 t 70 454744 59.337105 0.9338887760138732 Product description 1669 2023-07-11 14:03:01.089303 2024-08-03 Processing Customer 1669 924735.8806501290 +1679 t 60 903505 48.150257 0.6873875727700138 Product description 1679 2024-03-07 14:03:01.089303 2024-10-22 Processing Customer 1679 389107.4095274160 +1688 t 41 951700 34.815598 0.07847255325853908 Product description 1688 2022-12-25 14:03:01.089303 2023-06-10 Cancelled Customer 1688 649952.0193516340 +1670 t 13 999241 83.43742 0.5192997422464103 Product description 1670 2021-12-28 14:03:01.089303 2024-06-26 Closed Customer 1670 663162.1113813000 +1680 f 79 909004 72.78615 0.14090250113024183 Product description 1680 2022-08-06 14:03:01.089303 2024-09-08 Closed Customer 1680 891226.6355250540 +1689 f 33 137807 58.46135 0.9550177519642205 Product description 1689 2022-03-03 14:03:01.089303 2023-07-27 Processing Customer 1689 997132.7227115370 +1671 f 16 317481 94.68678 0.4808711057306283 Product description 1671 2023-03-19 14:03:01.089303 2024-05-03 Processing Customer 1671 463984.4044238650 +1684 t 51 500771 87.081566 0.7478276992433663 Product description 1684 2021-11-29 14:03:01.089303 2023-01-15 Processing Customer 1684 542322.2114960320 +1692 f 56 764921 62.040054 0.7429791055625756 Product description 1692 2024-04-16 14:03:01.089303 2024-03-20 Closed Customer 1692 681627.8525032010 +1673 f 3 517665 33.67124 0.5782477502391075 Product description 1673 2023-02-01 14:03:01.089303 2024-05-24 Processing Customer 1673 603058.1266155540 +1686 f 69 504631 2.1053138 0.9101177351774368 Product description 1686 2022-08-14 14:03:01.089303 2024-11-15 Closed Customer 1686 768627.1385250590 +1693 t 42 683731 50.358753 0.5099769732489534 Product description 1693 2023-07-11 14:03:01.089303 2023-04-21 Closed Customer 1693 997854.8830240860 +1674 f 47 554104 7.045272 0.051903357516636106 Product description 1674 2022-05-02 14:03:01.089303 2023-09-14 Closed Customer 1674 668970.6116833600 +1687 f 82 4281 68.08881 0.3489277178678165 Product description 1687 2024-07-17 14:03:01.089303 2023-10-06 Processing Customer 1687 552349.8970798960 +1697 f 81 972819 13.671413 0.6151318171572413 Product description 1697 2021-11-11 14:03:01.089303 2025-07-30 Closed Customer 1697 610604.9353185380 +1675 f 10 898112 7.70057 0.13263087771125726 Product description 1675 2021-11-03 14:03:01.089303 2025-03-15 Processing Customer 1675 453181.4561162300 +1690 t 31 176954 52.32383 0.34674773620675126 Product description 1690 2021-12-01 14:03:01.089303 2025-06-20 Cancelled Customer 1690 38519.9017970024 +1701 t 68 606680 7.6357803 0.02623349981473666 Product description 1701 2023-11-19 14:03:01.089303 2023-06-30 Processing Customer 1701 83754.2457703044 +1678 f 70 353459 36.703392 0.45743065191912535 Product description 1678 2022-02-04 14:03:01.089303 2025-08-31 Processing Customer 1678 77895.0273297987 +1695 f 7 190408 37.775707 0.6000557507258826 Product description 1695 2023-05-26 14:03:01.089303 2023-04-24 Closed Customer 1695 583801.2758045820 +1705 f 82 565195 31.08096 0.4478436537777455 Product description 1705 2022-01-21 14:03:01.089303 2025-05-19 Processing Customer 1705 712441.1288826060 +1681 f 43 258141 16.278763 0.8455649188693926 Product description 1681 2021-12-15 14:03:01.089303 2023-04-03 Processing Customer 1681 275169.8982694000 +1696 t 51 400836 55.182755 0.7737944773293215 Product description 1696 2023-07-01 14:03:01.089303 2024-10-25 Closed Customer 1696 600404.6289905750 +1706 t 21 17663 92.02922 0.06078022673695216 Product description 1706 2023-11-29 14:03:01.089303 2024-09-11 Cancelled Customer 1706 900953.9069369620 +1682 f 40 160068 32.403114 0.9089019620301428 Product description 1682 2022-11-25 14:03:01.089303 2024-01-18 Closed Customer 1682 9261.1365153594 +1699 t 87 192588 76.82533 0.5971066506251468 Product description 1699 2022-06-12 14:03:01.089303 2024-12-26 Processing Customer 1699 156953.9020632010 +1708 t 29 517518 25.442524 0.8795139105627889 Product description 1708 2023-01-27 14:03:01.089303 2025-07-27 Cancelled Customer 1708 361769.7756389870 +1685 t 9 288298 65.4935 0.20741649927305872 Product description 1685 2021-09-05 14:03:01.089303 2023-08-15 Closed Customer 1685 251072.5825862070 +1700 f 79 214346 61.97365 0.9262926313534372 Product description 1700 2022-10-13 14:03:01.089303 2023-01-14 Closed Customer 1700 452609.9253334910 +1709 f 98 972442 55.534184 0.43022384080773435 Product description 1709 2022-04-13 14:03:01.089303 2025-11-20 Processing Customer 1709 250673.0168448320 +1691 t 65 945918 24.208538 0.9982301936407936 Product description 1691 2022-06-27 14:03:01.089303 2025-06-20 Closed Customer 1691 475734.0972940480 +1702 t 10 637624 13.070687 0.6575433176892567 Product description 1702 2022-03-10 14:03:01.089303 2023-04-03 Processing Customer 1702 170139.4466301810 +1710 t 78 6492 61.592964 0.30267303140522017 Product description 1710 2024-02-21 14:03:01.089303 2024-07-14 Cancelled Customer 1710 798126.0493591120 +1694 t 24 834362 36.85932 0.7056077653092174 Product description 1694 2023-07-04 14:03:01.089303 2024-08-02 Closed Customer 1694 181252.3118211860 +1703 t 96 32982 93.740105 0.28260206188813086 Product description 1703 2023-10-28 14:03:01.089303 2023-03-25 Processing Customer 1703 879628.5907106520 +1711 t 82 788100 39.22643 0.5463191515190822 Product description 1711 2022-11-17 14:03:01.089303 2024-11-29 Closed Customer 1711 502680.3017277860 +1698 t 90 935765 64.60289 0.8486283894198721 Product description 1698 2023-03-17 14:03:01.089303 2023-07-01 Processing Customer 1698 141542.6281353940 +1704 t 12 933274 87.61653 0.8753773806020142 Product description 1704 2021-08-09 14:03:01.089303 2024-10-24 Processing Customer 1704 632763.5497104540 +1712 t 54 906227 42.618557 0.7657929620484545 Product description 1712 2023-06-28 14:03:01.089303 2024-02-16 Processing Customer 1712 65036.3931073059 +1707 f 26 888312 53.669178 0.6161309121762102 Product description 1707 2022-02-20 14:03:01.089303 2025-12-22 Closed Customer 1707 806734.5375487240 +1714 t 5 888519 14.590115 0.5723546040079448 Product description 1714 2023-01-19 14:03:01.089303 2025-09-19 Closed Customer 1714 262415.1141648380 +1717 t 43 187222 47.956043 0.33831763897839195 Product description 1717 2023-10-16 14:03:01.089303 2024-04-11 Cancelled Customer 1717 920345.0007334300 +1713 f 78 587253 12.46675 0.4656261209138819 Product description 1713 2024-04-27 14:03:01.089303 2024-10-07 Processing Customer 1713 935940.7119178340 +1715 t 86 544506 90.97349 0.9867247527104404 Product description 1715 2024-03-25 14:03:01.089303 2024-11-10 Closed Customer 1715 222634.2239609170 +1718 f 38 990092 36.43213 0.7416141849368998 Product description 1718 2022-08-02 14:03:01.089303 2024-03-20 Processing Customer 1718 519171.8528885940 +1716 t 81 394817 34.105774 0.9638814390033801 Product description 1716 2022-01-15 14:03:01.089303 2023-12-15 Closed Customer 1716 528863.9253896750 +1721 f 50 484690 25.876818 0.0033533000892056464 Product description 1721 2022-12-05 14:03:01.089303 2024-04-15 Closed Customer 1721 584208.3817956190 +1720 f 31 859186 26.830347 0.6007156754866969 Product description 1720 2022-02-03 14:03:01.089303 2023-07-16 Closed Customer 1720 475812.5538682480 +1719 f 86 541284 0.3965946 0.3851281460814562 Product description 1719 2024-01-22 14:03:01.089303 2023-12-31 Processing Customer 1719 524284.6068955450 +1723 t 26 193068 65.20316 0.7594604183507663 Product description 1723 2023-02-25 14:03:01.089303 2025-08-13 Closed Customer 1723 907549.6943993290 +1722 t 38 749652 42.905304 0.17750397847220967 Product description 1722 2024-05-27 14:03:01.089303 2024-12-27 Processing Customer 1722 732103.4478292500 +1724 t 27 9307 75.459816 0.817788801226591 Product description 1724 2023-08-10 14:03:01.089303 2024-10-28 Closed Customer 1724 787686.1372227250 +1728 t 74 943437 91.68756 0.4398289496824823 Product description 1728 2024-02-11 14:03:01.089303 2025-12-24 Processing Customer 1728 499478.4601902320 +1725 t 67 845864 6.0420117 0.747610409110635 Product description 1725 2024-05-14 14:03:01.089303 2025-08-29 Closed Customer 1725 790880.9226766600 +1726 f 75 406333 66.19327 0.9048343497724574 Product description 1726 2023-08-25 14:03:01.089303 2025-06-22 Processing Customer 1726 832653.9766657210 +1729 t 67 540281 13.547738 0.36210393599895596 Product description 1729 2024-01-17 14:03:01.089303 2023-10-03 Closed Customer 1729 648348.6364846340 +1734 t 73 459993 45.565044 0.41295525144223433 Product description 1734 2024-03-06 14:03:01.089303 2024-11-28 Closed Customer 1734 212518.0881453620 +1727 f 49 101072 20.155087 0.4309957438652745 Product description 1727 2023-12-29 14:03:01.089303 2024-10-15 Closed Customer 1727 298601.8827639220 +1730 f 3 200396 61.168255 0.8016119322169608 Product description 1730 2022-11-16 14:03:01.089303 2024-04-21 Closed Customer 1730 232953.0694763800 +1735 t 50 325311 20.747007 0.29184992462282366 Product description 1735 2022-12-11 14:03:01.089303 2024-09-06 Closed Customer 1735 170972.4218087240 +1731 t 61 123902 54.931824 0.5987349125405501 Product description 1731 2023-03-14 14:03:01.089303 2024-10-21 Closed Customer 1731 476536.5578527070 +1732 t 38 468144 1.1720909 0.9766968677336756 Product description 1732 2021-10-09 14:03:01.089303 2023-12-07 Processing Customer 1732 142450.3411315290 +1736 t 88 451401 85.20045 0.5569615216239541 Product description 1736 2023-12-12 14:03:01.089303 2024-06-06 Closed Customer 1736 821231.1922590670 +1733 t 76 14014 31.439587 0.3538646074032741 Product description 1733 2023-09-08 14:03:01.089303 2024-09-13 Closed Customer 1733 953487.7843528910 +1737 f 80 80159 16.729845 0.5091173070685961 Product description 1737 2023-12-10 14:03:01.089303 2024-05-09 Closed Customer 1737 404845.7724404390 +1738 t 66 625891 72.25075 0.13041843388002405 Product description 1738 2023-09-19 14:03:01.089303 2024-11-19 Processing Customer 1738 939340.5115256250 +1739 t 20 109968 96.023994 0.007391631937807119 Product description 1739 2024-04-13 14:03:01.089303 2024-07-26 Processing Customer 1739 154411.4885711390 +1740 t 73 906899 72.94418 0.9370844980640776 Product description 1740 2022-03-15 14:03:01.089303 2025-11-06 Closed Customer 1740 270132.7028537220 +1746 t 32 289912 13.077498 0.4746379343733267 Product description 1746 2022-10-30 14:03:01.089303 2024-11-08 Processing Customer 1746 769328.9242279950 +1743 t 67 965588 51.931854 0.1643468630636491 Product description 1743 2023-12-16 14:03:01.089303 2023-06-18 Processing Customer 1743 652214.4691455370 +1741 t 86 649857 4.5917373 0.63298360885398 Product description 1741 2023-09-21 14:03:01.089303 2024-10-20 Processing Customer 1741 936395.1192893150 +1747 f 94 159246 2.8435469 0.00537989489453139 Product description 1747 2022-01-16 14:03:01.089303 2024-11-10 Processing Customer 1747 239648.1733744590 +1744 f 74 786585 18.872423 0.6281044124809227 Product description 1744 2022-12-09 14:03:01.089303 2024-08-07 Closed Customer 1744 619240.0352321630 +1742 t 9 719284 37.66005 0.6487342063954706 Product description 1742 2021-10-16 14:03:01.089303 2024-01-28 Closed Customer 1742 51216.0016932555 +1748 f 80 683983 53.153618 0.34495078718556016 Product description 1748 2021-08-28 14:03:01.089303 2024-05-16 Processing Customer 1748 517034.3042266020 +1745 f 16 271168 43.13696 0.8303426188867391 Product description 1745 2023-05-01 14:03:01.089303 2024-06-03 Processing Customer 1745 843511.8646806680 +1751 f 46 868317 12.952473 0.21533029804819037 Product description 1751 2022-06-24 14:03:01.089303 2025-08-21 Processing Customer 1751 672921.0640502290 +1752 f 39 843303 58.12377 0.10398260178074281 Product description 1752 2021-10-07 14:03:01.089303 2023-05-29 Processing Customer 1752 817930.7826710660 +1749 f 78 743797 6.4231024 0.8107552083008756 Product description 1749 2023-01-18 14:03:01.089303 2025-09-15 Closed Customer 1749 661661.7924150430 +1753 f 46 971162 81.474686 0.45264451878290046 Product description 1753 2022-08-03 14:03:01.089303 2025-10-22 Closed Customer 1753 899041.7935873510 +1762 f 11 930101 13.826495 0.3210087814215612 Product description 1762 2024-05-31 14:03:01.089303 2025-10-31 Closed Customer 1762 895391.4105392080 +1750 t 17 569766 59.05668 0.4743264046711815 Product description 1750 2024-05-07 14:03:01.089303 2025-09-21 Cancelled Customer 1750 863191.8618143930 +1755 f 68 697260 94.062675 0.8996008106674687 Product description 1755 2022-09-07 14:03:01.089303 2024-03-12 Processing Customer 1755 419225.9707999280 +1767 f 74 290386 65.069756 0.21038415379203457 Product description 1767 2023-01-05 14:03:01.089303 2023-08-25 Cancelled Customer 1767 388787.6253372010 +1754 f 87 305913 91.8461 0.6504431979316259 Product description 1754 2023-08-27 14:03:01.089303 2024-04-25 Closed Customer 1754 627151.0224270140 +1756 t 68 39069 5.533045 0.5482799986558682 Product description 1756 2022-06-05 14:03:01.089303 2025-12-09 Closed Customer 1756 741385.3998496830 +1769 f 52 287755 21.48365 0.5831121384551174 Product description 1769 2021-08-23 14:03:01.089303 2025-08-22 Closed Customer 1769 222197.1365209400 +1758 f 36 598772 84.385506 0.0666316588134741 Product description 1758 2022-02-25 14:03:01.089303 2023-05-28 Closed Customer 1758 363291.5011942190 +1757 f 90 241263 3.1450427 0.691157888306396 Product description 1757 2024-03-21 14:03:01.089303 2025-03-17 Closed Customer 1757 66851.5183934062 +1770 t 27 423866 49.23739 0.04743764487678348 Product description 1770 2022-09-27 14:03:01.089303 2023-02-16 Processing Customer 1770 823554.2829343100 +1763 t 93 497215 48.489902 0.5515354626263793 Product description 1763 2021-10-06 14:03:01.089303 2023-01-24 Closed Customer 1763 31312.5434499284 +1759 f 92 236866 8.223093 0.5936905553868677 Product description 1759 2023-01-22 14:03:01.089303 2023-02-16 Closed Customer 1759 962069.0569995890 +1772 f 84 690924 62.432903 0.17317524961776698 Product description 1772 2021-11-05 14:03:01.089303 2024-09-25 Closed Customer 1772 295233.6342580180 +1764 t 95 172232 67.064415 0.9389852907692635 Product description 1764 2023-12-02 14:03:01.089303 2025-12-09 Processing Customer 1764 109779.6501491710 +1760 f 39 545648 80.80829 0.040140673774320845 Product description 1760 2023-06-10 14:03:01.089303 2025-07-10 Processing Customer 1760 210113.8536219050 +1773 f 2 845200 8.136615 0.4968148714974383 Product description 1773 2023-07-22 14:03:01.089303 2023-09-20 Closed Customer 1773 305697.3248627200 +1766 f 48 338101 84.22426 0.24897650092922063 Product description 1766 2023-01-10 14:03:01.089303 2025-06-03 Closed Customer 1766 753050.7257697680 +1761 f 46 811549 95.72396 0.8005472664221251 Product description 1761 2022-01-14 14:03:01.089303 2025-02-10 Closed Customer 1761 978527.3157606230 +1775 t 36 354424 30.15821 0.5921640159213091 Product description 1775 2022-11-28 14:03:01.089303 2024-11-08 Closed Customer 1775 837176.4038197040 +1776 f 77 908271 91.6829 0.7968000247862612 Product description 1776 2024-06-10 14:03:01.089303 2023-02-21 Closed Customer 1776 128361.7561179180 +1765 t 44 957783 0.49677527 0.9261492404371161 Product description 1765 2023-04-26 14:03:01.089303 2023-01-12 Closed Customer 1765 606766.4972710530 +1789 f 47 905917 85.23039 0.998043407240278 Product description 1789 2022-11-29 14:03:01.089303 2025-07-22 Closed Customer 1789 250047.0929884670 +1777 t 14 1247 20.285381 0.9054872009401613 Product description 1777 2022-04-02 14:03:01.089303 2025-12-13 Processing Customer 1777 546101.8108051970 +1768 f 90 352947 45.53818 0.2738832356948784 Product description 1768 2023-01-07 14:03:01.089303 2024-05-22 Closed Customer 1768 813518.3251690210 +1792 t 74 8448 95.55196 0.5933049666814689 Product description 1792 2023-07-14 14:03:01.089303 2025-01-20 Closed Customer 1792 561280.2507038520 +1778 t 70 390 4.944769 0.7686992562987278 Product description 1778 2022-08-31 14:03:01.089303 2025-08-03 Closed Customer 1778 549358.0557293640 +1771 f 86 390003 60.577614 0.6812870976379237 Product description 1771 2022-02-03 14:03:01.089303 2023-12-24 Closed Customer 1771 501497.8378722080 +1793 t 45 214059 79.20035 0.4148330015300452 Product description 1793 2024-01-18 14:03:01.089303 2025-12-12 Processing Customer 1793 762944.5721145060 +1779 t 39 36900 96.11403 0.3525210830018217 Product description 1779 2022-10-07 14:03:01.089303 2025-11-23 Closed Customer 1779 868577.5967032190 +1774 f 54 490145 26.73189 0.187625160699735 Product description 1774 2023-03-23 14:03:01.089303 2024-05-22 Closed Customer 1774 25800.7668830018 +1795 f 42 118537 68.47213 0.33407220089092604 Product description 1795 2022-03-05 14:03:01.089303 2024-06-17 Closed Customer 1795 903526.1127215720 +1781 t 48 53305 14.067137 0.3911247268506308 Product description 1781 2024-04-13 14:03:01.089303 2024-11-25 Processing Customer 1781 791105.4248548270 +1780 f 85 994280 26.677517 0.6297860927443715 Product description 1780 2022-02-25 14:03:01.089303 2024-06-24 Cancelled Customer 1780 4854.0538272199 +1801 f 3 891088 38.370693 0.03139977806167238 Product description 1801 2022-01-25 14:03:01.089303 2024-04-16 Closed Customer 1801 629195.0703842420 +1784 f 55 816905 70.66353 0.5206207808119707 Product description 1784 2023-06-27 14:03:01.089303 2024-06-11 Processing Customer 1784 198172.0899150330 +1782 f 18 282007 58.097546 0.032267943847145375 Product description 1782 2022-06-23 14:03:01.089303 2023-03-25 Closed Customer 1782 655652.5540951660 +1803 f 55 641677 60.757008 0.11849360570186818 Product description 1803 2022-12-08 14:03:01.089303 2025-03-15 Closed Customer 1803 379334.9333314570 +1788 t 53 541099 20.613626 0.9570817965904972 Product description 1788 2022-05-16 14:03:01.089303 2025-12-27 Processing Customer 1788 472930.1091924820 +1783 t 29 671319 14.37596 0.3644035626598381 Product description 1783 2023-02-24 14:03:01.089303 2024-01-05 Closed Customer 1783 358729.5440372780 +1807 t 38 507067 4.2217326 0.20011980799293738 Product description 1807 2023-04-19 14:03:01.089303 2025-11-08 Closed Customer 1807 243481.4721194840 +1796 f 18 801852 47.156704 0.39093221937921285 Product description 1796 2022-06-21 14:03:01.089303 2023-10-05 Closed Customer 1796 195360.7110788910 +1785 t 29 257185 32.756405 0.8857192346665101 Product description 1785 2022-12-04 14:03:01.089303 2025-11-04 Processing Customer 1785 4702.5212704135 +1814 t 77 208474 6.673336 0.3606218527834919 Product description 1814 2023-09-02 14:03:01.089303 2025-12-06 Closed Customer 1814 588315.4072205560 +1797 t 63 276824 64.978874 0.0921863888672867 Product description 1797 2022-05-11 14:03:01.089303 2023-01-04 Closed Customer 1797 678629.8748890760 +1786 t 87 172176 82.840324 0.11393150829503185 Product description 1786 2022-04-03 14:03:01.089303 2025-06-23 Processing Customer 1786 492501.4882263990 +1817 f 19 786052 60.48512 0.09517662456339693 Product description 1817 2023-01-22 14:03:01.089303 2023-09-04 Processing Customer 1817 138999.7145363110 +1798 f 19 514580 43.165142 0.9193461496271205 Product description 1798 2023-08-27 14:03:01.089303 2025-11-02 Closed Customer 1798 281585.0533330890 +1787 f 9 879574 52.400772 0.5336273004352421 Product description 1787 2021-09-13 14:03:01.089303 2023-11-26 Cancelled Customer 1787 156843.4100159100 +1822 f 96 431509 63.012466 0.005660660606817913 Product description 1822 2023-09-01 14:03:01.089303 2023-03-21 Cancelled Customer 1822 690408.5852197960 +1800 t 76 491214 66.133865 0.8125552424405917 Product description 1800 2023-05-29 14:03:01.089303 2023-07-23 Closed Customer 1800 843599.0955105480 +1790 f 55 822394 6.9239216 0.6162175061610036 Product description 1790 2022-02-13 14:03:01.089303 2024-11-11 Cancelled Customer 1790 162435.4383453510 +1824 f 65 427708 69.7837 0.35877387186780396 Product description 1824 2024-05-10 14:03:01.089303 2025-04-13 Processing Customer 1824 963581.4194586100 +1804 f 6 185813 74.79957 0.10613028465718699 Product description 1804 2023-08-24 14:03:01.089303 2024-09-20 Closed Customer 1804 391924.8886920600 +1791 f 81 615004 76.47541 0.41836516182473105 Product description 1791 2022-09-12 14:03:01.089303 2023-01-16 Closed Customer 1791 42760.8384254263 +1826 f 44 767251 25.827438 0.8765514478373575 Product description 1826 2023-01-04 14:03:01.089303 2023-11-07 Processing Customer 1826 32666.5365096765 +1808 t 87 778629 49.658737 0.4996116549141725 Product description 1808 2023-03-02 14:03:01.089303 2025-01-07 Processing Customer 1808 238593.7255111160 +1794 t 45 640538 44.35336 0.02596462132112265 Product description 1794 2022-01-11 14:03:01.089303 2023-05-05 Closed Customer 1794 336009.0707307070 +1830 t 6 26571 87.714455 0.9548856802464982 Product description 1830 2024-03-08 14:03:01.089303 2023-08-01 Processing Customer 1830 811390.5715543160 +1810 f 62 560559 81.438896 0.013084746792305424 Product description 1810 2024-02-24 14:03:01.089303 2023-10-25 Closed Customer 1810 228596.4289094980 +1799 f 59 271128 93.82748 0.5410103504424413 Product description 1799 2023-01-24 14:03:01.089303 2024-12-05 Closed Customer 1799 561026.2265430240 +1833 f 1 305589 26.288101 0.11905107839415052 Product description 1833 2021-10-26 14:03:01.089303 2023-08-08 Processing Customer 1833 58411.6884336474 +1811 f 67 894842 69.05303 0.24145485925378907 Product description 1811 2023-06-17 14:03:01.089303 2023-06-24 Closed Customer 1811 599766.5637194770 +1802 t 57 825245 58.16073 0.13444256779526143 Product description 1802 2023-08-27 14:03:01.089303 2025-05-29 Processing Customer 1802 606003.3552374870 +1834 t 70 53077 86.67859 0.14952441241168657 Product description 1834 2023-12-20 14:03:01.089303 2023-03-30 Closed Customer 1834 33291.0419339676 +1818 f 86 384782 70.26089 0.6423941900400543 Product description 1818 2022-06-29 14:03:01.089303 2023-08-14 Closed Customer 1818 369695.8338247360 +1805 f 38 55668 36.3005 0.34420824489173896 Product description 1805 2023-06-09 14:03:01.089303 2023-10-05 Processing Customer 1805 220311.6080779530 +1835 f 37 760059 54.773136 0.07249885270400114 Product description 1835 2024-07-07 14:03:01.089303 2025-07-18 Processing Customer 1835 445969.1257028130 +1820 t 45 915146 63.576603 0.1408203561584962 Product description 1820 2024-04-21 14:03:01.089303 2023-12-09 Closed Customer 1820 315233.2457612130 +1806 t 43 458868 36.483753 0.6957632845031014 Product description 1806 2022-06-04 14:03:01.089303 2024-01-28 Closed Customer 1806 73760.4343998122 +1838 f 83 200752 98.785805 0.863198055469617 Product description 1838 2024-07-25 14:03:01.089303 2025-08-07 Processing Customer 1838 48656.1100386247 +1828 t 39 338501 75.154785 0.027282122038901235 Product description 1828 2022-01-01 14:03:01.089303 2023-06-25 Closed Customer 1828 366968.6850421100 +1809 t 12 88802 8.881248 0.11327930162159561 Product description 1809 2024-01-26 14:03:01.089303 2025-01-28 Processing Customer 1809 713139.3628363900 +1840 f 5 88595 31.433914 0.7575976527273696 Product description 1840 2023-10-17 14:03:01.089303 2023-08-27 Closed Customer 1840 343469.2098063400 +1832 f 10 79631 28.504217 0.16822374111901794 Product description 1832 2021-12-19 14:03:01.089303 2023-03-19 Processing Customer 1832 958407.5842680950 +1812 t 33 841909 38.653954 0.1501214736752985 Product description 1812 2022-10-14 14:03:01.089303 2023-09-29 Processing Customer 1812 990110.2840696400 +1846 f 14 351799 10.870421 0.8638322487260481 Product description 1846 2024-06-27 14:03:01.089303 2023-01-09 Closed Customer 1846 969502.7324848590 +1837 f 17 242698 77.49248 0.0007419253805132087 Product description 1837 2024-01-15 14:03:01.089303 2025-09-28 Processing Customer 1837 240193.6684278070 +1813 t 68 26638 32.980656 0.27893888680045364 Product description 1813 2023-06-04 14:03:01.089303 2025-12-10 Closed Customer 1813 679108.0807363590 +1847 f 68 855530 98.65237 0.0971201414585039 Product description 1847 2023-09-29 14:03:01.089303 2023-03-22 Closed Customer 1847 702557.8182802940 +1839 f 87 278077 39.052063 0.27863962871752435 Product description 1839 2022-11-05 14:03:01.089303 2025-02-19 Processing Customer 1839 171147.7626878870 +1815 t 3 557618 10.5443 0.1071754050364575 Product description 1815 2023-10-23 14:03:01.089303 2025-06-08 Processing Customer 1815 287985.2881844120 +1851 t 14 269147 76.69733 0.1122153624838873 Product description 1851 2024-06-17 14:03:01.089303 2024-12-20 Closed Customer 1851 258990.8370253830 +1841 f 8 982401 34.62095 0.02709518293768909 Product description 1841 2023-06-05 14:03:01.089303 2023-10-24 Closed Customer 1841 990311.0978247010 +1816 t 23 924199 68.0586 0.6800865080412635 Product description 1816 2023-01-24 14:03:01.089303 2023-04-22 Closed Customer 1816 156346.1218396790 +1852 f 45 705963 12.017801 0.10168442010986212 Product description 1852 2021-10-23 14:03:01.089303 2024-06-19 Closed Customer 1852 917153.6936995710 +1842 f 41 337941 1.0461854 0.03465300060008403 Product description 1842 2022-11-21 14:03:01.089303 2024-12-29 Processing Customer 1842 586984.0450024030 +1819 f 40 252142 11.780852 0.8346499908400489 Product description 1819 2023-07-09 14:03:01.089303 2023-08-17 Closed Customer 1819 583298.5141391410 +1853 f 8 469636 93.803276 0.6691746918243879 Product description 1853 2024-06-20 14:03:01.089303 2025-11-15 Closed Customer 1853 840823.3648817610 +1845 f 41 886933 71.5369 0.3396064579700102 Product description 1845 2023-09-02 14:03:01.089303 2024-05-04 Processing Customer 1845 308118.2270829710 +1821 f 4 2412 93.10125 0.8289132048722863 Product description 1821 2023-06-05 14:03:01.089303 2024-08-23 Processing Customer 1821 906550.5942506210 +1856 f 60 413553 81.814445 0.8639421328682886 Product description 1856 2024-03-22 14:03:01.089303 2023-05-28 Processing Customer 1856 286839.7039218530 +1848 f 95 369510 53.655514 0.2526905000862705 Product description 1848 2023-05-07 14:03:01.089303 2023-10-24 Closed Customer 1848 866080.6521869160 +1823 f 35 745018 56.14528 0.6984921476474426 Product description 1823 2022-06-18 14:03:01.089303 2024-09-16 Closed Customer 1823 653861.0889246820 +1857 f 39 517147 82.12241 0.10537240863667563 Product description 1857 2023-10-05 14:03:01.089303 2025-10-03 Processing Customer 1857 65473.0506001933 +1849 t 69 61098 60.549816 0.8291849798281312 Product description 1849 2022-03-26 14:03:01.089303 2023-12-27 Processing Customer 1849 152732.6004827780 +1825 t 23 985163 57.092285 0.7707202578199954 Product description 1825 2022-02-20 14:03:01.089303 2025-08-29 Closed Customer 1825 511313.2517275890 +1862 t 95 373049 35.849426 0.8375081074340045 Product description 1862 2022-08-14 14:03:01.089303 2023-09-27 Closed Customer 1862 966431.1444582090 +1854 t 61 451790 21.521826 0.9665766780698526 Product description 1854 2021-10-03 14:03:01.089303 2023-08-15 Closed Customer 1854 36970.8393007286 +1827 f 5 680781 70.06323 0.7792138074761823 Product description 1827 2023-08-27 14:03:01.089303 2024-09-13 Closed Customer 1827 454564.5461646300 +1863 f 30 969373 80.663506 0.7014460052482647 Product description 1863 2023-09-11 14:03:01.089303 2023-06-01 Closed Customer 1863 33663.4239427163 +1858 f 16 29213 99.18028 0.5932730525327123 Product description 1858 2024-02-12 14:03:01.089303 2025-07-17 Closed Customer 1858 369756.0453850740 +1829 f 5 992834 21.528202 0.7738210441833004 Product description 1829 2024-06-26 14:03:01.089303 2023-03-23 Processing Customer 1829 296633.5738404560 +1865 t 80 720622 62.74031 0.8290518365944877 Product description 1865 2021-10-06 14:03:01.089303 2024-07-21 Closed Customer 1865 578328.4533469520 +1861 t 50 986536 75.01454 0.6797727742102033 Product description 1861 2024-04-12 14:03:01.089303 2025-02-10 Processing Customer 1861 331471.5471865310 +1831 f 40 204479 16.09829 0.7876823611086365 Product description 1831 2023-03-07 14:03:01.089303 2023-12-21 Processing Customer 1831 980643.6443102450 +1866 f 72 801822 90.34635 0.8326365726283669 Product description 1866 2022-10-11 14:03:01.089303 2023-11-19 Closed Customer 1866 206566.7050937100 +1864 f 23 838980 87.23592 0.4649287488653222 Product description 1864 2021-12-02 14:03:01.089303 2025-05-03 Closed Customer 1864 771944.3779876090 +1836 t 38 491689 79.11062 0.24136530632245723 Product description 1836 2022-02-19 14:03:01.089303 2023-11-21 Closed Customer 1836 624532.9938987860 +1869 t 63 690005 37.71532 0.4906174989075822 Product description 1869 2021-09-23 14:03:01.089303 2025-10-29 Cancelled Customer 1869 484270.4129737570 +1867 t 60 446614 73.06141 0.7403761069160133 Product description 1867 2023-08-07 14:03:01.089303 2025-09-12 Processing Customer 1867 12633.8623753739 +1843 t 60 407891 5.118549 0.9939541622994312 Product description 1843 2023-09-28 14:03:01.089303 2025-11-04 Closed Customer 1843 738821.7590360110 +1870 f 24 864509 56.07744 0.3615338163428099 Product description 1870 2022-02-05 14:03:01.089303 2023-01-28 Processing Customer 1870 730979.4179518930 +1868 f 35 666828 46.93064 0.9000518893762184 Product description 1868 2021-10-13 14:03:01.089303 2025-03-11 Closed Customer 1868 827115.5358854830 +1844 f 63 559888 97.743805 0.25160786806142 Product description 1844 2021-10-19 14:03:01.089303 2023-08-11 Closed Customer 1844 923833.1961749860 +1871 f 67 958996 16.38866 0.4745254194568851 Product description 1871 2022-04-02 14:03:01.089303 2023-11-03 Closed Customer 1871 187378.0436823010 +1872 f 92 855212 18.310358 0.14804435778109948 Product description 1872 2021-11-16 14:03:01.089303 2025-03-08 Closed Customer 1872 363344.4604444310 +1850 f 77 675227 55.418095 0.8923330558485816 Product description 1850 2024-01-13 14:03:01.089303 2024-04-27 Processing Customer 1850 608407.3408178730 +1874 f 61 364712 70.94628 0.6456173080313583 Product description 1874 2024-02-06 14:03:01.089303 2025-05-14 Closed Customer 1874 510151.0601668840 +1873 f 74 803340 54.849125 0.27149774638774105 Product description 1873 2022-01-16 14:03:01.089303 2025-01-26 Closed Customer 1873 204050.7322390970 +1855 t 85 499363 28.673935 0.17889349910903007 Product description 1855 2023-05-11 14:03:01.089303 2024-01-17 Closed Customer 1855 560390.9266515110 +1875 t 49 998256 79.96926 0.09954408160685446 Product description 1875 2023-12-02 14:03:01.089303 2023-03-30 Processing Customer 1875 665278.1295951510 +1878 f 42 776278 79.829926 0.00684378344655201 Product description 1878 2024-06-27 14:03:01.089303 2023-07-12 Processing Customer 1878 885612.7942563960 +1859 t 48 11197 49.26478 0.9353367775170085 Product description 1859 2024-03-16 14:03:01.089303 2023-04-09 Closed Customer 1859 491463.9142719290 +1885 f 18 247092 52.8284 0.8640290507009318 Product description 1885 2021-10-29 14:03:01.089303 2023-08-26 Closed Customer 1885 979294.3857507410 +1880 f 58 400496 99.105606 0.3839176701521332 Product description 1880 2021-10-25 14:03:01.089303 2024-08-10 Closed Customer 1880 285423.4082371220 +1860 t 19 310369 41.891262 0.17542274874232788 Product description 1860 2023-05-29 14:03:01.089303 2023-08-10 Closed Customer 1860 579962.1631325810 +1887 t 69 86650 31.639746 0.2493898276453912 Product description 1887 2021-09-21 14:03:01.089303 2023-02-09 Closed Customer 1887 793369.0445147620 +1881 t 99 511694 35.034264 0.6306114828341656 Product description 1881 2022-09-23 14:03:01.089303 2025-11-12 Closed Customer 1881 796135.5817222330 +1876 f 99 992671 88.37925 0.7624585720521395 Product description 1876 2021-08-17 14:03:01.089303 2025-07-05 Closed Customer 1876 274150.4915832670 +1888 t 33 930661 61.272865 0.8852878023673831 Product description 1888 2022-10-31 14:03:01.089303 2024-08-24 Closed Customer 1888 65544.2662045047 +1883 t 46 395915 9.6133 0.129630220308929 Product description 1883 2022-02-07 14:03:01.089303 2024-10-31 Processing Customer 1883 438618.3057081330 +1877 t 60 667148 34.703472 0.4828017108644147 Product description 1877 2023-05-12 14:03:01.089303 2024-11-25 Closed Customer 1877 819595.0835784380 +1890 f 89 996967 7.236222 0.11313246621152828 Product description 1890 2023-05-04 14:03:01.089303 2023-10-02 Closed Customer 1890 821068.3995369830 +1884 f 53 490367 46.21542 0.3364021028230546 Product description 1884 2024-02-09 14:03:01.089303 2025-08-28 Closed Customer 1884 359025.7104731410 +1879 t 47 8236 87.55962 0.76343354966356 Product description 1879 2022-03-31 14:03:01.089303 2025-10-28 Processing Customer 1879 301981.8907628850 +1891 f 60 159334 3.7778087 0.7668107333826946 Product description 1891 2022-04-14 14:03:01.089303 2024-01-14 Processing Customer 1891 281684.9093099800 +1886 t 89 847894 62.192173 0.9163557131796303 Product description 1886 2022-09-25 14:03:01.089303 2023-02-08 Closed Customer 1886 365091.9526817940 +1882 t 58 157077 63.66578 0.7496884054496817 Product description 1882 2024-04-12 14:03:01.089303 2023-09-13 Processing Customer 1882 466844.3684440040 +1892 t 20 637032 56.92033 0.6411935294592617 Product description 1892 2023-01-14 14:03:01.089303 2025-06-26 Closed Customer 1892 72148.7738496052 +1889 f 17 917641 34.48421 0.716216593224555 Product description 1889 2021-11-01 14:03:01.089303 2024-02-12 Processing Customer 1889 316353.5716029960 +1894 f 70 876127 49.44607 0.5901982136421964 Product description 1894 2021-09-02 14:03:01.089303 2023-10-14 Cancelled Customer 1894 2184.7037939864 +1901 t 52 348490 88.34183 0.47568292213825814 Product description 1901 2022-07-27 14:03:01.089303 2025-02-09 Processing Customer 1901 960774.0335532570 +1893 f 17 414459 39.3322 0.3405616767362183 Product description 1893 2022-06-10 14:03:01.089303 2025-05-01 Processing Customer 1893 454215.3139290410 +1898 t 75 965394 74.3097 0.02872062801138142 Product description 1898 2022-05-12 14:03:01.089303 2025-11-07 Processing Customer 1898 363946.5272270780 +1903 f 74 958830 93.75813 0.43620204082170133 Product description 1903 2022-06-08 14:03:01.089303 2023-07-19 Closed Customer 1903 842588.3520565090 +1895 t 79 814733 6.877854 0.5373676348499679 Product description 1895 2022-01-18 14:03:01.089303 2023-06-30 Closed Customer 1895 334226.6239491560 +1900 f 46 414719 2.692217 0.8922724270502336 Product description 1900 2022-01-04 14:03:01.089303 2025-11-15 Processing Customer 1900 490438.9384055890 +1904 f 31 808815 25.46534 0.80212325820548 Product description 1904 2023-11-11 14:03:01.089303 2023-01-04 Closed Customer 1904 46761.5681000169 +1896 t 63 675855 60.645172 0.5994118527851278 Product description 1896 2022-07-11 14:03:01.089303 2025-07-16 Closed Customer 1896 428993.3685204090 +1902 t 89 45684 70.463936 0.49084566865127144 Product description 1902 2024-03-27 14:03:01.089303 2023-08-04 Processing Customer 1902 189203.8033818790 +1907 f 94 906223 32.97269 0.4518503258097759 Product description 1907 2024-02-11 14:03:01.089303 2024-02-21 Closed Customer 1907 18797.2334845909 +1897 t 24 817477 63.01677 0.9080309750614042 Product description 1897 2022-02-02 14:03:01.089303 2023-12-03 Closed Customer 1897 727504.2367174290 +1905 t 68 115114 4.7775598 0.8344516764462107 Product description 1905 2021-09-05 14:03:01.089303 2024-06-12 Processing Customer 1905 603617.3447024710 +1910 t 6 578254 59.596676 0.5906221958000621 Product description 1910 2023-07-20 14:03:01.089303 2025-02-08 Processing Customer 1910 123198.6443901500 +1899 t 16 359765 26.04027 0.1394574125196364 Product description 1899 2024-01-01 14:03:01.089303 2024-10-13 Processing Customer 1899 72463.9997327472 +1906 t 7 163747 93.32045 0.06483190655928794 Product description 1906 2022-08-24 14:03:01.089303 2023-04-25 Processing Customer 1906 543842.9967298580 +1911 t 98 978999 82.08625 0.6818103459632887 Product description 1911 2024-05-06 14:03:01.089303 2023-09-04 Closed Customer 1911 549252.4506591110 +1909 f 92 987333 83.42573 0.3678969259479423 Product description 1909 2024-03-05 14:03:01.089303 2024-05-10 Closed Customer 1909 839011.1241261100 +1908 t 36 47527 18.268936 0.860389964492402 Product description 1908 2022-02-09 14:03:01.089303 2023-08-04 Closed Customer 1908 920775.3131690590 +1914 f 71 537966 86.27558 0.0717353758957664 Product description 1914 2022-08-09 14:03:01.089303 2024-01-28 Closed Customer 1914 188155.7472258140 +1913 t 100 599392 53.919937 0.8564512696112025 Product description 1913 2022-01-27 14:03:01.089303 2024-07-01 Closed Customer 1913 801853.8817067480 +1912 f 67 868572 8.5788555 0.6018759937554385 Product description 1912 2023-02-10 14:03:01.089303 2025-12-22 Closed Customer 1912 824567.9736578280 +1915 f 99 536321 34.590763 0.34568024627720106 Product description 1915 2021-12-08 14:03:01.089303 2024-11-22 Closed Customer 1915 909536.5566429190 +1924 f 43 396880 30.229847 0.6761295236775133 Product description 1924 2021-08-30 14:03:01.089303 2025-11-18 Closed Customer 1924 986500.5336444240 +1916 f 91 632308 11.928771 0.2302558864319657 Product description 1916 2022-06-22 14:03:01.089303 2024-10-24 Closed Customer 1916 114777.4506312520 +1917 f 22 564695 54.214104 0.9396883084091705 Product description 1917 2023-03-12 14:03:01.089303 2025-01-31 Processing Customer 1917 963410.4520649700 +1932 f 19 94395 37.497906 0.8788250969341114 Product description 1932 2024-06-18 14:03:01.089303 2024-11-10 Processing Customer 1932 852751.0846112990 +1919 f 98 199316 11.641653 0.21446862570801883 Product description 1919 2023-04-10 14:03:01.089303 2024-12-27 Processing Customer 1919 757486.8946359670 +1918 t 59 479760 13.55721 0.09286589553734714 Product description 1918 2024-03-02 14:03:01.089303 2023-01-31 Closed Customer 1918 738315.0767259960 +1933 f 34 133837 65.46031 0.21244512613938227 Product description 1933 2023-11-14 14:03:01.089303 2025-10-31 Closed Customer 1933 337979.3418323300 +1921 f 2 208019 14.597356 0.5695312445984264 Product description 1921 2023-10-02 14:03:01.089303 2025-01-18 Processing Customer 1921 353946.3447549450 +1920 t 73 395665 13.713557 0.5484138891288772 Product description 1920 2024-03-10 14:03:01.089303 2023-10-27 Closed Customer 1920 588926.7536015910 +1936 t 19 302178 84.78867 0.19388919134786775 Product description 1936 2023-06-12 14:03:01.089303 2024-11-19 Processing Customer 1936 840806.9582053910 +1922 f 21 812074 44.992653 0.20865557711124083 Product description 1922 2022-10-09 14:03:01.089303 2025-12-13 Processing Customer 1922 848905.8800515820 +1923 t 42 12242 41.18754 0.5234584795173625 Product description 1923 2022-11-18 14:03:01.089303 2023-10-18 Processing Customer 1923 476821.2315240280 +1937 f 85 384850 76.0368 0.6650453522127968 Product description 1937 2023-02-10 14:03:01.089303 2023-09-12 Processing Customer 1937 996817.9112515190 +1926 t 7 675537 19.13484 0.1725241515804079 Product description 1926 2023-03-16 14:03:01.089303 2024-02-26 Processing Customer 1926 177430.5826806570 +1925 t 76 884538 26.899776 0.9931643319708421 Product description 1925 2023-04-13 14:03:01.089303 2025-01-07 Closed Customer 1925 306856.1511140830 +1940 f 21 551404 84.81685 0.4827679981981028 Product description 1940 2022-04-15 14:03:01.089303 2024-01-07 Closed Customer 1940 180092.5551043520 +1929 t 76 87508 7.2960916 0.7566790993390775 Product description 1929 2022-01-29 14:03:01.089303 2023-02-12 Closed Customer 1929 453182.1601670670 +1927 f 26 972624 93.01291 0.20836699141243642 Product description 1927 2021-10-09 14:03:01.089303 2023-10-10 Processing Customer 1927 906981.1883982480 +1941 t 81 441080 46.32503 0.5250140523743276 Product description 1941 2022-07-05 14:03:01.089303 2024-08-12 Processing Customer 1941 863929.5309116120 +1935 f 64 760103 84.57662 0.6318133993365684 Product description 1935 2022-05-10 14:03:01.089303 2025-12-03 Processing Customer 1935 55846.7894955186 +1928 f 77 405095 19.334013 0.09879493820593765 Product description 1928 2023-07-18 14:03:01.089303 2025-10-26 Closed Customer 1928 918096.9609951500 +1946 f 44 620790 44.868813 0.9051642158393385 Product description 1946 2023-02-07 14:03:01.089303 2023-10-05 Closed Customer 1946 904621.4822544270 +1938 t 13 13934 8.799665 0.38280913735425415 Product description 1938 2021-10-11 14:03:01.089303 2024-03-22 Processing Customer 1938 145107.3837168120 +1930 f 22 894679 56.346302 0.23564906471557734 Product description 1930 2021-10-15 14:03:01.089303 2025-01-01 Processing Customer 1930 196573.7487435460 +1955 t 98 355992 18.002602 0.45487225938962794 Product description 1955 2024-07-14 14:03:01.089303 2025-03-16 Closed Customer 1955 964944.0637409370 +1943 t 65 633340 77.632706 0.7410539896617401 Product description 1943 2022-09-12 14:03:01.089303 2024-10-12 Closed Customer 1943 145263.0560037140 +1931 t 78 325893 15.002286 0.28221681302657586 Product description 1931 2023-11-28 14:03:01.089303 2023-06-08 Closed Customer 1931 212329.3388391900 +1959 f 19 884712 44.692924 0.8715722630317835 Product description 1959 2024-05-19 14:03:01.089303 2025-08-14 Processing Customer 1959 715250.6845982600 +1945 f 88 625645 50.34861 0.8599426531970202 Product description 1945 2023-02-10 14:03:01.089303 2024-10-30 Closed Customer 1945 782690.3497457280 +1934 f 66 673404 9.616374 0.7382253234784066 Product description 1934 2022-10-11 14:03:01.089303 2023-07-25 Closed Customer 1934 370063.8926078450 +1963 f 35 891338 47.120163 0.854161612024793 Product description 1963 2022-03-16 14:03:01.089303 2023-07-01 Cancelled Customer 1963 185451.2658297660 +1947 f 8 395048 87.31024 0.15838771676660102 Product description 1947 2021-11-18 14:03:01.089303 2023-02-22 Closed Customer 1947 858744.8422974260 +1939 t 66 12503 41.193207 0.6189919886961626 Product description 1939 2023-06-28 14:03:01.089303 2025-11-23 Closed Customer 1939 371000.7749574590 +1965 t 60 562807 50.39868 0.3479562546860322 Product description 1965 2023-11-27 14:03:01.089303 2025-04-25 Closed Customer 1965 58538.6917484421 +1948 f 80 428968 86.61899 0.6374260826802889 Product description 1948 2021-09-02 14:03:01.089303 2023-09-10 Closed Customer 1948 229189.5369111860 +1942 f 33 170584 88.06533 0.5076565960410768 Product description 1942 2024-07-26 14:03:01.089303 2025-09-20 Closed Customer 1942 930394.0418030410 +1971 f 50 560280 63.51288 0.04348040857746582 Product description 1971 2022-12-06 14:03:01.089303 2024-12-29 Closed Customer 1971 929070.2448130300 +1949 f 58 594304 47.565052 0.8170503795007882 Product description 1949 2023-03-17 14:03:01.089303 2024-10-17 Processing Customer 1949 527393.3364526470 +1944 t 71 507958 20.347145 0.08685523505836201 Product description 1944 2022-07-14 14:03:01.089303 2023-09-17 Processing Customer 1944 241696.9407166430 +1973 t 51 838043 38.73201 0.8153971763828238 Product description 1973 2022-07-13 14:03:01.089303 2024-11-10 Processing Customer 1973 182836.3246980620 +1950 t 38 425270 63.310886 0.8682984140759338 Product description 1950 2023-12-19 14:03:01.089303 2025-11-11 Closed Customer 1950 203035.9961205690 +1952 t 16 525979 0.52202547 0.5727302633647362 Product description 1952 2024-04-15 14:03:01.089303 2023-04-28 Closed Customer 1952 762599.3306462820 +1980 f 31 285428 35.65212 0.5639069372964087 Product description 1980 2024-05-30 14:03:01.089303 2025-02-23 Processing Customer 1980 527996.0432316210 +1951 f 63 404115 42.277298 0.4944688914231854 Product description 1951 2024-01-17 14:03:01.089303 2024-01-15 Processing Customer 1951 517109.3787776900 +1954 t 54 456403 31.91467 0.13697494487260187 Product description 1954 2021-08-05 14:03:01.089303 2025-09-12 Processing Customer 1954 929547.2711531050 +1988 f 51 165720 20.846708 0.03600273515697694 Product description 1988 2022-05-24 14:03:01.089303 2024-09-21 Closed Customer 1988 866380.9880142600 +1953 t 10 662911 23.572412 0.2941433748914868 Product description 1953 2022-06-16 14:03:01.089303 2023-05-14 Closed Customer 1953 1238.0085582677 +1957 t 15 521501 17.90955 0.9391870045550412 Product description 1957 2021-09-27 14:03:01.089303 2023-08-28 Closed Customer 1957 10297.6522301645 +1990 t 91 881514 88.314514 0.24687857853203354 Product description 1990 2022-01-14 14:03:01.089303 2024-12-04 Closed Customer 1990 60565.9066808606 +1956 f 47 977090 82.09642 0.7826425640032006 Product description 1956 2022-07-03 14:03:01.089303 2025-04-09 Closed Customer 1956 76377.4939270405 +1964 f 54 544702 48.22805 0.35251868578795253 Product description 1964 2024-04-26 14:03:01.089303 2023-04-04 Processing Customer 1964 972760.1344029540 +1995 f 44 94164 71.93842 0.07258080700311353 Product description 1995 2022-03-08 14:03:01.089303 2025-08-17 Closed Customer 1995 256381.7553503930 +1958 f 84 356664 61.73201 0.1359865578071826 Product description 1958 2024-04-02 14:03:01.089303 2025-07-12 Processing Customer 1958 834446.9543688360 +1966 t 55 374999 5.975183 0.7325925725265456 Product description 1966 2022-11-23 14:03:01.089303 2024-02-17 Processing Customer 1966 589680.8401614070 +2003 t 15 153563 91.877464 0.9736785545054403 Product description 2003 2021-11-23 14:03:01.089303 2025-10-15 Processing Customer 2003 701221.4444923010 +1960 t 84 765713 4.221323 0.187973474223174 Product description 1960 2023-02-22 14:03:01.089303 2024-02-29 Closed Customer 1960 985473.3683591800 +1969 t 66 582871 39.308018 0.7797001252694677 Product description 1969 2022-05-12 14:03:01.089303 2023-12-23 Closed Customer 1969 419160.4231072650 +2006 t 3 85626 92.402054 0.7460831581574823 Product description 2006 2024-06-28 14:03:01.089303 2023-07-05 Closed Customer 2006 842389.8473231650 +1961 f 31 406706 58.691643 0.07880982197024977 Product description 1961 2022-07-03 14:03:01.089303 2024-09-30 Closed Customer 1961 486690.6500071830 +1970 t 22 510276 19.411545 0.9603162945253736 Product description 1970 2023-06-06 14:03:01.089303 2024-11-04 Closed Customer 1970 604514.1135298450 +2007 f 2 80501 15.095327 0.9785414278732674 Product description 2007 2022-09-14 14:03:01.089303 2023-07-17 Processing Customer 2007 907463.9485199290 +1962 t 1 444607 82.19597 0.490646405244636 Product description 1962 2023-03-12 14:03:01.089303 2023-01-29 Closed Customer 1962 783068.3315642800 +1972 t 14 682999 37.652657 0.4857108719492764 Product description 1972 2022-08-29 14:03:01.089303 2025-08-30 Closed Customer 1972 930939.4696021160 +2024 t 15 766120 48.525234 0.8444300619548315 Product description 2024 2022-02-19 14:03:01.089303 2024-05-23 Closed Customer 2024 522160.6845865700 +1967 f 15 48924 79.57991 0.9145387836265506 Product description 1967 2023-01-18 14:03:01.089303 2023-02-08 Closed Customer 1967 814572.5570420480 +1975 f 92 493620 91.85703 0.47663905790141214 Product description 1975 2024-05-14 14:03:01.089303 2024-11-11 Closed Customer 1975 564875.9189731150 +2025 t 59 113798 88.2606 0.09742425232413154 Product description 2025 2022-12-22 14:03:01.089303 2025-09-17 Closed Customer 2025 947235.2777651840 +1968 t 49 419194 54.343174 0.3404796800999641 Product description 1968 2023-05-10 14:03:01.089303 2023-10-08 Closed Customer 1968 189775.1087161910 +1976 f 66 950005 35.95253 0.328166149189169 Product description 1976 2022-09-27 14:03:01.089303 2025-04-16 Processing Customer 1976 976074.8978847930 +2026 f 68 534295 53.365833 0.03552685372792297 Product description 2026 2023-12-02 14:03:01.089303 2024-02-17 Closed Customer 2026 855401.8958819150 +1974 t 22 558463 12.299293 0.3036724730091258 Product description 1974 2024-02-06 14:03:01.089303 2023-06-24 Closed Customer 1974 902344.3045056540 +1978 f 50 668090 33.818268 0.47862392360133654 Product description 1978 2021-08-20 14:03:01.089303 2025-01-22 Closed Customer 1978 860103.6105871320 +2029 t 8 38581 92.77307 0.6406627735910604 Product description 2029 2023-09-12 14:03:01.089303 2023-11-24 Processing Customer 2029 416636.4277525330 +1977 t 89 531577 5.3784404 0.4018196060760637 Product description 1977 2024-01-24 14:03:01.089303 2025-10-14 Processing Customer 1977 10414.3724129102 +1981 f 72 803646 9.225306 0.7699249366121244 Product description 1981 2021-08-29 14:03:01.089303 2023-02-09 Closed Customer 1981 655512.9435603750 +2037 t 67 560194 97.68714 0.12520542736601925 Product description 2037 2021-10-29 14:03:01.089303 2025-01-09 Closed Customer 2037 351839.2516602410 +1979 f 48 609443 7.554016 0.9495750949989024 Product description 1979 2023-06-21 14:03:01.089303 2024-04-04 Closed Customer 1979 241661.4632203320 +1982 t 13 419432 8.757719 0.72661252084011 Product description 1982 2021-12-21 14:03:01.089303 2023-01-14 Processing Customer 1982 963941.0785985090 +2039 f 95 828245 7.3538995 0.9867066372550397 Product description 2039 2022-08-20 14:03:01.089303 2024-08-27 Processing Customer 2039 32283.8735380451 +1983 f 4 406954 17.701054 0.9941035240680272 Product description 1983 2021-10-23 14:03:01.089303 2025-06-16 Processing Customer 1983 661470.4944607300 +1985 f 68 913208 54.254917 0.6900160954871772 Product description 1985 2021-11-29 14:03:01.089303 2025-07-24 Closed Customer 1985 531829.4607170700 +2046 t 84 579688 50.827175 0.6859898453615685 Product description 2046 2022-02-06 14:03:01.089303 2025-01-15 Processing Customer 2046 72668.7548597802 +1984 f 43 531371 74.25595 0.6629711018247768 Product description 1984 2023-10-23 14:03:01.089303 2024-03-04 Processing Customer 1984 187130.0264020380 +1986 t 49 226494 74.658615 0.4347553288011774 Product description 1986 2024-03-18 14:03:01.089303 2024-02-01 Closed Customer 1986 881626.5336623270 +2056 f 48 687720 48.009632 0.5724394798808135 Product description 2056 2023-02-11 14:03:01.089303 2024-02-29 Processing Customer 2056 697130.9053603780 +1991 f 21 239900 56.32386 0.9323649251983035 Product description 1991 2023-03-22 14:03:01.089303 2025-07-11 Processing Customer 1991 874261.4477295230 +1987 f 47 663002 89.95935 0.5151698466352279 Product description 1987 2022-01-23 14:03:01.089303 2023-11-06 Closed Customer 1987 312424.8544540580 +2057 t 82 833139 96.05493 0.3562401719184507 Product description 2057 2023-09-10 14:03:01.089303 2023-11-29 Processing Customer 2057 454914.3228136680 +1993 f 57 278392 36.62941 0.8791342794784889 Product description 1993 2024-01-06 14:03:01.089303 2023-10-13 Closed Customer 1993 808170.1487410770 +1989 t 89 80044 15.351567 0.4421641575144015 Product description 1989 2023-10-15 14:03:01.089303 2025-06-01 Processing Customer 1989 112151.2378771570 +2060 t 8 611800 67.9428 0.6006131259733394 Product description 2060 2022-06-21 14:03:01.089303 2024-09-07 Cancelled Customer 2060 982575.4205201920 +1994 t 16 657336 56.661926 0.2440190689207391 Product description 1994 2022-05-02 14:03:01.089303 2025-05-02 Processing Customer 1994 607811.0954601640 +1992 t 51 762865 74.21335 0.007001607462850501 Product description 1992 2023-04-08 14:03:01.089303 2024-04-15 Processing Customer 1992 571214.0920922270 +2067 f 92 762330 6.2830915 0.010554459675599759 Product description 2067 2022-09-28 14:03:01.089303 2024-05-11 Closed Customer 2067 318982.9150886470 +1996 f 13 188302 63.938133 0.11902207808415355 Product description 1996 2021-11-28 14:03:01.089303 2025-09-26 Closed Customer 1996 599615.9385920020 +1998 t 11 783043 11.611055 0.3980359127658666 Product description 1998 2021-11-14 14:03:01.089303 2024-03-17 Closed Customer 1998 74827.1086190328 +2069 t 55 504240 40.909603 0.5806417688688192 Product description 2069 2023-12-01 14:03:01.089303 2025-05-19 Processing Customer 2069 828275.7684609550 +1997 f 74 462706 47.55048 0.23119432515892768 Product description 1997 2024-06-22 14:03:01.089303 2024-10-12 Processing Customer 1997 761446.1935398110 +1999 t 90 773460 47.84677 0.7077304303268583 Product description 1999 2022-02-07 14:03:01.089303 2023-02-22 Closed Customer 1999 118222.3174361000 +2070 f 30 129931 43.191612 0.7248760545717055 Product description 2070 2022-04-24 14:03:01.089303 2024-08-07 Closed Customer 2070 818305.8431637210 +2004 t 89 316838 3.9181674 0.24118579268302298 Product description 2004 2022-08-24 14:03:01.089303 2025-09-13 Processing Customer 2004 891312.0473675280 +2000 f 45 499377 18.164953 0.5840083815050043 Product description 2000 2023-06-23 14:03:01.089303 2024-01-06 Closed Customer 2000 421411.8695870750 +2073 t 43 321651 71.343216 0.08294972375331966 Product description 2073 2023-06-12 14:03:01.089303 2025-03-27 Closed Customer 2073 676216.5232405550 +2005 t 98 552879 95.815125 0.3337333802646363 Product description 2005 2023-10-14 14:03:01.089303 2025-04-20 Processing Customer 2005 602034.3826768340 +2001 t 95 897122 92.46743 0.2835699301843384 Product description 2001 2023-07-18 14:03:01.089303 2024-03-02 Cancelled Customer 2001 591505.1432605300 +2081 f 20 385179 26.987839 0.1393712119197481 Product description 2081 2023-07-14 14:03:01.089303 2025-02-02 Closed Customer 2081 407681.6719693920 +2011 f 86 317415 45.409653 0.5873182372710026 Product description 2011 2023-02-13 14:03:01.089303 2025-10-16 Processing Customer 2011 102361.0192254480 +2002 f 57 795639 51.43255 0.7877927308533899 Product description 2002 2021-08-26 14:03:01.089303 2024-11-23 Processing Customer 2002 336094.3237640760 +2083 t 50 35382 5.510249 0.5572455473945617 Product description 2083 2022-05-26 14:03:01.089303 2024-01-10 Processing Customer 2083 232785.3079448940 +2012 f 22 485649 94.19422 0.814474805224652 Product description 2012 2022-12-02 14:03:01.089303 2025-02-18 Processing Customer 2012 563947.3246043990 +2008 f 45 607366 87.27448 0.8317307235789997 Product description 2008 2022-01-02 14:03:01.089303 2024-01-06 Closed Customer 2008 223554.6425797810 +2084 t 10 550401 60.08178 0.2296776457817593 Product description 2084 2023-10-12 14:03:01.089303 2023-10-02 Processing Customer 2084 34261.3269310377 +2013 t 10 41352 83.343575 0.8950410639596491 Product description 2013 2023-01-20 14:03:01.089303 2024-07-11 Closed Customer 2013 688346.4151629470 +2009 f 5 500758 96.65349 0.6976861462073103 Product description 2009 2022-01-26 14:03:01.089303 2025-08-14 Closed Customer 2009 32134.8954873919 +2085 f 67 857280 45.460564 0.8574221793688714 Product description 2085 2024-04-25 14:03:01.089303 2024-04-18 Closed Customer 2085 938585.0555615040 +2019 f 60 81829 4.950339 0.08885959709322222 Product description 2019 2022-03-01 14:03:01.089303 2024-08-15 Closed Customer 2019 93814.0019202649 +2010 t 51 814033 45.483036 0.7318647360750532 Product description 2010 2023-06-21 14:03:01.089303 2024-08-08 Closed Customer 2010 251987.2301968850 +2086 f 54 527104 83.948 0.8834515796268327 Product description 2086 2022-10-02 14:03:01.089303 2024-05-08 Closed Customer 2086 161910.7371754250 +2020 t 29 567996 84.471596 0.14186667332083047 Product description 2020 2022-02-28 14:03:01.089303 2023-05-30 Closed Customer 2020 27657.1711893112 +2014 f 47 978696 65.66341 0.6273785166339323 Product description 2014 2023-01-17 14:03:01.089303 2023-06-29 Processing Customer 2014 278653.4805515150 +2091 t 58 566344 16.98669 0.45885450714445497 Product description 2091 2022-12-31 14:03:01.089303 2025-06-20 Processing Customer 2091 749112.5690055330 +2028 t 44 982952 98.451935 0.7242344835823395 Product description 2028 2021-11-14 14:03:01.089303 2023-11-22 Processing Customer 2028 802587.1174300930 +2015 t 41 267685 1.5004991 0.7835046482833263 Product description 2015 2021-08-18 14:03:01.089303 2023-04-01 Closed Customer 2015 6557.8985909802 +2096 t 46 742944 91.70801 0.09919826240870222 Product description 2096 2023-06-26 14:03:01.089303 2024-12-03 Processing Customer 2096 373611.9402864160 +2031 t 11 563494 49.65805 0.9397025538209327 Product description 2031 2024-02-15 14:03:01.089303 2023-07-06 Closed Customer 2031 961945.0528359650 +2016 f 60 393748 42.118736 0.2299272915905206 Product description 2016 2023-07-15 14:03:01.089303 2025-05-28 Closed Customer 2016 739120.9603690960 +2097 f 56 849791 44.105576 0.3529838216087633 Product description 2097 2024-03-24 14:03:01.089303 2024-03-16 Closed Customer 2097 989551.2994999650 +2032 f 37 305322 3.5185146 0.6750143386034502 Product description 2032 2023-02-20 14:03:01.089303 2025-11-19 Closed Customer 2032 363169.5584026030 +2017 f 33 298547 80.73709 0.4394613745649991 Product description 2017 2021-12-03 14:03:01.089303 2023-11-21 Closed Customer 2017 659150.0258562740 +2099 f 50 712533 44.907845 0.7722319136260545 Product description 2099 2022-06-04 14:03:01.089303 2023-03-15 Closed Customer 2099 824648.0268824780 +2033 f 87 301891 28.12376 0.25593169025244933 Product description 2033 2024-06-30 14:03:01.089303 2025-12-04 Processing Customer 2033 949860.9903818720 +2018 f 71 190032 86.22278 0.5158875731194925 Product description 2018 2024-01-16 14:03:01.089303 2023-08-23 Processing Customer 2018 85123.9580680847 +2101 t 12 513215 17.96815 0.028925486101602615 Product description 2101 2022-03-06 14:03:01.089303 2025-09-01 Closed Customer 2101 59728.1956812736 +2034 f 0 875923 86.374596 0.14831530582174324 Product description 2034 2022-06-11 14:03:01.089303 2024-03-02 Closed Customer 2034 314752.0964671600 +2021 f 27 935967 43.097443 0.03452604919536384 Product description 2021 2024-04-21 14:03:01.089303 2023-01-20 Closed Customer 2021 362683.8969742860 +2102 t 74 85738 60.76632 0.3872748420097416 Product description 2102 2022-05-08 14:03:01.089303 2024-01-04 Closed Customer 2102 845260.0983100850 +2038 t 37 469316 70.99593 0.7717592057289941 Product description 2038 2023-01-15 14:03:01.089303 2025-08-04 Processing Customer 2038 94764.0833227510 +2022 t 44 399524 96.27179 0.5995438031036215 Product description 2022 2023-09-19 14:03:01.089303 2023-02-22 Closed Customer 2022 408023.0296138470 +2104 f 29 881428 21.35411 0.08629713989209975 Product description 2104 2022-07-08 14:03:01.089303 2023-01-19 Closed Customer 2104 962614.9506552510 +2044 f 32 88551 52.43573 0.8265984804580064 Product description 2044 2022-07-12 14:03:01.089303 2025-09-01 Closed Customer 2044 370136.9374878990 +2023 f 74 920205 81.296715 0.5296610666487567 Product description 2023 2024-03-20 14:03:01.089303 2023-05-22 Closed Customer 2023 512294.4531868650 +2105 f 55 227882 79.34655 0.4118644485455114 Product description 2105 2021-11-17 14:03:01.089303 2024-07-21 Cancelled Customer 2105 239084.0028372560 +2045 f 59 883250 71.44301 0.16854546162423034 Product description 2045 2023-01-31 14:03:01.089303 2023-04-02 Processing Customer 2045 776430.7112941890 +2027 t 92 672934 70.806 0.6777342865436182 Product description 2027 2023-03-25 14:03:01.089303 2025-03-06 Processing Customer 2027 43139.0866712782 +2112 f 17 593415 14.386292 0.6772760535324025 Product description 2112 2024-04-10 14:03:01.089303 2025-12-30 Processing Customer 2112 657931.6162523310 +2048 t 82 153075 82.45049 0.7407165691531112 Product description 2048 2021-10-24 14:03:01.089303 2025-08-03 Processing Customer 2048 587828.4801332680 +2030 t 21 150341 44.993633 0.10669255489835905 Product description 2030 2023-04-29 14:03:01.089303 2023-01-03 Processing Customer 2030 750133.5646512610 +2114 f 38 641164 84.16242 0.3977497678563964 Product description 2114 2023-01-24 14:03:01.089303 2025-12-18 Processing Customer 2114 324408.7039282100 +2050 t 81 382021 52.437183 0.7662572473059122 Product description 2050 2023-01-07 14:03:01.089303 2025-01-05 Cancelled Customer 2050 286366.5539718420 +2035 f 70 28288 82.497185 0.015035306915827107 Product description 2035 2023-11-08 14:03:01.089303 2023-02-08 Cancelled Customer 2035 588622.9937261970 +2115 t 60 168724 7.20312 0.508874380870175 Product description 2115 2023-03-13 14:03:01.089303 2024-04-22 Processing Customer 2115 589384.1340612520 +2051 t 96 644860 54.12319 0.671563591284162 Product description 2051 2023-06-07 14:03:01.089303 2024-04-24 Closed Customer 2051 331022.3918228170 +2036 t 26 334288 89.526726 0.7731970592334854 Product description 2036 2023-02-25 14:03:01.089303 2024-01-15 Closed Customer 2036 401317.8489819610 +2116 f 35 858229 37.87481 0.24491078119525866 Product description 2116 2024-05-11 14:03:01.089303 2025-11-13 Processing Customer 2116 257855.2988926040 +2052 t 93 610504 52.796448 0.519816853832495 Product description 2052 2022-02-13 14:03:01.089303 2025-08-30 Processing Customer 2052 517464.1763364430 +2040 t 89 188433 38.93187 0.08405967901452627 Product description 2040 2022-08-27 14:03:01.089303 2024-08-25 Processing Customer 2040 635026.5224916500 +2117 t 67 682275 58.119965 0.43265414438726424 Product description 2117 2024-07-15 14:03:01.089303 2024-12-03 Closed Customer 2117 218209.9384576080 +2053 f 63 351584 26.371857 0.45797484492609186 Product description 2053 2023-12-12 14:03:01.089303 2023-10-03 Processing Customer 2053 793272.5040307570 +2041 t 90 855370 0.74892914 0.9530131239990318 Product description 2041 2023-10-06 14:03:01.089303 2024-11-25 Closed Customer 2041 765635.0864443060 +2123 f 93 276353 29.547144 0.245604457619919 Product description 2123 2023-03-03 14:03:01.089303 2024-03-25 Processing Customer 2123 944346.4805086390 +2059 t 43 954588 9.019108 0.6096849224882988 Product description 2059 2024-01-12 14:03:01.089303 2025-03-11 Processing Customer 2059 965581.0620006060 +2042 t 28 880030 71.866425 0.8742458680038503 Product description 2042 2022-12-08 14:03:01.089303 2023-02-24 Processing Customer 2042 133473.8638847100 +2129 t 21 564889 79.48885 0.7644381410561678 Product description 2129 2023-12-04 14:03:01.089303 2025-08-11 Processing Customer 2129 272489.4949033720 +2062 t 90 919546 39.104725 0.19633358713199556 Product description 2062 2023-12-13 14:03:01.089303 2024-09-03 Processing Customer 2062 115719.2216537090 +2043 t 24 416500 70.02245 0.5988253515624429 Product description 2043 2022-06-16 14:03:01.089303 2025-10-15 Closed Customer 2043 470463.7455744200 +2133 t 37 340791 63.676407 0.36640286132733024 Product description 2133 2023-09-28 14:03:01.089303 2024-06-16 Closed Customer 2133 478613.6593087170 +2064 t 87 132372 96.404884 0.7751199403852951 Product description 2064 2021-09-10 14:03:01.089303 2023-01-06 Closed Customer 2064 860645.1503598970 +2047 t 72 824323 52.618126 0.4194909366382227 Product description 2047 2023-06-08 14:03:01.089303 2024-02-20 Processing Customer 2047 953724.1251067670 +2134 f 25 354423 25.995071 0.4282528914686097 Product description 2134 2022-11-30 14:03:01.089303 2025-12-05 Closed Customer 2134 856043.7870136930 +2065 f 18 773797 99.07917 0.45786974807224823 Product description 2065 2024-02-28 14:03:01.089303 2024-07-03 Processing Customer 2065 169715.5970772040 +2049 f 54 73175 8.431893 0.0353000023197616 Product description 2049 2022-04-20 14:03:01.089303 2024-10-24 Processing Customer 2049 600082.5108200870 +2136 t 15 406524 6.881402 0.9287906840610276 Product description 2136 2022-10-12 14:03:01.089303 2025-04-18 Closed Customer 2136 202385.7585276080 +2068 f 29 513750 69.44892 0.10763194709215895 Product description 2068 2023-08-09 14:03:01.089303 2024-06-04 Processing Customer 2068 375649.9047365160 +2054 f 71 806977 54.057884 0.685241016370707 Product description 2054 2022-04-07 14:03:01.089303 2025-08-28 Closed Customer 2054 41915.8257369290 +2137 t 3 503692 55.374138 0.6175593650717772 Product description 2137 2023-08-09 14:03:01.089303 2023-07-02 Closed Customer 2137 569076.7932720500 +2074 t 90 158027 57.32951 0.9609989305156503 Product description 2074 2023-09-18 14:03:01.089303 2024-06-19 Closed Customer 2074 339577.2086882720 +2055 f 25 119911 34.811264 0.7906953905726262 Product description 2055 2021-11-17 14:03:01.089303 2024-11-09 Processing Customer 2055 9832.1856198993 +2139 f 61 513124 65.49345 0.1380188003210634 Product description 2139 2022-01-31 14:03:01.089303 2024-10-31 Processing Customer 2139 563867.0926506500 +2077 t 68 485181 81.5341 0.4928964156202511 Product description 2077 2021-11-23 14:03:01.089303 2023-09-05 Closed Customer 2077 166337.4168720220 +2058 f 59 287410 61.6145 0.7186131728141412 Product description 2058 2021-08-05 14:03:01.089303 2023-10-07 Closed Customer 2058 451521.6880336440 +2143 t 55 483614 91.55586 0.03747522688225757 Product description 2143 2024-04-11 14:03:01.089303 2025-02-01 Processing Customer 2143 192103.5082600500 +2079 t 6 629144 78.39447 0.24551656415902556 Product description 2079 2023-09-07 14:03:01.089303 2024-01-09 Processing Customer 2079 863437.1716606100 +2061 t 69 802625 1.4083792 0.7936215489818359 Product description 2061 2024-06-22 14:03:01.089303 2025-11-27 Closed Customer 2061 398020.0434067310 +2144 f 3 594239 24.536148 0.4633428348429618 Product description 2144 2024-01-01 14:03:01.089303 2025-04-30 Closed Customer 2144 860675.6037471790 +2087 f 98 203459 2.7502937 0.7686173077794649 Product description 2087 2022-10-13 14:03:01.089303 2025-09-07 Processing Customer 2087 558996.0287511780 +2063 f 27 37287 45.18958 0.5280147964448751 Product description 2063 2024-04-02 14:03:01.089303 2023-08-09 Processing Customer 2063 350824.2188861390 +2145 t 57 129661 55.515522 0.9255300809736937 Product description 2145 2024-06-14 14:03:01.089303 2024-04-30 Closed Customer 2145 994912.2514591440 +2090 f 97 234675 66.079834 0.4254787890303433 Product description 2090 2024-03-22 14:03:01.089303 2023-09-12 Closed Customer 2090 139763.1065997340 +2066 f 91 604516 26.246723 0.471308418034841 Product description 2066 2024-07-10 14:03:01.089303 2025-08-16 Processing Customer 2066 727998.5013355490 +2146 t 10 259393 94.76017 0.3511638188380033 Product description 2146 2024-03-16 14:03:01.089303 2023-02-27 Closed Customer 2146 844251.8716200700 +2092 t 28 659400 81.32983 0.8998301058686451 Product description 2092 2024-04-13 14:03:01.089303 2023-09-13 Processing Customer 2092 637789.8702096840 +2071 f 54 1535 32.743587 0.17080878886639184 Product description 2071 2023-04-03 14:03:01.089303 2024-09-23 Cancelled Customer 2071 708766.4437366460 +2155 f 88 808406 66.531715 0.44318283862207153 Product description 2155 2023-01-12 14:03:01.089303 2023-06-24 Closed Customer 2155 745756.8145428190 +2093 f 79 905188 39.028946 0.7908251235836516 Product description 2093 2023-08-27 14:03:01.089303 2023-05-13 Closed Customer 2093 422113.2087635800 +2072 t 43 27595 54.608204 0.593818593666434 Product description 2072 2023-04-23 14:03:01.089303 2023-03-16 Closed Customer 2072 566468.3375932680 +2156 t 65 926730 39.895382 0.760343291028164 Product description 2156 2023-12-16 14:03:01.089303 2024-01-16 Closed Customer 2156 74321.3658042201 +2095 t 94 924867 43.441383 0.3511942763432785 Product description 2095 2024-01-01 14:03:01.089303 2025-12-05 Closed Customer 2095 727105.8565304960 +2075 t 41 809951 34.83265 0.910712041606331 Product description 2075 2024-02-11 14:03:01.089303 2023-02-27 Closed Customer 2075 68386.6338835308 +2159 f 35 157735 75.75319 0.2627255111116895 Product description 2159 2023-11-29 14:03:01.089303 2024-07-25 Processing Customer 2159 609579.4973454400 +2100 f 64 633517 38.019913 0.6034548639732478 Product description 2100 2023-08-05 14:03:01.089303 2024-06-27 Processing Customer 2100 377278.9035915910 +2076 f 48 994189 39.891758 0.6575203793929987 Product description 2076 2021-12-31 14:03:01.089303 2024-06-04 Closed Customer 2076 580827.8064054130 +2162 t 52 417406 37.98607 0.12640065483130059 Product description 2162 2022-09-27 14:03:01.089303 2024-10-02 Closed Customer 2162 513055.1821050170 +2103 f 24 241329 66.528366 0.23011554517542265 Product description 2103 2023-05-16 14:03:01.089303 2025-06-25 Closed Customer 2103 253650.0586416640 +2078 f 18 602676 84.19776 0.8233404985802366 Product description 2078 2022-07-25 14:03:01.089303 2025-10-15 Processing Customer 2078 567169.9115138540 +2163 f 37 372485 0.451913 0.5265269813552536 Product description 2163 2022-11-06 14:03:01.089303 2023-03-08 Cancelled Customer 2163 459355.8229164860 +2106 t 37 491974 25.795328 0.9649976338949031 Product description 2106 2022-03-19 14:03:01.089303 2025-05-03 Processing Customer 2106 342698.4211991350 +2080 t 28 214589 85.38069 0.5274854355948193 Product description 2080 2024-03-02 14:03:01.089303 2025-03-21 Closed Customer 2080 373997.2981031950 +2165 f 25 768365 20.921816 0.10480586864230546 Product description 2165 2022-04-30 14:03:01.089303 2025-10-13 Closed Customer 2165 112386.9437113710 +2107 t 92 733539 86.642166 0.9669860269743538 Product description 2107 2023-11-14 14:03:01.089303 2023-08-12 Processing Customer 2107 149832.7620930380 +2082 f 97 310373 45.211655 0.3180749068307591 Product description 2082 2024-02-24 14:03:01.089303 2024-04-17 Closed Customer 2082 178452.5444692770 +2169 t 77 453762 46.29775 0.7063670246599649 Product description 2169 2021-10-10 14:03:01.089303 2025-11-28 Closed Customer 2169 439634.7345937030 +2108 f 65 529141 36.408234 0.10627012181360129 Product description 2108 2022-04-04 14:03:01.089303 2024-11-09 Closed Customer 2108 894374.2858242030 +2088 f 69 389055 62.033546 0.013903020073435357 Product description 2088 2023-08-31 14:03:01.089303 2025-06-02 Processing Customer 2088 138602.6881586170 +2174 t 86 200788 78.01417 0.4911072749148566 Product description 2174 2021-11-01 14:03:01.089303 2023-10-28 Closed Customer 2174 526514.9561320750 +2109 f 90 264553 66.26255 0.7825987130711809 Product description 2109 2022-08-13 14:03:01.089303 2024-12-03 Processing Customer 2109 907357.7822099250 +2089 f 45 539772 65.7013 0.3421766069138954 Product description 2089 2021-08-27 14:03:01.089303 2025-11-25 Closed Customer 2089 536337.0117551760 +2176 f 38 194835 75.67252 0.5843464836609051 Product description 2176 2022-05-08 14:03:01.089303 2025-03-26 Processing Customer 2176 215870.2293790570 +2111 f 51 113715 60.650696 0.9258623668601373 Product description 2111 2022-05-10 14:03:01.089303 2025-02-05 Processing Customer 2111 398558.5084496570 +2094 f 9 253007 67.28644 0.29302267512061775 Product description 2094 2022-08-01 14:03:01.089303 2024-06-16 Closed Customer 2094 968677.8196562960 +2178 t 66 48342 82.16221 0.03538925702051543 Product description 2178 2023-03-11 14:03:01.089303 2024-12-21 Processing Customer 2178 106372.8849728850 +2119 f 91 132945 13.436751 0.16417115018668937 Product description 2119 2021-11-20 14:03:01.089303 2024-06-20 Processing Customer 2119 81509.5141987250 +2098 t 92 231510 87.770454 0.8449853999732966 Product description 2098 2022-10-22 14:03:01.089303 2025-06-25 Cancelled Customer 2098 200227.1107431710 +2181 f 64 744818 49.59175 0.27492309045232943 Product description 2181 2023-08-18 14:03:01.089303 2023-08-09 Processing Customer 2181 243409.9467992820 +2120 f 76 581777 47.294353 0.4790495486730677 Product description 2120 2023-10-08 14:03:01.089303 2023-10-27 Closed Customer 2120 456877.5044668630 +2110 f 86 760370 50.388035 0.541653045259789 Product description 2110 2022-11-11 14:03:01.089303 2023-05-16 Closed Customer 2110 52119.7732261882 +2184 f 91 704454 36.45057 0.08854214797047533 Product description 2184 2022-07-20 14:03:01.089303 2024-05-12 Processing Customer 2184 613772.4911173730 +2121 f 92 622444 89.786644 0.1798153934989415 Product description 2121 2021-12-20 14:03:01.089303 2025-09-28 Closed Customer 2121 596668.5810127610 +2113 t 65 401632 10.270053 0.32697443378903657 Product description 2113 2023-09-02 14:03:01.089303 2023-10-08 Closed Customer 2113 375960.5443360100 +2185 t 93 125458 51.08555 0.46342910067957277 Product description 2185 2021-08-29 14:03:01.089303 2023-09-13 Closed Customer 2185 272047.1403041320 +2125 f 36 776376 25.853664 0.3580056624878907 Product description 2125 2023-06-20 14:03:01.089303 2024-10-14 Closed Customer 2125 718674.7457953860 +2118 t 4 89096 26.777296 0.714348452623593 Product description 2118 2024-02-08 14:03:01.089303 2024-11-06 Closed Customer 2118 608717.8492673000 +2186 f 87 530255 91.33716 0.2940586748431464 Product description 2186 2024-03-13 14:03:01.089303 2023-02-16 Closed Customer 2186 266513.2041035320 +2126 f 40 599487 9.67574 0.05925655840567856 Product description 2126 2022-08-20 14:03:01.089303 2025-05-08 Processing Customer 2126 116966.6109759890 +2122 f 59 148525 55.51076 0.7235802833808158 Product description 2122 2022-07-17 14:03:01.089303 2024-07-13 Closed Customer 2122 664267.0163064540 +2202 t 3 964508 13.109733 0.5203090217134836 Product description 2202 2022-08-18 14:03:01.089303 2025-06-02 Processing Customer 2202 420779.7107749730 +2130 t 18 628359 48.68364 0.3079552813319779 Product description 2130 2023-01-13 14:03:01.089303 2023-09-16 Processing Customer 2130 95098.2108284997 +2124 t 59 226146 67.33981 0.03873171787627072 Product description 2124 2022-03-21 14:03:01.089303 2024-03-09 Closed Customer 2124 535554.9760910420 +2210 t 85 216055 73.18865 0.48883488073837 Product description 2210 2024-04-19 14:03:01.089303 2023-05-09 Processing Customer 2210 707730.9150417930 +2131 f 95 494260 27.799963 0.8617945865363339 Product description 2131 2022-06-23 14:03:01.089303 2025-10-03 Processing Customer 2131 168220.4440079820 +2127 t 48 66318 25.249979 0.5231987997358836 Product description 2127 2022-02-06 14:03:01.089303 2025-09-07 Closed Customer 2127 987039.0938902740 +2211 f 82 183442 19.358444 0.1314417570172246 Product description 2211 2021-12-23 14:03:01.089303 2024-11-02 Closed Customer 2211 380253.3712980750 +2140 f 50 651707 30.807346 0.8674153847716681 Product description 2140 2024-02-26 14:03:01.089303 2023-07-12 Processing Customer 2140 401422.1284355880 +2128 f 66 142808 49.892036 0.06990742379568005 Product description 2128 2024-04-23 14:03:01.089303 2023-07-24 Closed Customer 2128 283967.8807857600 +2217 t 45 254883 24.48301 0.22253703825251492 Product description 2217 2023-01-21 14:03:01.089303 2023-08-02 Closed Customer 2217 327645.2991818390 +2147 f 36 753031 51.439285 0.7497122461094818 Product description 2147 2024-06-10 14:03:01.089303 2023-07-21 Processing Customer 2147 664498.7422955030 +2132 f 44 499854 18.323784 0.7847972337228306 Product description 2132 2022-08-23 14:03:01.089303 2025-04-30 Closed Customer 2132 56702.6998186719 +2218 f 88 568320 88.55022 0.23702891846370377 Product description 2218 2022-10-02 14:03:01.089303 2024-08-06 Closed Customer 2218 985348.4788013350 +2148 f 75 655448 71.36047 0.5081525307770747 Product description 2148 2022-06-01 14:03:01.089303 2025-04-03 Cancelled Customer 2148 747918.8936989300 +2135 f 84 244855 19.998585 0.7920492240618664 Product description 2135 2023-10-29 14:03:01.089303 2023-01-28 Closed Customer 2135 592729.1420235220 +2225 f 97 344174 73.20103 0.25978497599850314 Product description 2225 2021-12-10 14:03:01.089303 2024-08-24 Closed Customer 2225 184325.1310951070 +2149 t 17 826849 69.9304 0.36912271141249064 Product description 2149 2022-01-16 14:03:01.089303 2024-11-16 Closed Customer 2149 777304.8125702930 +2138 f 88 743853 64.61792 0.5216289023852205 Product description 2138 2021-09-02 14:03:01.089303 2025-10-16 Closed Customer 2138 100405.0871363230 +2227 t 90 771350 33.724545 0.9908052975856911 Product description 2227 2024-05-09 14:03:01.089303 2023-08-21 Closed Customer 2227 321119.7324598420 +2152 t 45 379905 10.052865 0.4642904523451783 Product description 2152 2023-03-13 14:03:01.089303 2024-04-05 Processing Customer 2152 625240.7482495880 +2141 f 99 903197 62.651814 0.16500583352535259 Product description 2141 2024-04-30 14:03:01.089303 2023-12-04 Closed Customer 2141 720523.7048242520 +2235 f 27 222532 77.3865 0.5326317623998911 Product description 2235 2024-06-03 14:03:01.089303 2025-09-17 Closed Customer 2235 254591.9404496860 +2154 t 32 985528 25.196012 0.2930759908066456 Product description 2154 2022-11-18 14:03:01.089303 2025-03-12 Processing Customer 2154 146898.9410981150 +2142 t 37 562113 26.184246 0.39247820185821425 Product description 2142 2023-06-22 14:03:01.089303 2024-10-31 Closed Customer 2142 396794.9777014180 +2236 t 69 801751 17.889881 0.44338147233638026 Product description 2236 2022-12-20 14:03:01.089303 2025-10-15 Closed Customer 2236 728091.0601135630 +2161 t 28 71428 5.0276713 0.08892585889558902 Product description 2161 2022-03-23 14:03:01.089303 2025-10-01 Closed Customer 2161 931073.5555777610 +2150 t 44 338504 30.672039 0.7387848624514497 Product description 2150 2024-06-12 14:03:01.089303 2023-08-30 Processing Customer 2150 304081.2997321250 +2237 f 95 1716 28.474407 0.3187000925994603 Product description 2237 2023-11-20 14:03:01.089303 2025-02-27 Cancelled Customer 2237 944358.4117986780 +2164 f 41 185283 1.1755993 0.48782378327520703 Product description 2164 2022-06-15 14:03:01.089303 2025-01-01 Closed Customer 2164 580830.9772270950 +2151 f 52 964592 67.6786 0.14946852380863973 Product description 2151 2023-03-28 14:03:01.089303 2023-03-16 Processing Customer 2151 47856.6124908468 +2238 f 45 74010 43.846813 0.4665128937184164 Product description 2238 2024-02-19 14:03:01.089303 2024-09-06 Closed Customer 2238 163197.3186843080 +2167 f 82 65619 22.651958 0.4528212999518324 Product description 2167 2022-01-08 14:03:01.089303 2024-12-25 Closed Customer 2167 526802.2676186280 +2153 f 95 297314 68.73479 0.7740498802538944 Product description 2153 2022-11-20 14:03:01.089303 2024-11-27 Closed Customer 2153 314317.0327158840 +2240 t 93 244232 28.694017 0.03239678901601195 Product description 2240 2023-10-25 14:03:01.089303 2024-01-03 Closed Customer 2240 357249.5896033740 +2168 t 63 483034 31.305035 0.8563621677703033 Product description 2168 2023-02-22 14:03:01.089303 2025-12-21 Closed Customer 2168 692349.2148164460 +2157 t 8 266723 3.5806556 0.16764007040888274 Product description 2157 2021-08-04 14:03:01.089303 2025-02-15 Processing Customer 2157 38268.1593434739 +2241 t 24 564265 71.547035 0.449712967231477 Product description 2241 2021-09-05 14:03:01.089303 2025-02-01 Processing Customer 2241 631798.4770310230 +2170 f 33 560395 14.275447 0.6529604079687026 Product description 2170 2022-12-25 14:03:01.089303 2025-09-10 Closed Customer 2170 422723.9062189700 +2158 f 76 805093 24.098621 0.17479664232682168 Product description 2158 2023-09-25 14:03:01.089303 2025-11-19 Closed Customer 2158 220195.8459426050 +2242 t 95 243644 74.93114 0.7139174277655584 Product description 2242 2022-04-01 14:03:01.089303 2024-03-10 Processing Customer 2242 4181.9244004309 +2171 f 95 516702 24.322483 0.36574550781033466 Product description 2171 2023-01-20 14:03:01.089303 2024-12-31 Processing Customer 2171 948625.5237362400 +2160 t 24 665697 81.04523 0.19817402696630282 Product description 2160 2022-03-10 14:03:01.089303 2024-06-25 Closed Customer 2160 639092.2345654530 +2245 f 43 576291 93.99941 0.020462569599416724 Product description 2245 2023-07-23 14:03:01.089303 2023-12-23 Closed Customer 2245 296926.3816262750 +2173 t 17 478788 94.65166 0.18225121762722196 Product description 2173 2023-11-28 14:03:01.089303 2025-06-13 Processing Customer 2173 747911.2284273480 +2166 f 68 195696 90.820335 0.24145037183603435 Product description 2166 2022-11-18 14:03:01.089303 2024-02-06 Processing Customer 2166 984170.0029435930 +2246 t 37 306327 67.13252 0.44029730623775976 Product description 2246 2022-06-29 14:03:01.089303 2024-07-22 Closed Customer 2246 611895.7653358340 +2175 t 84 172108 73.39932 0.44209217773545006 Product description 2175 2024-06-01 14:03:01.089303 2023-08-31 Closed Customer 2175 248755.4082874080 +2172 t 20 286809 3.8198178 0.7867802068474568 Product description 2172 2023-03-22 14:03:01.089303 2025-02-16 Processing Customer 2172 678186.2813937920 +2250 t 63 262672 86.77176 0.4879250105032611 Product description 2250 2022-12-19 14:03:01.089303 2025-08-09 Closed Customer 2250 51642.2038468214 +2187 f 18 451794 47.413486 0.8792258964469788 Product description 2187 2023-11-04 14:03:01.089303 2024-02-19 Closed Customer 2187 125362.4803701360 +2177 t 76 328050 16.25769 0.0905051692387353 Product description 2177 2023-07-20 14:03:01.089303 2025-06-08 Closed Customer 2177 311168.7870914680 +2253 t 99 30728 81.90922 0.7028943218009047 Product description 2253 2024-07-17 14:03:01.089303 2023-08-11 Closed Customer 2253 54224.9609259535 +2190 t 89 782458 33.07173 0.15615692707509155 Product description 2190 2024-01-27 14:03:01.089303 2025-11-25 Cancelled Customer 2190 115667.9857469140 +2179 t 1 587123 11.7307005 0.42219744276023974 Product description 2179 2023-12-25 14:03:01.089303 2025-02-22 Processing Customer 2179 416582.2731679040 +2258 f 78 863190 20.490614 0.6532265140373426 Product description 2258 2023-02-15 14:03:01.089303 2023-04-20 Closed Customer 2258 801696.5162904160 +2192 f 13 30655 14.658826 0.06428038031891958 Product description 2192 2023-02-13 14:03:01.089303 2023-10-12 Processing Customer 2192 529360.4903346920 +2180 t 24 906763 75.03952 0.2528918383653398 Product description 2180 2022-04-06 14:03:01.089303 2024-02-05 Closed Customer 2180 890597.7822391620 +2261 f 76 103370 68.325325 0.962793788869952 Product description 2261 2023-11-13 14:03:01.089303 2023-11-21 Processing Customer 2261 247611.2960550160 +2195 t 14 313338 69.7736 0.4302086240703815 Product description 2195 2023-12-28 14:03:01.089303 2023-01-03 Closed Customer 2195 789206.3401155160 +2182 f 87 752434 76.88588 0.7834249742871329 Product description 2182 2022-02-08 14:03:01.089303 2024-07-20 Closed Customer 2182 481392.7346936420 +2266 f 61 44880 57.993557 0.30056771051610554 Product description 2266 2023-12-10 14:03:01.089303 2024-01-26 Closed Customer 2266 421911.2256081100 +2199 f 74 855194 69.01517 0.057147975020910735 Product description 2199 2023-12-24 14:03:01.089303 2023-09-09 Closed Customer 2199 837331.4113075270 +2183 f 5 636429 24.808334 0.7905194816176895 Product description 2183 2023-01-26 14:03:01.089303 2025-09-26 Processing Customer 2183 521107.9913344110 +2268 t 20 490466 19.485788 0.15354323132530823 Product description 2268 2021-09-02 14:03:01.089303 2023-07-01 Processing Customer 2268 37577.0980752499 +2200 f 43 218281 34.197903 0.7546404435709988 Product description 2200 2023-01-06 14:03:01.089303 2024-03-06 Closed Customer 2200 547851.5416254520 +2188 f 64 25970 69.879654 0.5602791862990735 Product description 2188 2023-11-29 14:03:01.089303 2024-06-18 Processing Customer 2188 957842.4642003260 +2270 t 84 518322 33.487045 0.9207189904187061 Product description 2270 2021-09-11 14:03:01.089303 2025-09-15 Closed Customer 2270 708045.4551170130 +2203 f 67 938828 3.0885217 0.24193210100058593 Product description 2203 2024-02-01 14:03:01.089303 2024-05-18 Closed Customer 2203 442764.0797898500 +2189 t 58 337974 33.602337 0.4825219407149426 Product description 2189 2021-09-04 14:03:01.089303 2024-10-25 Processing Customer 2189 632624.2053174910 +2272 f 28 826132 87.39727 0.9325780334149201 Product description 2272 2022-08-09 14:03:01.089303 2025-03-12 Processing Customer 2272 229705.4447642100 +2205 f 51 356559 12.387929 0.7876043913730015 Product description 2205 2024-05-10 14:03:01.089303 2023-08-23 Cancelled Customer 2205 118514.9404354390 +2191 f 12 893432 52.63149 0.36784859902204303 Product description 2191 2023-07-23 14:03:01.089303 2023-02-04 Closed Customer 2191 735216.6529885410 +2274 f 67 375176 75.714264 0.1857588684969187 Product description 2274 2021-12-12 14:03:01.089303 2025-02-10 Processing Customer 2274 267522.1567498020 +2208 f 28 289591 89.66967 0.851647649216293 Product description 2208 2024-03-16 14:03:01.089303 2023-10-04 Closed Customer 2208 954053.8451845040 +2193 t 16 433437 64.74633 0.5939103559516177 Product description 2193 2022-09-11 14:03:01.089303 2025-09-04 Closed Customer 2193 39004.0231353268 +2280 t 28 27908 55.920315 0.09841525207242086 Product description 2280 2021-09-02 14:03:01.089303 2024-02-06 Closed Customer 2280 343562.2030363880 +2209 f 14 785178 85.33818 0.7072670164065578 Product description 2209 2023-07-11 14:03:01.089303 2023-03-22 Closed Customer 2209 845908.5439054870 +2194 f 56 489250 17.587336 0.6647213105772956 Product description 2194 2022-03-23 14:03:01.089303 2024-07-27 Processing Customer 2194 136395.4028450110 +2282 t 61 15709 79.26586 0.7993870707691286 Product description 2282 2021-10-13 14:03:01.089303 2025-10-30 Processing Customer 2282 163718.6784304380 +2213 t 21 208388 38.823074 0.5625697848689022 Product description 2213 2024-05-10 14:03:01.089303 2024-12-03 Processing Customer 2213 525647.5636611810 +2196 t 46 422620 20.880789 0.20447059862172168 Product description 2196 2024-04-17 14:03:01.089303 2024-09-06 Closed Customer 2196 815585.3067617400 +2289 t 41 56225 33.8042 0.42910613210946025 Product description 2289 2023-08-01 14:03:01.089303 2023-02-12 Closed Customer 2289 748701.6773550190 +2214 f 88 873490 9.766835 0.5001264426027454 Product description 2214 2022-11-07 14:03:01.089303 2024-12-03 Closed Customer 2214 993276.7475480450 +2197 t 7 144516 72.202126 0.23642845927122735 Product description 2197 2022-04-14 14:03:01.089303 2023-10-29 Processing Customer 2197 793875.9950605880 +2292 t 81 225093 46.130966 0.4578046101017037 Product description 2292 2023-03-02 14:03:01.089303 2024-08-19 Processing Customer 2292 316318.2446550330 +2215 t 5 789410 7.677067 0.9424899781001308 Product description 2215 2022-12-31 14:03:01.089303 2025-02-20 Closed Customer 2215 442703.0999801640 +2198 t 79 206341 53.90387 0.44035691060859605 Product description 2198 2024-01-15 14:03:01.089303 2025-11-01 Processing Customer 2198 124747.1952015000 +2295 t 29 963351 63.400703 0.34035549879698834 Product description 2295 2022-03-23 14:03:01.089303 2025-11-23 Processing Customer 2295 497373.2632450980 +2220 f 41 574423 11.453124 0.7419035400487068 Product description 2220 2024-07-22 14:03:01.089303 2024-02-18 Closed Customer 2220 750413.4688481870 +2201 f 11 469734 52.06766 0.40395501827221736 Product description 2201 2023-01-07 14:03:01.089303 2023-01-16 Closed Customer 2201 425556.7319284520 +2296 f 83 242932 50.593708 0.8276657198388051 Product description 2296 2024-03-13 14:03:01.089303 2023-02-16 Cancelled Customer 2296 91377.6288081181 +2223 t 5 487917 88.68813 0.9109604059297745 Product description 2223 2022-06-16 14:03:01.089303 2023-05-12 Closed Customer 2223 426.9010878488 +2204 f 46 697324 7.074225 0.5010535746420679 Product description 2204 2021-12-25 14:03:01.089303 2025-04-02 Processing Customer 2204 63559.6610749829 +2297 f 26 295095 53.63115 0.08052747398994242 Product description 2297 2023-08-02 14:03:01.089303 2024-06-24 Closed Customer 2297 784846.7788029510 +2224 f 84 398405 34.12089 0.10761070804505479 Product description 2224 2022-03-14 14:03:01.089303 2023-05-25 Processing Customer 2224 127712.6474453850 +2206 t 95 947567 82.723404 0.36261067207934516 Product description 2206 2022-04-24 14:03:01.089303 2024-06-29 Closed Customer 2206 322983.8144218460 +2301 t 1 706944 45.87942 0.6340094393800406 Product description 2301 2023-04-10 14:03:01.089303 2023-02-18 Closed Customer 2301 76010.9130485063 +2226 t 8 368635 26.354937 0.46119296929325415 Product description 2226 2021-10-24 14:03:01.089303 2024-06-12 Closed Customer 2226 918454.2951348500 +2207 t 85 957602 54.576874 0.5369626508826961 Product description 2207 2024-07-06 14:03:01.089303 2023-10-27 Closed Customer 2207 212855.5350306200 +2303 t 39 769745 71.72538 0.43775133381462794 Product description 2303 2022-07-26 14:03:01.089303 2023-04-09 Closed Customer 2303 629283.2213226450 +2230 f 98 670313 59.718597 0.2928761627654346 Product description 2230 2022-06-17 14:03:01.089303 2024-06-19 Closed Customer 2230 366455.9205812670 +2212 f 92 535315 28.87415 0.9148489648617222 Product description 2212 2022-12-04 14:03:01.089303 2023-08-31 Closed Customer 2212 908284.6008542160 +2305 t 66 514183 39.30138 0.7109213650751265 Product description 2305 2021-11-08 14:03:01.089303 2024-02-12 Closed Customer 2305 173312.3348517720 +2232 t 54 233840 74.153366 0.9963690920347865 Product description 2232 2023-01-05 14:03:01.089303 2023-10-24 Closed Customer 2232 940204.6275203300 +2216 f 69 732646 73.056305 0.025210562807355785 Product description 2216 2021-12-12 14:03:01.089303 2023-12-26 Processing Customer 2216 386978.5094139860 +2308 f 88 960080 82.68793 0.3917445521739431 Product description 2308 2024-05-13 14:03:01.089303 2024-10-21 Processing Customer 2308 517576.7875053130 +2239 t 21 903648 26.762943 0.9765084810774418 Product description 2239 2023-01-29 14:03:01.089303 2023-11-07 Closed Customer 2239 421225.7483240260 +2219 f 73 967445 8.035259 0.8132176678272494 Product description 2219 2021-12-23 14:03:01.089303 2025-06-27 Processing Customer 2219 11790.7732093698 +2309 f 26 623928 70.00587 0.6038697585773924 Product description 2309 2021-11-09 14:03:01.089303 2023-11-20 Closed Customer 2309 333985.4643605660 +2244 t 46 157470 37.47564 0.731373440651172 Product description 2244 2023-03-12 14:03:01.089303 2025-04-12 Cancelled Customer 2244 773054.0250400570 +2221 f 3 355054 19.849798 0.7713574103411069 Product description 2221 2023-05-04 14:03:01.089303 2025-02-01 Closed Customer 2221 56517.4258352315 +2310 f 21 432591 36.82287 0.2614562946218193 Product description 2310 2023-06-09 14:03:01.089303 2023-01-04 Processing Customer 2310 337486.4866288970 +2248 t 63 825585 11.556013 0.13059057959276288 Product description 2248 2021-11-24 14:03:01.089303 2023-09-23 Closed Customer 2248 361649.0458134610 +2222 t 70 169436 73.94389 0.2235876987659431 Product description 2222 2023-05-15 14:03:01.089303 2023-12-06 Closed Customer 2222 641682.4829952930 +2312 f 78 255718 20.296633 0.9902727881171991 Product description 2312 2021-08-09 14:03:01.089303 2025-04-14 Processing Customer 2312 872281.1149536370 +2252 f 28 478749 24.446184 0.47134457981201905 Product description 2252 2022-04-25 14:03:01.089303 2024-07-14 Processing Customer 2252 197782.8075630190 +2228 f 59 467867 0.100439794 0.3811731433072474 Product description 2228 2023-11-21 14:03:01.089303 2023-09-28 Closed Customer 2228 309132.7140207410 +2316 t 91 533195 74.865204 0.9634583706937825 Product description 2316 2024-05-14 14:03:01.089303 2025-03-02 Closed Customer 2316 893066.8122035930 +2260 t 32 452146 87.78249 0.6270787004576306 Product description 2260 2023-04-13 14:03:01.089303 2025-03-21 Closed Customer 2260 338418.2423799410 +2229 f 23 700349 21.635714 0.716837254305549 Product description 2229 2023-04-08 14:03:01.089303 2023-08-29 Processing Customer 2229 984273.5194225300 +2318 t 38 840470 15.147698 0.2848644427460023 Product description 2318 2023-12-16 14:03:01.089303 2023-08-26 Processing Customer 2318 410108.4119788680 +2262 t 98 254649 95.259056 0.22450018139235084 Product description 2262 2024-02-12 14:03:01.089303 2024-04-24 Cancelled Customer 2262 871702.6197783540 +2231 t 79 288218 96.098076 0.4887719560506518 Product description 2231 2024-03-01 14:03:01.089303 2023-09-22 Closed Customer 2231 870841.7441102580 +2323 f 84 633950 72.978485 0.7245923748643683 Product description 2323 2024-01-01 14:03:01.089303 2025-05-23 Processing Customer 2323 60332.1831476009 +2263 f 6 754459 84.82167 0.6834668706414426 Product description 2263 2022-07-24 14:03:01.089303 2023-05-31 Closed Customer 2263 932226.1163517140 +2233 f 95 328422 41.9261 0.22758239671599156 Product description 2233 2023-05-29 14:03:01.089303 2023-12-20 Processing Customer 2233 416347.0019365430 +2324 t 87 203537 54.13566 0.12074485323732986 Product description 2324 2022-01-13 14:03:01.089303 2025-07-08 Closed Customer 2324 587788.3276737920 +2264 f 44 779241 35.098663 0.7824688052189508 Product description 2264 2022-08-27 14:03:01.089303 2025-03-12 Closed Customer 2264 304471.1588943800 +2234 f 8 380884 68.90327 0.07505327702895315 Product description 2234 2021-10-07 14:03:01.089303 2023-10-17 Closed Customer 2234 304707.6438673810 +2335 f 10 251088 35.444294 0.05565687431564115 Product description 2335 2024-01-08 14:03:01.089303 2024-12-15 Processing Customer 2335 113190.4123152270 +2267 t 38 472817 16.076984 0.8972416196500781 Product description 2267 2022-02-27 14:03:01.089303 2024-03-25 Closed Customer 2267 88348.6333937071 +2243 f 71 497708 77.00081 0.6252904848042853 Product description 2243 2022-12-04 14:03:01.089303 2025-10-24 Processing Customer 2243 109905.1091432410 +2347 f 94 744945 6.4007583 0.2732377658550753 Product description 2347 2022-12-30 14:03:01.089303 2024-09-29 Processing Customer 2347 226229.0878674520 +2271 t 84 145465 58.980484 0.9086433351724246 Product description 2271 2024-01-02 14:03:01.089303 2025-03-10 Closed Customer 2271 342557.1296982140 +2247 t 2 338363 56.683426 0.3840923377618246 Product description 2247 2021-10-30 14:03:01.089303 2023-06-22 Closed Customer 2247 786747.3786092130 +2348 f 65 502129 76.43289 0.11314713474301286 Product description 2348 2024-07-02 14:03:01.089303 2024-07-30 Closed Customer 2348 651000.9171752740 +2273 t 14 964966 43.87125 0.4132371147579512 Product description 2273 2022-11-28 14:03:01.089303 2024-04-30 Closed Customer 2273 20315.5243635393 +2249 f 51 491146 52.57318 0.7357588650528619 Product description 2249 2023-06-04 14:03:01.089303 2025-03-17 Closed Customer 2249 748603.9794578690 +2351 t 31 677780 2.789807 0.038472521665500636 Product description 2351 2023-11-13 14:03:01.089303 2023-10-24 Closed Customer 2351 319825.7137235030 +2277 f 1 209593 41.62373 0.8801115185901942 Product description 2277 2023-02-06 14:03:01.089303 2023-02-12 Closed Customer 2277 685805.8790630470 +2251 f 26 835278 13.6733675 0.6559883262805748 Product description 2251 2022-01-28 14:03:01.089303 2025-05-11 Closed Customer 2251 909141.1575300940 +2353 f 25 957404 92.52327 0.3794541930515116 Product description 2353 2022-07-02 14:03:01.089303 2024-08-19 Closed Customer 2353 253666.7626818670 +2279 t 33 19898 60.16292 0.6928059794439498 Product description 2279 2022-03-08 14:03:01.089303 2025-09-11 Processing Customer 2279 752868.9510471910 +2254 t 25 853783 95.07628 0.6546834571718456 Product description 2254 2022-09-04 14:03:01.089303 2025-01-02 Closed Customer 2254 290920.2178797300 +2354 f 90 510035 93.88338 0.38386378396191745 Product description 2354 2022-02-21 14:03:01.089303 2024-08-01 Cancelled Customer 2354 705158.4971957720 +2283 f 29 810388 83.47513 0.7420316909201823 Product description 2283 2021-10-29 14:03:01.089303 2025-06-22 Cancelled Customer 2283 987005.2060718810 +2255 t 98 221662 6.0174336 0.6944713736284704 Product description 2255 2024-02-21 14:03:01.089303 2025-09-21 Processing Customer 2255 435713.0779947270 +2358 t 3 602329 40.05013 0.23203692695332734 Product description 2358 2023-08-14 14:03:01.089303 2025-01-10 Processing Customer 2358 304539.9615884570 +2284 f 35 634723 28.821556 0.5453684676495456 Product description 2284 2024-02-26 14:03:01.089303 2024-02-17 Closed Customer 2284 803750.5773073300 +2256 t 86 67258 76.91373 0.1007005901596365 Product description 2256 2023-10-22 14:03:01.089303 2023-12-09 Closed Customer 2256 147777.4806487280 +2360 t 83 801490 46.336708 0.7050009568534747 Product description 2360 2023-03-25 14:03:01.089303 2024-07-25 Closed Customer 2360 483977.2581548840 +2285 t 57 266125 77.217804 0.7196322497627534 Product description 2285 2023-07-25 14:03:01.089303 2025-08-11 Closed Customer 2285 186089.3590933270 +2257 f 14 889029 99.02513 0.11867390052665527 Product description 2257 2023-11-19 14:03:01.089303 2023-11-26 Processing Customer 2257 319513.9118076680 +2361 t 87 450308 77.75302 0.1424797692795181 Product description 2361 2023-02-03 14:03:01.089303 2025-10-13 Processing Customer 2361 51279.1264597858 +2288 f 88 893440 76.883896 0.4058879802332811 Product description 2288 2022-08-25 14:03:01.089303 2024-09-05 Processing Customer 2288 259344.7961409970 +2259 t 9 411592 68.99037 0.9693059832962412 Product description 2259 2021-08-17 14:03:01.089303 2023-11-04 Closed Customer 2259 585114.4476744570 +2363 f 78 902460 45.03966 0.083500501229814 Product description 2363 2022-12-30 14:03:01.089303 2025-05-17 Closed Customer 2363 314390.4614883760 +2290 t 59 278483 56.696934 0.8716922847673487 Product description 2290 2022-10-17 14:03:01.089303 2024-10-08 Processing Customer 2290 481796.6935722890 +2265 f 8 847800 97.954025 0.5938949775412361 Product description 2265 2023-02-12 14:03:01.089303 2024-02-23 Closed Customer 2265 150647.6369290160 +2367 f 77 355711 13.692572 0.9575637653279045 Product description 2367 2024-02-27 14:03:01.089303 2023-01-25 Closed Customer 2367 201643.6774008490 +2293 f 28 229965 59.671967 0.2430445182100911 Product description 2293 2023-12-05 14:03:01.089303 2023-11-10 Closed Customer 2293 404321.8352913880 +2269 t 40 402308 50.49313 0.5435074337301167 Product description 2269 2022-07-20 14:03:01.089303 2023-02-03 Closed Customer 2269 310988.1940446260 +2381 t 99 940334 75.70359 0.7743712747299085 Product description 2381 2023-05-23 14:03:01.089303 2024-11-23 Closed Customer 2381 992266.9157199130 +2299 t 12 835334 1.002181 0.6080443834381697 Product description 2299 2022-08-05 14:03:01.089303 2025-11-03 Closed Customer 2299 171189.2288351710 +2275 t 23 322954 0.015229647 0.8695611384640607 Product description 2275 2023-08-09 14:03:01.089303 2025-12-07 Closed Customer 2275 425845.2871002940 +2382 f 30 503408 35.554874 0.15214746160070547 Product description 2382 2023-02-27 14:03:01.089303 2024-01-17 Closed Customer 2382 902141.3336267980 +2300 f 80 163452 92.56297 0.4742244037057972 Product description 2300 2022-12-22 14:03:01.089303 2025-05-11 Processing Customer 2300 144578.1430595650 +2276 f 97 529483 21.916233 0.37964788096187263 Product description 2276 2022-05-08 14:03:01.089303 2025-03-17 Processing Customer 2276 711693.5991168280 +2383 f 43 305843 26.538073 0.8405987993459902 Product description 2383 2023-10-29 14:03:01.089303 2024-01-28 Processing Customer 2383 446031.1668243440 +2302 f 14 936862 10.584494 0.8584334208228341 Product description 2302 2024-01-08 14:03:01.089303 2023-01-30 Processing Customer 2302 640309.1549318950 +2278 t 33 250680 57.881504 0.6881713456529148 Product description 2278 2024-05-17 14:03:01.089303 2025-03-05 Closed Customer 2278 89429.4928699182 +2388 t 94 135364 14.454483 0.9891559464344084 Product description 2388 2023-10-09 14:03:01.089303 2024-07-21 Processing Customer 2388 781623.8622758890 +2307 f 55 837865 69.58636 0.28484008312477016 Product description 2307 2022-06-26 14:03:01.089303 2023-07-03 Processing Customer 2307 443107.0675247110 +2281 t 55 271377 62.159096 0.37086338107700456 Product description 2281 2024-01-07 14:03:01.089303 2025-04-15 Closed Customer 2281 914579.0471762040 +2391 f 99 386725 11.3824835 0.06116527837540531 Product description 2391 2023-09-17 14:03:01.089303 2025-12-24 Closed Customer 2391 356625.5581204170 +2311 f 11 712050 32.32776 0.33384260441795277 Product description 2311 2022-03-11 14:03:01.089303 2025-01-18 Processing Customer 2311 206836.1463180360 +2286 t 9 651827 68.88193 0.5716903502663193 Product description 2286 2023-11-12 14:03:01.089303 2025-07-18 Closed Customer 2286 986082.2830642420 +2392 t 63 143783 22.688416 0.7056594477912626 Product description 2392 2024-01-18 14:03:01.089303 2024-11-26 Closed Customer 2392 24051.1481827461 +2313 f 43 316538 64.18733 0.29786705765884136 Product description 2313 2021-11-13 14:03:01.089303 2024-04-15 Closed Customer 2313 725640.1673924170 +2287 f 35 419606 45.515957 0.06506145253490914 Product description 2287 2023-06-26 14:03:01.089303 2023-07-04 Closed Customer 2287 82415.3399013170 +2393 f 12 861877 22.297377 0.659803726612715 Product description 2393 2022-09-26 14:03:01.089303 2024-07-02 Processing Customer 2393 560410.4874186260 +2314 t 79 715769 46.61463 0.9178149740011037 Product description 2314 2024-07-10 14:03:01.089303 2024-06-04 Closed Customer 2314 719992.6748474570 +2291 f 81 293323 83.92009 0.7871313321738107 Product description 2291 2022-02-13 14:03:01.089303 2025-10-29 Processing Customer 2291 565203.8683381240 +2394 t 4 710008 69.04024 0.22258626048898122 Product description 2394 2023-03-02 14:03:01.089303 2024-03-14 Closed Customer 2394 11611.4687573905 +2315 t 57 913069 40.93066 0.9049911936113162 Product description 2315 2022-09-01 14:03:01.089303 2023-10-26 Cancelled Customer 2315 732391.5650867220 +2294 f 1 687422 3.6854863 0.9136895631827606 Product description 2294 2022-09-25 14:03:01.089303 2025-11-29 Closed Customer 2294 94117.5204215483 +2395 t 48 315509 35.786655 0.17386928386947176 Product description 2395 2021-12-06 14:03:01.089303 2024-08-03 Processing Customer 2395 250921.8315322280 +2317 t 43 370675 1.8427194 0.46391601793539294 Product description 2317 2022-03-12 14:03:01.089303 2025-02-02 Processing Customer 2317 498996.7549085890 +2298 t 0 417312 65.89506 0.9770782563245426 Product description 2298 2022-10-01 14:03:01.089303 2025-05-18 Closed Customer 2298 88732.8005580414 +2397 f 52 276998 62.38169 0.9389709294586197 Product description 2397 2024-02-14 14:03:01.089303 2024-01-10 Closed Customer 2397 733623.2459579830 +2320 f 37 220299 53.709373 0.13515945747012026 Product description 2320 2022-11-03 14:03:01.089303 2024-08-11 Closed Customer 2320 864124.2386007590 +2304 t 37 819752 53.52765 0.7021065274304057 Product description 2304 2022-08-15 14:03:01.089303 2023-05-03 Processing Customer 2304 1242.2640716210 +2398 t 87 107966 97.884895 0.19286305308448703 Product description 2398 2022-08-06 14:03:01.089303 2024-02-16 Closed Customer 2398 805360.1051832860 +2321 f 34 14978 99.78788 0.1443144041408182 Product description 2321 2023-11-03 14:03:01.089303 2024-09-29 Closed Customer 2321 722278.0555846950 +2306 t 20 725887 29.290928 0.6903986570152476 Product description 2306 2024-05-23 14:03:01.089303 2024-12-28 Closed Customer 2306 1314.6559212132 +2400 f 20 577211 3.2557442 0.7664300279741099 Product description 2400 2023-03-06 14:03:01.089303 2024-10-14 Closed Customer 2400 876419.7009096190 +2326 f 88 778345 81.22819 0.20991915965560892 Product description 2326 2024-06-05 14:03:01.089303 2023-09-01 Closed Customer 2326 499589.5848001690 +2319 f 54 66371 67.96963 0.17789158569626196 Product description 2319 2021-09-01 14:03:01.089303 2023-05-30 Closed Customer 2319 534025.6845523470 +2401 t 89 707654 32.56923 0.2899891717190499 Product description 2401 2021-12-28 14:03:01.089303 2024-05-27 Processing Customer 2401 223753.3346656770 +2328 f 99 908352 7.931307 0.6923260253065884 Product description 2328 2023-07-23 14:03:01.089303 2025-07-03 Processing Customer 2328 778206.8693044410 +2322 t 27 129167 16.197163 0.4307713713130532 Product description 2322 2022-01-12 14:03:01.089303 2024-08-14 Processing Customer 2322 134008.7883957960 +2403 f 56 166440 26.588562 0.6331700829316986 Product description 2403 2023-11-12 14:03:01.089303 2025-07-07 Closed Customer 2403 437262.8379422670 +2329 t 19 481326 25.012053 0.23841068525286957 Product description 2329 2023-04-12 14:03:01.089303 2023-06-17 Closed Customer 2329 543475.0432603080 +2325 t 43 891445 7.810413 0.5813722578142837 Product description 2325 2022-03-14 14:03:01.089303 2023-01-18 Processing Customer 2325 82951.8985914746 +2407 t 73 679243 14.334589 0.7561708995944443 Product description 2407 2024-04-09 14:03:01.089303 2023-01-07 Closed Customer 2407 554985.1688633290 +2331 t 61 31458 98.89607 0.6380316028589057 Product description 2331 2024-04-18 14:03:01.089303 2023-04-21 Processing Customer 2331 421426.3626692800 +2327 f 76 883669 35.207844 0.5639089003593476 Product description 2327 2023-01-31 14:03:01.089303 2023-10-04 Closed Customer 2327 218787.3057801470 +2408 t 20 782360 34.189053 0.4355542756735531 Product description 2408 2022-05-07 14:03:01.089303 2023-11-28 Closed Customer 2408 814879.8461978650 +2332 f 83 16201 46.724483 0.8889624952408575 Product description 2332 2023-08-24 14:03:01.089303 2025-06-08 Closed Customer 2332 470450.2419028600 +2330 f 7 288042 51.604385 0.8900930105783864 Product description 2330 2021-10-22 14:03:01.089303 2025-06-25 Closed Customer 2330 323240.5498645220 +2413 f 97 464517 49.480988 0.11579785032325418 Product description 2413 2022-07-02 14:03:01.089303 2023-01-02 Closed Customer 2413 182006.7338645440 +2334 t 51 302352 89.28193 0.9559615030507906 Product description 2334 2022-04-05 14:03:01.089303 2024-06-28 Closed Customer 2334 116338.5344582790 +2333 f 98 819849 29.613892 0.08712339490784515 Product description 2333 2023-01-07 14:03:01.089303 2025-03-05 Closed Customer 2333 307508.7959232480 +2419 f 12 527060 47.334553 0.9885005490470604 Product description 2419 2024-03-20 14:03:01.089303 2024-07-25 Closed Customer 2419 734721.1409898020 +2337 t 65 425142 45.015057 0.451477175676569 Product description 2337 2023-05-19 14:03:01.089303 2024-10-18 Closed Customer 2337 90238.5352728103 +2336 f 56 549905 12.541312 0.6285776694932999 Product description 2336 2022-08-27 14:03:01.089303 2025-01-04 Processing Customer 2336 254625.7763827530 +2422 f 51 664684 90.939835 0.8268506695113373 Product description 2422 2023-04-14 14:03:01.089303 2023-11-02 Processing Customer 2422 601875.4749620600 +2338 f 46 207891 91.11859 0.073006324786963 Product description 2338 2022-01-29 14:03:01.089303 2023-05-14 Cancelled Customer 2338 283578.2261934450 +2339 t 77 51262 91.55315 0.6064265517332039 Product description 2339 2022-07-30 14:03:01.089303 2025-04-15 Closed Customer 2339 210568.0379238140 +2423 t 86 116626 13.155098 0.27629274186986663 Product description 2423 2023-12-13 14:03:01.089303 2023-01-25 Processing Customer 2423 573387.6862874720 +2343 t 64 24916 6.5020323 0.28591563680824095 Product description 2343 2023-02-16 14:03:01.089303 2025-12-18 Closed Customer 2343 546249.9027551750 +2340 t 95 970313 51.31781 0.8448796485996475 Product description 2340 2021-12-25 14:03:01.089303 2023-11-15 Processing Customer 2340 374908.8772839570 +2425 f 17 120232 1.6140835 0.8428030334639871 Product description 2425 2022-05-04 14:03:01.089303 2023-08-22 Processing Customer 2425 33732.0337836253 +2344 f 50 677494 87.727486 0.34088970080758685 Product description 2344 2024-02-11 14:03:01.089303 2024-05-17 Processing Customer 2344 399485.7358294900 +2341 t 94 307528 86.13457 0.01654978298600085 Product description 2341 2022-01-27 14:03:01.089303 2023-04-08 Closed Customer 2341 919883.5349322180 +2427 f 86 327062 25.923162 0.0384224132304638 Product description 2427 2021-12-29 14:03:01.089303 2025-02-24 Processing Customer 2427 799373.7565442810 +2346 t 4 835734 36.534718 0.8811383868128075 Product description 2346 2024-05-23 14:03:01.089303 2023-11-26 Processing Customer 2346 880161.3017379530 +2342 t 54 725398 26.262146 0.6100107824461283 Product description 2342 2022-06-14 14:03:01.089303 2025-08-28 Processing Customer 2342 923666.2574714810 +2430 t 83 23711 3.5875072 0.7158103697176941 Product description 2430 2023-12-01 14:03:01.089303 2024-09-25 Closed Customer 2430 254007.3911591380 +2349 f 4 419593 10.392227 0.7150621128880417 Product description 2349 2024-02-10 14:03:01.089303 2023-09-09 Processing Customer 2349 862609.0883315700 +2345 f 73 289529 51.13399 0.10862969366557351 Product description 2345 2023-08-28 14:03:01.089303 2023-04-07 Closed Customer 2345 159263.7640172750 +2431 t 55 951659 89.500496 0.9496311735951508 Product description 2431 2022-03-22 14:03:01.089303 2023-07-20 Closed Customer 2431 382452.7230894400 +2352 t 10 438085 77.19532 0.7268283505086828 Product description 2352 2023-11-27 14:03:01.089303 2023-08-05 Processing Customer 2352 511207.1110753330 +2350 t 19 333521 43.08961 0.21496213339300496 Product description 2350 2023-09-11 14:03:01.089303 2023-09-04 Processing Customer 2350 255972.1643379480 +2433 t 84 131869 41.597218 0.8542617478380592 Product description 2433 2022-06-22 14:03:01.089303 2025-08-19 Processing Customer 2433 943242.3805980400 +2355 t 96 24839 54.051117 0.8985547592766849 Product description 2355 2023-08-13 14:03:01.089303 2024-03-28 Closed Customer 2355 818543.3977411840 +2356 t 93 923626 46.11128 0.2999579856341903 Product description 2356 2021-11-18 14:03:01.089303 2025-06-06 Closed Customer 2356 41592.1169290598 +2435 t 70 555714 90.420685 0.8313056700144585 Product description 2435 2024-05-16 14:03:01.089303 2024-01-07 Closed Customer 2435 318455.5999620890 +2362 f 44 72825 33.777493 0.18074454381064697 Product description 2362 2022-06-20 14:03:01.089303 2023-07-21 Closed Customer 2362 515044.4864558460 +2357 t 46 130741 11.102837 0.19787392794868097 Product description 2357 2021-11-15 14:03:01.089303 2025-06-21 Processing Customer 2357 21966.3423823846 +2436 f 58 859808 24.349209 0.19502251807480064 Product description 2436 2021-11-13 14:03:01.089303 2024-04-03 Closed Customer 2436 248720.5554244160 +2365 f 78 123347 72.46669 0.3973127275768391 Product description 2365 2022-01-13 14:03:01.089303 2024-07-06 Processing Customer 2365 793602.0971363610 +2359 f 52 323797 12.475997 0.691902212504214 Product description 2359 2023-10-30 14:03:01.089303 2023-01-30 Processing Customer 2359 213916.1659893250 +2440 t 3 633751 64.28991 0.12782894132564593 Product description 2440 2023-07-29 14:03:01.089303 2024-09-24 Closed Customer 2440 437237.7688807450 +2366 f 5 887372 2.306463 0.4300876427755185 Product description 2366 2023-03-03 14:03:01.089303 2024-04-11 Processing Customer 2366 834472.9859603710 +2364 f 52 372894 97.69501 0.7717970602649764 Product description 2364 2024-07-29 14:03:01.089303 2025-10-07 Closed Customer 2364 726599.0813830000 +2441 t 54 337356 26.13986 0.5219820491464375 Product description 2441 2022-09-17 14:03:01.089303 2025-08-15 Closed Customer 2441 453108.5871973950 +2369 t 0 754432 68.166405 0.17186180873462575 Product description 2369 2023-11-08 14:03:01.089303 2025-07-14 Processing Customer 2369 89190.1254956231 +2368 t 77 653421 91.197685 0.9082471507943772 Product description 2368 2024-01-30 14:03:01.089303 2023-03-17 Processing Customer 2368 573770.6942727310 +2447 t 15 333695 89.82592 0.41457672863263895 Product description 2447 2022-07-02 14:03:01.089303 2023-03-21 Cancelled Customer 2447 867034.2588090420 +2371 f 25 376136 50.168392 0.8690499047645801 Product description 2371 2022-06-10 14:03:01.089303 2025-02-03 Closed Customer 2371 127896.6310873350 +2370 t 55 966111 23.762127 0.9978607017467915 Product description 2370 2024-04-20 14:03:01.089303 2025-01-17 Closed Customer 2370 668084.2844225910 +2452 f 28 719867 3.6171367 0.6244017949254008 Product description 2452 2022-08-26 14:03:01.089303 2023-02-06 Closed Customer 2452 88764.6223422465 +2372 t 83 670061 17.876007 0.5364232967247418 Product description 2372 2022-04-29 14:03:01.089303 2024-07-30 Closed Customer 2372 596480.4145850200 +2373 t 50 924715 15.895912 0.4797937414719904 Product description 2373 2024-01-03 14:03:01.089303 2025-09-29 Closed Customer 2373 456382.4412049870 +2453 f 20 189993 18.153778 0.049464444278701336 Product description 2453 2022-03-16 14:03:01.089303 2023-01-15 Closed Customer 2453 356629.6316305540 +2374 t 32 254946 50.99038 0.13317693788881968 Product description 2374 2022-02-09 14:03:01.089303 2024-09-30 Cancelled Customer 2374 555528.3550121430 +2378 t 67 678891 16.992989 0.7815897854681744 Product description 2378 2024-04-27 14:03:01.089303 2023-11-29 Processing Customer 2378 149774.1959796030 +2458 f 27 279560 18.775715 0.39280154341572526 Product description 2458 2022-07-23 14:03:01.089303 2023-08-24 Closed Customer 2458 999182.9498336740 +2375 f 6 541098 32.025063 0.746960742476741 Product description 2375 2023-08-16 14:03:01.089303 2025-11-30 Processing Customer 2375 802724.4227654440 +2379 f 28 361840 39.646286 0.6457164048748574 Product description 2379 2022-12-09 14:03:01.089303 2025-09-24 Closed Customer 2379 264399.2961981280 +2462 f 97 556648 51.67242 0.04444437730790085 Product description 2462 2023-03-07 14:03:01.089303 2025-02-08 Processing Customer 2462 18979.6714986130 +2376 f 79 655047 34.3166 0.9070266821764541 Product description 2376 2023-11-20 14:03:01.089303 2023-04-17 Processing Customer 2376 159741.1935260450 +2384 t 17 630070 53.705154 0.09929780522938714 Product description 2384 2024-07-03 14:03:01.089303 2023-01-07 Cancelled Customer 2384 31949.2086418229 +2468 t 59 385627 21.313776 0.9917587660679281 Product description 2468 2023-11-08 14:03:01.089303 2024-08-14 Closed Customer 2468 272538.5487784490 +2377 t 89 962609 85.966125 0.9544155753698185 Product description 2377 2022-01-28 14:03:01.089303 2024-07-03 Processing Customer 2377 224505.6278830690 +2385 t 69 726907 7.745626 0.680053077840256 Product description 2385 2023-12-25 14:03:01.089303 2023-06-17 Processing Customer 2385 902526.2528649270 +2480 t 70 999970 0.880949 0.9709418095771447 Product description 2480 2023-02-18 14:03:01.089303 2023-03-04 Processing Customer 2480 446313.5759025790 +2380 f 18 516639 70.21162 0.2964863573329133 Product description 2380 2022-01-14 14:03:01.089303 2023-12-21 Processing Customer 2380 830193.9227135620 +2396 f 20 531204 14.864834 0.714674645836773 Product description 2396 2022-07-09 14:03:01.089303 2024-02-10 Closed Customer 2396 587237.2888248410 +2485 t 19 837120 78.33724 0.9177309344270093 Product description 2485 2023-11-18 14:03:01.089303 2023-07-29 Closed Customer 2485 648244.4022593020 +2386 f 30 576383 19.269516 0.11613004883761491 Product description 2386 2023-08-21 14:03:01.089303 2024-02-22 Closed Customer 2386 438465.0405036510 +2402 t 11 963511 3.1498964 0.07805548580226684 Product description 2402 2022-06-29 14:03:01.089303 2025-04-04 Closed Customer 2402 813511.9994002300 +2486 f 13 149584 37.396034 0.9622531207349603 Product description 2486 2024-02-03 14:03:01.089303 2025-03-08 Processing Customer 2486 378087.4236258570 +2387 t 94 708250 87.98951 0.45081525760190644 Product description 2387 2022-05-05 14:03:01.089303 2024-04-06 Cancelled Customer 2387 600544.3781598000 +2409 t 27 85953 92.46023 0.30541420358161275 Product description 2409 2023-12-30 14:03:01.089303 2025-08-19 Closed Customer 2409 530749.4077173550 +2488 f 71 568146 88.81106 0.20200755039808982 Product description 2488 2022-03-14 14:03:01.089303 2024-01-08 Processing Customer 2488 49620.9021500889 +2389 t 47 989432 73.7743 0.5370308536124639 Product description 2389 2023-09-06 14:03:01.089303 2023-12-18 Closed Customer 2389 855178.6836711660 +2415 f 94 481004 13.044934 0.20832446711085595 Product description 2415 2022-04-23 14:03:01.089303 2024-07-14 Closed Customer 2415 570008.8632173640 +2489 f 35 943560 52.782124 0.18151859293627481 Product description 2489 2024-06-23 14:03:01.089303 2023-10-06 Closed Customer 2489 765870.2874433200 +2390 f 60 124236 7.2734885 0.7823308980974915 Product description 2390 2022-02-07 14:03:01.089303 2025-11-11 Closed Customer 2390 556768.9140110340 +2416 f 63 864341 1.6288469 0.8134602759981888 Product description 2416 2022-10-26 14:03:01.089303 2023-06-02 Closed Customer 2416 499836.2741513100 +2491 f 65 896290 57.218845 0.03262715653137249 Product description 2491 2024-07-08 14:03:01.089303 2025-08-09 Closed Customer 2491 266545.7567718120 +2399 f 19 102890 24.232536 0.13199573945071563 Product description 2399 2022-06-25 14:03:01.089303 2025-12-22 Closed Customer 2399 861840.8537394190 +2417 f 95 241809 72.61323 0.0850607151007381 Product description 2417 2023-06-17 14:03:01.089303 2025-02-14 Closed Customer 2417 589115.4299817000 +2493 t 41 413915 0.951032 0.2018158745389549 Product description 2493 2023-04-25 14:03:01.089303 2024-11-15 Closed Customer 2493 254440.4170711520 +2404 f 74 624986 13.496181 0.14735945718242505 Product description 2404 2024-03-28 14:03:01.089303 2024-11-23 Processing Customer 2404 899443.2068500270 +2418 t 45 89409 44.2199 0.546755728288268 Product description 2418 2022-01-06 14:03:01.089303 2023-02-07 Closed Customer 2418 64104.2443949011 +2496 t 2 543180 42.59235 0.3703332410796314 Product description 2496 2024-04-21 14:03:01.089303 2023-07-23 Processing Customer 2496 193177.6515479340 +2405 f 39 152973 34.932568 0.6511105260531451 Product description 2405 2022-04-04 14:03:01.089303 2023-10-14 Closed Customer 2405 821585.4976191640 +2420 t 28 711818 4.160071 0.8340960912173898 Product description 2420 2022-10-25 14:03:01.089303 2023-10-04 Processing Customer 2420 561793.6845852930 +2502 f 42 705867 77.8511 0.286523861132995 Product description 2502 2023-05-27 14:03:01.089303 2025-05-11 Closed Customer 2502 66437.4262832865 +2406 t 41 93596 79.87468 0.39342933166998506 Product description 2406 2024-01-09 14:03:01.089303 2025-07-24 Processing Customer 2406 681648.4145305180 +2424 f 87 268249 9.568588 0.11062659116445417 Product description 2424 2021-12-16 14:03:01.089303 2024-08-02 Closed Customer 2424 231322.3445468150 +2508 t 25 237647 80.46013 0.8921397565934903 Product description 2508 2024-06-19 14:03:01.089303 2024-09-24 Closed Customer 2508 402161.2573397920 +2410 f 97 399349 59.447815 0.1531670953016686 Product description 2410 2023-10-04 14:03:01.089303 2023-04-17 Closed Customer 2410 814885.3936392410 +2432 f 85 874640 30.997856 0.864974310401621 Product description 2432 2023-03-29 14:03:01.089303 2024-03-13 Closed Customer 2432 216682.2990979360 +2509 f 91 954327 93.85906 0.6850390194303095 Product description 2509 2023-08-06 14:03:01.089303 2023-10-31 Closed Customer 2509 712917.7913996610 +2411 f 66 715807 50.602062 0.3675723075684729 Product description 2411 2021-12-03 14:03:01.089303 2024-09-09 Processing Customer 2411 232718.3309519290 +2438 t 6 667264 80.44479 0.5307728748878091 Product description 2438 2024-06-13 14:03:01.089303 2023-11-27 Closed Customer 2438 553057.1172607960 +2510 f 60 576078 38.106987 0.5686607415717013 Product description 2510 2024-04-15 14:03:01.089303 2024-07-25 Processing Customer 2510 851831.1970120250 +2412 f 52 784215 42.060913 0.2821203785362627 Product description 2412 2022-02-17 14:03:01.089303 2023-07-14 Closed Customer 2412 454171.6280247630 +2439 t 13 616850 79.79577 0.35958320749927 Product description 2439 2023-10-22 14:03:01.089303 2024-04-15 Closed Customer 2439 115968.4726257490 +2511 t 71 36199 67.533424 0.9181371475606603 Product description 2511 2023-06-24 14:03:01.089303 2025-12-15 Processing Customer 2511 551530.0174237300 +2414 t 71 832327 89.72371 0.18965170078895 Product description 2414 2024-04-27 14:03:01.089303 2025-11-03 Processing Customer 2414 453694.7161108490 +2444 f 71 302498 87.6339 0.39896972154037513 Product description 2444 2023-04-17 14:03:01.089303 2025-12-14 Closed Customer 2444 711097.0851742060 +2513 f 23 741763 47.990482 0.18037052809183862 Product description 2513 2023-09-15 14:03:01.089303 2025-02-19 Cancelled Customer 2513 427469.2170404500 +2421 t 24 109581 92.08311 0.11479940278128709 Product description 2421 2022-01-05 14:03:01.089303 2025-07-29 Closed Customer 2421 165298.1129449920 +2449 t 97 769173 80.22905 0.9119516694891132 Product description 2449 2024-03-29 14:03:01.089303 2023-01-09 Closed Customer 2449 875185.2454558500 +2514 t 15 185299 21.861612 0.6292800657680928 Product description 2514 2023-11-29 14:03:01.089303 2025-07-03 Closed Customer 2514 417653.8965678030 +2426 f 53 187232 25.353468 0.5082305508386966 Product description 2426 2024-05-05 14:03:01.089303 2024-02-09 Closed Customer 2426 953775.2705817190 +2450 f 72 593912 18.428823 0.25395491062354125 Product description 2450 2022-09-20 14:03:01.089303 2025-05-06 Closed Customer 2450 369922.5015880540 +2515 f 90 984317 42.235947 0.6329435337759008 Product description 2515 2024-06-13 14:03:01.089303 2025-05-25 Processing Customer 2515 720253.9748041480 +2428 t 33 270601 50.331696 0.9720114440284249 Product description 2428 2023-05-21 14:03:01.089303 2025-10-01 Processing Customer 2428 669335.2443898810 +2451 t 72 79650 7.403229 0.4971508869255956 Product description 2451 2024-05-07 14:03:01.089303 2025-11-25 Processing Customer 2451 579221.8946800990 +2516 f 66 912530 17.99916 0.06595827792840936 Product description 2516 2023-02-07 14:03:01.089303 2025-12-15 Closed Customer 2516 43660.6826653083 +2429 f 19 105951 0.15173337 0.4108435159392698 Product description 2429 2023-08-06 14:03:01.089303 2024-02-26 Processing Customer 2429 599283.8812730420 +2455 f 79 176873 14.132729 0.3031405067548363 Product description 2455 2024-01-25 14:03:01.089303 2024-05-19 Closed Customer 2455 500844.2535260580 +2517 t 72 400360 57.475002 0.5679050059794122 Product description 2517 2022-04-30 14:03:01.089303 2025-07-05 Processing Customer 2517 49224.5424020972 +2434 t 47 718619 48.168545 0.5211902752013629 Product description 2434 2022-07-23 14:03:01.089303 2023-04-25 Closed Customer 2434 37371.6950077601 +2460 t 99 376011 62.603874 0.7771994473777539 Product description 2460 2021-08-30 14:03:01.089303 2023-02-16 Closed Customer 2460 231887.0509616140 +2521 t 53 742972 78.18211 0.8764731384738482 Product description 2521 2023-03-29 14:03:01.089303 2023-11-01 Closed Customer 2521 746856.2917813730 +2437 f 81 505226 35.685993 0.4056849226483834 Product description 2437 2024-02-15 14:03:01.089303 2025-01-04 Closed Customer 2437 612141.5262917540 +2461 f 86 689358 8.803634 0.24646041894862236 Product description 2461 2024-03-10 14:03:01.089303 2023-06-06 Closed Customer 2461 317048.6057866420 +2529 t 68 652084 59.78193 0.9812171555633 Product description 2529 2023-11-13 14:03:01.089303 2023-12-14 Processing Customer 2529 73824.8178771066 +2442 t 87 130867 92.151955 0.17861391659334913 Product description 2442 2024-03-02 14:03:01.089303 2024-03-16 Closed Customer 2442 600842.9671635400 +2465 f 72 615441 21.450905 0.8897540263117207 Product description 2465 2023-12-12 14:03:01.089303 2024-09-14 Processing Customer 2465 924680.3687346950 +2531 t 8 399451 69.46169 0.5548505190459068 Product description 2531 2024-06-20 14:03:01.089303 2023-11-11 Closed Customer 2531 469566.5093847090 +2443 t 42 931712 95.002075 0.07944286080897456 Product description 2443 2024-01-08 14:03:01.089303 2025-12-07 Cancelled Customer 2443 527146.2119584600 +2466 f 30 511855 8.589848 0.3984533912103032 Product description 2466 2022-04-12 14:03:01.089303 2025-12-09 Processing Customer 2466 418337.2394943240 +2533 f 91 779516 53.005672 0.7431152441986058 Product description 2533 2022-05-31 14:03:01.089303 2025-07-01 Processing Customer 2533 350735.5585232650 +2445 f 94 321793 55.898746 0.24727030058152266 Product description 2445 2022-07-08 14:03:01.089303 2023-04-24 Closed Customer 2445 658916.1125219510 +2467 f 82 718489 92.100555 0.08558608931146239 Product description 2467 2022-09-23 14:03:01.089303 2023-02-20 Closed Customer 2467 281266.7474120300 +2534 t 31 574430 55.14994 0.5865544440784802 Product description 2534 2023-01-02 14:03:01.089303 2024-06-21 Cancelled Customer 2534 399392.3579024500 +2446 f 60 512230 86.84993 0.5835463158620904 Product description 2446 2022-11-04 14:03:01.089303 2024-07-28 Processing Customer 2446 590059.5875462850 +2469 t 16 734458 69.848175 0.11330902644905194 Product description 2469 2022-01-24 14:03:01.089303 2025-06-22 Processing Customer 2469 8165.0574558019 +2536 f 38 316653 36.38389 0.39987651180708284 Product description 2536 2021-12-12 14:03:01.089303 2025-08-13 Processing Customer 2536 550507.4880282450 +2448 t 73 384195 24.181694 0.3661934700191445 Product description 2448 2022-11-22 14:03:01.089303 2025-12-19 Processing Customer 2448 819851.5001767390 +2470 t 67 416077 67.88177 0.8609391662609198 Product description 2470 2022-08-20 14:03:01.089303 2025-09-15 Cancelled Customer 2470 338487.8407370450 +2538 t 31 871498 24.214323 0.6290846353479616 Product description 2538 2021-09-16 14:03:01.089303 2025-04-26 Processing Customer 2538 424477.4655686070 +2454 t 83 143951 9.854774 0.3237861247871301 Product description 2454 2024-02-04 14:03:01.089303 2024-06-29 Closed Customer 2454 769634.3512630430 +2472 t 60 803125 7.088521 0.5060527630850906 Product description 2472 2024-03-21 14:03:01.089303 2025-09-25 Processing Customer 2472 333497.7369966550 +2541 t 23 842492 68.01924 0.1474085215618608 Product description 2541 2022-05-27 14:03:01.089303 2024-11-21 Closed Customer 2541 133728.7918407950 +2456 t 54 887178 25.319078 0.3941134715256176 Product description 2456 2021-11-06 14:03:01.089303 2025-01-02 Closed Customer 2456 145694.0201308040 +2473 f 13 196295 50.844566 0.5338464594713805 Product description 2473 2024-08-01 14:03:01.089303 2023-12-29 Closed Customer 2473 373683.3792759170 +2544 t 62 125565 88.43814 0.18908151256944095 Product description 2544 2021-10-31 14:03:01.089303 2025-05-07 Closed Customer 2544 905097.6868573100 +2457 f 66 469622 68.287834 0.028933653059535658 Product description 2457 2021-12-30 14:03:01.089303 2023-10-31 Processing Customer 2457 678943.7186557810 +2476 f 2 654334 99.41156 0.18679913898563072 Product description 2476 2023-09-08 14:03:01.089303 2024-12-31 Cancelled Customer 2476 619106.2484569550 +2547 f 42 291416 53.444695 0.19802927048106156 Product description 2547 2021-10-15 14:03:01.089303 2023-07-23 Processing Customer 2547 322484.2068777600 +2459 f 87 734151 24.5147 0.48439129323444163 Product description 2459 2024-03-05 14:03:01.089303 2024-09-04 Processing Customer 2459 574681.9866097470 +2477 t 11 236852 70.87351 0.22471388436851925 Product description 2477 2024-01-31 14:03:01.089303 2024-01-18 Closed Customer 2477 284403.6079246060 +2551 t 22 434768 83.40194 0.9978506103835478 Product description 2551 2023-07-26 14:03:01.089303 2024-06-30 Processing Customer 2551 718854.9583044970 +2463 t 39 110771 1.422093 0.3994279539504184 Product description 2463 2022-09-20 14:03:01.089303 2025-12-29 Processing Customer 2463 974480.2678412370 +2479 t 58 49207 17.639801 0.19795162523436716 Product description 2479 2023-02-04 14:03:01.089303 2024-03-09 Closed Customer 2479 315786.5791015090 +2552 f 45 636521 3.9397793 0.9065315518496995 Product description 2552 2022-09-25 14:03:01.089303 2025-08-24 Closed Customer 2552 662071.4761823340 +2464 f 31 225074 60.122005 0.04481830608266435 Product description 2464 2022-10-19 14:03:01.089303 2025-04-09 Closed Customer 2464 662737.2940426140 +2481 t 38 939001 21.885592 0.891833392040418 Product description 2481 2023-10-10 14:03:01.089303 2023-08-22 Closed Customer 2481 412452.1278637910 +2553 t 6 218232 13.610913 0.25808432902145384 Product description 2553 2022-04-24 14:03:01.089303 2024-01-28 Closed Customer 2553 22765.5568923453 +2471 t 54 145417 81.1995 0.3357754535489015 Product description 2471 2021-10-27 14:03:01.089303 2023-06-12 Processing Customer 2471 585979.1237054780 +2482 t 28 806925 21.087296 0.21139666424407721 Product description 2482 2023-09-21 14:03:01.089303 2025-07-08 Closed Customer 2482 511071.5120112950 +2555 f 28 759005 32.26486 0.5786439598036459 Product description 2555 2022-10-14 14:03:01.089303 2023-01-02 Processing Customer 2555 651820.2461526240 +2474 f 9 575169 27.193687 0.5712073310430732 Product description 2474 2021-10-11 14:03:01.089303 2024-03-11 Closed Customer 2474 359507.2125615250 +2483 t 69 693233 80.81343 0.060609965233247465 Product description 2483 2022-04-13 14:03:01.089303 2024-04-25 Processing Customer 2483 288758.4132104910 +2556 f 77 674895 29.584948 0.21037731197509046 Product description 2556 2022-04-14 14:03:01.089303 2023-03-21 Closed Customer 2556 410832.0537706120 +2475 t 88 511487 90.31959 0.07328783073129941 Product description 2475 2024-01-24 14:03:01.089303 2025-09-08 Closed Customer 2475 752918.2600472880 +2484 t 26 185494 31.14501 0.9294171272438234 Product description 2484 2023-10-15 14:03:01.089303 2023-03-18 Processing Customer 2484 464612.7973705880 +2559 f 78 545261 99.17234 0.5013008036363296 Product description 2559 2023-12-22 14:03:01.089303 2024-09-18 Processing Customer 2559 362781.8148363100 +2478 t 90 439271 69.18009 0.9907781353009746 Product description 2478 2022-07-22 14:03:01.089303 2025-06-22 Processing Customer 2478 333770.6459961400 +2490 t 66 578845 26.722878 0.11069099924771564 Product description 2490 2023-01-24 14:03:01.089303 2023-02-08 Closed Customer 2490 262431.3174621630 +2561 f 71 955226 31.601158 0.10702460271307856 Product description 2561 2024-02-03 14:03:01.089303 2025-08-15 Processing Customer 2561 543865.0292017750 +2487 t 92 500620 21.04232 0.39421421869115747 Product description 2487 2024-07-20 14:03:01.089303 2024-12-13 Closed Customer 2487 317961.0888090070 +2495 f 6 71478 9.043567 0.24896803948861645 Product description 2495 2024-04-05 14:03:01.089303 2023-09-03 Cancelled Customer 2495 387695.1045754990 +2563 t 44 918709 34.708694 0.5279501911318114 Product description 2563 2023-07-16 14:03:01.089303 2024-10-05 Closed Customer 2563 528713.9877091530 +2492 f 67 226198 31.8686 0.3682314251398431 Product description 2492 2024-03-23 14:03:01.089303 2023-03-02 Processing Customer 2492 464590.7359842030 +2497 f 9 238771 68.27119 0.8479216201512507 Product description 2497 2023-10-22 14:03:01.089303 2024-10-14 Closed Customer 2497 128933.5881625460 +2566 f 73 986316 26.661434 0.6307959672873515 Product description 2566 2023-06-12 14:03:01.089303 2024-10-02 Closed Customer 2566 935302.0787134840 +2494 f 82 516102 77.045364 0.4970313789243157 Product description 2494 2023-08-28 14:03:01.089303 2024-03-26 Cancelled Customer 2494 872060.1456516560 +2499 t 3 747123 8.222426 0.7430091094560716 Product description 2499 2023-06-02 14:03:01.089303 2023-03-12 Processing Customer 2499 497587.4957196280 +2569 t 80 61980 14.420904 0.9392183599189856 Product description 2569 2023-04-09 14:03:01.089303 2025-04-09 Closed Customer 2569 764607.6096171870 +2498 t 34 777925 48.81092 0.16551367332832712 Product description 2498 2021-10-26 14:03:01.089303 2025-05-02 Closed Customer 2498 648060.1214643720 +2503 f 3 691019 72.508575 0.11602415418267853 Product description 2503 2022-04-15 14:03:01.089303 2023-10-28 Processing Customer 2503 172930.5185229390 +2570 f 70 876049 72.30912 0.273195822298856 Product description 2570 2022-03-20 14:03:01.089303 2023-07-18 Processing Customer 2570 211693.6680297310 +2500 t 53 398882 87.22463 0.5150885949942534 Product description 2500 2023-01-08 14:03:01.089303 2024-07-21 Processing Customer 2500 968589.2869027090 +2505 f 95 332285 54.66948 0.6381942581159201 Product description 2505 2022-04-08 14:03:01.089303 2024-09-17 Processing Customer 2505 797513.0749191520 +2572 t 49 353632 80.31974 0.9669920187029852 Product description 2572 2024-04-13 14:03:01.089303 2024-06-20 Closed Customer 2572 486865.9961034040 +2501 t 25 379981 29.743433 0.9613352596817251 Product description 2501 2021-11-22 14:03:01.089303 2025-04-21 Closed Customer 2501 898699.7901673880 +2506 f 65 740463 45.008633 0.2053407901910269 Product description 2506 2021-11-13 14:03:01.089303 2024-10-02 Closed Customer 2506 406362.2648493560 +2573 t 20 946461 15.528825 0.7359621346926666 Product description 2573 2022-02-10 14:03:01.089303 2023-10-23 Processing Customer 2573 357904.9414713110 +2504 t 39 705068 63.57408 0.34428981011416226 Product description 2504 2022-09-12 14:03:01.089303 2023-11-09 Processing Customer 2504 888782.0026964700 +2512 f 38 558146 20.624691 0.9099883617904858 Product description 2512 2024-03-07 14:03:01.089303 2023-01-15 Closed Customer 2512 354107.6164952560 +2577 f 70 343390 56.855793 0.9816328344974501 Product description 2577 2022-09-18 14:03:01.089303 2025-07-09 Closed Customer 2577 607543.3176620350 +2507 t 53 182293 1.7843804 0.3635797457009815 Product description 2507 2024-07-14 14:03:01.089303 2024-12-17 Closed Customer 2507 506663.4579752960 +2518 t 32 513350 62.412685 0.28327549591086765 Product description 2518 2023-04-16 14:03:01.089303 2024-07-27 Cancelled Customer 2518 641165.1637719980 +2580 t 1 579186 35.091797 0.25304230951105566 Product description 2580 2023-10-26 14:03:01.089303 2023-04-11 Closed Customer 2580 987146.2176664850 +2519 t 59 740303 13.070827 0.04676716952771187 Product description 2519 2024-04-03 14:03:01.089303 2024-02-27 Processing Customer 2519 286896.1725417410 +2520 t 80 465527 20.747952 0.25978841981473266 Product description 2520 2023-06-16 14:03:01.089303 2024-07-11 Processing Customer 2520 230018.5590044670 +2581 t 30 4113 28.018738 0.6134195801551421 Product description 2581 2023-05-02 14:03:01.089303 2024-03-08 Processing Customer 2581 816812.0590670180 +2525 f 50 905617 36.57735 0.6024924007736203 Product description 2525 2023-11-25 14:03:01.089303 2025-01-03 Closed Customer 2525 280218.4004034880 +2522 t 36 159077 65.73829 0.10060561049424166 Product description 2522 2024-03-20 14:03:01.089303 2024-05-30 Closed Customer 2522 542397.0941373960 +2582 f 54 569078 26.923243 0.41539226654751005 Product description 2582 2022-01-03 14:03:01.089303 2024-07-28 Closed Customer 2582 155044.1800944570 +2526 f 73 909520 4.2441125 0.4152387076362345 Product description 2526 2022-08-03 14:03:01.089303 2025-05-15 Closed Customer 2526 844226.3631319200 +2523 f 89 70308 53.21427 0.5998312455681614 Product description 2523 2023-05-05 14:03:01.089303 2024-08-15 Processing Customer 2523 814608.2494109410 +2584 f 100 797 25.572464 0.2418691510744715 Product description 2584 2022-02-07 14:03:01.089303 2023-10-23 Closed Customer 2584 371227.0453060430 +2527 f 99 935523 91.571106 0.5580246666365625 Product description 2527 2022-12-02 14:03:01.089303 2024-07-23 Closed Customer 2527 891396.9057312590 +2524 f 46 673142 72.173 0.14474133779663134 Product description 2524 2023-07-05 14:03:01.089303 2023-02-27 Processing Customer 2524 792653.5220003610 +2587 f 4 963425 10.245639 0.8256844393153919 Product description 2587 2024-04-15 14:03:01.089303 2023-10-14 Closed Customer 2587 353577.2506971210 +2528 f 54 631517 11.946802 0.4557117039310441 Product description 2528 2023-03-03 14:03:01.089303 2023-06-15 Closed Customer 2528 21867.5476429375 +2530 f 39 478314 59.322266 0.3996518198941956 Product description 2530 2021-12-06 14:03:01.089303 2024-10-20 Closed Customer 2530 728287.9405108570 +2598 f 42 421259 75.799416 0.33738798344582577 Product description 2598 2023-07-31 14:03:01.089303 2025-05-13 Closed Customer 2598 591673.2583175420 +2532 f 14 929202 88.69553 0.112121596074239 Product description 2532 2024-06-28 14:03:01.089303 2025-02-13 Closed Customer 2532 71264.2885163923 +2537 f 51 13901 44.593857 0.8428063711897522 Product description 2537 2024-01-13 14:03:01.089303 2024-03-21 Processing Customer 2537 893443.9821707760 +2601 f 48 66958 48.585587 0.813014122371893 Product description 2601 2022-04-11 14:03:01.089303 2025-07-26 Closed Customer 2601 91423.8850387008 +2535 f 72 373775 36.5056 0.5986209360936527 Product description 2535 2023-09-02 14:03:01.089303 2024-09-21 Closed Customer 2535 477303.6962136490 +2543 f 98 474698 24.179625 0.21180381352470334 Product description 2543 2023-10-01 14:03:01.089303 2023-09-13 Processing Customer 2543 915040.4965140420 +2602 f 5 324575 66.16901 0.0914456712941707 Product description 2602 2023-08-31 14:03:01.089303 2025-05-20 Processing Customer 2602 518540.8271753000 +2539 t 15 168907 96.36098 0.5770901056206483 Product description 2539 2022-07-24 14:03:01.089303 2025-02-16 Processing Customer 2539 994700.5417253400 +2545 f 76 396114 51.084934 0.9227591634923158 Product description 2545 2021-08-14 14:03:01.089303 2025-11-29 Processing Customer 2545 565188.5562572510 +2604 t 27 586024 65.72458 0.7382192583211342 Product description 2604 2023-11-07 14:03:01.089303 2023-08-18 Closed Customer 2604 486838.1097682790 +2540 f 49 933779 66.82296 0.9339219355230881 Product description 2540 2024-01-04 14:03:01.089303 2023-04-02 Closed Customer 2540 223257.3738543910 +2546 t 90 591504 52.52151 0.8474545567843634 Product description 2546 2023-07-26 14:03:01.089303 2024-10-27 Closed Customer 2546 506695.6138987320 +2607 f 19 227380 10.102426 0.9024630983732216 Product description 2607 2024-03-25 14:03:01.089303 2024-12-19 Closed Customer 2607 350202.2210938380 +2542 f 70 376760 23.555744 0.543246103254738 Product description 2542 2022-01-12 14:03:01.089303 2023-05-28 Closed Customer 2542 863996.0978311940 +2549 f 49 35318 80.16944 0.11906935941873087 Product description 2549 2023-12-25 14:03:01.089303 2024-07-31 Closed Customer 2549 172734.8664058290 +2609 t 84 703426 29.14265 0.7483592062597175 Product description 2609 2023-11-12 14:03:01.089303 2023-02-28 Processing Customer 2609 990424.0999468710 +2548 t 27 466879 90.735374 0.5648116867728561 Product description 2548 2024-01-22 14:03:01.089303 2024-08-31 Processing Customer 2548 471788.0262188850 +2558 f 23 137067 84.84302 0.025411281675467023 Product description 2558 2022-01-10 14:03:01.089303 2025-04-29 Closed Customer 2558 905397.6540141270 +2610 t 11 800878 1.3277587 0.38881348617156064 Product description 2610 2023-03-29 14:03:01.089303 2025-03-29 Closed Customer 2610 834937.8721375020 +2550 t 53 427822 93.90958 0.914182747635131 Product description 2550 2023-12-29 14:03:01.089303 2025-11-21 Closed Customer 2550 571858.0981866840 +2560 f 93 177379 58.472183 0.4571465755462327 Product description 2560 2023-06-09 14:03:01.089303 2024-04-05 Closed Customer 2560 812864.1171620610 +2611 f 98 168734 79.57723 0.46474108152373717 Product description 2611 2021-11-17 14:03:01.089303 2025-05-13 Closed Customer 2611 219107.5276385770 +2554 f 67 109815 28.83498 0.5113008786398581 Product description 2554 2022-11-05 14:03:01.089303 2025-08-16 Processing Customer 2554 73778.2755203789 +2567 f 27 400483 74.012436 0.9383679713626591 Product description 2567 2022-06-28 14:03:01.089303 2024-04-12 Closed Customer 2567 505739.5114543260 +2616 f 25 269681 85.86409 0.2373167234024045 Product description 2616 2023-02-14 14:03:01.089303 2025-03-20 Processing Customer 2616 829856.2653072280 +2557 t 16 753505 24.541862 0.5817522480081081 Product description 2557 2024-07-08 14:03:01.089303 2023-09-27 Closed Customer 2557 970682.8778407900 +2568 t 44 573798 73.22263 0.5991454092105784 Product description 2568 2022-12-02 14:03:01.089303 2023-07-25 Processing Customer 2568 692377.9613505980 +2618 f 61 473119 7.4392166 0.17377071484821371 Product description 2618 2023-02-17 14:03:01.089303 2023-12-28 Processing Customer 2618 748297.3665344800 +2562 f 39 229012 69.23914 0.204179594188588 Product description 2562 2023-10-04 14:03:01.089303 2025-06-07 Processing Customer 2562 69832.1008748586 +2571 f 92 933458 44.92029 0.8890648966016883 Product description 2571 2022-03-22 14:03:01.089303 2024-08-17 Processing Customer 2571 694998.1203917340 +2622 f 3 354707 23.915382 0.9405604978663042 Product description 2622 2022-02-12 14:03:01.089303 2024-01-01 Closed Customer 2622 869997.0202511760 +2564 f 49 255844 75.74731 0.8393112860418981 Product description 2564 2024-08-02 14:03:01.089303 2024-01-10 Closed Customer 2564 646368.3722351200 +2575 t 16 260662 29.073706 0.9730621598050391 Product description 2575 2022-05-01 14:03:01.089303 2023-01-07 Closed Customer 2575 251579.4319309310 +2627 f 45 584501 37.747517 0.9355969599581151 Product description 2627 2023-06-12 14:03:01.089303 2024-01-08 Processing Customer 2627 983924.3727783680 +2565 f 47 318922 0.7772244 0.4539162823162002 Product description 2565 2021-09-11 14:03:01.089303 2024-05-05 Closed Customer 2565 789984.0520123680 +2576 f 32 346221 34.901142 0.2360623485878719 Product description 2576 2024-05-24 14:03:01.089303 2023-10-28 Closed Customer 2576 14982.4268881424 +2634 t 5 794382 33.178127 0.17012641099988812 Product description 2634 2024-04-08 14:03:01.089303 2025-09-09 Closed Customer 2634 96729.7136989771 +2574 t 51 747789 88.577896 0.5231718949907176 Product description 2574 2023-10-16 14:03:01.089303 2024-04-23 Closed Customer 2574 407337.1553900420 +2579 t 3 252246 8.288307 0.5441275215921877 Product description 2579 2022-12-18 14:03:01.089303 2025-02-09 Closed Customer 2579 287876.4955085950 +2638 f 68 44938 53.02978 0.324395794674583 Product description 2638 2022-03-12 14:03:01.089303 2025-03-23 Processing Customer 2638 155083.1420949880 +2578 f 75 451586 22.65061 0.02274704706755415 Product description 2578 2023-12-23 14:03:01.089303 2024-05-12 Processing Customer 2578 243867.4551119360 +2583 t 47 889626 66.56406 0.3711642146628762 Product description 2583 2024-02-17 14:03:01.089303 2025-04-11 Closed Customer 2583 728887.0099379960 +2646 t 98 109891 74.36946 0.5317807312538356 Product description 2646 2023-02-27 14:03:01.089303 2025-04-10 Closed Customer 2646 19931.2173540847 +2585 t 97 492047 77.70835 0.11887703027364438 Product description 2585 2023-09-22 14:03:01.089303 2024-03-20 Closed Customer 2585 684262.1387706380 +2586 f 42 856015 49.032635 0.2278231460539928 Product description 2586 2022-02-17 14:03:01.089303 2023-02-13 Closed Customer 2586 331478.7570581040 +2647 f 29 990624 96.66801 0.5992122243406861 Product description 2647 2022-08-30 14:03:01.089303 2023-06-14 Closed Customer 2647 344870.0302844190 +2589 t 14 325787 68.26742 0.18981278529410872 Product description 2589 2023-05-13 14:03:01.089303 2025-01-10 Processing Customer 2589 938119.7269862970 +2588 f 50 709638 92.45959 0.96978744981255 Product description 2588 2021-10-13 14:03:01.089303 2024-04-20 Processing Customer 2588 648929.3301409340 +2649 t 65 90539 67.07486 0.8749780471795994 Product description 2649 2024-03-26 14:03:01.089303 2025-11-14 Closed Customer 2649 779529.2148947510 +2590 f 19 480320 75.236595 0.8593596712662972 Product description 2590 2024-03-19 14:03:01.089303 2024-11-28 Processing Customer 2590 190302.9085088580 +2591 t 38 676976 17.393383 0.48682253650299856 Product description 2591 2022-12-06 14:03:01.089303 2025-12-16 Processing Customer 2591 83984.2919471145 +2653 t 80 623695 91.13615 0.1991762202479741 Product description 2653 2024-04-11 14:03:01.089303 2025-02-22 Processing Customer 2653 953300.8806403200 +2592 t 28 352372 39.677116 0.29997456091655295 Product description 2592 2024-06-03 14:03:01.089303 2024-09-14 Processing Customer 2592 342447.2314695740 +2593 f 10 983799 66.93388 0.5314867354139423 Product description 2593 2022-09-21 14:03:01.089303 2023-08-05 Closed Customer 2593 348756.1349495430 +2656 t 82 594224 75.01883 0.3203171272469696 Product description 2656 2023-01-31 14:03:01.089303 2023-03-17 Closed Customer 2656 228253.3764313970 +2595 t 42 28684 19.9464 0.6928476693474366 Product description 2595 2022-06-14 14:03:01.089303 2025-06-23 Closed Customer 2595 28166.5685508621 +2594 t 60 6890 85.45068 0.2023172906558841 Product description 2594 2022-09-06 14:03:01.089303 2024-10-12 Closed Customer 2594 605947.3130407260 +2659 t 13 138442 30.485521 0.9258916222783107 Product description 2659 2023-09-06 14:03:01.089303 2025-04-16 Processing Customer 2659 281636.9903751690 +2596 f 78 639417 53.414642 0.5012968874983272 Product description 2596 2024-02-08 14:03:01.089303 2023-10-25 Processing Customer 2596 739188.4021442470 +2599 t 93 815673 2.8756294 0.30826124974627334 Product description 2599 2022-07-13 14:03:01.089303 2023-05-08 Processing Customer 2599 727580.1658933040 +2664 f 8 456102 23.113731 0.12820209346340405 Product description 2664 2022-09-04 14:03:01.089303 2023-02-15 Closed Customer 2664 881377.4717466740 +2597 f 78 868994 87.785225 0.004270264517991507 Product description 2597 2023-01-10 14:03:01.089303 2024-05-01 Processing Customer 2597 727323.1010973300 +2603 f 41 517014 77.496346 0.5192023106304617 Product description 2603 2024-06-29 14:03:01.089303 2023-02-05 Closed Customer 2603 526786.2100105670 +2668 f 49 141866 63.599846 0.7737469166649156 Product description 2668 2022-03-31 14:03:01.089303 2023-04-30 Closed Customer 2668 89896.6311922678 +2600 f 52 82879 46.752563 0.18167336256570366 Product description 2600 2023-06-22 14:03:01.089303 2023-10-05 Processing Customer 2600 263284.9309832430 +2605 t 0 359755 7.211034 0.22916906486852184 Product description 2605 2023-05-13 14:03:01.089303 2025-08-18 Processing Customer 2605 995322.3085410800 +2672 f 41 236980 60.4886 0.3788438823211244 Product description 2672 2023-10-11 14:03:01.089303 2025-12-23 Processing Customer 2672 626529.5574042820 +2606 f 56 699349 58.686455 0.05775779471665743 Product description 2606 2023-11-16 14:03:01.089303 2023-01-15 Closed Customer 2606 746176.9659096300 +2608 t 97 898866 48.057457 0.7932473168681895 Product description 2608 2023-11-03 14:03:01.089303 2025-04-20 Closed Customer 2608 135768.2374752440 +2673 t 66 285115 43.79349 0.4913218791222498 Product description 2673 2023-06-05 14:03:01.089303 2023-08-16 Processing Customer 2673 134759.2792321780 +2612 t 76 229267 60.0612 0.9423434196198599 Product description 2612 2022-12-29 14:03:01.089303 2024-10-19 Processing Customer 2612 340804.4955786340 +2615 f 17 965751 20.373589 0.8252557940854288 Product description 2615 2022-02-26 14:03:01.089303 2023-07-12 Closed Customer 2615 209882.0127320420 +2675 f 98 23383 53.30165 0.8524572119593081 Product description 2675 2021-11-13 14:03:01.089303 2025-03-13 Closed Customer 2675 816082.3398536080 +2613 t 15 580702 97.255455 0.29058018079410175 Product description 2613 2021-11-12 14:03:01.089303 2023-03-07 Processing Customer 2613 839494.2491660410 +2617 f 65 61510 74.10073 0.7285908953065388 Product description 2617 2021-09-21 14:03:01.089303 2025-05-26 Closed Customer 2617 223049.5907569540 +2685 f 13 478994 46.205948 0.8900970630963307 Product description 2685 2022-04-04 14:03:01.089303 2025-07-15 Closed Customer 2685 297582.0692403840 +2614 f 38 938976 72.45902 0.9289018995773972 Product description 2614 2024-02-06 14:03:01.089303 2024-02-16 Closed Customer 2614 125687.5808804200 +2620 f 92 410848 12.054972 0.47109430587411083 Product description 2620 2023-03-16 14:03:01.089303 2024-05-20 Closed Customer 2620 484860.5012787640 +2686 t 86 706168 25.469759 0.18926221119628295 Product description 2686 2023-04-16 14:03:01.089303 2025-01-25 Closed Customer 2686 688125.9594795350 +2619 t 16 296787 89.1688 0.15964384847695356 Product description 2619 2023-09-24 14:03:01.089303 2025-03-08 Processing Customer 2619 446103.4530698140 +2623 f 34 509352 96.54749 0.20069643822907324 Product description 2623 2023-04-19 14:03:01.089303 2025-12-18 Closed Customer 2623 792240.6053534950 +2691 t 84 559824 32.406013 0.08707182504526756 Product description 2691 2023-05-29 14:03:01.089303 2023-06-25 Closed Customer 2691 994069.4294533830 +2621 t 89 752553 27.031958 0.565748754948018 Product description 2621 2024-01-22 14:03:01.089303 2025-12-18 Cancelled Customer 2621 245970.0232106170 +2624 t 76 477714 72.88394 0.3486831563251158 Product description 2624 2023-12-12 14:03:01.089303 2025-08-09 Closed Customer 2624 380062.2924263200 +2693 t 76 946871 94.2907 0.33750780676045977 Product description 2693 2022-06-25 14:03:01.089303 2024-11-27 Closed Customer 2693 894609.8216502780 +2626 f 22 747395 94.86722 0.5939398933037658 Product description 2626 2024-03-16 14:03:01.089303 2025-01-20 Closed Customer 2626 708932.0045032890 +2625 t 57 733191 26.480303 0.4814707711058617 Product description 2625 2023-10-03 14:03:01.089303 2025-12-25 Closed Customer 2625 718713.1611956200 +2696 t 82 223657 2.2275388 0.09304382597425942 Product description 2696 2024-07-21 14:03:01.089303 2025-06-05 Processing Customer 2696 978618.9398820180 +2628 t 88 167198 93.580345 0.9300428159945149 Product description 2628 2021-08-06 14:03:01.089303 2023-03-10 Closed Customer 2628 926092.6115752990 +2629 t 51 134033 42.89337 0.34453943536464493 Product description 2629 2023-07-31 14:03:01.089303 2025-02-02 Processing Customer 2629 34971.1973375015 +2697 t 77 114400 8.887188 0.9456412221288168 Product description 2697 2021-10-16 14:03:01.089303 2023-10-29 Closed Customer 2697 625082.7827008580 +2630 t 7 562440 45.487335 0.04573370531606358 Product description 2630 2023-08-26 14:03:01.089303 2025-04-12 Closed Customer 2630 754913.8814762200 +2632 f 94 568865 34.188713 0.6908550529028616 Product description 2632 2023-01-12 14:03:01.089303 2023-05-05 Closed Customer 2632 429503.8778866420 +2700 f 97 94725 16.993454 0.8962065434200035 Product description 2700 2024-03-22 14:03:01.089303 2024-12-13 Processing Customer 2700 355985.7498838070 +2631 t 47 861344 46.990612 0.06313241269198855 Product description 2631 2024-05-10 14:03:01.089303 2025-04-03 Processing Customer 2631 34540.5217365737 +2633 f 9 478868 0.39819437 0.8781485347688047 Product description 2633 2024-06-09 14:03:01.089303 2023-03-10 Closed Customer 2633 569832.5312668860 +2704 t 21 703437 62.87548 0.9690248273680773 Product description 2704 2023-10-08 14:03:01.089303 2025-06-18 Closed Customer 2704 472851.0439558700 +2636 f 92 472171 4.739942 0.9124505237799063 Product description 2636 2024-03-17 14:03:01.089303 2025-06-14 Processing Customer 2636 507318.5193246630 +2635 f 37 60196 86.06678 0.31726775828617804 Product description 2635 2024-02-22 14:03:01.089303 2024-04-25 Closed Customer 2635 220450.1649043880 +2707 t 67 841565 2.1377213 0.7900140832064118 Product description 2707 2024-03-17 14:03:01.089303 2024-01-10 Cancelled Customer 2707 622605.3552110890 +2639 t 5 473655 35.43064 0.3959329432841834 Product description 2639 2023-02-18 14:03:01.089303 2025-12-02 Processing Customer 2639 531737.0594306250 +2637 f 98 997722 5.9568334 0.27422549075614455 Product description 2637 2024-07-24 14:03:01.089303 2024-03-01 Processing Customer 2637 688294.1083853110 +2710 f 85 893424 38.487186 0.46878815205936775 Product description 2710 2022-10-10 14:03:01.089303 2025-07-03 Closed Customer 2710 752957.9559500700 +2641 f 9 990176 27.089735 0.09169739851638425 Product description 2641 2024-07-01 14:03:01.089303 2023-07-13 Processing Customer 2641 439280.6643761770 +2640 f 78 32059 58.481617 0.805350259375615 Product description 2640 2022-07-12 14:03:01.089303 2025-03-14 Closed Customer 2640 784009.4536850550 +2715 f 53 711571 72.02418 0.5730972410686661 Product description 2715 2022-08-28 14:03:01.089303 2023-10-17 Closed Customer 2715 716602.0050105680 +2643 f 99 162768 92.59332 0.3669651379568002 Product description 2643 2023-03-08 14:03:01.089303 2025-02-14 Closed Customer 2643 809578.0349633230 +2642 f 20 770673 26.226746 0.4053515932513747 Product description 2642 2023-04-13 14:03:01.089303 2024-08-24 Closed Customer 2642 313709.9879213600 +2725 t 33 559141 78.327194 0.4250159428941984 Product description 2725 2023-10-11 14:03:01.089303 2025-03-17 Processing Customer 2725 609287.1962920900 +2651 f 35 77371 83.69359 0.6913527283487291 Product description 2651 2024-05-19 14:03:01.089303 2025-06-10 Closed Customer 2651 433475.1374283100 +2644 t 15 289326 88.789276 0.18420078471170598 Product description 2644 2021-10-06 14:03:01.089303 2023-02-25 Processing Customer 2644 417562.7991042280 +2726 t 9 518074 99.32154 0.8015872699547089 Product description 2726 2021-08-05 14:03:01.089303 2025-11-30 Processing Customer 2726 554658.8338806760 +2654 f 64 297443 96.92569 0.16207417526544887 Product description 2654 2022-05-09 14:03:01.089303 2023-03-19 Processing Customer 2654 925549.8569466880 +2645 f 14 318227 11.614158 0.6964524502510514 Product description 2645 2022-01-26 14:03:01.089303 2025-09-22 Processing Customer 2645 287763.2158978440 +2727 t 44 8833 11.297046 0.5600252434124329 Product description 2727 2022-05-16 14:03:01.089303 2025-03-12 Closed Customer 2727 170355.0969778750 +2655 t 60 776382 9.213668 0.05520052101915596 Product description 2655 2022-08-04 14:03:01.089303 2023-12-12 Processing Customer 2655 6069.7501993943 +2648 f 91 640419 72.94955 0.8864714063914221 Product description 2648 2023-08-10 14:03:01.089303 2024-01-03 Cancelled Customer 2648 116208.1101031870 +2729 t 76 300502 54.480637 0.7827651764907841 Product description 2729 2022-03-23 14:03:01.089303 2025-12-22 Closed Customer 2729 142781.3039385870 +2658 t 66 477516 2.6922433 0.9016043385640451 Product description 2658 2024-06-17 14:03:01.089303 2024-09-01 Processing Customer 2658 359235.5031420310 +2650 f 36 587702 16.266727 0.4358465694119893 Product description 2650 2023-10-04 14:03:01.089303 2024-12-14 Closed Customer 2650 570110.4834981480 +2734 f 11 511817 85.94834 0.9881321619777808 Product description 2734 2022-11-20 14:03:01.089303 2024-01-22 Closed Customer 2734 232691.4028792300 +2661 t 2 101395 91.428955 0.829762265987366 Product description 2661 2022-02-13 14:03:01.089303 2024-09-26 Closed Customer 2661 751496.2794356350 +2652 t 81 698889 16.062294 0.6451800384080464 Product description 2652 2022-09-18 14:03:01.089303 2023-05-19 Processing Customer 2652 842593.0143113480 +2738 f 8 662119 15.568714 0.2966534261734779 Product description 2738 2022-10-01 14:03:01.089303 2024-08-09 Closed Customer 2738 148131.1002824090 +2662 f 93 862069 92.74213 0.471059173841784 Product description 2662 2022-08-31 14:03:01.089303 2025-09-11 Closed Customer 2662 610059.1241012840 +2657 f 59 11581 79.68228 0.15333433577532318 Product description 2657 2022-05-02 14:03:01.089303 2025-08-27 Closed Customer 2657 176214.1588093660 +2739 f 82 673041 8.415606 0.5271634802631624 Product description 2739 2023-06-06 14:03:01.089303 2025-06-25 Closed Customer 2739 211947.2905320560 +2667 f 6 582230 84.47926 0.25269126729393676 Product description 2667 2023-02-22 14:03:01.089303 2024-05-16 Processing Customer 2667 568888.9268513650 +2660 t 95 133403 69.86095 0.005658778889714 Product description 2660 2021-08-13 14:03:01.089303 2023-04-02 Processing Customer 2660 403071.9392232950 +2741 t 83 695303 29.08959 0.03349876394636908 Product description 2741 2023-11-07 14:03:01.089303 2024-10-30 Processing Customer 2741 112509.7784345390 +2669 t 12 780678 35.98338 0.28128101775836356 Product description 2669 2023-03-25 14:03:01.089303 2023-12-09 Processing Customer 2669 611679.0257765670 +2663 t 99 861374 15.861585 0.40262341330439355 Product description 2663 2023-12-22 14:03:01.089303 2023-11-22 Closed Customer 2663 932369.8239535290 +2742 f 32 675425 61.509483 0.022091349443748243 Product description 2742 2022-09-23 14:03:01.089303 2024-09-30 Closed Customer 2742 503676.1669664460 +2670 t 1 702473 94.19106 0.33069270286128116 Product description 2670 2022-06-28 14:03:01.089303 2025-11-07 Closed Customer 2670 662043.2636359860 +2665 t 30 546662 35.636425 0.822528482066577 Product description 2665 2023-09-04 14:03:01.089303 2025-03-04 Processing Customer 2665 246144.2422141430 +2743 t 38 952684 64.55264 0.6143251371715763 Product description 2743 2022-11-07 14:03:01.089303 2025-01-15 Closed Customer 2743 744462.9200981970 +2671 t 90 150486 65.957436 0.4729015686222091 Product description 2671 2024-07-25 14:03:01.089303 2024-04-22 Processing Customer 2671 77724.8185278125 +2666 t 28 1784 43.289032 0.6248883846683917 Product description 2666 2023-10-20 14:03:01.089303 2025-01-14 Processing Customer 2666 230338.0842780100 +2744 t 35 601480 21.525415 0.7543139153689182 Product description 2744 2023-09-27 14:03:01.089303 2024-09-29 Closed Customer 2744 746006.3706258960 +2674 t 55 998691 64.37289 0.5088811934505593 Product description 2674 2024-07-07 14:03:01.089303 2024-08-24 Cancelled Customer 2674 392438.9443455960 +2677 t 32 915273 88.27546 0.7887499507571967 Product description 2677 2021-12-12 14:03:01.089303 2023-01-07 Closed Customer 2677 207948.1820775440 +2745 f 79 115738 84.22328 0.953796942912561 Product description 2745 2021-12-25 14:03:01.089303 2025-09-13 Processing Customer 2745 33476.1812755993 +2676 f 86 917422 73.25124 0.46489030244823226 Product description 2676 2024-01-21 14:03:01.089303 2023-04-26 Closed Customer 2676 445671.2361869430 +2679 f 61 110301 76.9428 0.5259510973267645 Product description 2679 2024-03-08 14:03:01.089303 2023-10-22 Closed Customer 2679 360118.6711516890 +2752 t 19 228919 77.82512 0.40943004966931795 Product description 2752 2024-02-26 14:03:01.089303 2023-06-11 Closed Customer 2752 214663.3187024100 +2678 t 31 875462 89.182846 0.261718072992565 Product description 2678 2022-01-15 14:03:01.089303 2023-10-20 Closed Customer 2678 800564.3777254470 +2680 f 87 13898 78.70009 0.383110077863126 Product description 2680 2021-09-24 14:03:01.089303 2025-02-03 Closed Customer 2680 788242.0817004170 +2756 f 24 167668 61.330524 0.6131465534619025 Product description 2756 2022-11-05 14:03:01.089303 2025-03-20 Cancelled Customer 2756 716904.4211781570 +2682 f 59 315599 67.76847 0.7813448289437801 Product description 2682 2022-01-01 14:03:01.089303 2023-12-28 Processing Customer 2682 453057.6456647740 +2681 t 39 541005 49.836998 0.29252501930463026 Product description 2681 2024-05-02 14:03:01.089303 2025-01-29 Processing Customer 2681 215855.5339137610 +2760 f 90 651105 36.87214 0.07396779891180572 Product description 2760 2023-01-19 14:03:01.089303 2023-02-20 Processing Customer 2760 739162.3545944770 +2683 t 57 204424 0.9379361 0.18804572963770738 Product description 2683 2022-02-20 14:03:01.089303 2025-05-01 Processing Customer 2683 716415.0286970670 +2688 f 82 29658 75.14364 0.5953952238008391 Product description 2688 2022-04-03 14:03:01.089303 2025-01-12 Closed Customer 2688 198709.2332465610 +2761 t 37 859427 12.678604 0.07127165022803084 Product description 2761 2023-01-27 14:03:01.089303 2025-08-26 Processing Customer 2761 523614.0268802810 +2684 t 13 274143 71.9442 0.29849251470549376 Product description 2684 2023-11-11 14:03:01.089303 2025-04-08 Processing Customer 2684 415600.3149227030 +2694 f 28 432967 52.527756 0.3652762473853777 Product description 2694 2021-08-20 14:03:01.089303 2023-12-15 Closed Customer 2694 116727.6511457020 +2762 t 64 50141 29.572134 0.5697702052359936 Product description 2762 2022-03-16 14:03:01.089303 2023-08-20 Closed Customer 2762 784057.4749949310 +2687 f 20 64905 19.977724 0.5478462352078708 Product description 2687 2024-06-01 14:03:01.089303 2024-01-29 Processing Customer 2687 82452.5013128259 +2695 t 73 803411 18.218689 0.7650587070213142 Product description 2695 2023-05-15 14:03:01.089303 2025-09-22 Processing Customer 2695 395682.9985621650 +2765 t 83 407129 92.51825 0.5853287605399551 Product description 2765 2021-12-22 14:03:01.089303 2025-08-24 Closed Customer 2765 595326.0541899110 +2689 t 88 990673 23.905172 0.6654171574550602 Product description 2689 2021-09-24 14:03:01.089303 2024-11-01 Closed Customer 2689 552557.9496422960 +2701 t 4 135554 63.4704 0.9995535332142218 Product description 2701 2021-11-27 14:03:01.089303 2025-01-21 Processing Customer 2701 695913.6063866320 +2768 f 92 269367 88.577415 0.30037240642860397 Product description 2768 2023-05-06 14:03:01.089303 2023-06-13 Cancelled Customer 2768 706244.8852359570 +2690 f 23 131821 2.649292 0.6203781729570323 Product description 2690 2023-08-23 14:03:01.089303 2024-11-15 Closed Customer 2690 107556.6739424940 +2702 f 99 133862 63.90249 0.8084719099518658 Product description 2702 2024-07-01 14:03:01.089303 2025-02-13 Closed Customer 2702 217595.4972135090 +2771 t 42 841861 31.867764 0.4198233388676371 Product description 2771 2022-08-09 14:03:01.089303 2025-04-26 Closed Customer 2771 557307.2046882890 +2692 t 31 201889 87.631996 0.303845942755693 Product description 2692 2024-02-15 14:03:01.089303 2025-01-14 Cancelled Customer 2692 35476.3615856299 +2703 t 20 99830 46.343674 0.6827630143396952 Product description 2703 2022-08-14 14:03:01.089303 2024-03-02 Cancelled Customer 2703 290142.2171072130 +2777 t 18 772388 90.69559 0.6973839940689288 Product description 2777 2022-06-26 14:03:01.089303 2024-08-11 Processing Customer 2777 178151.0671042060 +2698 f 3 667115 6.266562 0.9117825011858152 Product description 2698 2022-10-13 14:03:01.089303 2025-09-05 Processing Customer 2698 337699.9280376650 +2705 f 77 681311 46.01712 0.41699648431151815 Product description 2705 2022-08-31 14:03:01.089303 2025-09-25 Closed Customer 2705 362631.4496964970 +2779 f 48 425165 96.804985 0.22229841391087035 Product description 2779 2022-08-06 14:03:01.089303 2024-02-28 Closed Customer 2779 721281.9936864920 +2699 t 8 492052 20.181408 0.38698173423031434 Product description 2699 2023-11-01 14:03:01.089303 2024-07-29 Closed Customer 2699 248813.9099250830 +2706 t 25 553135 80.736984 0.41568371011753413 Product description 2706 2023-03-01 14:03:01.089303 2024-11-05 Closed Customer 2706 587678.0749311870 +2781 f 49 706282 85.546814 0.8500743101683241 Product description 2781 2023-12-23 14:03:01.089303 2023-03-04 Closed Customer 2781 952417.7144726700 +2708 f 45 390133 64.5547 0.4478887932820079 Product description 2708 2024-04-07 14:03:01.089303 2023-03-28 Cancelled Customer 2708 200531.3687715960 +2713 f 15 772707 89.00673 0.7759668037487515 Product description 2713 2023-09-02 14:03:01.089303 2024-10-26 Closed Customer 2713 817957.3899182810 +2782 t 42 472683 16.006601 0.5301778659685326 Product description 2782 2023-08-22 14:03:01.089303 2023-07-14 Processing Customer 2782 912775.7029279060 +2709 f 65 894777 4.5250626 0.1519554429918344 Product description 2709 2022-06-23 14:03:01.089303 2024-01-12 Closed Customer 2709 165206.8339595840 +2717 f 1 875995 65.04148 0.9786996362005311 Product description 2717 2023-05-23 14:03:01.089303 2025-07-25 Processing Customer 2717 945698.0350140580 +2784 t 29 257045 2.9672556 0.2904861229054063 Product description 2784 2023-09-29 14:03:01.089303 2025-11-28 Processing Customer 2784 376910.6836849080 +2711 f 62 151059 52.376408 0.7614072151469671 Product description 2711 2022-08-31 14:03:01.089303 2024-08-30 Processing Customer 2711 81715.1833465211 +2718 t 37 568405 26.501804 0.6215741150134662 Product description 2718 2023-07-07 14:03:01.089303 2023-11-02 Closed Customer 2718 92699.1910178892 +2786 t 50 668222 81.765 0.266442973040121 Product description 2786 2022-11-21 14:03:01.089303 2023-07-18 Closed Customer 2786 335441.8564638630 +2712 f 85 851984 44.241436 0.2678164197813686 Product description 2712 2024-01-16 14:03:01.089303 2025-02-05 Closed Customer 2712 463340.9692313640 +2719 f 2 126773 78.120155 0.9080931594764508 Product description 2719 2021-12-09 14:03:01.089303 2025-12-02 Processing Customer 2719 562605.2957769720 +2790 t 20 203918 25.90358 0.9871467429135379 Product description 2790 2022-12-15 14:03:01.089303 2024-06-23 Closed Customer 2790 521300.4395007590 +2714 f 84 705685 84.6041 0.8847860993399408 Product description 2714 2021-09-23 14:03:01.089303 2024-02-21 Processing Customer 2714 16571.6170410981 +2723 t 37 488847 44.434505 0.8019578957847315 Product description 2723 2022-07-07 14:03:01.089303 2024-12-15 Closed Customer 2723 425985.8672539740 +2794 f 4 440343 59.067856 0.9909628815840037 Product description 2794 2023-03-24 14:03:01.089303 2024-02-28 Closed Customer 2794 11431.0133578108 +2716 t 3 28035 11.134455 0.28971766374777985 Product description 2716 2023-03-20 14:03:01.089303 2023-09-22 Processing Customer 2716 18912.2878877264 +2730 f 7 542990 16.992933 0.9398653881835628 Product description 2730 2021-09-14 14:03:01.089303 2025-11-08 Closed Customer 2730 276199.5683473760 +2795 t 51 880424 49.875374 0.04608821684584541 Product description 2795 2023-03-03 14:03:01.089303 2024-10-06 Closed Customer 2795 181492.9610121360 +2720 f 53 411370 89.31676 0.6564274451987231 Product description 2720 2024-02-01 14:03:01.089303 2025-05-16 Closed Customer 2720 738064.4882172230 +2731 f 68 170772 57.911243 0.3968794615089237 Product description 2731 2022-11-08 14:03:01.089303 2025-05-06 Closed Customer 2731 323511.8603603300 +2796 f 94 131110 18.971754 0.4748417570294592 Product description 2796 2023-10-04 14:03:01.089303 2025-04-09 Closed Customer 2796 614342.2174744200 +2721 f 81 684125 40.380283 0.061549207145489504 Product description 2721 2023-07-26 14:03:01.089303 2025-01-28 Closed Customer 2721 850988.1628553270 +2735 f 87 788799 57.22811 0.856766250379323 Product description 2735 2022-08-29 14:03:01.089303 2023-04-30 Closed Customer 2735 565805.9467854560 +2797 f 76 788 32.69485 0.4351771463466747 Product description 2797 2024-07-27 14:03:01.089303 2024-08-30 Processing Customer 2797 85522.9908939741 +2722 f 67 865375 78.91919 0.08168604357341991 Product description 2722 2024-05-25 14:03:01.089303 2025-08-21 Closed Customer 2722 380447.6829993920 +2740 f 67 300249 5.793971 0.3154632982361747 Product description 2740 2023-06-30 14:03:01.089303 2025-09-01 Closed Customer 2740 810453.5329989810 +2798 t 45 815403 4.865217 0.8381387996079681 Product description 2798 2023-12-01 14:03:01.089303 2023-09-21 Closed Customer 2798 392284.4661180600 +2724 t 23 805176 55.211887 0.307616216419035 Product description 2724 2023-08-21 14:03:01.089303 2025-07-01 Processing Customer 2724 267065.1936124920 +2746 f 42 502124 94.6357 0.3986072107895211 Product description 2746 2022-07-19 14:03:01.089303 2024-09-02 Closed Customer 2746 758154.2247493720 +2800 t 57 908524 0.7988316 0.39143495370979053 Product description 2800 2022-12-12 14:03:01.089303 2023-05-16 Closed Customer 2800 124901.6419216070 +2728 f 95 207220 52.693264 0.09519300319602308 Product description 2728 2024-02-11 14:03:01.089303 2025-09-21 Cancelled Customer 2728 467527.7459201300 +2748 t 63 849522 40.477318 0.38985430009797284 Product description 2748 2022-10-16 14:03:01.089303 2025-09-29 Closed Customer 2748 30714.8296984998 +2801 t 88 942870 99.73535 0.3855677253114962 Product description 2801 2023-11-29 14:03:01.089303 2025-12-06 Processing Customer 2801 528769.5357927510 +2732 f 93 957704 15.537665 0.7338599041240634 Product description 2732 2024-07-04 14:03:01.089303 2023-10-10 Processing Customer 2732 507126.5481429070 +2750 f 94 472879 47.865074 0.1216512511318939 Product description 2750 2022-07-27 14:03:01.089303 2025-05-12 Closed Customer 2750 329852.1434778190 +2802 t 10 106874 30.363909 0.06219397882109945 Product description 2802 2024-01-07 14:03:01.089303 2024-09-26 Processing Customer 2802 943455.5712190440 +2733 t 8 472893 22.500036 0.997271842910461 Product description 2733 2024-03-28 14:03:01.089303 2025-06-01 Closed Customer 2733 573539.8901120230 +2751 f 80 543283 44.800774 0.7368372390168574 Product description 2751 2023-10-04 14:03:01.089303 2025-04-25 Closed Customer 2751 111546.8383250580 +2804 t 37 106582 92.147285 0.9530393003108983 Product description 2804 2023-03-13 14:03:01.089303 2024-07-20 Closed Customer 2804 600333.8034044990 +2736 f 50 898683 62.761696 0.8279180788255225 Product description 2736 2022-05-23 14:03:01.089303 2024-06-07 Closed Customer 2736 808692.3366237070 +2753 f 43 944162 69.82373 0.5461525798108084 Product description 2753 2021-09-26 14:03:01.089303 2024-07-17 Processing Customer 2753 907841.7407829100 +2805 f 47 335730 31.137196 0.10018909496218953 Product description 2805 2024-07-30 14:03:01.089303 2024-05-14 Closed Customer 2805 977707.4143920820 +2737 t 90 221290 44.600605 0.642407762745659 Product description 2737 2024-02-02 14:03:01.089303 2024-11-12 Processing Customer 2737 610568.3206517300 +2755 f 55 115038 95.66814 0.06825156792078957 Product description 2755 2023-09-01 14:03:01.089303 2023-09-30 Processing Customer 2755 586079.1797137530 +2806 f 6 404997 48.422134 0.7481719002242144 Product description 2806 2022-12-06 14:03:01.089303 2024-08-06 Closed Customer 2806 113231.0676820260 +2747 f 41 182347 54.19496 0.8435829079076207 Product description 2747 2021-11-06 14:03:01.089303 2024-07-19 Closed Customer 2747 360706.0569879080 +2757 t 56 25074 86.22157 0.9017034062643887 Product description 2757 2022-10-28 14:03:01.089303 2024-07-25 Processing Customer 2757 212405.0032170820 +2807 t 61 647610 27.469685 0.8502908848107467 Product description 2807 2024-07-29 14:03:01.089303 2025-05-28 Closed Customer 2807 454334.7510458880 +2749 t 32 861416 57.20914 0.23212387902861664 Product description 2749 2022-12-12 14:03:01.089303 2025-02-25 Closed Customer 2749 955527.0585926290 +2764 f 83 880060 93.89054 0.5523336394476743 Product description 2764 2022-03-10 14:03:01.089303 2025-02-16 Processing Customer 2764 803038.9765741180 +2814 f 35 643850 35.82119 0.4561374057125178 Product description 2814 2021-08-14 14:03:01.089303 2023-10-16 Closed Customer 2814 121821.1209532180 +2754 f 65 853061 11.70577 0.7837878711031045 Product description 2754 2024-01-24 14:03:01.089303 2025-02-14 Processing Customer 2754 435112.7095014960 +2769 f 85 410421 58.3863 0.3085523479114727 Product description 2769 2021-09-24 14:03:01.089303 2025-03-03 Processing Customer 2769 863726.2162046650 +2817 f 10 813496 93.15663 0.19033388501492254 Product description 2817 2022-03-10 14:03:01.089303 2025-11-16 Cancelled Customer 2817 907064.1165432820 +2758 t 31 289119 80.50698 0.10733370116004082 Product description 2758 2022-03-03 14:03:01.089303 2025-01-24 Processing Customer 2758 117713.5735837500 +2770 t 3 200568 34.699604 0.7785311723696466 Product description 2770 2022-07-09 14:03:01.089303 2024-12-24 Closed Customer 2770 665610.9176762790 +2818 t 14 926604 81.21774 0.6783676258115854 Product description 2818 2023-11-11 14:03:01.089303 2023-09-13 Closed Customer 2818 373537.7502667560 +2759 f 81 757143 64.962135 0.5805698480626695 Product description 2759 2024-07-25 14:03:01.089303 2024-04-12 Processing Customer 2759 196284.8600186080 +2774 t 56 816758 51.37173 0.09390269609305335 Product description 2774 2022-12-27 14:03:01.089303 2025-05-04 Processing Customer 2774 921981.5722119730 +2819 t 99 556748 69.311615 0.19701504745306764 Product description 2819 2022-05-24 14:03:01.089303 2023-07-27 Processing Customer 2819 341723.3682971810 +2763 f 73 795373 79.06681 0.869487645606764 Product description 2763 2021-08-11 14:03:01.089303 2025-05-20 Processing Customer 2763 934581.4438346240 +2778 f 10 856852 85.03291 0.9525878802421275 Product description 2778 2022-03-06 14:03:01.089303 2024-09-06 Processing Customer 2778 8329.9521230522 +2820 f 46 241125 10.492337 0.5844215510698199 Product description 2820 2023-11-03 14:03:01.089303 2024-06-19 Closed Customer 2820 835221.0618104790 +2766 f 42 27756 11.533059 0.9463047697660762 Product description 2766 2022-01-14 14:03:01.089303 2024-10-01 Closed Customer 2766 331704.3828955520 +2780 t 26 142041 25.437346 0.11291791413137275 Product description 2780 2023-08-06 14:03:01.089303 2024-10-28 Closed Customer 2780 882294.5474692250 +2823 t 85 367723 74.71642 0.9842157541253336 Product description 2823 2021-12-26 14:03:01.089303 2024-01-25 Closed Customer 2823 92154.9660593968 +2767 f 55 409465 84.99381 0.12588677064921328 Product description 2767 2023-07-26 14:03:01.089303 2024-10-22 Processing Customer 2767 983250.6122343640 +2783 f 96 174002 7.874776 0.0696411535892949 Product description 2783 2023-04-27 14:03:01.089303 2023-06-13 Closed Customer 2783 736041.7337183700 +2827 f 70 427051 19.983355 0.4191528648652074 Product description 2827 2024-04-02 14:03:01.089303 2024-08-03 Closed Customer 2827 64226.8443486884 +2772 f 89 508956 40.624428 0.5155518697152566 Product description 2772 2024-04-15 14:03:01.089303 2025-06-20 Processing Customer 2772 377298.0874812220 +2785 f 97 41664 83.9206 0.8554204381396033 Product description 2785 2023-08-09 14:03:01.089303 2024-10-25 Processing Customer 2785 870176.1058533000 +2832 t 73 882233 79.249054 0.6886097261595019 Product description 2832 2023-04-27 14:03:01.089303 2024-02-21 Processing Customer 2832 190537.9651470300 +2773 f 78 546940 57.6451 0.6281705186638611 Product description 2773 2022-10-14 14:03:01.089303 2024-03-25 Closed Customer 2773 152145.7739795620 +2792 f 52 949388 65.50521 0.9816891207755063 Product description 2792 2022-06-08 14:03:01.089303 2025-07-16 Closed Customer 2792 71885.3995537252 +2834 f 36 432915 42.798363 0.9223581857540317 Product description 2834 2022-01-19 14:03:01.089303 2023-04-13 Closed Customer 2834 887048.0393140450 +2775 t 25 574314 27.445436 0.5220479415408796 Product description 2775 2024-07-11 14:03:01.089303 2024-10-25 Closed Customer 2775 494296.7827035570 +2799 f 11 669143 29.623434 0.904857162006067 Product description 2799 2022-10-24 14:03:01.089303 2023-01-16 Closed Customer 2799 141394.7467922830 +2835 t 86 662849 12.525625 0.24290723290883776 Product description 2835 2022-12-19 14:03:01.089303 2025-07-10 Closed Customer 2835 958422.9682245820 +2776 t 45 673710 67.1124 0.20349004163950823 Product description 2776 2024-07-26 14:03:01.089303 2024-11-23 Closed Customer 2776 801562.7633410180 +2803 f 15 946387 91.39472 0.8211668660813487 Product description 2803 2024-05-23 14:03:01.089303 2023-11-15 Processing Customer 2803 467143.9224519280 +2839 f 18 952725 0.78691727 0.28740033780577434 Product description 2839 2023-02-17 14:03:01.089303 2024-08-06 Closed Customer 2839 729351.9810727030 +2787 t 94 696313 12.193415 0.7418622784526754 Product description 2787 2022-02-05 14:03:01.089303 2025-07-01 Processing Customer 2787 316612.7310002200 +2809 t 1 865418 57.922615 0.06293497454920782 Product description 2809 2023-10-04 14:03:01.089303 2023-05-19 Processing Customer 2809 984350.5949609830 +2841 t 76 878955 80.92697 0.9123687670030911 Product description 2841 2022-01-10 14:03:01.089303 2024-06-05 Closed Customer 2841 901196.7121653870 +2788 t 88 246332 43.230656 0.9050278860657066 Product description 2788 2023-07-14 14:03:01.089303 2025-03-13 Processing Customer 2788 285564.0340059510 +2811 f 11 582966 32.669937 0.5717516189033844 Product description 2811 2024-06-22 14:03:01.089303 2025-06-19 Closed Customer 2811 755489.4363312780 +2845 f 58 556432 19.81714 0.2943947067676298 Product description 2845 2022-02-18 14:03:01.089303 2025-01-01 Closed Customer 2845 811988.1376081610 +2789 f 75 349675 99.95053 0.3308978051688918 Product description 2789 2022-07-20 14:03:01.089303 2024-11-14 Processing Customer 2789 402895.3903514180 +2812 t 95 285255 52.285072 0.45144144169304923 Product description 2812 2023-04-06 14:03:01.089303 2023-02-28 Closed Customer 2812 445342.9456010230 +2847 f 21 692109 87.315834 0.8713181196182553 Product description 2847 2023-08-23 14:03:01.089303 2024-08-26 Processing Customer 2847 947874.1663428280 +2791 t 34 649739 68.808334 0.07108661142732942 Product description 2791 2021-10-24 14:03:01.089303 2025-10-31 Closed Customer 2791 311374.0112702250 +2813 t 12 771082 83.616585 0.9262449079283002 Product description 2813 2024-07-09 14:03:01.089303 2023-05-31 Processing Customer 2813 344069.9093833390 +2848 f 21 565790 32.288723 0.6096921528210082 Product description 2848 2023-08-06 14:03:01.089303 2023-11-14 Cancelled Customer 2848 444505.9507490290 +2793 t 12 61747 82.06551 0.052374627071589686 Product description 2793 2023-09-10 14:03:01.089303 2024-10-27 Processing Customer 2793 929418.9039638350 +2826 f 15 339108 27.680784 0.8953232521476338 Product description 2826 2022-11-30 14:03:01.089303 2025-08-07 Processing Customer 2826 280629.7430198410 +2853 f 42 689904 2.6138694 0.33481263023526964 Product description 2853 2022-11-06 14:03:01.089303 2025-05-06 Closed Customer 2853 216471.4546937920 +2808 t 74 443414 17.50386 0.6410761247912511 Product description 2808 2024-04-21 14:03:01.089303 2024-10-23 Closed Customer 2808 505484.7977242570 +2829 t 69 928802 96.69462 0.2529325610950579 Product description 2829 2023-02-10 14:03:01.089303 2024-10-30 Closed Customer 2829 746109.6446938490 +2858 f 49 303470 4.3168154 0.3463934307699361 Product description 2858 2023-07-23 14:03:01.089303 2024-09-01 Processing Customer 2858 443199.0885545470 +2810 t 61 723424 70.31955 0.8028541268520577 Product description 2810 2021-10-06 14:03:01.089303 2024-08-27 Processing Customer 2810 635691.0337268710 +2830 f 6 498741 72.05688 0.32438743399495706 Product description 2830 2024-05-23 14:03:01.089303 2025-03-08 Cancelled Customer 2830 447886.4695492040 +2859 t 52 842698 81.13295 0.9068749450663276 Product description 2859 2022-11-04 14:03:01.089303 2023-08-01 Closed Customer 2859 141175.5763245320 +2815 t 82 676713 66.051575 0.43413994487930196 Product description 2815 2022-08-07 14:03:01.089303 2024-02-22 Processing Customer 2815 45218.9994766954 +2831 t 5 375304 46.905136 0.2619153105197931 Product description 2831 2024-02-23 14:03:01.089303 2024-09-09 Cancelled Customer 2831 762780.7250067030 +2867 t 58 666515 38.80584 0.4402394642616798 Product description 2867 2022-02-06 14:03:01.089303 2025-03-25 Processing Customer 2867 108696.1219661720 +2816 t 24 352813 19.633282 0.14457514833445728 Product description 2816 2024-06-20 14:03:01.089303 2023-01-30 Processing Customer 2816 974191.2084159310 +2833 f 71 443085 13.250294 0.38781243386589637 Product description 2833 2022-05-08 14:03:01.089303 2023-08-12 Closed Customer 2833 619950.4120725160 +2870 f 45 229024 81.19363 0.29329205793019497 Product description 2870 2023-08-08 14:03:01.089303 2023-01-29 Processing Customer 2870 366151.2459106610 +2821 f 51 840653 15.4362 0.8442570750861158 Product description 2821 2022-12-16 14:03:01.089303 2024-03-02 Processing Customer 2821 535880.8698915500 +2837 f 24 204965 83.42432 0.49777048342387786 Product description 2837 2023-11-01 14:03:01.089303 2025-09-12 Closed Customer 2837 183026.3888196380 +2873 f 66 629922 90.687935 0.6561969033834174 Product description 2873 2023-04-02 14:03:01.089303 2024-07-25 Closed Customer 2873 255702.8447624640 +2822 t 51 959559 68.35905 0.0938240329958866 Product description 2822 2024-04-19 14:03:01.089303 2023-05-16 Closed Customer 2822 662109.1332522580 +2840 t 1 291519 46.81643 0.1554568976956645 Product description 2840 2022-09-11 14:03:01.089303 2025-03-04 Closed Customer 2840 779308.4926335220 +2878 f 72 821996 52.362804 0.6025877429222462 Product description 2878 2023-07-20 14:03:01.089303 2024-02-26 Processing Customer 2878 354204.3155751640 +2824 f 66 699858 74.50533 0.8774464786211915 Product description 2824 2022-05-12 14:03:01.089303 2024-05-26 Closed Customer 2824 780336.1047773980 +2842 t 45 333201 7.6337543 0.663667418145053 Product description 2842 2023-06-23 14:03:01.089303 2023-11-15 Closed Customer 2842 23456.6848876590 +2880 t 72 734057 78.64476 0.972624110750985 Product description 2880 2021-10-04 14:03:01.089303 2025-06-05 Closed Customer 2880 456840.3089549480 +2825 f 33 729792 55.229023 0.8218176294373798 Product description 2825 2022-11-28 14:03:01.089303 2023-09-10 Processing Customer 2825 832654.0463448280 +2849 f 47 177627 99.64725 0.24070260336277016 Product description 2849 2023-07-01 14:03:01.089303 2025-01-18 Processing Customer 2849 295517.5694544640 +2881 f 65 723312 53.907703 0.3451333644227432 Product description 2881 2023-03-06 14:03:01.089303 2024-09-18 Closed Customer 2881 93995.7673167306 +2828 f 79 572712 26.08709 0.8758181228314434 Product description 2828 2021-09-14 14:03:01.089303 2025-08-12 Closed Customer 2828 341496.0294613890 +2851 f 9 584532 50.80849 0.6786479300018442 Product description 2851 2023-03-10 14:03:01.089303 2024-10-24 Closed Customer 2851 165983.8278085990 +2884 t 37 65581 87.600784 0.1379468437495035 Product description 2884 2022-03-14 14:03:01.089303 2025-08-13 Closed Customer 2884 854138.4608970580 +2836 f 8 569803 44.518734 0.3338381922029363 Product description 2836 2023-12-03 14:03:01.089303 2024-09-26 Closed Customer 2836 135852.2722370740 +2855 f 91 497187 67.748474 0.6856817948651255 Product description 2855 2024-02-09 14:03:01.089303 2024-06-13 Processing Customer 2855 175274.9542453560 +2885 t 32 970770 79.31413 0.09403446001530114 Product description 2885 2024-01-26 14:03:01.089303 2025-04-06 Processing Customer 2885 410384.8677158230 +2838 t 21 894084 63.948345 0.0039160062937178 Product description 2838 2023-04-15 14:03:01.089303 2025-11-10 Closed Customer 2838 58470.1567061856 +2857 t 49 79370 48.09338 0.7624619438847446 Product description 2857 2023-04-27 14:03:01.089303 2023-01-18 Processing Customer 2857 281628.3437631140 +2887 t 44 275680 79.83839 0.6235480890640304 Product description 2887 2023-06-15 14:03:01.089303 2023-12-04 Closed Customer 2887 874717.2927710630 +2843 t 85 881380 54.471638 0.00744163639250317 Product description 2843 2022-09-21 14:03:01.089303 2024-04-17 Closed Customer 2843 46286.2757597406 +2860 t 69 461344 15.940193 0.3812484612171616 Product description 2860 2024-04-21 14:03:01.089303 2023-04-12 Closed Customer 2860 900428.4510495530 +2888 f 17 96582 42.195282 0.34515693333825226 Product description 2888 2023-05-11 14:03:01.089303 2024-05-18 Closed Customer 2888 88060.0129226003 +2844 f 88 162816 58.204113 0.36996731395620586 Product description 2844 2022-01-30 14:03:01.089303 2025-06-17 Closed Customer 2844 991943.7274846030 +2862 t 30 328476 83.4704 0.40023124288477163 Product description 2862 2021-10-29 14:03:01.089303 2024-12-09 Closed Customer 2862 209920.4870324730 +2890 f 82 797224 16.474136 0.7992675512791578 Product description 2890 2023-02-24 14:03:01.089303 2023-05-14 Processing Customer 2890 861350.2516557610 +2846 f 65 954384 94.86128 0.010411230969911145 Product description 2846 2022-11-24 14:03:01.089303 2024-07-11 Processing Customer 2846 353616.0231509340 +2863 f 92 579192 48.446503 0.8433840555587082 Product description 2863 2024-06-17 14:03:01.089303 2023-06-13 Processing Customer 2863 646803.2248150910 +2893 t 17 897852 70.13517 0.6622658812371967 Product description 2893 2021-11-17 14:03:01.089303 2024-05-27 Processing Customer 2893 502030.5003921700 +2850 t 30 720758 46.69999 0.9137956749533878 Product description 2850 2022-06-06 14:03:01.089303 2024-11-23 Closed Customer 2850 769610.4367146220 +2864 f 58 152294 37.844425 0.28364662985620726 Product description 2864 2023-12-22 14:03:01.089303 2024-05-08 Processing Customer 2864 780175.9966929430 +2894 f 28 684565 7.231942 0.04182196994025844 Product description 2894 2022-08-07 14:03:01.089303 2024-02-27 Closed Customer 2894 489860.2941296380 +2852 t 31 354272 66.90403 0.768317809028094 Product description 2852 2023-07-02 14:03:01.089303 2025-07-18 Processing Customer 2852 99752.1744454275 +2865 f 34 624086 21.80127 0.4642016369103956 Product description 2865 2022-02-28 14:03:01.089303 2025-11-19 Processing Customer 2865 189616.4357789050 +2897 t 93 631169 90.875916 0.41734447045616463 Product description 2897 2022-01-22 14:03:01.089303 2025-11-29 Processing Customer 2897 55810.3068501943 +2854 t 4 572204 25.378265 0.2004082372210938 Product description 2854 2022-06-22 14:03:01.089303 2024-06-20 Closed Customer 2854 432346.6556765610 +2866 t 38 508609 10.384045 0.03514185043964346 Product description 2866 2023-09-08 14:03:01.089303 2024-09-18 Closed Customer 2866 362860.1617637170 +2898 f 49 682900 89.86109 0.7166858635413433 Product description 2898 2021-12-27 14:03:01.089303 2024-07-13 Closed Customer 2898 326732.8427724120 +2856 f 99 346451 9.549114 0.5102702600414979 Product description 2856 2022-08-23 14:03:01.089303 2025-03-26 Closed Customer 2856 796134.5239575760 +2868 t 17 580735 45.154552 0.3771942494712093 Product description 2868 2023-03-16 14:03:01.089303 2023-03-16 Closed Customer 2868 88093.0982973389 +2900 t 95 908554 60.863552 0.4911262520052091 Product description 2900 2023-04-22 14:03:01.089303 2023-11-04 Closed Customer 2900 18549.2988957101 +2861 f 59 488698 6.958161 0.4403837351964732 Product description 2861 2022-10-28 14:03:01.089303 2023-08-12 Processing Customer 2861 678478.6544846140 +2872 t 66 620718 25.241693 0.39180900418412534 Product description 2872 2023-08-20 14:03:01.089303 2023-10-10 Closed Customer 2872 601657.2697748440 +2901 t 48 532945 46.28049 0.8773574612580148 Product description 2901 2023-02-20 14:03:01.089303 2025-01-29 Closed Customer 2901 424324.8044923260 +2869 f 24 568341 20.2498 0.4555167598094165 Product description 2869 2024-01-21 14:03:01.089303 2025-05-07 Closed Customer 2869 520747.2367856950 +2879 t 71 703355 53.504986 0.6704628624104672 Product description 2879 2022-10-19 14:03:01.089303 2023-09-30 Closed Customer 2879 918856.6142114530 +2905 f 94 23375 6.5638227 0.17006341877388564 Product description 2905 2024-01-18 14:03:01.089303 2023-06-04 Processing Customer 2905 432403.4659781010 +2871 f 4 576324 64.97844 0.23255472420211376 Product description 2871 2023-12-27 14:03:01.089303 2025-11-22 Closed Customer 2871 727320.1641665780 +2882 f 75 472590 3.3085701 0.5078796491669522 Product description 2882 2024-02-26 14:03:01.089303 2024-10-14 Closed Customer 2882 119990.7180672820 +2907 t 97 397765 46.54102 0.5956405463787604 Product description 2907 2024-07-23 14:03:01.089303 2025-08-07 Closed Customer 2907 540612.5618272700 +2874 t 42 557697 73.25693 0.8944332008740652 Product description 2874 2023-12-12 14:03:01.089303 2023-05-27 Processing Customer 2874 825438.8611505160 +2883 f 13 222188 10.494472 0.2999796581943812 Product description 2883 2023-04-24 14:03:01.089303 2025-03-15 Closed Customer 2883 982715.8011969640 +2908 f 18 296645 40.26094 0.22684233642296903 Product description 2908 2023-12-13 14:03:01.089303 2025-05-06 Closed Customer 2908 503154.0577214920 +2875 t 16 948472 80.24483 0.1490995000842581 Product description 2875 2022-07-01 14:03:01.089303 2024-06-15 Closed Customer 2875 812620.6611184940 +2886 f 87 508277 69.87878 0.1800463975507114 Product description 2886 2022-01-22 14:03:01.089303 2025-11-17 Closed Customer 2886 305725.1816391580 +2911 f 80 506640 31.50579 0.2688887618038507 Product description 2911 2023-11-08 14:03:01.089303 2024-10-16 Closed Customer 2911 379187.2597447500 +2876 t 47 236197 74.68439 0.5121809221835356 Product description 2876 2021-08-27 14:03:01.089303 2025-05-01 Closed Customer 2876 351098.8915463710 +2889 t 76 706409 10.608242 0.6515954421065047 Product description 2889 2023-03-06 14:03:01.089303 2024-03-18 Processing Customer 2889 242802.2983162100 +2914 t 64 533965 4.433743 0.1937477715808953 Product description 2914 2022-12-15 14:03:01.089303 2023-01-17 Processing Customer 2914 178181.2412124030 +2877 f 7 50086 55.187035 0.7066707278020168 Product description 2877 2023-02-19 14:03:01.089303 2025-09-25 Processing Customer 2877 838266.5694450750 +2892 f 67 475473 99.33582 0.3206555673393865 Product description 2892 2021-11-06 14:03:01.089303 2025-08-24 Cancelled Customer 2892 286542.0516082220 +2918 f 40 318683 84.835 0.1944986801783699 Product description 2918 2022-07-19 14:03:01.089303 2023-02-19 Cancelled Customer 2918 145098.4895413680 +2891 t 23 285477 59.297703 0.06462641416235115 Product description 2891 2022-10-11 14:03:01.089303 2023-09-06 Closed Customer 2891 675687.8786309950 +2896 t 67 105522 36.919743 0.5641453533050047 Product description 2896 2022-03-02 14:03:01.089303 2023-02-12 Closed Customer 2896 890545.1544310740 +2919 t 10 680398 50.18313 0.6150409409113671 Product description 2919 2024-04-13 14:03:01.089303 2024-09-03 Processing Customer 2919 267365.1359450350 +2895 f 54 938347 75.06434 0.9788462804476801 Product description 2895 2024-08-01 14:03:01.089303 2023-12-25 Processing Customer 2895 827244.7214721620 +2903 f 79 51317 10.107758 0.3412769757775358 Product description 2903 2023-08-24 14:03:01.089303 2023-03-08 Closed Customer 2903 539867.7492085970 +2923 f 41 642264 46.762432 0.40072764638609115 Product description 2923 2023-01-21 14:03:01.089303 2023-03-20 Closed Customer 2923 559257.3099643660 +2899 f 30 434221 60.20721 0.4723115066511703 Product description 2899 2024-04-12 14:03:01.089303 2024-09-21 Processing Customer 2899 435563.7910083770 +2904 t 9 259760 13.168492 0.9940419927856219 Product description 2904 2022-12-06 14:03:01.089303 2023-04-27 Processing Customer 2904 564290.7977792150 +2926 f 51 137715 85.298874 0.12071962817217852 Product description 2926 2023-10-26 14:03:01.089303 2023-04-14 Closed Customer 2926 723296.7573701710 +2902 t 80 624356 35.18127 0.9848760531176843 Product description 2902 2023-01-15 14:03:01.089303 2023-02-13 Closed Customer 2902 143361.4560241170 +2912 t 71 725012 32.150166 0.008210216883998811 Product description 2912 2021-12-26 14:03:01.089303 2024-01-07 Closed Customer 2912 372660.1263592220 +2928 f 5 392844 53.76735 0.3157469071581609 Product description 2928 2024-05-04 14:03:01.089303 2024-10-01 Closed Customer 2928 334705.2086936630 +2906 t 44 785661 88.25378 0.5932889448822642 Product description 2906 2023-12-01 14:03:01.089303 2024-04-16 Closed Customer 2906 844657.5940688350 +2913 f 51 386306 44.608 0.5666493443508749 Product description 2913 2023-04-10 14:03:01.089303 2023-06-23 Cancelled Customer 2913 919676.4640204370 +2932 f 6 105542 49.080166 0.17053979598778923 Product description 2932 2022-01-07 14:03:01.089303 2024-08-20 Processing Customer 2932 439823.2576469430 +2909 t 49 620734 52.41477 0.5579243766494919 Product description 2909 2024-01-30 14:03:01.089303 2023-08-23 Processing Customer 2909 814488.2303969250 +2915 t 72 223842 91.10343 0.33200309661364 Product description 2915 2023-10-23 14:03:01.089303 2023-06-09 Closed Customer 2915 234187.7289793390 +2937 t 45 569656 99.60815 0.42456460670277707 Product description 2937 2022-11-18 14:03:01.089303 2023-10-23 Processing Customer 2937 332032.5908984640 +2910 f 15 381752 94.51772 0.17906553526872315 Product description 2910 2022-08-25 14:03:01.089303 2023-03-13 Closed Customer 2910 772614.8843415220 +2916 f 82 93691 36.04272 0.31706830071587433 Product description 2916 2022-07-23 14:03:01.089303 2024-10-13 Closed Customer 2916 536679.4679865980 +2940 f 10 482534 50.233616 0.5385300447009165 Product description 2940 2022-12-08 14:03:01.089303 2024-01-11 Cancelled Customer 2940 754468.6586839720 +2920 f 69 587016 64.852425 0.0639039269915962 Product description 2920 2024-07-20 14:03:01.089303 2023-11-06 Closed Customer 2920 715277.1378269520 +2917 f 53 110942 1.5884881 0.8153647824190458 Product description 2917 2024-07-31 14:03:01.089303 2025-12-01 Processing Customer 2917 63495.4108817318 +2943 t 63 175948 10.208087 0.8561399584448068 Product description 2943 2022-07-09 14:03:01.089303 2023-08-14 Processing Customer 2943 876101.4602751550 +2921 t 80 540634 66.53362 0.6349185108029225 Product description 2921 2024-07-11 14:03:01.089303 2025-10-11 Processing Customer 2921 868951.9668868260 +2924 f 22 212214 37.524902 0.7102186863324818 Product description 2924 2021-10-18 14:03:01.089303 2025-04-09 Closed Customer 2924 527852.7562174240 +2944 t 18 62296 34.275574 0.5021294304340671 Product description 2944 2023-09-17 14:03:01.089303 2024-01-10 Processing Customer 2944 766419.0512999590 +2922 f 31 399743 42.95272 0.6613215193820672 Product description 2922 2023-03-14 14:03:01.089303 2024-11-19 Closed Customer 2922 533583.8201556480 +2929 t 17 694879 31.78824 0.48676777738864274 Product description 2929 2022-05-08 14:03:01.089303 2023-10-26 Closed Customer 2929 318004.6127797770 +2945 f 2 147421 15.23228 0.4284607401072478 Product description 2945 2024-07-21 14:03:01.089303 2024-05-04 Processing Customer 2945 474871.7058918890 +2925 f 92 75916 18.739765 0.2872907377836107 Product description 2925 2023-03-20 14:03:01.089303 2025-03-13 Processing Customer 2925 375613.0506096440 +2931 t 10 786140 75.70232 0.35540570911933855 Product description 2931 2021-08-06 14:03:01.089303 2024-01-21 Closed Customer 2931 921558.3324245780 +2946 f 95 784846 42.418457 0.20976504970360565 Product description 2946 2023-04-29 14:03:01.089303 2025-09-22 Closed Customer 2946 822328.0805290150 +2927 t 46 844296 82.42779 0.7056917050755054 Product description 2927 2023-01-30 14:03:01.089303 2024-07-16 Closed Customer 2927 833602.5078221850 +2933 f 26 304406 11.323915 0.0028088738785712053 Product description 2933 2021-09-13 14:03:01.089303 2023-02-27 Closed Customer 2933 201297.2535229980 +2947 f 76 566079 40.87988 0.7300155150854906 Product description 2947 2022-03-11 14:03:01.089303 2024-11-24 Closed Customer 2947 574899.6620851340 +2930 f 37 158319 80.52862 0.513272173921056 Product description 2930 2022-07-10 14:03:01.089303 2025-04-06 Closed Customer 2930 248224.3245092800 +2934 t 92 569514 13.638381 0.5540919240204545 Product description 2934 2023-07-04 14:03:01.089303 2025-02-19 Processing Customer 2934 297009.4232040990 +2952 t 33 974254 36.466347 0.9837913913649601 Product description 2952 2022-09-03 14:03:01.089303 2024-04-27 Processing Customer 2952 748952.9558957990 +2935 t 37 193444 86.39714 0.9920284645789756 Product description 2935 2023-09-22 14:03:01.089303 2025-10-31 Processing Customer 2935 703434.8687788490 +2941 f 73 927648 36.03108 0.36053008244530105 Product description 2941 2024-06-13 14:03:01.089303 2025-07-31 Closed Customer 2941 686996.5196395250 +2955 t 36 53767 83.64025 0.22934044032589185 Product description 2955 2024-04-15 14:03:01.089303 2023-05-23 Closed Customer 2955 498433.8975586870 +2936 t 59 301652 93.90505 0.6824089051060191 Product description 2936 2023-07-12 14:03:01.089303 2023-06-27 Closed Customer 2936 703109.6292977280 +2942 t 85 436910 60.1294 0.8967426193431436 Product description 2942 2024-07-16 14:03:01.089303 2023-06-12 Closed Customer 2942 746320.6933775520 +2963 f 100 594397 76.35234 0.7047516523885236 Product description 2963 2023-08-14 14:03:01.089303 2023-07-25 Closed Customer 2963 230366.1234529070 +2938 f 26 231704 30.957998 0.2693313277344451 Product description 2938 2022-08-09 14:03:01.089303 2024-02-23 Closed Customer 2938 327082.5669182000 +2948 f 4 607052 31.321638 0.017403032304265764 Product description 2948 2023-05-04 14:03:01.089303 2025-01-21 Processing Customer 2948 618012.4368674490 +2965 f 72 896648 62.50643 0.9103583199121559 Product description 2965 2022-09-16 14:03:01.089303 2025-01-15 Closed Customer 2965 578023.8113139870 +2939 f 52 125792 97.923256 0.7869424467708974 Product description 2939 2022-12-23 14:03:01.089303 2025-04-09 Closed Customer 2939 972175.3160153670 +2949 t 77 498559 46.303375 0.15883143700663993 Product description 2949 2024-03-22 14:03:01.089303 2025-05-22 Closed Customer 2949 144422.2481497770 +2974 t 21 253055 30.188995 0.14680132798604006 Product description 2974 2024-06-02 14:03:01.089303 2025-10-30 Closed Customer 2974 470075.8771877350 +2950 f 2 348729 23.167845 0.46609776001845304 Product description 2950 2022-03-17 14:03:01.089303 2025-05-22 Closed Customer 2950 820399.4816263600 +2953 f 42 792367 47.628193 0.03392428947591242 Product description 2953 2022-10-29 14:03:01.089303 2025-02-09 Closed Customer 2953 3168.6549935621 +2976 f 26 269844 97.95693 0.5124286499073989 Product description 2976 2022-05-23 14:03:01.089303 2025-12-24 Processing Customer 2976 941830.0584457210 +2951 f 59 189833 72.29778 0.5463911083202113 Product description 2951 2023-05-25 14:03:01.089303 2023-02-27 Processing Customer 2951 733627.7487516160 +2958 t 38 743194 74.73701 0.1421293014159346 Product description 2958 2021-08-11 14:03:01.089303 2025-12-25 Closed Customer 2958 288042.5707801320 +2977 f 91 197803 65.57484 0.8093633013540398 Product description 2977 2022-10-29 14:03:01.089303 2025-08-21 Closed Customer 2977 762852.9222392300 +2954 f 40 468798 27.854803 0.34060144861919284 Product description 2954 2021-10-26 14:03:01.089303 2025-02-05 Closed Customer 2954 115214.9856334650 +2959 t 11 665599 11.651133 0.843429413130032 Product description 2959 2022-01-20 14:03:01.089303 2024-12-21 Closed Customer 2959 29006.2471621901 +2980 t 27 667276 70.0468 0.9545993954740837 Product description 2980 2024-04-09 14:03:01.089303 2023-12-27 Cancelled Customer 2980 981747.2206612690 +2956 f 19 209992 19.21608 0.8350873980626865 Product description 2956 2023-03-31 14:03:01.089303 2025-03-19 Closed Customer 2956 698819.8248378550 +2960 t 16 508005 69.4822 0.8866642778867373 Product description 2960 2022-12-09 14:03:01.089303 2024-01-16 Processing Customer 2960 82874.0222473350 +2981 f 97 902776 14.274776 0.6864701560250417 Product description 2981 2024-05-29 14:03:01.089303 2024-05-18 Processing Customer 2981 826325.3425009510 +2957 f 4 132139 54.28975 0.4594840136968905 Product description 2957 2022-04-18 14:03:01.089303 2024-10-15 Closed Customer 2957 941621.0809201790 +2961 t 47 969060 60.99122 0.6336507154146247 Product description 2961 2024-03-26 14:03:01.089303 2023-05-26 Closed Customer 2961 417006.1561156790 +2982 t 84 91932 11.951979 0.4730054583955301 Product description 2982 2022-08-11 14:03:01.089303 2023-11-21 Closed Customer 2982 844236.8409762720 +2964 f 31 430917 94.57921 0.4314510039385091 Product description 2964 2023-12-25 14:03:01.089303 2025-05-24 Processing Customer 2964 183121.9154209410 +2962 t 87 9867 14.812945 0.7254356907759814 Product description 2962 2021-12-14 14:03:01.089303 2023-03-07 Closed Customer 2962 243972.7923274650 +2985 t 69 517647 96.717575 0.8126526104155154 Product description 2985 2023-01-04 14:03:01.089303 2024-08-11 Closed Customer 2985 716825.5364521060 +2966 t 33 588118 45.51214 0.04924847223531614 Product description 2966 2023-03-04 14:03:01.089303 2025-01-23 Processing Customer 2966 749405.1145583360 +2969 f 82 360769 77.70096 0.4542777293621967 Product description 2969 2023-02-01 14:03:01.089303 2025-02-20 Closed Customer 2969 607748.3175331540 +2986 f 4 534213 31.245829 0.30381131029040986 Product description 2986 2021-12-23 14:03:01.089303 2024-07-09 Closed Customer 2986 185222.6651089880 +2967 t 8 248242 29.637358 0.2756011346029119 Product description 2967 2023-04-21 14:03:01.089303 2023-03-22 Processing Customer 2967 133491.8346478990 +2972 t 75 397500 21.872692 0.769326091482057 Product description 2972 2022-11-27 14:03:01.089303 2024-10-26 Processing Customer 2972 448921.0521003710 +2990 f 19 429455 72.82929 0.7393569512689915 Product description 2990 2022-10-01 14:03:01.089303 2023-09-13 Processing Customer 2990 459534.0708366960 +2968 t 19 406806 12.25368 0.03427430655046848 Product description 2968 2023-02-11 14:03:01.089303 2023-05-20 Processing Customer 2968 8032.8005141368 +2975 t 38 2354 68.18996 0.7953068858042727 Product description 2975 2024-05-03 14:03:01.089303 2024-03-11 Closed Customer 2975 653202.7672455070 +2994 f 47 417486 57.403805 0.4097636232638102 Product description 2994 2023-10-02 14:03:01.089303 2024-03-04 Processing Customer 2994 934617.8669147280 +2970 t 82 467409 66.05186 0.8632152586010768 Product description 2970 2023-08-24 14:03:01.089303 2023-05-18 Processing Customer 2970 192416.8892959130 +2978 t 99 832912 56.990192 0.9774685397699727 Product description 2978 2024-01-07 14:03:01.089303 2025-12-05 Processing Customer 2978 957425.3286517060 +2996 t 23 882560 38.48222 0.046352308337564097 Product description 2996 2024-05-26 14:03:01.089303 2025-02-03 Closed Customer 2996 740497.6722962290 +2971 f 11 736048 55.516033 0.5393790493369259 Product description 2971 2021-12-20 14:03:01.089303 2023-10-07 Closed Customer 2971 840794.9221239970 +2984 f 23 368382 86.698616 0.5913894160940529 Product description 2984 2023-07-25 14:03:01.089303 2024-02-23 Closed Customer 2984 471621.5071221410 +2998 f 18 937509 22.796097 0.9967328025372346 Product description 2998 2021-11-23 14:03:01.089303 2025-07-10 Processing Customer 2998 3937.3628689177 +2973 t 65 802722 24.40368 0.829768848949417 Product description 2973 2022-11-07 14:03:01.089303 2023-08-15 Closed Customer 2973 565282.8050664740 +2988 t 30 342439 81.07113 0.3255082109489109 Product description 2988 2023-10-10 14:03:01.089303 2024-12-13 Closed Customer 2988 936599.6161460080 +3001 t 86 460075 93.42617 0.981594724908792 Product description 3001 2024-07-23 14:03:01.089303 2023-07-22 Cancelled Customer 3001 519989.3836012320 +2979 f 22 813640 52.810127 0.0027377046030601093 Product description 2979 2023-01-12 14:03:01.089303 2025-10-01 Closed Customer 2979 571201.9456660120 +2989 f 38 20779 80.19911 0.054930595337530974 Product description 2989 2022-12-21 14:03:01.089303 2023-03-17 Closed Customer 2989 357189.8763488440 +3002 t 56 566458 33.474773 0.8274528434359212 Product description 3002 2024-05-01 14:03:01.089303 2023-07-18 Processing Customer 3002 472878.1952975790 +2983 t 87 485481 33.490097 0.6875129389246304 Product description 2983 2022-07-21 14:03:01.089303 2024-05-31 Processing Customer 2983 47278.4334285734 +2993 t 64 31654 15.557406 0.2707856287831589 Product description 2993 2021-12-22 14:03:01.089303 2023-08-26 Closed Customer 2993 50567.2660106846 +3003 f 52 585134 52.048832 0.19994922811314808 Product description 3003 2024-02-19 14:03:01.089303 2024-02-06 Processing Customer 3003 437447.1393826020 +2987 t 81 841956 64.04648 0.41477189147326143 Product description 2987 2021-09-05 14:03:01.089303 2024-05-02 Processing Customer 2987 5045.4006941507 +2995 f 23 889088 21.143456 0.9107106832650302 Product description 2995 2022-06-14 14:03:01.089303 2023-08-26 Closed Customer 2995 945147.9631462160 +3006 t 73 968351 85.25977 0.7880414923733383 Product description 3006 2022-03-07 14:03:01.089303 2025-07-04 Closed Customer 3006 395849.0995204860 +2991 f 98 665749 18.628437 0.5804584347544939 Product description 2991 2024-02-24 14:03:01.089303 2025-09-30 Processing Customer 2991 831085.6763431080 +2997 t 41 500807 72.93319 0.7226279121521628 Product description 2997 2022-08-12 14:03:01.089303 2025-11-04 Closed Customer 2997 869220.0751914750 +3011 t 43 221640 45.81861 0.46890162379003897 Product description 3011 2023-06-01 14:03:01.089303 2024-11-09 Closed Customer 3011 91156.1718154736 +2992 f 51 514180 85.58215 0.8096931381185293 Product description 2992 2021-11-07 14:03:01.089303 2024-05-01 Closed Customer 2992 234469.8400777010 +3008 f 52 961082 57.068886 0.06076486933800851 Product description 3008 2021-12-05 14:03:01.089303 2023-12-26 Closed Customer 3008 584576.5092144180 +3018 f 43 638497 82.404854 0.39751290622463387 Product description 3018 2023-12-04 14:03:01.089303 2025-01-07 Processing Customer 3018 346411.9225324790 +2999 f 46 804404 17.65459 0.598558524703197 Product description 2999 2024-04-23 14:03:01.089303 2025-05-06 Closed Customer 2999 135370.0879291470 +3009 f 44 273075 76.16632 0.7539533748914664 Product description 3009 2022-03-26 14:03:01.089303 2023-12-15 Closed Customer 3009 797629.0278169210 +3024 t 27 442104 95.68904 0.35989605859995066 Product description 3024 2022-06-23 14:03:01.089303 2025-06-01 Processing Customer 3024 628831.8400730080 +3000 t 25 781866 31.79705 0.11861207851623234 Product description 3000 2024-01-16 14:03:01.089303 2023-05-05 Processing Customer 3000 353766.0444950820 +3010 f 82 946266 22.866539 0.34177774768011915 Product description 3010 2022-06-03 14:03:01.089303 2025-01-22 Closed Customer 3010 653153.1178326050 +3025 t 24 304146 76.24585 0.7589144993706611 Product description 3025 2022-01-15 14:03:01.089303 2024-02-05 Closed Customer 3025 904726.2979613290 +3004 t 36 496655 7.2109833 0.9351584842490901 Product description 3004 2023-01-24 14:03:01.089303 2025-12-29 Closed Customer 3004 197143.1846425130 +3012 t 92 929600 75.88706 0.9866876954435639 Product description 3012 2022-07-03 14:03:01.089303 2023-03-21 Cancelled Customer 3012 24885.2876538592 +3028 t 29 342099 75.00811 0.30379923647601714 Product description 3028 2022-03-10 14:03:01.089303 2023-09-12 Closed Customer 3028 382254.3575558410 +3005 f 79 323015 9.919084 0.6170152278355481 Product description 3005 2023-12-28 14:03:01.089303 2023-01-31 Closed Customer 3005 721381.4449690900 +3014 t 48 298709 60.773643 0.5175869159873763 Product description 3014 2023-08-20 14:03:01.089303 2025-03-06 Processing Customer 3014 257826.6389518620 +3030 f 32 874632 25.471039 0.03680978399727053 Product description 3030 2022-07-02 14:03:01.089303 2023-08-16 Processing Customer 3030 78718.2112207851 +3007 t 15 322031 55.924995 0.041186016164051154 Product description 3007 2023-09-08 14:03:01.089303 2023-06-15 Closed Customer 3007 392201.6813281170 +3015 t 63 878762 68.401115 0.4216852944512688 Product description 3015 2022-03-10 14:03:01.089303 2025-04-30 Cancelled Customer 3015 532435.4848566090 +3031 t 57 996843 37.068226 0.5331978468462282 Product description 3031 2021-08-27 14:03:01.089303 2023-03-19 Closed Customer 3031 227572.1724186790 +3013 f 90 324051 28.085747 0.12609634549704296 Product description 3013 2021-08-11 14:03:01.089303 2025-09-23 Processing Customer 3013 617949.0653997350 +3016 f 58 799844 28.041618 0.9495359942473556 Product description 3016 2022-07-20 14:03:01.089303 2023-11-02 Processing Customer 3016 959502.5830406560 +3035 f 81 740292 96.21911 0.24924588592898544 Product description 3035 2023-05-15 14:03:01.089303 2024-09-03 Cancelled Customer 3035 769870.8174095970 +3019 f 13 946244 9.656359 0.0006802948212545346 Product description 3019 2022-12-06 14:03:01.089303 2023-02-11 Processing Customer 3019 773975.7320797620 +3017 t 74 669293 79.51925 0.9040087240169399 Product description 3017 2023-12-09 14:03:01.089303 2024-09-03 Closed Customer 3017 335448.8439913760 +3040 t 40 168668 43.912373 0.39033538148391855 Product description 3040 2023-01-08 14:03:01.089303 2023-09-18 Closed Customer 3040 139187.0353342240 +3023 t 43 859440 11.572532 0.6586679508630588 Product description 3023 2023-12-06 14:03:01.089303 2025-01-14 Closed Customer 3023 243188.1974512390 +3020 t 52 569533 10.28453 0.1338549732457892 Product description 3020 2023-12-22 14:03:01.089303 2023-06-22 Closed Customer 3020 602627.2900031240 +3041 t 62 618317 39.64853 0.0925469816277662 Product description 3041 2022-12-07 14:03:01.089303 2023-09-04 Closed Customer 3041 184248.3759756700 +3026 t 38 15390 74.42647 0.9659244184819507 Product description 3026 2024-04-08 14:03:01.089303 2023-11-10 Closed Customer 3026 942276.8546946540 +3021 t 30 703680 17.593065 0.7558373070339925 Product description 3021 2022-05-08 14:03:01.089303 2025-10-05 Closed Customer 3021 112647.7575525550 +3042 t 37 396727 75.64386 0.5338906630499558 Product description 3042 2021-08-17 14:03:01.089303 2025-06-01 Closed Customer 3042 965358.7464555140 +3029 t 96 336316 15.803204 0.5285531475800234 Product description 3029 2023-10-25 14:03:01.089303 2024-12-07 Closed Customer 3029 700680.0750814150 +3022 t 60 161551 88.072105 0.9253949834148614 Product description 3022 2024-05-07 14:03:01.089303 2024-12-18 Closed Customer 3022 174078.8611333210 +3043 t 86 698079 31.99164 0.7944828810540834 Product description 3043 2023-02-24 14:03:01.089303 2024-10-15 Processing Customer 3043 842571.8647296630 +3033 f 64 481277 20.031185 0.5030993241419459 Product description 3033 2021-10-01 14:03:01.089303 2023-09-14 Processing Customer 3033 112790.6181446150 +3027 t 75 22594 84.917175 0.6944403364743508 Product description 3027 2023-09-20 14:03:01.089303 2025-12-27 Processing Customer 3027 493661.8049164880 +3045 t 42 548546 18.62703 0.26530583064252866 Product description 3045 2023-10-10 14:03:01.089303 2024-04-29 Closed Customer 3045 999117.1399713540 +3044 t 23 181030 5.5616913 0.9004763513145058 Product description 3044 2021-10-24 14:03:01.089303 2023-04-07 Processing Customer 3044 752246.5779645060 +3032 t 64 900926 29.114635 0.11191471155625266 Product description 3032 2022-03-22 14:03:01.089303 2025-03-31 Closed Customer 3032 789103.7893676690 +3046 t 24 776542 80.369774 0.29605392865763136 Product description 3046 2023-07-13 14:03:01.089303 2024-03-05 Closed Customer 3046 568782.0886455480 +3048 t 70 117493 39.59197 0.7330876992547992 Product description 3048 2023-04-04 14:03:01.089303 2023-04-15 Closed Customer 3048 501998.4364020050 +3034 t 90 100050 88.1958 0.011261674027927882 Product description 3034 2022-11-30 14:03:01.089303 2025-02-23 Closed Customer 3034 570605.9583285030 +3047 f 32 365748 12.773723 0.3255910275413463 Product description 3047 2022-07-06 14:03:01.089303 2025-09-23 Processing Customer 3047 382034.7003554690 +3053 t 55 458353 1.4420013 0.06916661450179262 Product description 3053 2021-10-23 14:03:01.089303 2023-07-18 Processing Customer 3053 824561.0245527430 +3036 f 45 855164 37.527058 0.9268392359323343 Product description 3036 2022-12-21 14:03:01.089303 2023-02-08 Processing Customer 3036 104226.4603555590 +3049 t 91 503809 10.683879 0.5166491489353326 Product description 3049 2023-12-23 14:03:01.089303 2023-09-20 Processing Customer 3049 460758.1221099080 +3054 f 6 759083 83.14038 0.8445193457913298 Product description 3054 2024-01-23 14:03:01.089303 2025-08-15 Closed Customer 3054 569951.0016556390 +3037 t 10 491963 96.87549 0.47463046713699697 Product description 3037 2021-10-08 14:03:01.089303 2023-02-06 Closed Customer 3037 223686.2668629310 +3050 f 40 121324 5.187226 0.7510347383608966 Product description 3050 2024-04-16 14:03:01.089303 2025-08-07 Closed Customer 3050 970966.0706002620 +3055 t 23 226063 81.00478 0.2859168132589609 Product description 3055 2022-11-07 14:03:01.089303 2023-12-29 Closed Customer 3055 739423.9790472380 +3038 f 66 628839 12.877162 0.15118172341335878 Product description 3038 2021-12-19 14:03:01.089303 2023-11-07 Closed Customer 3038 422946.1891801630 +3051 f 88 173303 90.33044 0.8624977989505744 Product description 3051 2024-02-06 14:03:01.089303 2023-07-02 Closed Customer 3051 586600.5646256840 +3056 f 84 494834 35.29387 0.8106851271438593 Product description 3056 2021-12-20 14:03:01.089303 2025-05-30 Cancelled Customer 3056 812083.7200800150 +3039 t 96 984936 92.35437 0.22416454423917997 Product description 3039 2022-10-28 14:03:01.089303 2025-01-15 Processing Customer 3039 189740.4379251280 +3052 f 76 815626 99.97071 0.9905711320962176 Product description 3052 2022-04-23 14:03:01.089303 2025-10-20 Processing Customer 3052 36869.4301572887 +3057 t 30 346657 69.748055 0.1267353462647378 Product description 3057 2021-09-24 14:03:01.089303 2025-09-11 Closed Customer 3057 570808.1034471030 +3058 t 81 195272 83.25326 0.6504606735616392 Product description 3058 2022-08-29 14:03:01.089303 2024-10-26 Closed Customer 3058 410137.2296105660 +3060 f 85 238769 81.40516 0.008994003756928493 Product description 3060 2022-11-28 14:03:01.089303 2025-06-24 Closed Customer 3060 363889.7459950240 +3059 t 65 50853 82.141205 0.34513163207059705 Product description 3059 2023-06-16 14:03:01.089303 2023-05-06 Closed Customer 3059 506036.9780853370 +3062 t 27 30717 7.850178 0.3085063062958753 Product description 3062 2024-06-21 14:03:01.089303 2024-07-01 Closed Customer 3062 633582.1765402480 +3064 f 29 654779 2.8420787 0.3953126827689566 Product description 3064 2024-01-07 14:03:01.089303 2023-03-10 Closed Customer 3064 18004.7283703217 +3061 f 98 721851 28.723625 0.14728828511908887 Product description 3061 2023-06-16 14:03:01.089303 2025-08-27 Closed Customer 3061 366875.3990858670 +3065 f 1 137750 73.94659 0.41345693458252697 Product description 3065 2023-08-23 14:03:01.089303 2025-08-06 Closed Customer 3065 98118.2266035994 +3067 f 66 752603 28.906765 0.4899998112449744 Product description 3067 2021-12-02 14:03:01.089303 2024-08-20 Closed Customer 3067 54031.8131864410 +3063 t 83 731895 93.45585 0.734945608945857 Product description 3063 2022-03-21 14:03:01.089303 2024-01-24 Closed Customer 3063 656887.6301922480 +3066 t 71 515135 13.176543 0.46093957842753497 Product description 3066 2022-10-23 14:03:01.089303 2023-12-13 Processing Customer 3066 438824.3255348420 +3081 f 87 253692 87.548355 0.9821056821909302 Product description 3081 2022-03-28 14:03:01.089303 2023-05-15 Closed Customer 3081 461917.0089509410 +3070 f 2 193426 19.215103 0.8478651444467715 Product description 3070 2022-03-12 14:03:01.089303 2023-02-27 Processing Customer 3070 680396.3099920440 +3068 f 32 561667 2.5508158 0.2123318706130135 Product description 3068 2024-07-07 14:03:01.089303 2024-01-26 Closed Customer 3068 518164.0097757130 +3086 t 81 902276 37.013733 0.6797477849577582 Product description 3086 2023-01-29 14:03:01.089303 2024-02-03 Processing Customer 3086 684424.6801637300 +3072 f 29 201045 57.675617 0.7391575085849453 Product description 3072 2023-02-04 14:03:01.089303 2023-03-22 Closed Customer 3072 417343.8752213660 +3069 f 27 69574 66.278984 0.09412793259634356 Product description 3069 2023-08-15 14:03:01.089303 2025-08-11 Processing Customer 3069 960570.7239849470 +3087 f 48 839297 73.65242 0.5282282527705995 Product description 3087 2022-01-09 14:03:01.089303 2024-06-08 Processing Customer 3087 449094.6589469540 +3073 t 39 422795 66.58749 0.7213007087348444 Product description 3073 2024-07-19 14:03:01.089303 2024-02-02 Processing Customer 3073 254733.2945629500 +3071 f 67 862920 23.570553 0.25973539014104574 Product description 3071 2023-11-02 14:03:01.089303 2023-12-02 Processing Customer 3071 351279.7752234280 +3090 f 36 979447 83.171646 0.3578417253442474 Product description 3090 2024-06-10 14:03:01.089303 2023-10-04 Closed Customer 3090 796201.6093076440 +3074 f 32 682855 51.6173 0.738074491614988 Product description 3074 2022-08-10 14:03:01.089303 2024-06-20 Processing Customer 3074 360710.6757759800 +3075 t 52 427376 90.12976 0.8455911214272405 Product description 3075 2022-01-08 14:03:01.089303 2023-03-01 Closed Customer 3075 292810.5794781470 +3091 t 84 873225 32.523647 0.6784234968523286 Product description 3091 2024-02-02 14:03:01.089303 2024-03-01 Processing Customer 3091 547147.1580856150 +3078 f 85 30568 70.50479 0.4677385345486158 Product description 3078 2021-10-28 14:03:01.089303 2025-09-03 Processing Customer 3078 912485.9694315250 +3076 t 74 60241 72.89713 0.36310911395216294 Product description 3076 2022-07-08 14:03:01.089303 2025-04-05 Processing Customer 3076 28728.3878853621 +3094 f 65 229317 86.78549 0.09859339825021962 Product description 3094 2022-05-26 14:03:01.089303 2025-09-20 Closed Customer 3094 697906.7811960680 +3079 f 92 92141 2.1882627 0.8986211202429715 Product description 3079 2022-06-13 14:03:01.089303 2025-11-06 Processing Customer 3079 639275.1924299950 +3077 t 43 453204 79.02652 0.9299480369398694 Product description 3077 2023-11-12 14:03:01.089303 2023-11-04 Processing Customer 3077 429967.3443171660 +3096 f 22 729511 93.68049 0.4213522952989983 Product description 3096 2024-01-28 14:03:01.089303 2024-02-23 Processing Customer 3096 261251.3538364780 +3082 f 39 968137 61.384506 0.06042405220745195 Product description 3082 2022-07-13 14:03:01.089303 2024-11-15 Processing Customer 3082 480048.9005578430 +3080 t 41 411592 53.209976 0.1875998303848263 Product description 3080 2021-08-05 14:03:01.089303 2025-02-12 Processing Customer 3080 934103.5691095210 +3107 t 26 85160 19.669853 0.594604566682353 Product description 3107 2023-01-28 14:03:01.089303 2024-07-20 Processing Customer 3107 81913.6609244424 +3088 t 14 887763 98.96684 0.4042585357357851 Product description 3088 2023-12-22 14:03:01.089303 2024-11-01 Processing Customer 3088 4905.7848151826 +3083 f 27 79877 21.096235 0.740878588676928 Product description 3083 2022-08-20 14:03:01.089303 2025-10-28 Closed Customer 3083 41916.9092788998 +3109 f 27 380441 65.69883 0.49389380440549857 Product description 3109 2023-09-24 14:03:01.089303 2023-12-18 Processing Customer 3109 916071.0065328960 +3089 f 8 911052 25.619144 0.9795232951928625 Product description 3089 2022-05-03 14:03:01.089303 2025-09-16 Closed Customer 3089 914613.5453644990 +3084 f 40 6934 25.515507 0.15813061834182918 Product description 3084 2022-02-11 14:03:01.089303 2023-01-03 Processing Customer 3084 863307.9267165120 +3111 f 90 674566 9.793329 0.09880248052386165 Product description 3111 2024-01-29 14:03:01.089303 2025-10-29 Closed Customer 3111 580127.3463454920 +3092 f 57 455346 41.597446 0.1597292714526688 Product description 3092 2023-05-10 14:03:01.089303 2023-05-27 Closed Customer 3092 463692.5157802130 +3085 f 81 326939 86.54862 0.6117946459585326 Product description 3085 2022-04-02 14:03:01.089303 2025-10-09 Processing Customer 3085 947592.6934353290 +3113 f 90 6272 93.71908 0.612774709263828 Product description 3113 2022-01-09 14:03:01.089303 2025-04-13 Closed Customer 3113 396087.8999165160 +3093 t 100 769817 65.9632 0.9728151138104693 Product description 3093 2022-05-19 14:03:01.089303 2023-12-15 Closed Customer 3093 441302.3437338910 +3095 t 28 259526 26.224356 0.03264567695244125 Product description 3095 2022-08-09 14:03:01.089303 2025-01-31 Closed Customer 3095 925882.9501325290 +3114 t 53 210408 21.796618 0.10238359142885045 Product description 3114 2022-12-03 14:03:01.089303 2025-05-20 Processing Customer 3114 951055.4490857710 +3099 f 64 169704 11.030742 0.23568931832765116 Product description 3099 2021-11-27 14:03:01.089303 2023-10-10 Closed Customer 3099 495106.5393740390 +3097 f 16 153956 55.691357 0.984088271267602 Product description 3097 2022-01-05 14:03:01.089303 2025-09-24 Processing Customer 3097 42358.2273416407 +3116 t 12 361792 73.473305 0.9186535858899809 Product description 3116 2023-12-02 14:03:01.089303 2024-05-31 Closed Customer 3116 483145.7580258200 +3104 f 21 23828 68.63706 0.5672208490122301 Product description 3104 2022-11-26 14:03:01.089303 2024-04-20 Processing Customer 3104 717706.2381560790 +3098 f 6 81338 61.536552 0.23988904750845563 Product description 3098 2022-08-04 14:03:01.089303 2023-10-16 Closed Customer 3098 250631.0436054060 +3124 f 21 861863 78.61425 0.3272599390776385 Product description 3124 2022-05-31 14:03:01.089303 2024-03-05 Closed Customer 3124 407352.4754563640 +3106 f 53 773068 16.47376 0.7903692904124497 Product description 3106 2022-07-01 14:03:01.089303 2023-10-27 Closed Customer 3106 500549.8268925130 +3100 t 8 128060 92.71273 0.8683954485779068 Product description 3100 2022-01-13 14:03:01.089303 2024-12-26 Closed Customer 3100 202596.4121019150 +3131 f 7 929814 24.340971 0.29353211626850495 Product description 3131 2023-10-18 14:03:01.089303 2025-07-15 Processing Customer 3131 37977.1119376002 +3108 f 33 966511 43.55602 0.5406739249513066 Product description 3108 2024-05-13 14:03:01.089303 2023-07-04 Processing Customer 3108 598444.3459428770 +3101 t 78 729318 66.16019 0.1269611108070734 Product description 3101 2024-01-01 14:03:01.089303 2023-08-29 Processing Customer 3101 460875.2186127670 +3133 f 73 990853 32.44827 0.035205712836631875 Product description 3133 2023-01-27 14:03:01.089303 2025-10-23 Closed Customer 3133 120229.2039160400 +3110 f 8 836410 18.985832 0.7691005383344489 Product description 3110 2022-09-28 14:03:01.089303 2024-09-19 Closed Customer 3110 469000.7001197250 +3102 t 75 721419 45.619892 0.91855194427432 Product description 3102 2022-08-21 14:03:01.089303 2025-02-23 Processing Customer 3102 117009.1009340870 +3136 f 71 959429 81.168625 0.8143432024725676 Product description 3136 2022-03-02 14:03:01.089303 2023-07-21 Closed Customer 3136 680659.6819894320 +3117 f 39 402232 85.23466 0.4442067272892274 Product description 3117 2021-12-10 14:03:01.089303 2025-07-01 Processing Customer 3117 212733.9217070240 +3103 t 91 130320 77.80131 0.43810905382457577 Product description 3103 2023-07-11 14:03:01.089303 2023-11-30 Closed Customer 3103 71153.0248232144 +3139 f 94 679363 72.30059 0.49216324213390195 Product description 3139 2021-12-07 14:03:01.089303 2025-09-29 Closed Customer 3139 136585.2610674810 +3121 f 30 153778 49.702335 0.9325763907997597 Product description 3121 2023-10-02 14:03:01.089303 2025-09-08 Closed Customer 3121 37054.9096943371 +3105 t 25 665239 18.417784 0.4989263916839448 Product description 3105 2021-09-10 14:03:01.089303 2024-08-03 Closed Customer 3105 653136.3053734690 +3143 t 32 531770 6.709759 0.21053505067557055 Product description 3143 2021-10-02 14:03:01.089303 2023-04-19 Closed Customer 3143 215559.3452615890 +3122 f 94 234123 17.488745 0.016882531003517443 Product description 3122 2024-03-14 14:03:01.089303 2025-11-21 Processing Customer 3122 423232.9487447510 +3112 f 94 43872 25.263668 0.7336624862169998 Product description 3112 2023-03-08 14:03:01.089303 2023-01-16 Processing Customer 3112 29395.4798797351 +3148 t 80 346244 24.054834 0.39090842203545506 Product description 3148 2021-09-05 14:03:01.089303 2025-03-17 Closed Customer 3148 981409.0417706610 +3125 t 100 962482 71.48977 0.12394493107800741 Product description 3125 2024-03-12 14:03:01.089303 2023-06-02 Closed Customer 3125 970961.8317363070 +3115 f 8 790679 6.6141253 0.22082072563718924 Product description 3115 2022-02-12 14:03:01.089303 2023-11-09 Closed Customer 3115 100411.4876779350 +3152 f 52 690061 9.121909 0.8688128556848049 Product description 3152 2021-10-01 14:03:01.089303 2023-03-16 Closed Customer 3152 929712.9067784700 +3130 t 51 430779 59.76583 0.39199018895372717 Product description 3130 2021-12-18 14:03:01.089303 2025-01-29 Closed Customer 3130 575104.4960557400 +3118 f 13 892091 60.78086 0.346762111997549 Product description 3118 2024-05-13 14:03:01.089303 2025-01-14 Closed Customer 3118 279081.9743389330 +3153 f 22 931991 20.30526 0.8599406500872568 Product description 3153 2023-10-09 14:03:01.089303 2024-02-29 Closed Customer 3153 710058.3633422700 +3135 t 29 847065 12.29623 0.6542243992433825 Product description 3135 2024-05-08 14:03:01.089303 2023-04-17 Closed Customer 3135 168831.0699807010 +3119 f 4 505021 63.48949 0.7879812734094926 Product description 3119 2023-05-05 14:03:01.089303 2024-09-09 Processing Customer 3119 794113.3768279690 +3159 t 14 301674 97.87818 0.381923624098345 Product description 3159 2023-10-09 14:03:01.089303 2023-12-19 Closed Customer 3159 258262.2486025270 +3138 f 56 341027 13.051121 0.4855378532548116 Product description 3138 2021-12-06 14:03:01.089303 2023-12-08 Processing Customer 3138 931484.1859864450 +3120 f 98 991544 67.32727 0.608711887375236 Product description 3120 2023-09-06 14:03:01.089303 2023-11-09 Closed Customer 3120 777496.1918204150 +3162 f 63 730755 86.17104 0.8681220489744028 Product description 3162 2024-03-25 14:03:01.089303 2025-11-29 Closed Customer 3162 443776.8514760590 +3140 f 33 237289 75.48662 0.09419701431563254 Product description 3140 2023-11-17 14:03:01.089303 2024-09-09 Cancelled Customer 3140 324135.0249063190 +3123 f 98 758004 13.392471 0.9384416953573052 Product description 3123 2024-03-01 14:03:01.089303 2024-01-04 Processing Customer 3123 339925.8502510810 +3163 f 16 841088 47.90094 0.46910774181332826 Product description 3163 2022-12-16 14:03:01.089303 2023-08-05 Closed Customer 3163 673073.5562378030 +3144 t 19 14592 34.99568 0.6164909783968717 Product description 3144 2021-08-31 14:03:01.089303 2025-03-14 Processing Customer 3144 800497.6873625370 +3126 f 69 357419 21.637976 0.8977024846552695 Product description 3126 2022-09-07 14:03:01.089303 2025-09-17 Closed Customer 3126 102668.8082976040 +3164 f 51 975573 57.43002 0.8859403894414051 Product description 3164 2021-09-22 14:03:01.089303 2025-08-12 Closed Customer 3164 741629.0889662630 +3145 f 15 327800 16.807531 0.9502997769450552 Product description 3145 2024-07-16 14:03:01.089303 2025-11-17 Closed Customer 3145 59494.2260108056 +3127 t 38 525854 4.7836375 0.44152312505605806 Product description 3127 2023-04-28 14:03:01.089303 2023-02-27 Processing Customer 3127 64170.9695426904 +3167 t 64 362854 7.210405 0.0428509318969752 Product description 3167 2022-12-24 14:03:01.089303 2025-07-25 Closed Customer 3167 105787.7790355730 +3150 t 34 351752 62.473095 0.2812851309863653 Product description 3150 2024-04-13 14:03:01.089303 2024-03-23 Processing Customer 3150 800106.3501751420 +3128 t 64 138924 2.592885 0.979720196798965 Product description 3128 2022-02-05 14:03:01.089303 2024-12-21 Closed Customer 3128 977137.9309944560 +3168 f 73 880759 54.493507 0.3636300217163928 Product description 3168 2021-11-04 14:03:01.089303 2023-03-05 Closed Customer 3168 10491.0800447726 +3151 t 41 967769 75.370224 0.0358856126338587 Product description 3151 2022-11-22 14:03:01.089303 2023-07-11 Closed Customer 3151 669248.0957964260 +3129 f 78 410076 94.09672 0.7245738472732555 Product description 3129 2022-04-17 14:03:01.089303 2024-09-09 Closed Customer 3129 813456.5585044020 +3169 t 37 7750 64.71672 0.3897350742711545 Product description 3169 2022-02-03 14:03:01.089303 2023-01-31 Closed Customer 3169 687102.8331012570 +3154 t 74 429281 70.18 0.832953375554002 Product description 3154 2021-10-14 14:03:01.089303 2024-12-13 Cancelled Customer 3154 620635.8825868140 +3132 t 30 87237 63.131927 0.717209720219472 Product description 3132 2022-07-28 14:03:01.089303 2023-04-01 Closed Customer 3132 486170.7190420040 +3170 f 76 50914 23.86973 0.22770058388710268 Product description 3170 2022-11-30 14:03:01.089303 2023-07-07 Closed Customer 3170 462475.6556524830 +3155 f 59 623678 40.635075 0.9140056588542649 Product description 3155 2022-10-10 14:03:01.089303 2024-06-04 Closed Customer 3155 541370.2766652580 +3134 f 86 548033 30.012234 0.8117922351664575 Product description 3134 2023-09-21 14:03:01.089303 2025-07-26 Processing Customer 3134 738424.0782756740 +3173 t 25 903130 49.09969 0.6430137817570021 Product description 3173 2023-08-29 14:03:01.089303 2025-01-26 Closed Customer 3173 71060.8640396160 +3156 f 36 679603 68.52418 0.012907850012389588 Product description 3156 2022-01-28 14:03:01.089303 2023-04-07 Processing Customer 3156 601367.1106062370 +3137 f 54 582833 69.17261 0.5761656071493775 Product description 3137 2022-12-08 14:03:01.089303 2023-06-10 Closed Customer 3137 867077.2073943840 +3174 t 49 155758 4.48826 0.24026459478786322 Product description 3174 2023-11-21 14:03:01.089303 2023-07-18 Closed Customer 3174 529994.1307562790 +3158 f 3 486379 96.625854 0.7544208823721021 Product description 3158 2021-08-13 14:03:01.089303 2025-09-20 Processing Customer 3158 690596.0115957690 +3141 t 96 249954 13.81056 0.9832190081838164 Product description 3141 2022-06-03 14:03:01.089303 2024-11-07 Processing Customer 3141 904065.2996962030 +3176 f 70 996174 9.456923 0.6121614602780561 Product description 3176 2022-10-14 14:03:01.089303 2023-02-14 Processing Customer 3176 445606.7152444310 +3161 f 33 115500 55.505817 0.05844428921106015 Product description 3161 2021-09-23 14:03:01.089303 2025-03-02 Processing Customer 3161 603005.7568925750 +3142 f 89 564670 89.868774 0.2245746459572615 Product description 3142 2024-07-26 14:03:01.089303 2023-03-21 Closed Customer 3142 780842.8450059030 +3184 f 6 111320 14.054243 0.7851175694743553 Product description 3184 2022-01-21 14:03:01.089303 2023-03-14 Processing Customer 3184 729469.8863953640 +3165 t 46 957611 9.239904 0.5750626402416259 Product description 3165 2021-09-28 14:03:01.089303 2024-07-22 Closed Customer 3165 169834.9607704980 +3146 t 98 401997 6.5142727 0.359809731763967 Product description 3146 2022-02-06 14:03:01.089303 2025-09-24 Closed Customer 3146 173892.7098039400 +3186 f 47 427486 6.313148 0.40182063692857284 Product description 3186 2024-07-10 14:03:01.089303 2025-01-10 Closed Customer 3186 415923.1578392100 +3172 f 90 239482 97.8252 0.8143016099851295 Product description 3172 2023-11-21 14:03:01.089303 2024-04-11 Closed Customer 3172 454848.8034235060 +3147 f 40 945085 65.31156 0.5964340706125455 Product description 3147 2023-08-18 14:03:01.089303 2025-04-03 Closed Customer 3147 374267.4704289580 +3194 f 28 909029 97.75435 0.7816283297867592 Product description 3194 2023-06-15 14:03:01.089303 2023-12-12 Processing Customer 3194 515565.6489941690 +3177 t 98 805461 9.550095 0.40049098354899115 Product description 3177 2022-02-25 14:03:01.089303 2024-07-16 Closed Customer 3177 37319.9802634723 +3149 t 39 950818 38.031612 0.5226324215824647 Product description 3149 2024-04-03 14:03:01.089303 2024-02-19 Closed Customer 3149 782919.0300474700 +3195 t 57 509600 35.736378 0.2916844306781421 Product description 3195 2022-09-08 14:03:01.089303 2023-06-14 Closed Customer 3195 20385.9933071513 +3180 f 4 22054 65.02204 0.43150847428325534 Product description 3180 2023-04-27 14:03:01.089303 2024-04-24 Processing Customer 3180 406724.6189772820 +3157 t 36 574566 97.3248 0.010967381601489024 Product description 3157 2023-09-06 14:03:01.089303 2024-10-30 Closed Customer 3157 17508.1953070411 +3199 t 50 793505 63.24374 0.8385880333319768 Product description 3199 2023-05-10 14:03:01.089303 2024-12-12 Closed Customer 3199 931828.1401138360 +3182 t 14 150816 51.193405 0.7682486047853132 Product description 3182 2024-06-30 14:03:01.089303 2023-06-08 Closed Customer 3182 466000.8926105770 +3160 t 21 657807 12.024967 0.14102970127360237 Product description 3160 2024-06-01 14:03:01.089303 2024-04-19 Processing Customer 3160 826370.9808715620 +3202 t 52 232890 8.080406 0.8929069792044224 Product description 3202 2023-03-20 14:03:01.089303 2025-10-22 Closed Customer 3202 13894.4018114486 +3183 t 72 609056 59.04337 0.2637797845432246 Product description 3183 2023-01-28 14:03:01.089303 2024-02-03 Processing Customer 3183 527475.7074400220 +3166 t 20 681683 99.80532 0.654314742481958 Product description 3166 2024-02-10 14:03:01.089303 2023-12-09 Closed Customer 3166 816389.7612077840 +3203 f 70 946606 99.815384 0.0673144239519452 Product description 3203 2024-01-22 14:03:01.089303 2025-08-12 Processing Customer 3203 787180.5337302930 +3187 f 88 95175 19.002491 0.08072681955215444 Product description 3187 2022-12-28 14:03:01.089303 2025-07-19 Cancelled Customer 3187 523923.9649158520 +3171 f 21 680304 46.363617 0.35451675576933184 Product description 3171 2022-07-09 14:03:01.089303 2025-03-31 Closed Customer 3171 794401.8133210480 +3205 t 25 758670 89.95838 0.36926723422277163 Product description 3205 2022-09-20 14:03:01.089303 2025-10-11 Processing Customer 3205 371420.4407011790 +3189 t 20 818995 10.018795 0.6725114013636748 Product description 3189 2023-03-05 14:03:01.089303 2023-04-17 Closed Customer 3189 859051.6284635820 +3175 t 15 674879 2.1218085 0.022177461430601397 Product description 3175 2024-04-20 14:03:01.089303 2025-03-31 Processing Customer 3175 199701.1903679290 +3206 t 49 819491 61.712006 0.8142082278876366 Product description 3206 2022-09-26 14:03:01.089303 2025-04-24 Processing Customer 3206 570118.8478241900 +3190 t 42 63487 94.48235 0.759331723863756 Product description 3190 2023-07-11 14:03:01.089303 2025-09-08 Closed Customer 3190 577571.4290919610 +3178 t 88 505200 10.4543085 0.5928568851411526 Product description 3178 2023-06-29 14:03:01.089303 2024-10-08 Closed Customer 3178 540471.4557007290 +3207 t 88 369700 97.45313 0.3767786092147496 Product description 3207 2023-08-06 14:03:01.089303 2023-03-08 Closed Customer 3207 445612.9612234110 +3192 f 96 895580 50.397945 0.9041448978653612 Product description 3192 2022-06-05 14:03:01.089303 2023-07-18 Closed Customer 3192 149219.2477294980 +3179 t 37 802554 43.99787 0.8110600380833404 Product description 3179 2024-01-08 14:03:01.089303 2024-02-25 Closed Customer 3179 558199.7787053400 +3210 t 83 36539 84.22255 0.8509317948971677 Product description 3210 2023-10-31 14:03:01.089303 2025-06-20 Closed Customer 3210 456332.0750465040 +3197 t 56 206245 98.7756 0.2778507585713079 Product description 3197 2022-09-01 14:03:01.089303 2024-04-13 Closed Customer 3197 165590.3644444980 +3181 f 73 882998 24.215128 0.4728923586062237 Product description 3181 2023-07-28 14:03:01.089303 2023-11-05 Cancelled Customer 3181 387295.3480352880 +3212 f 83 391567 49.603226 0.5886213201469239 Product description 3212 2024-07-31 14:03:01.089303 2025-06-03 Processing Customer 3212 904036.9695187920 +3198 t 26 639756 64.27602 0.5075142236933736 Product description 3198 2021-10-09 14:03:01.089303 2024-10-19 Closed Customer 3198 416947.4887255760 +3185 t 83 716775 5.182053 0.06208692639137681 Product description 3185 2023-03-17 14:03:01.089303 2024-04-01 Closed Customer 3185 437132.3433246490 +3215 f 52 536093 2.8562288 0.6943713250415193 Product description 3215 2022-08-31 14:03:01.089303 2024-05-23 Closed Customer 3215 126431.5859833540 +3200 f 2 176499 64.286995 0.17379989688099684 Product description 3200 2022-09-03 14:03:01.089303 2024-07-05 Closed Customer 3200 284374.2039778760 +3188 f 7 611830 94.64923 0.3976784918181515 Product description 3188 2024-06-06 14:03:01.089303 2023-09-28 Processing Customer 3188 178506.2834879270 +3217 f 67 249594 73.497574 0.12868371411711266 Product description 3217 2024-02-25 14:03:01.089303 2024-09-06 Closed Customer 3217 100106.1730657900 +3204 f 80 698736 87.209404 0.6760954380634665 Product description 3204 2023-02-10 14:03:01.089303 2023-05-05 Closed Customer 3204 652171.6788495060 +3191 f 71 506277 77.8586 0.3802424570931926 Product description 3191 2022-04-14 14:03:01.089303 2023-07-27 Processing Customer 3191 533280.0208959720 +3221 t 8 614967 99.66889 0.9031236422126945 Product description 3221 2022-11-24 14:03:01.089303 2023-02-12 Processing Customer 3221 947332.1805846240 +3211 f 51 843444 58.674896 0.20991180198831572 Product description 3211 2024-01-19 14:03:01.089303 2024-11-08 Closed Customer 3211 255337.4232432330 +3193 f 53 16330 85.961235 0.9593542385259717 Product description 3193 2022-03-12 14:03:01.089303 2025-06-10 Closed Customer 3193 866657.4311828370 +3222 f 47 925932 10.808075 0.7227662453671506 Product description 3222 2023-06-10 14:03:01.089303 2024-09-16 Closed Customer 3222 851075.6883578740 +3213 t 42 76262 81.94443 0.35456637028515203 Product description 3213 2021-10-09 14:03:01.089303 2024-06-06 Closed Customer 3213 603768.7805809850 +3196 t 47 21245 43.44483 0.20904480248939095 Product description 3196 2024-03-26 14:03:01.089303 2025-03-09 Closed Customer 3196 533010.9978488760 +3224 t 57 498751 3.7006779 0.612611787246724 Product description 3224 2022-01-17 14:03:01.089303 2024-03-11 Closed Customer 3224 595489.1811432080 +3218 t 99 548166 0.092919245 0.9711370982217495 Product description 3218 2021-11-26 14:03:01.089303 2024-08-23 Closed Customer 3218 329286.6158568590 +3201 t 92 455654 54.368313 0.912696301520338 Product description 3201 2023-11-17 14:03:01.089303 2025-08-01 Closed Customer 3201 654019.6083826330 +3229 t 54 986734 45.542435 0.8183848452594695 Product description 3229 2023-07-20 14:03:01.089303 2024-12-23 Closed Customer 3229 238830.2022483440 +3220 f 81 840531 2.3341408 0.4785348777530736 Product description 3220 2023-02-27 14:03:01.089303 2025-10-04 Closed Customer 3220 411632.8623539470 +3208 t 13 324484 74.964745 0.2632537710247682 Product description 3208 2024-01-21 14:03:01.089303 2023-09-29 Processing Customer 3208 101568.6827569480 +3233 t 75 301302 4.2560816 0.6929010191377536 Product description 3233 2022-12-09 14:03:01.089303 2023-09-01 Closed Customer 3233 827702.2163152590 +3226 t 73 399347 77.91088 0.19900383155308887 Product description 3226 2022-05-31 14:03:01.089303 2024-08-31 Cancelled Customer 3226 543024.3030806880 +3209 f 74 90066 13.860692 0.7658798661916784 Product description 3209 2021-08-17 14:03:01.089303 2023-08-08 Processing Customer 3209 320562.4428998490 +3234 t 78 181830 34.77487 0.6394920551292351 Product description 3234 2022-04-14 14:03:01.089303 2024-06-03 Processing Customer 3234 374981.8405791320 +3236 f 50 751683 5.426002 0.6571270027629623 Product description 3236 2021-10-14 14:03:01.089303 2023-05-12 Processing Customer 3236 982582.0653225850 +3214 t 85 855168 28.444464 0.13183818054608665 Product description 3214 2024-05-27 14:03:01.089303 2024-11-11 Closed Customer 3214 331046.5749866440 +3235 f 16 987918 84.01558 0.7233034449495257 Product description 3235 2023-11-17 14:03:01.089303 2025-05-31 Closed Customer 3235 703710.9025565510 +3239 f 83 349732 57.07404 0.624675241562251 Product description 3239 2023-08-17 14:03:01.089303 2023-08-25 Closed Customer 3239 670864.7225430620 +3216 t 71 114303 44.649036 0.9991922099452886 Product description 3216 2023-06-08 14:03:01.089303 2025-01-16 Processing Customer 3216 450367.9480979980 +3237 t 89 516861 28.989426 0.08932226089448747 Product description 3237 2024-04-11 14:03:01.089303 2024-04-29 Closed Customer 3237 519458.1659227920 +3243 t 25 320164 28.36746 0.19359322445284022 Product description 3243 2022-11-28 14:03:01.089303 2023-08-24 Processing Customer 3243 269093.9406785270 +3219 f 99 978372 14.0428505 0.7295084987964806 Product description 3219 2022-03-23 14:03:01.089303 2025-04-27 Processing Customer 3219 592457.8260670050 +3238 f 92 581969 64.121315 0.22299576000689925 Product description 3238 2023-03-04 14:03:01.089303 2023-12-15 Closed Customer 3238 705619.5495160860 +3245 f 13 580525 26.936901 0.7676656965315303 Product description 3245 2023-05-01 14:03:01.089303 2023-08-09 Processing Customer 3245 333018.7737216940 +3223 t 77 497835 19.94873 0.11456390962126406 Product description 3223 2023-03-22 14:03:01.089303 2024-04-14 Processing Customer 3223 173599.9714058560 +3241 t 99 63727 62.640743 0.4415944984336839 Product description 3241 2023-09-30 14:03:01.089303 2025-01-13 Processing Customer 3241 277915.6640110680 +3251 f 29 294663 61.334362 0.3548159350283413 Product description 3251 2021-09-16 14:03:01.089303 2024-01-04 Processing Customer 3251 951136.0509123930 +3225 f 13 328994 17.308296 0.761366752591389 Product description 3225 2024-01-07 14:03:01.089303 2025-03-28 Processing Customer 3225 604706.2375074720 +3242 t 67 108922 53.65145 0.01982578234262533 Product description 3242 2022-01-16 14:03:01.089303 2023-04-05 Closed Customer 3242 406711.3618753670 +3252 f 81 943952 44.08374 0.17844429210993695 Product description 3252 2024-04-27 14:03:01.089303 2023-12-28 Closed Customer 3252 548994.3617393220 +3227 f 92 6161 31.961924 0.33771853162336285 Product description 3227 2021-12-20 14:03:01.089303 2025-04-03 Processing Customer 3227 437683.5099515330 +3244 f 17 528290 45.104248 0.8567304015232473 Product description 3244 2024-01-17 14:03:01.089303 2023-01-31 Closed Customer 3244 172684.3481987640 +3256 t 8 983322 87.836205 0.3946090935546209 Product description 3256 2022-04-30 14:03:01.089303 2024-05-21 Closed Customer 3256 921698.0027698690 +3228 t 4 805474 44.03602 0.3577860656766241 Product description 3228 2021-12-16 14:03:01.089303 2024-11-29 Processing Customer 3228 81656.4051010289 +3247 f 53 50398 72.32343 0.30856992167342767 Product description 3247 2022-07-29 14:03:01.089303 2024-05-12 Processing Customer 3247 343986.4443502360 +3264 t 26 687403 51.942368 0.8726966823281472 Product description 3264 2022-10-28 14:03:01.089303 2024-08-20 Closed Customer 3264 692528.6401385510 +3230 f 13 867460 57.674232 0.4239698670279175 Product description 3230 2022-02-25 14:03:01.089303 2023-10-19 Closed Customer 3230 816560.4418545410 +3249 t 35 419272 99.16793 0.3054487520671749 Product description 3249 2021-10-07 14:03:01.089303 2025-03-04 Cancelled Customer 3249 681642.7885441780 +3266 f 37 391519 43.07989 0.28184459658339733 Product description 3266 2023-06-18 14:03:01.089303 2023-12-01 Closed Customer 3266 801929.4060221930 +3231 f 77 487336 10.995022 0.6820980360992657 Product description 3231 2023-12-08 14:03:01.089303 2025-05-23 Processing Customer 3231 879417.6203846720 +3253 f 47 599583 67.01559 0.36692938152150845 Product description 3253 2023-06-03 14:03:01.089303 2024-03-06 Closed Customer 3253 593035.5418345990 +3270 t 65 428663 19.868105 0.23666850283351692 Product description 3270 2024-03-16 14:03:01.089303 2024-10-31 Closed Customer 3270 65430.2616238773 +3232 f 4 41300 8.544132 0.6721267126646175 Product description 3232 2021-12-05 14:03:01.089303 2023-03-24 Closed Customer 3232 413675.4836769610 +3254 f 33 588387 25.929132 0.6074063498283522 Product description 3254 2023-02-05 14:03:01.089303 2023-01-23 Processing Customer 3254 578482.2251907790 +3271 t 12 281656 55.56922 0.7470506427520007 Product description 3271 2024-03-19 14:03:01.089303 2023-05-04 Processing Customer 3271 609125.3435003350 +3240 f 8 816748 20.953327 0.6051891436583965 Product description 3240 2021-09-19 14:03:01.089303 2024-09-07 Closed Customer 3240 536357.9038452140 +3255 f 72 884170 90.058426 0.6820368078420032 Product description 3255 2022-10-23 14:03:01.089303 2024-05-25 Closed Customer 3255 366022.9923468460 +3279 f 10 310991 76.68204 0.3788780419986253 Product description 3279 2023-10-27 14:03:01.089303 2025-05-04 Closed Customer 3279 482591.2561125460 +3246 f 70 67741 74.935844 0.8829727980379367 Product description 3246 2022-01-13 14:03:01.089303 2023-08-28 Processing Customer 3246 654309.7160289410 +3257 t 62 259035 61.38275 0.46957926013858753 Product description 3257 2022-02-27 14:03:01.089303 2025-09-23 Processing Customer 3257 583448.3959636250 +3281 t 34 78828 3.0857592 0.1810116600969991 Product description 3281 2023-12-25 14:03:01.089303 2024-03-24 Processing Customer 3281 806719.2760933570 +3248 f 5 727842 59.6767 0.11638279914527416 Product description 3248 2024-06-20 14:03:01.089303 2025-09-03 Processing Customer 3248 377665.2341557140 +3258 f 41 610571 35.963436 0.5566529863860623 Product description 3258 2022-01-30 14:03:01.089303 2023-11-22 Processing Customer 3258 40274.4561589436 +3288 f 88 549184 63.438076 0.7889211167197985 Product description 3288 2024-01-16 14:03:01.089303 2025-11-21 Processing Customer 3288 872582.3792491700 +3250 t 68 719969 10.23506 0.4736315294911826 Product description 3250 2024-01-16 14:03:01.089303 2023-01-30 Closed Customer 3250 415745.3828491600 +3259 t 67 885997 26.806494 0.18110424180363793 Product description 3259 2024-06-20 14:03:01.089303 2024-08-24 Closed Customer 3259 65751.6153085247 +3290 t 19 546518 93.77112 0.7444579785317416 Product description 3290 2021-10-28 14:03:01.089303 2023-05-20 Processing Customer 3290 121131.2621207520 +3260 t 70 298983 33.445 0.9023318221313623 Product description 3260 2023-09-16 14:03:01.089303 2025-12-20 Closed Customer 3260 47011.7157063044 +3261 t 51 982579 96.232 0.2737793333600749 Product description 3261 2024-03-08 14:03:01.089303 2024-02-25 Closed Customer 3261 162921.7200959410 +3297 f 76 57532 28.452991 0.08768254690280486 Product description 3297 2023-07-14 14:03:01.089303 2023-04-06 Processing Customer 3297 561228.7152128380 +3265 f 73 711236 50.307514 0.5316845797045993 Product description 3265 2023-05-20 14:03:01.089303 2025-08-22 Processing Customer 3265 557366.4279375310 +3262 t 89 805105 90.20991 0.4486723960060175 Product description 3262 2023-01-31 14:03:01.089303 2025-02-12 Closed Customer 3262 662179.0139884460 +3298 f 47 488402 84.61351 0.6773928110406757 Product description 3298 2023-03-21 14:03:01.089303 2023-05-10 Processing Customer 3298 344841.6178029810 +3267 t 43 103744 34.469147 0.8940123755177218 Product description 3267 2023-09-22 14:03:01.089303 2024-11-18 Closed Customer 3267 985717.1554530030 +3263 f 77 17732 84.6429 0.09280361421121341 Product description 3263 2023-02-17 14:03:01.089303 2024-09-12 Processing Customer 3263 200022.6622073060 +3302 t 61 387389 64.42684 0.24662570881455537 Product description 3302 2023-12-04 14:03:01.089303 2024-11-28 Closed Customer 3302 37844.5747255149 +3269 t 36 92454 50.941837 0.1586978049646568 Product description 3269 2024-07-09 14:03:01.089303 2025-02-22 Processing Customer 3269 113150.9474052950 +3268 f 40 492488 36.457455 0.5949774283517968 Product description 3268 2022-07-26 14:03:01.089303 2023-10-04 Closed Customer 3268 915975.0163703930 +3303 t 7 569999 84.970406 0.05332178902806106 Product description 3303 2024-07-06 14:03:01.089303 2023-07-06 Closed Customer 3303 442338.7405251840 +3272 f 38 47590 17.560734 0.7408650054205914 Product description 3272 2024-02-23 14:03:01.089303 2024-07-30 Processing Customer 3272 263540.3621490580 +3276 t 53 64226 43.829067 0.48083735402526173 Product description 3276 2023-03-27 14:03:01.089303 2023-09-29 Processing Customer 3276 735469.3358391030 +3312 t 65 360288 34.39776 0.27532594069253236 Product description 3312 2023-05-01 14:03:01.089303 2025-01-04 Cancelled Customer 3312 499201.2263971400 +3273 f 88 561136 64.10227 0.7979503371436145 Product description 3273 2022-09-30 14:03:01.089303 2024-03-03 Closed Customer 3273 150195.9713268160 +3277 t 86 709065 65.18033 0.2689978153590715 Product description 3277 2024-02-07 14:03:01.089303 2023-05-19 Closed Customer 3277 44284.8194641776 +3313 f 40 774780 41.68774 0.5685404268589629 Product description 3313 2024-01-20 14:03:01.089303 2024-07-19 Processing Customer 3313 678604.9001934910 +3274 f 85 791840 91.478096 0.3208667467355646 Product description 3274 2024-04-18 14:03:01.089303 2023-09-05 Processing Customer 3274 486763.4988456900 +3278 f 70 663739 32.116074 0.030878776665325347 Product description 3278 2022-07-08 14:03:01.089303 2024-10-03 Processing Customer 3278 79681.0412750126 +3319 f 40 259311 66.46736 0.17990713084709498 Product description 3319 2023-09-17 14:03:01.089303 2023-09-09 Closed Customer 3319 215184.5320521700 +3275 f 24 42015 98.45701 0.292420784486648 Product description 3275 2024-02-04 14:03:01.089303 2025-01-05 Processing Customer 3275 111158.3045277700 +3283 f 69 127108 0.771904 0.4722550095216036 Product description 3283 2023-05-12 14:03:01.089303 2025-02-24 Processing Customer 3283 444735.8344217170 +3323 t 44 505791 98.24435 0.3814951109939564 Product description 3323 2023-01-13 14:03:01.089303 2024-06-27 Closed Customer 3323 486942.3907051380 +3280 t 94 217129 52.33237 0.0016605703965986152 Product description 3280 2021-08-06 14:03:01.089303 2025-03-14 Closed Customer 3280 683616.0756525660 +3291 t 39 889708 65.65424 0.8079676258771329 Product description 3291 2022-12-22 14:03:01.089303 2024-03-04 Closed Customer 3291 760948.6817144140 +3325 f 59 193342 84.60733 0.38672977985762813 Product description 3325 2021-09-24 14:03:01.089303 2025-07-19 Processing Customer 3325 796982.3644219570 +3282 f 87 716569 1.3108759 0.493841097618283 Product description 3282 2022-06-16 14:03:01.089303 2025-04-18 Processing Customer 3282 706149.1176260470 +3293 t 12 223237 97.92324 0.7107355358071317 Product description 3293 2022-04-08 14:03:01.089303 2025-12-10 Closed Customer 3293 187584.8649261620 +3326 t 67 279896 41.383514 0.5287013542676426 Product description 3326 2022-08-26 14:03:01.089303 2024-05-31 Processing Customer 3326 65677.2256810854 +3284 t 62 989136 1.8824321 0.4122600804261687 Product description 3284 2022-04-23 14:03:01.089303 2024-09-23 Processing Customer 3284 962474.7266331470 +3294 t 69 430740 65.86901 0.339019858549527 Product description 3294 2023-09-30 14:03:01.089303 2023-01-20 Processing Customer 3294 255616.5550920080 +3327 t 13 928903 82.06611 0.773200042968238 Product description 3327 2024-05-24 14:03:01.089303 2023-12-08 Processing Customer 3327 61882.1817479827 +3285 f 73 310596 8.6358 0.2998916271505827 Product description 3285 2024-03-30 14:03:01.089303 2023-12-30 Closed Customer 3285 539161.1476546170 +3296 t 14 60119 61.685585 0.15217597136586392 Product description 3296 2023-03-11 14:03:01.089303 2023-08-11 Closed Customer 3296 448038.2707771430 +3329 f 53 395832 23.327219 0.8368984965982982 Product description 3329 2024-07-25 14:03:01.089303 2023-03-01 Processing Customer 3329 233384.5711016240 +3286 f 83 523957 20.888624 0.7143586298592091 Product description 3286 2024-01-19 14:03:01.089303 2024-07-19 Processing Customer 3286 925961.8348760340 +3301 f 87 982627 58.639687 0.34847810681288394 Product description 3301 2023-03-12 14:03:01.089303 2025-10-28 Processing Customer 3301 324110.0293861090 +3330 t 58 38085 49.26221 0.971880896367562 Product description 3330 2022-07-24 14:03:01.089303 2024-01-19 Processing Customer 3330 136444.7788782930 +3287 t 27 299229 83.54988 0.8830130294024876 Product description 3287 2022-01-23 14:03:01.089303 2023-04-29 Closed Customer 3287 412137.3053396910 +3308 f 60 57531 39.26888 0.5160698649219313 Product description 3308 2023-03-12 14:03:01.089303 2023-11-20 Cancelled Customer 3308 367650.0587705220 +3332 t 8 577259 12.663116 0.17595817402727576 Product description 3332 2023-01-24 14:03:01.089303 2024-07-02 Processing Customer 3332 155319.2069307700 +3289 f 74 264047 85.154755 0.5395982270160609 Product description 3289 2021-08-11 14:03:01.089303 2025-04-22 Processing Customer 3289 828464.4157307210 +3310 f 42 426100 89.04536 0.8363363168178601 Product description 3310 2022-01-04 14:03:01.089303 2025-06-07 Closed Customer 3310 990672.5393873120 +3334 t 96 677819 67.15027 0.7430993482919455 Product description 3334 2021-09-09 14:03:01.089303 2023-10-14 Closed Customer 3334 755224.2270432640 +3292 t 39 676281 67.850685 0.5801097795229104 Product description 3292 2021-08-23 14:03:01.089303 2023-11-23 Closed Customer 3292 991034.7558829570 +3311 f 69 768880 97.32124 0.423436434689453 Product description 3311 2022-08-20 14:03:01.089303 2023-03-27 Closed Customer 3311 280139.5750428100 +3336 f 4 853122 35.131306 0.13409349172035334 Product description 3336 2022-09-19 14:03:01.089303 2023-10-12 Processing Customer 3336 432038.7276594890 +3295 f 13 563746 80.50084 0.9126150598984744 Product description 3295 2022-12-12 14:03:01.089303 2024-08-13 Processing Customer 3295 13243.5024246718 +3314 t 29 480237 7.845869 0.5817110385890878 Product description 3314 2023-02-22 14:03:01.089303 2025-07-20 Processing Customer 3314 339477.6783738320 +3341 t 92 754712 13.503214 0.583644167279342 Product description 3341 2022-08-04 14:03:01.089303 2025-08-09 Closed Customer 3341 4961.4994920049 +3299 t 87 744163 17.876049 0.8174989392496421 Product description 3299 2023-04-21 14:03:01.089303 2025-07-05 Processing Customer 3299 415550.7044032800 +3317 t 45 363200 40.424553 0.6071507371916205 Product description 3317 2023-04-28 14:03:01.089303 2025-04-30 Closed Customer 3317 525312.7814349910 +3345 f 5 41182 18.01725 0.09523451884274792 Product description 3345 2023-12-26 14:03:01.089303 2023-01-16 Closed Customer 3345 644732.9240174750 +3300 t 90 932026 61.523335 0.15322048918779174 Product description 3300 2021-08-19 14:03:01.089303 2024-12-22 Processing Customer 3300 438867.6632884060 +3318 t 78 2750 70.64035 0.47240127608290194 Product description 3318 2022-06-30 14:03:01.089303 2024-03-27 Closed Customer 3318 60884.4283000352 +3350 t 91 655954 93.69943 0.592734021080144 Product description 3350 2021-12-21 14:03:01.089303 2024-10-06 Closed Customer 3350 52068.0690764195 +3304 t 65 711979 67.17584 0.5703243121318273 Product description 3304 2021-10-16 14:03:01.089303 2024-06-27 Processing Customer 3304 738531.7385311440 +3322 f 68 463115 8.775983 0.696524933871931 Product description 3322 2023-06-18 14:03:01.089303 2025-01-14 Processing Customer 3322 15537.9311588177 +3353 f 5 930677 65.3963 0.9745823066169983 Product description 3353 2022-12-03 14:03:01.089303 2025-12-08 Closed Customer 3353 376347.3757149430 +3305 f 15 316144 9.275294 0.2542692619357645 Product description 3305 2022-04-27 14:03:01.089303 2023-07-02 Closed Customer 3305 986971.2781062960 +3331 t 60 978007 48.738693 0.8124511326983672 Product description 3331 2023-11-06 14:03:01.089303 2025-02-03 Closed Customer 3331 88698.5154198427 +3354 t 72 293432 44.303223 0.30259459777340325 Product description 3354 2022-08-11 14:03:01.089303 2023-05-31 Processing Customer 3354 122146.0922391270 +3306 t 78 708664 31.6719 0.1114430147957215 Product description 3306 2023-09-15 14:03:01.089303 2024-02-23 Closed Customer 3306 371589.2215182710 +3333 f 96 713736 86.08965 0.7921629422894405 Product description 3333 2023-04-13 14:03:01.089303 2024-06-07 Closed Customer 3333 322643.3880741130 +3361 f 37 218626 56.615437 0.39260366139049907 Product description 3361 2023-04-26 14:03:01.089303 2024-02-18 Closed Customer 3361 894341.1466481310 +3307 t 0 350648 34.40855 0.8898057910560375 Product description 3307 2023-10-14 14:03:01.089303 2023-11-09 Closed Customer 3307 571222.8751830390 +3338 f 72 629601 43.63846 0.36247032458700446 Product description 3338 2023-11-30 14:03:01.089303 2025-02-25 Closed Customer 3338 472283.7003201120 +3363 f 6 831752 81.73223 0.7903468365451083 Product description 3363 2022-10-27 14:03:01.089303 2024-03-25 Processing Customer 3363 858968.7042617910 +3309 f 36 606543 45.914585 0.24325661124164455 Product description 3309 2022-09-09 14:03:01.089303 2025-11-20 Processing Customer 3309 147315.4521252340 +3339 t 58 409374 14.770066 0.4152288167316591 Product description 3339 2023-03-20 14:03:01.089303 2023-05-22 Processing Customer 3339 725973.4440618640 +3364 f 74 147483 22.394632 0.38452043896329613 Product description 3364 2022-11-04 14:03:01.089303 2023-08-23 Processing Customer 3364 192702.0738557700 +3315 f 14 499709 87.14886 0.6117849426481605 Product description 3315 2022-05-14 14:03:01.089303 2023-07-08 Processing Customer 3315 880930.2430692870 +3342 t 61 743246 93.76353 0.12386801990389174 Product description 3342 2023-10-17 14:03:01.089303 2025-05-06 Closed Customer 3342 487393.7212612350 +3371 f 96 857535 96.052734 0.04420798664963499 Product description 3371 2022-05-21 14:03:01.089303 2023-03-17 Processing Customer 3371 912119.0055620690 +3316 f 13 55582 34.779724 0.2694851107244993 Product description 3316 2021-08-25 14:03:01.089303 2023-01-13 Processing Customer 3316 171090.6749815210 +3343 t 77 120719 41.650723 0.14482798242081074 Product description 3343 2023-11-21 14:03:01.089303 2025-05-05 Closed Customer 3343 817237.7218169800 +3372 t 70 718249 36.88154 0.7081254772568322 Product description 3372 2023-12-16 14:03:01.089303 2023-12-09 Processing Customer 3372 190822.5421484960 +3320 f 81 135674 23.820719 0.04948118651606492 Product description 3320 2022-06-26 14:03:01.089303 2024-08-31 Closed Customer 3320 385071.2440246720 +3347 f 60 938391 32.173443 0.684907498032711 Product description 3347 2021-10-22 14:03:01.089303 2023-08-12 Closed Customer 3347 460212.9278034180 +3373 t 1 910085 9.810748 0.0932506517961933 Product description 3373 2023-11-15 14:03:01.089303 2024-06-08 Processing Customer 3373 836.0807902861 +3321 t 98 612601 96.86773 0.735477130990926 Product description 3321 2024-04-29 14:03:01.089303 2023-06-20 Closed Customer 3321 390266.0995753920 +3348 f 70 69311 91.51912 0.7315775615217355 Product description 3348 2022-10-11 14:03:01.089303 2024-05-19 Closed Customer 3348 350893.2244162820 +3375 f 77 552156 27.808735 0.04959276414065883 Product description 3375 2022-03-27 14:03:01.089303 2025-03-15 Processing Customer 3375 521302.9002492250 +3324 f 16 312306 24.411303 0.9056995074792731 Product description 3324 2022-04-19 14:03:01.089303 2023-03-14 Processing Customer 3324 190011.3327125150 +3351 f 44 752724 73.24711 0.6221331214757804 Product description 3351 2022-10-21 14:03:01.089303 2023-03-02 Closed Customer 3351 719840.4088720950 +3376 t 43 510448 17.486155 0.5497850760790435 Product description 3376 2023-08-03 14:03:01.089303 2023-10-10 Closed Customer 3376 918142.4239710690 +3328 t 87 341037 12.659113 0.4189461900231173 Product description 3328 2022-02-10 14:03:01.089303 2025-05-23 Closed Customer 3328 147104.4300250310 +3355 t 41 509567 69.12105 0.840907594311421 Product description 3355 2022-09-04 14:03:01.089303 2023-08-17 Closed Customer 3355 983452.7866208590 +3377 f 51 575384 66.30575 0.5725373583767102 Product description 3377 2023-07-03 14:03:01.089303 2024-12-25 Processing Customer 3377 407112.8639797760 +3335 f 38 187257 97.58518 0.13577845871768446 Product description 3335 2022-11-23 14:03:01.089303 2024-04-05 Closed Customer 3335 636164.7858177120 +3356 f 26 450120 49.472233 0.12215742291456522 Product description 3356 2022-12-21 14:03:01.089303 2023-05-29 Processing Customer 3356 739567.3180975350 +3388 f 20 891003 96.651794 0.8210844991034598 Product description 3388 2022-09-11 14:03:01.089303 2023-04-14 Processing Customer 3388 693756.0064605680 +3337 f 83 799556 21.151165 0.3022792234725209 Product description 3337 2021-09-11 14:03:01.089303 2024-02-20 Processing Customer 3337 873983.5838078630 +3357 f 96 929614 6.466031 0.8691437784502263 Product description 3357 2022-07-19 14:03:01.089303 2025-09-14 Processing Customer 3357 392651.6772566370 +3391 f 33 975548 51.443184 0.2132412566895603 Product description 3391 2022-11-20 14:03:01.089303 2023-02-19 Closed Customer 3391 733342.4300075250 +3340 f 64 245461 72.16897 0.05245047593961161 Product description 3340 2023-12-08 14:03:01.089303 2023-09-27 Processing Customer 3340 487915.6387578690 +3358 f 61 433400 72.688934 0.12611376741686442 Product description 3358 2024-07-04 14:03:01.089303 2023-12-17 Closed Customer 3358 591174.2049766460 +3393 f 97 100689 86.54626 0.5775452646488723 Product description 3393 2022-01-26 14:03:01.089303 2025-10-16 Closed Customer 3393 974473.4825465360 +3344 f 44 741365 7.5656476 0.8076618441561116 Product description 3344 2022-02-13 14:03:01.089303 2023-02-03 Closed Customer 3344 332872.8481815590 +3362 f 33 41572 29.967695 0.10942579778118855 Product description 3362 2024-04-22 14:03:01.089303 2024-10-19 Closed Customer 3362 329114.4596830690 +3394 t 1 487026 58.581425 0.31364014142616625 Product description 3394 2022-11-12 14:03:01.089303 2023-04-15 Processing Customer 3394 115677.0524256530 +3346 t 51 84444 88.76437 0.8908423751178169 Product description 3346 2022-03-24 14:03:01.089303 2025-08-27 Closed Customer 3346 22900.3669174830 +3367 f 2 191728 78.633354 0.5009118673938211 Product description 3367 2023-12-05 14:03:01.089303 2023-12-03 Closed Customer 3367 835716.0356490640 +3403 t 24 616819 83.15707 0.012970321556320386 Product description 3403 2022-02-22 14:03:01.089303 2024-11-11 Processing Customer 3403 232625.2426064390 +3349 t 80 935793 56.40601 0.5727133768336152 Product description 3349 2022-01-25 14:03:01.089303 2023-06-04 Cancelled Customer 3349 102402.1181984800 +3368 f 74 804680 74.471344 0.43570870197638456 Product description 3368 2024-03-07 14:03:01.089303 2023-12-07 Processing Customer 3368 703461.0008070810 +3409 f 57 306337 14.22155 0.7879330636299251 Product description 3409 2023-03-22 14:03:01.089303 2023-04-20 Processing Customer 3409 815526.1764815690 +3352 t 54 736132 9.575741 0.35980759422648845 Product description 3352 2024-07-03 14:03:01.089303 2025-11-15 Closed Customer 3352 606517.1765520500 +3370 f 77 507595 70.90895 0.7470372181931104 Product description 3370 2024-02-07 14:03:01.089303 2025-02-27 Closed Customer 3370 3593.7943550479 +3410 f 11 874139 17.00092 0.7856196200293049 Product description 3410 2023-07-17 14:03:01.089303 2025-06-08 Processing Customer 3410 630949.7583578790 +3359 f 29 9148 39.027424 0.8859613406443287 Product description 3359 2023-01-08 14:03:01.089303 2025-04-08 Closed Customer 3359 735655.1826782260 +3374 t 92 256294 54.579727 0.39979844214814264 Product description 3374 2021-10-17 14:03:01.089303 2025-02-06 Processing Customer 3374 328212.7908279620 +3413 t 62 511070 90.28436 0.2387279281214525 Product description 3413 2021-12-05 14:03:01.089303 2024-06-05 Closed Customer 3413 962333.7415903420 +3360 t 84 597152 85.6304 0.4477553509699064 Product description 3360 2024-07-02 14:03:01.089303 2025-08-20 Closed Customer 3360 348662.3535620660 +3378 t 18 624698 97.395836 0.6918940976541101 Product description 3378 2024-04-28 14:03:01.089303 2024-12-16 Processing Customer 3378 798984.6584493210 +3414 t 57 581713 95.83459 0.21274149369532935 Product description 3414 2022-07-12 14:03:01.089303 2025-05-30 Closed Customer 3414 788040.4813860410 +3365 f 28 188913 50.08349 0.7890488838914109 Product description 3365 2024-03-04 14:03:01.089303 2025-04-11 Closed Customer 3365 591338.0118271580 +3379 f 94 752326 61.736217 0.49253187774798235 Product description 3379 2023-03-01 14:03:01.089303 2025-12-02 Processing Customer 3379 347072.5584086130 +3418 f 30 89402 57.359158 0.7402904628523181 Product description 3418 2023-02-10 14:03:01.089303 2025-08-02 Processing Customer 3418 132043.0218735000 +3366 f 9 479890 1.2177612 0.6633907285456999 Product description 3366 2022-06-19 14:03:01.089303 2024-09-02 Closed Customer 3366 723668.4263597260 +3382 f 45 685742 25.721178 0.26111294604656266 Product description 3382 2024-06-10 14:03:01.089303 2024-05-22 Processing Customer 3382 99894.2986828908 +3428 t 23 460415 90.09883 0.6238682400898732 Product description 3428 2022-05-22 14:03:01.089303 2024-07-05 Processing Customer 3428 662735.0173144820 +3369 t 86 395306 66.45862 0.4591833811176542 Product description 3369 2024-02-04 14:03:01.089303 2025-08-02 Processing Customer 3369 854297.8951415240 +3385 t 97 517072 64.92106 0.36539665918748554 Product description 3385 2024-07-28 14:03:01.089303 2024-08-17 Processing Customer 3385 327940.6017596220 +3429 t 36 805547 87.06562 0.3711684868780516 Product description 3429 2022-08-24 14:03:01.089303 2023-02-04 Closed Customer 3429 765140.2293483190 +3380 t 54 280737 36.94472 0.2645665242521247 Product description 3380 2022-07-29 14:03:01.089303 2025-11-25 Closed Customer 3380 303476.5122972840 +3386 f 80 704195 87.1969 0.4289595260661905 Product description 3386 2024-06-19 14:03:01.089303 2025-07-02 Processing Customer 3386 44306.4348340343 +3433 t 44 236069 64.86885 0.7172345821952426 Product description 3433 2024-07-31 14:03:01.089303 2023-06-19 Closed Customer 3433 746919.9661984970 +3381 f 86 276761 3.6226785 0.9734302149888094 Product description 3381 2022-01-18 14:03:01.089303 2023-08-19 Closed Customer 3381 734590.4126092900 +3389 t 56 739786 88.03489 0.11829267113288111 Product description 3389 2022-06-27 14:03:01.089303 2025-01-23 Processing Customer 3389 57314.3676948717 +3440 t 66 493929 68.669464 0.7532870522830599 Product description 3440 2023-11-16 14:03:01.089303 2023-09-26 Processing Customer 3440 759450.7250587410 +3383 t 66 449014 41.534412 0.17734490986226348 Product description 3383 2023-07-21 14:03:01.089303 2023-12-15 Processing Customer 3383 84647.4949702589 +3390 t 57 867638 3.3398852 0.6247530684689302 Product description 3390 2023-09-14 14:03:01.089303 2024-09-20 Closed Customer 3390 902362.9371700040 +3453 t 40 768802 64.64865 0.15789232379369977 Product description 3453 2022-07-09 14:03:01.089303 2023-06-30 Processing Customer 3453 490817.2574644210 +3384 t 77 198384 5.5534043 0.6960088290172877 Product description 3384 2024-06-04 14:03:01.089303 2023-04-06 Processing Customer 3384 793041.3763114750 +3395 t 27 39968 35.36848 0.6735845058489538 Product description 3395 2021-09-15 14:03:01.089303 2024-03-01 Closed Customer 3395 42532.6605709131 +3456 f 43 746244 82.708244 0.6022487377826771 Product description 3456 2023-08-13 14:03:01.089303 2023-08-19 Closed Customer 3456 366322.5293863230 +3387 f 25 536837 58.442005 0.63712096207896 Product description 3387 2023-08-10 14:03:01.089303 2025-02-03 Closed Customer 3387 539448.0411480810 +3397 f 14 79793 13.7897835 0.40740644998990305 Product description 3397 2022-08-09 14:03:01.089303 2025-10-13 Closed Customer 3397 769564.0691526720 +3465 t 72 7015 3.0071816 0.4947061141774718 Product description 3465 2024-03-05 14:03:01.089303 2023-08-29 Processing Customer 3465 727625.5774936190 +3392 f 69 90697 28.317776 0.14012997029212215 Product description 3392 2022-03-02 14:03:01.089303 2025-08-13 Closed Customer 3392 244321.4445670170 +3398 f 51 53672 63.087166 0.6325290367979655 Product description 3398 2022-11-14 14:03:01.089303 2024-04-05 Closed Customer 3398 847836.5136571000 +3468 t 34 726434 15.653018 0.6423473280263927 Product description 3468 2023-01-03 14:03:01.089303 2023-08-10 Closed Customer 3468 981543.1570081330 +3396 f 53 309716 90.2961 0.5173453900198197 Product description 3396 2023-10-31 14:03:01.089303 2023-10-11 Processing Customer 3396 229384.1209138390 +3400 t 77 346112 77.510086 0.9478511389139435 Product description 3400 2023-08-03 14:03:01.089303 2024-02-10 Processing Customer 3400 190109.4787642070 +3469 t 69 709027 9.628615 0.1363066256976957 Product description 3469 2023-12-08 14:03:01.089303 2024-06-11 Processing Customer 3469 988265.1522565670 +3399 f 79 312985 89.25136 0.8918161748398887 Product description 3399 2023-12-12 14:03:01.089303 2023-01-19 Closed Customer 3399 954816.8959411040 +3401 f 62 408502 7.3019595 0.4696538924356055 Product description 3401 2024-07-24 14:03:01.089303 2023-11-23 Cancelled Customer 3401 738522.3035512670 +3474 f 81 305077 73.402016 0.7336576353313866 Product description 3474 2022-01-10 14:03:01.089303 2023-04-08 Closed Customer 3474 734961.6869782810 +3402 t 36 568696 72.73871 0.7837329362490024 Product description 3402 2024-04-07 14:03:01.089303 2024-03-22 Closed Customer 3402 391475.8485332930 +3404 f 98 586467 17.240383 0.04290208148576369 Product description 3404 2023-01-30 14:03:01.089303 2025-10-28 Processing Customer 3404 705676.0041737780 +3475 f 3 277129 24.96521 0.633756433230058 Product description 3475 2022-07-24 14:03:01.089303 2024-12-15 Closed Customer 3475 252892.2687403040 +3405 f 46 853303 82.54927 0.2759721143452225 Product description 3405 2021-08-19 14:03:01.089303 2024-05-25 Closed Customer 3405 424529.0555638770 +3406 f 13 455467 8.526427 0.9378070811588017 Product description 3406 2024-04-13 14:03:01.089303 2023-01-24 Closed Customer 3406 501995.5530241770 +3483 f 91 273533 59.33456 0.0070696221868224995 Product description 3483 2024-01-29 14:03:01.089303 2025-04-11 Closed Customer 3483 829117.4767007870 +3412 t 84 970929 81.53079 0.08823224061666934 Product description 3412 2022-12-30 14:03:01.089303 2024-09-19 Closed Customer 3412 4815.5389658611 +3407 t 46 256208 37.130947 0.9476441687877184 Product description 3407 2023-02-16 14:03:01.089303 2025-11-15 Closed Customer 3407 637539.5579671840 +3486 f 4 563348 84.78127 0.781283280386841 Product description 3486 2021-11-07 14:03:01.089303 2023-06-15 Closed Customer 3486 452913.0597816860 +3415 t 7 808563 34.728428 0.5646041439068341 Product description 3415 2022-05-03 14:03:01.089303 2025-03-28 Closed Customer 3415 777330.8439896130 +3408 t 99 559914 37.98832 0.6920554840546416 Product description 3408 2022-07-30 14:03:01.089303 2024-08-21 Closed Customer 3408 587820.1721575960 +3492 t 42 896755 84.219154 0.5314865758869338 Product description 3492 2024-02-05 14:03:01.089303 2024-05-25 Processing Customer 3492 194124.1026337510 +3420 f 67 863689 99.87128 0.045387600942341066 Product description 3420 2022-03-28 14:03:01.089303 2023-05-12 Processing Customer 3420 12084.2062291224 +3411 t 82 911631 11.696383 0.7374315249592627 Product description 3411 2023-12-12 14:03:01.089303 2025-03-07 Processing Customer 3411 852640.0516255810 +3493 f 44 615056 1.2142886 0.11771303571329028 Product description 3493 2023-09-21 14:03:01.089303 2024-11-19 Closed Customer 3493 72660.7998192534 +3421 f 92 921338 25.809109 0.9097215997334445 Product description 3421 2023-02-04 14:03:01.089303 2025-01-14 Processing Customer 3421 562034.6817659330 +3416 f 31 501600 54.14803 0.15456440314294895 Product description 3416 2023-11-16 14:03:01.089303 2025-07-07 Closed Customer 3416 971532.8299193580 +3495 f 9 950047 12.755004 0.13642518357476163 Product description 3495 2022-07-02 14:03:01.089303 2024-09-01 Closed Customer 3495 253661.0229182940 +3423 f 27 725906 97.5468 0.8868946038850609 Product description 3423 2023-03-09 14:03:01.089303 2023-10-11 Processing Customer 3423 651665.6275334790 +3417 f 42 454785 32.92714 0.13243518927322384 Product description 3417 2022-04-30 14:03:01.089303 2023-12-16 Closed Customer 3417 178375.6096236820 +3497 t 62 278766 66.62081 0.7325732956706723 Product description 3497 2023-02-06 14:03:01.089303 2024-03-04 Closed Customer 3497 489058.8265081770 +3424 t 64 948984 83.901695 0.5097501556938226 Product description 3424 2023-02-07 14:03:01.089303 2023-09-27 Processing Customer 3424 508389.3434782960 +3419 f 90 463783 97.29996 0.75853820264809 Product description 3419 2024-02-25 14:03:01.089303 2024-04-01 Closed Customer 3419 826933.8537789710 +3498 t 75 7737 75.028046 0.5893852693084831 Product description 3498 2022-06-19 14:03:01.089303 2024-02-03 Closed Customer 3498 928350.1702605430 +3426 t 28 453135 79.65023 0.7191165956811503 Product description 3426 2023-12-05 14:03:01.089303 2024-04-19 Processing Customer 3426 60361.8737149141 +3422 f 31 88611 34.653515 0.7314886466430863 Product description 3422 2023-02-22 14:03:01.089303 2023-02-17 Closed Customer 3422 228014.4398693090 +3499 t 40 634762 94.79893 0.9352460924290931 Product description 3499 2023-07-17 14:03:01.089303 2023-12-25 Processing Customer 3499 293948.7776056280 +3427 f 3 337755 23.441355 0.17203892092612705 Product description 3427 2024-03-06 14:03:01.089303 2024-02-25 Processing Customer 3427 698457.1257869980 +3425 f 77 531805 33.201412 0.3259961967488252 Product description 3425 2023-08-08 14:03:01.089303 2023-02-09 Cancelled Customer 3425 313592.6283725680 +3504 f 79 600154 63.59166 0.25266899699859735 Product description 3504 2024-03-19 14:03:01.089303 2023-03-07 Closed Customer 3504 634329.2598108970 +3430 f 99 841581 24.103703 0.5921889782994825 Product description 3430 2023-01-03 14:03:01.089303 2025-01-17 Closed Customer 3430 259675.1745113900 +3434 t 32 563260 61.022896 0.7152648384506541 Product description 3434 2022-05-13 14:03:01.089303 2024-11-17 Closed Customer 3434 371223.1533641410 +3506 f 32 921837 79.877945 0.30665732587010197 Product description 3506 2023-10-24 14:03:01.089303 2023-10-10 Closed Customer 3506 158922.6765280570 +3431 f 72 430049 18.421144 0.7521620097840156 Product description 3431 2022-06-04 14:03:01.089303 2023-11-09 Processing Customer 3431 456584.6873820870 +3435 f 73 778372 46.88099 0.2942526475809295 Product description 3435 2024-05-11 14:03:01.089303 2023-09-28 Closed Customer 3435 471521.4440477030 +3515 f 48 809178 38.960735 0.506518826706813 Product description 3515 2022-11-24 14:03:01.089303 2024-05-26 Closed Customer 3515 115892.0989821150 +3432 t 33 92478 57.085358 0.6853199144645927 Product description 3432 2022-09-11 14:03:01.089303 2023-10-19 Processing Customer 3432 430998.4591522390 +3437 t 92 880421 68.56932 0.9108696337295505 Product description 3437 2023-05-19 14:03:01.089303 2025-07-14 Closed Customer 3437 508265.2076843030 +3517 f 57 974441 25.242521 0.03505917323230889 Product description 3517 2023-03-15 14:03:01.089303 2025-08-06 Closed Customer 3517 796184.0760072720 +3436 f 8 685261 11.027662 0.47324110275050657 Product description 3436 2023-04-21 14:03:01.089303 2023-11-26 Cancelled Customer 3436 319104.9854506080 +3438 t 13 146468 97.72228 0.3646296475800419 Product description 3438 2024-07-11 14:03:01.089303 2024-02-15 Closed Customer 3438 59597.2671036478 +3518 f 90 452579 1.571332 0.777830749346311 Product description 3518 2023-03-23 14:03:01.089303 2025-10-29 Closed Customer 3518 834187.6766262710 +3441 f 41 254250 54.116055 0.907386215506488 Product description 3441 2022-10-09 14:03:01.089303 2025-03-17 Processing Customer 3441 890501.8370299940 +3439 f 94 642522 69.23172 0.04032590752362708 Product description 3439 2022-11-13 14:03:01.089303 2024-06-04 Processing Customer 3439 187687.3370169530 +3520 f 13 43425 47.630024 0.7453726490226948 Product description 3520 2023-03-10 14:03:01.089303 2025-10-15 Processing Customer 3520 39029.5398288245 +3442 f 56 374885 91.05922 0.5903916146518391 Product description 3442 2022-01-16 14:03:01.089303 2024-08-03 Closed Customer 3442 703042.1663390030 +3443 t 95 932656 88.89064 0.30438801364870116 Product description 3443 2022-09-03 14:03:01.089303 2023-04-28 Processing Customer 3443 698130.5705815760 +3521 f 64 624490 88.054 0.6252296287781327 Product description 3521 2022-06-26 14:03:01.089303 2023-07-23 Processing Customer 3521 124818.3502503790 +3444 f 69 877543 63.98287 0.34351955939115086 Product description 3444 2022-08-13 14:03:01.089303 2023-07-13 Closed Customer 3444 730013.3881011060 +3447 f 84 299437 24.014948 0.47111807379700466 Product description 3447 2023-07-12 14:03:01.089303 2024-08-07 Closed Customer 3447 806575.6712824450 +3522 f 89 31552 39.634663 0.4108185046620001 Product description 3522 2023-06-16 14:03:01.089303 2023-12-25 Processing Customer 3522 887963.7702241250 +3445 t 77 107140 62.21905 0.29724290503807893 Product description 3445 2022-12-15 14:03:01.089303 2024-09-04 Processing Customer 3445 9411.9848537417 +3448 t 84 404793 43.530178 0.24325779807614012 Product description 3448 2022-12-08 14:03:01.089303 2023-08-12 Processing Customer 3448 435018.6126328380 +3526 f 54 565395 78.15738 0.4365371631597732 Product description 3526 2023-10-08 14:03:01.089303 2023-11-24 Processing Customer 3526 944542.1044915180 +3446 f 38 560903 21.701057 0.6871154381099807 Product description 3446 2022-02-05 14:03:01.089303 2024-10-27 Closed Customer 3446 352018.2727229650 +3457 f 51 694153 73.31313 0.7987261212791772 Product description 3457 2024-06-06 14:03:01.089303 2024-12-09 Processing Customer 3457 917674.0667993360 +3532 t 13 736869 17.211716 0.42230858433452667 Product description 3532 2023-08-19 14:03:01.089303 2024-04-24 Closed Customer 3532 747341.2356068320 +3449 f 9 12941 56.21432 0.8786189464614615 Product description 3449 2022-07-18 14:03:01.089303 2023-02-07 Closed Customer 3449 134348.0102277400 +3461 t 65 428386 41.359154 0.7578029717794088 Product description 3461 2023-04-14 14:03:01.089303 2024-09-27 Processing Customer 3461 145121.7962871780 +3533 t 35 572350 77.81262 0.3438153516696367 Product description 3533 2022-12-21 14:03:01.089303 2024-03-04 Processing Customer 3533 213078.6843945460 +3450 t 15 33139 38.057682 0.627874026481404 Product description 3450 2022-06-19 14:03:01.089303 2024-01-24 Processing Customer 3450 102747.0155640700 +3462 f 94 389877 19.444542 0.2922474997556215 Product description 3462 2023-08-16 14:03:01.089303 2024-05-01 Closed Customer 3462 765819.5362225230 +3536 f 68 267284 47.65372 0.6620544031708953 Product description 3536 2022-03-31 14:03:01.089303 2023-09-30 Closed Customer 3536 794990.7824944590 +3451 t 49 86089 33.40017 0.8653323116134892 Product description 3451 2022-10-05 14:03:01.089303 2025-05-01 Closed Customer 3451 80584.6318390167 +3463 f 95 834520 33.54361 0.40750498939695134 Product description 3463 2023-07-25 14:03:01.089303 2025-11-10 Processing Customer 3463 106223.8110593580 +3539 t 28 511860 78.43322 0.6700497309048394 Product description 3539 2023-06-16 14:03:01.089303 2023-09-20 Processing Customer 3539 185283.4756390110 +3452 t 51 265492 0.8751114 0.9561594060438487 Product description 3452 2022-05-25 14:03:01.089303 2025-02-15 Closed Customer 3452 463400.0012007890 +3464 f 65 423917 52.933174 0.6445886828768472 Product description 3464 2022-05-31 14:03:01.089303 2024-01-02 Processing Customer 3464 913625.9929812380 +3542 f 44 740429 53.47432 0.05045789870674966 Product description 3542 2022-05-10 14:03:01.089303 2025-03-21 Closed Customer 3542 93878.9891377851 +3454 t 36 53017 66.783394 0.13724657682105956 Product description 3454 2023-02-24 14:03:01.089303 2025-05-30 Cancelled Customer 3454 601614.3288821110 +3467 t 32 90560 37.36583 0.8553743982483404 Product description 3467 2021-11-28 14:03:01.089303 2025-02-18 Processing Customer 3467 794434.8722664000 +3543 f 22 937440 95.197464 0.8215923398299232 Product description 3543 2022-04-29 14:03:01.089303 2024-10-17 Closed Customer 3543 79850.3732466287 +3455 f 76 591530 76.14312 0.4217560312730626 Product description 3455 2021-09-10 14:03:01.089303 2025-01-25 Closed Customer 3455 890705.0596568060 +3470 f 42 36150 73.00411 0.4658634256896228 Product description 3470 2023-12-18 14:03:01.089303 2023-06-18 Closed Customer 3470 990618.1706447510 +3544 t 40 101681 94.563225 0.7175888390311052 Product description 3544 2024-05-06 14:03:01.089303 2023-09-23 Closed Customer 3544 358979.4990935430 +3458 f 32 522103 84.80933 0.14248437904895894 Product description 3458 2023-05-30 14:03:01.089303 2025-07-30 Processing Customer 3458 126971.3807759450 +3471 t 96 107948 41.505436 0.5773727272594122 Product description 3471 2024-02-29 14:03:01.089303 2025-10-21 Closed Customer 3471 156348.2101092650 +3550 f 71 455718 3.1711562 0.028784695640371893 Product description 3550 2022-01-12 14:03:01.089303 2023-06-10 Processing Customer 3550 164524.6129667160 +3459 t 69 314813 41.29018 0.5855868927285144 Product description 3459 2023-12-23 14:03:01.089303 2025-01-22 Closed Customer 3459 633645.2519136310 +3472 f 78 520649 61.75971 0.9776357421741899 Product description 3472 2022-05-07 14:03:01.089303 2025-05-05 Processing Customer 3472 946579.0095284060 +3551 f 53 33507 16.059248 0.7910570636649901 Product description 3551 2024-01-22 14:03:01.089303 2024-06-03 Closed Customer 3551 250740.8232199920 +3460 t 77 892952 95.28172 0.2631290493193106 Product description 3460 2023-07-08 14:03:01.089303 2023-12-02 Closed Customer 3460 443843.8972179630 +3473 t 82 315460 79.30758 0.742674236922749 Product description 3473 2022-09-03 14:03:01.089303 2023-07-12 Closed Customer 3473 545348.0037856980 +3554 f 32 833884 22.919756 0.7264213277974001 Product description 3554 2022-07-30 14:03:01.089303 2023-12-07 Closed Customer 3554 428962.6979842320 +3466 t 79 23203 50.071598 0.5620818199907234 Product description 3466 2022-11-30 14:03:01.089303 2023-12-21 Processing Customer 3466 819718.5333354860 +3479 f 99 292649 26.774433 0.038516264057609106 Product description 3479 2023-03-24 14:03:01.089303 2023-02-09 Processing Customer 3479 422482.5980186320 +3555 f 67 659994 4.131048 0.030113398494233223 Product description 3555 2022-08-26 14:03:01.089303 2023-09-14 Closed Customer 3555 273610.6808503890 +3476 t 58 828711 18.551306 0.67982104718606 Product description 3476 2022-12-08 14:03:01.089303 2023-10-24 Closed Customer 3476 545023.8981233790 +3480 f 48 107388 27.437487 0.47343361649040716 Product description 3480 2021-12-09 14:03:01.089303 2024-10-05 Processing Customer 3480 421793.7686451090 +3561 t 17 42792 42.76686 0.9342149362893117 Product description 3561 2023-07-04 14:03:01.089303 2023-12-25 Processing Customer 3561 842408.2003236040 +3477 f 65 763257 39.21605 0.08224021324770092 Product description 3477 2024-02-15 14:03:01.089303 2025-01-20 Cancelled Customer 3477 244606.6233166140 +3481 t 85 804321 56.610344 0.22105621956595556 Product description 3481 2022-10-04 14:03:01.089303 2025-12-17 Closed Customer 3481 995454.9770428260 +3563 t 23 6007 53.074062 0.8012435365197028 Product description 3563 2023-03-16 14:03:01.089303 2023-06-12 Closed Customer 3563 236832.4277059980 +3478 t 23 627283 83.363106 0.9480515921503176 Product description 3478 2023-04-21 14:03:01.089303 2024-06-15 Closed Customer 3478 112062.3531105810 +3482 f 21 863210 77.31749 0.8575091923789948 Product description 3482 2022-04-01 14:03:01.089303 2023-06-16 Closed Customer 3482 656098.3491717350 +3566 t 96 520303 96.92702 0.539130325379805 Product description 3566 2024-01-04 14:03:01.089303 2024-06-22 Closed Customer 3566 424923.4138312520 +3489 t 17 556945 79.31045 0.8506310462191102 Product description 3489 2023-11-22 14:03:01.089303 2024-07-24 Cancelled Customer 3489 131993.5947067310 +3484 t 80 977371 49.047955 0.6942041020769132 Product description 3484 2022-08-14 14:03:01.089303 2023-12-23 Processing Customer 3484 335275.8253385280 +3575 f 94 901267 21.955256 0.4538622242840056 Product description 3575 2021-12-16 14:03:01.089303 2023-06-14 Closed Customer 3575 286155.0519481780 +3490 t 71 383885 66.94227 0.669363536871046 Product description 3490 2022-05-08 14:03:01.089303 2024-01-25 Processing Customer 3490 246529.8235518210 +3485 f 50 113037 68.52744 0.670404474706654 Product description 3485 2023-10-28 14:03:01.089303 2025-10-25 Closed Customer 3485 512825.7098889790 +3583 t 5 95197 74.036194 0.4559362282149273 Product description 3583 2022-06-07 14:03:01.089303 2023-04-04 Cancelled Customer 3583 817082.6009454440 +3491 f 46 216598 27.123245 0.3569673198281791 Product description 3491 2021-08-29 14:03:01.089303 2024-12-17 Closed Customer 3491 129738.3191894320 +3487 t 11 134366 91.49616 0.18874149633939297 Product description 3487 2023-07-18 14:03:01.089303 2024-09-24 Closed Customer 3487 409669.3031860780 +3585 t 23 439926 44.136517 0.4990700504987018 Product description 3585 2024-01-22 14:03:01.089303 2023-08-05 Closed Customer 3585 504890.8534204310 +3494 f 38 679698 22.925476 0.404602358348086 Product description 3494 2023-07-29 14:03:01.089303 2023-05-16 Closed Customer 3494 803522.9587101720 +3488 f 60 291609 99.05206 0.28404172947720596 Product description 3488 2024-01-12 14:03:01.089303 2025-03-28 Closed Customer 3488 883837.2126157240 +3590 f 27 11926 30.059483 0.9359492294124365 Product description 3590 2022-02-11 14:03:01.089303 2024-03-20 Processing Customer 3590 238421.0687590560 +3500 f 85 784251 1.7788215 0.8485547134424181 Product description 3500 2022-04-14 14:03:01.089303 2023-07-31 Processing Customer 3500 806301.2579450830 +3496 t 27 930710 48.75029 0.14466680653812958 Product description 3496 2022-01-28 14:03:01.089303 2024-04-24 Processing Customer 3496 177821.2055599510 +3592 f 42 920156 96.19667 0.28840944741014596 Product description 3592 2023-12-25 14:03:01.089303 2023-05-26 Closed Customer 3592 832506.1556907050 +3510 t 20 965729 28.460052 0.9218566124562955 Product description 3510 2023-07-31 14:03:01.089303 2023-12-22 Closed Customer 3510 674656.0847514720 +3501 f 42 348685 64.319275 0.11100253467867205 Product description 3501 2023-03-11 14:03:01.089303 2025-03-01 Closed Customer 3501 158312.5843745350 +3600 t 88 466806 93.53701 0.2581246239509838 Product description 3600 2022-12-25 14:03:01.089303 2025-12-24 Processing Customer 3600 260049.3827494610 +3516 t 40 863200 69.508064 0.026579865601227937 Product description 3516 2023-10-21 14:03:01.089303 2023-02-17 Closed Customer 3516 1169.8394632056 +3502 f 84 832678 54.48166 0.08464409849878862 Product description 3502 2022-03-24 14:03:01.089303 2023-11-06 Processing Customer 3502 53116.1247262304 +3603 f 85 431349 24.611523 0.6888862829946305 Product description 3603 2023-03-30 14:03:01.089303 2023-06-25 Processing Customer 3603 63625.7467574914 +3523 f 17 489610 0.92090946 0.39361546189385876 Product description 3523 2021-11-22 14:03:01.089303 2024-02-05 Closed Customer 3523 703112.2038520970 +3503 t 30 246851 73.147514 0.7053197719715847 Product description 3503 2024-07-07 14:03:01.089303 2023-07-07 Processing Customer 3503 924390.8781520740 +3605 t 3 427423 30.10025 0.18393201568698458 Product description 3605 2022-03-02 14:03:01.089303 2024-05-20 Closed Customer 3605 514924.7937896640 +3524 t 34 510035 40.87954 0.39301495437823775 Product description 3524 2022-10-25 14:03:01.089303 2025-01-21 Processing Customer 3524 886037.7529372880 +3505 t 7 211941 1.8506086 0.41719924025294475 Product description 3505 2023-12-02 14:03:01.089303 2023-07-13 Processing Customer 3505 337051.6096672130 +3607 f 52 689952 88.04507 0.7365724845861337 Product description 3607 2022-05-09 14:03:01.089303 2025-06-07 Processing Customer 3607 991070.8254135980 +3527 t 36 465007 78.22169 0.24541718879281404 Product description 3527 2021-08-13 14:03:01.089303 2025-05-16 Closed Customer 3527 292695.8096471530 +3507 f 27 825984 37.07202 0.25716603420695705 Product description 3507 2023-11-09 14:03:01.089303 2023-03-10 Closed Customer 3507 976568.9711436850 +3608 f 5 455116 28.916143 0.3984863601099917 Product description 3608 2023-05-13 14:03:01.089303 2024-06-22 Closed Customer 3608 758180.2260665750 +3529 t 59 766599 93.96745 0.7655057024425602 Product description 3529 2024-07-28 14:03:01.089303 2025-08-03 Closed Customer 3529 525326.4102656950 +3508 f 55 982181 85.53541 0.8537723135123692 Product description 3508 2023-12-17 14:03:01.089303 2024-07-29 Processing Customer 3508 819820.3978488860 +3613 t 95 816154 8.253635 0.031068238861635677 Product description 3613 2022-04-16 14:03:01.089303 2025-09-18 Closed Customer 3613 870554.8292592300 +3531 f 7 674349 55.282574 0.8349478054852852 Product description 3531 2024-07-10 14:03:01.089303 2023-07-13 Processing Customer 3531 807503.2953378210 +3509 f 41 409741 93.430695 0.26186280523448247 Product description 3509 2023-04-27 14:03:01.089303 2024-09-11 Closed Customer 3509 418337.0945769910 +3621 t 56 245232 55.172348 0.18672773190180436 Product description 3621 2022-12-17 14:03:01.089303 2023-11-16 Processing Customer 3621 454717.5428901260 +3534 f 45 564512 82.57054 0.36123050500498977 Product description 3534 2022-10-26 14:03:01.089303 2024-11-19 Processing Customer 3534 183409.9880744340 +3511 f 20 877916 95.171745 0.7970941858383931 Product description 3511 2022-06-12 14:03:01.089303 2024-08-05 Cancelled Customer 3511 797104.6079995040 +3623 t 53 468786 23.233889 0.9551407911582999 Product description 3623 2023-10-19 14:03:01.089303 2025-05-20 Processing Customer 3623 32074.8756672309 +3535 f 75 731930 97.61016 0.14368109347806524 Product description 3535 2022-05-16 14:03:01.089303 2023-11-06 Closed Customer 3535 17626.3418831120 +3512 f 28 368030 90.15949 0.6074953559811007 Product description 3512 2024-04-29 14:03:01.089303 2025-07-20 Closed Customer 3512 784589.2149346800 +3625 t 0 163797 12.055058 0.9972048634642547 Product description 3625 2022-02-21 14:03:01.089303 2025-11-20 Processing Customer 3625 823247.4154429530 +3537 f 46 136295 46.378952 0.8301287647887747 Product description 3537 2021-12-05 14:03:01.089303 2023-03-26 Processing Customer 3537 166164.8326139480 +3513 f 57 428893 34.95021 0.8942474241835257 Product description 3513 2022-02-25 14:03:01.089303 2025-10-10 Closed Customer 3513 568444.8286926230 +3630 t 13 357491 81.57775 0.4590415710397764 Product description 3630 2022-07-24 14:03:01.089303 2023-12-11 Closed Customer 3630 944249.4633197890 +3538 f 9 383412 33.438667 0.053271574618094064 Product description 3538 2023-01-30 14:03:01.089303 2025-10-07 Closed Customer 3538 663758.7792112320 +3514 f 50 973849 51.028553 0.1638041514342774 Product description 3514 2022-09-22 14:03:01.089303 2023-10-11 Closed Customer 3514 207052.1902758990 +3636 t 74 910354 72.02553 0.09725050018226256 Product description 3636 2021-08-30 14:03:01.089303 2023-01-30 Closed Customer 3636 617095.2467563960 +3541 f 13 878774 86.75782 0.9286922530709845 Product description 3541 2022-08-25 14:03:01.089303 2023-10-14 Processing Customer 3541 371384.9393371940 +3519 f 71 354249 64.18958 0.6420214127156001 Product description 3519 2023-09-30 14:03:01.089303 2024-07-20 Processing Customer 3519 171091.7535340890 +3639 f 40 335110 60.235344 0.6613319835433913 Product description 3639 2023-09-25 14:03:01.089303 2023-03-27 Processing Customer 3639 386221.8896541630 +3547 f 97 894951 75.34644 0.5685885846911418 Product description 3547 2023-09-20 14:03:01.089303 2024-05-30 Processing Customer 3547 821354.0552314210 +3525 t 66 816474 96.64518 0.553263339058546 Product description 3525 2024-02-09 14:03:01.089303 2025-04-19 Closed Customer 3525 305652.5190246300 +3642 t 75 385138 43.513794 0.12242909801114621 Product description 3642 2021-08-08 14:03:01.089303 2023-11-03 Closed Customer 3642 754203.9618411740 +3548 t 94 922762 17.829414 0.2873884684283823 Product description 3548 2023-10-06 14:03:01.089303 2023-09-14 Processing Customer 3548 134489.5268275830 +3528 t 86 367013 84.9287 0.4921175647374909 Product description 3528 2022-06-02 14:03:01.089303 2025-09-01 Processing Customer 3528 86583.8955625868 +3646 f 80 404839 97.30043 0.46434108273724917 Product description 3646 2021-10-13 14:03:01.089303 2024-10-23 Closed Customer 3646 543114.3485881300 +3556 f 57 343271 25.101889 0.6617223992370214 Product description 3556 2023-02-15 14:03:01.089303 2024-10-26 Cancelled Customer 3556 883641.4352235380 +3530 t 12 198223 46.90357 0.3037000255502562 Product description 3530 2022-01-26 14:03:01.089303 2025-09-08 Closed Customer 3530 358966.7636857680 +3647 f 9 221685 54.38737 0.8539334400025709 Product description 3647 2024-01-20 14:03:01.089303 2025-03-05 Processing Customer 3647 224823.5874499080 +3557 t 52 158603 89.45546 0.5783244646380687 Product description 3557 2022-06-29 14:03:01.089303 2023-05-15 Closed Customer 3557 194003.3598956110 +3540 f 21 616067 64.49399 0.383282801228809 Product description 3540 2024-07-08 14:03:01.089303 2024-07-27 Closed Customer 3540 79945.5960753655 +3648 f 5 265525 24.495182 0.8494842096947934 Product description 3648 2023-03-15 14:03:01.089303 2024-11-14 Processing Customer 3648 771975.4670853510 +3558 t 31 454095 44.232628 0.6204011527349742 Product description 3558 2023-12-18 14:03:01.089303 2025-12-26 Closed Customer 3558 67014.0220034057 +3545 f 61 206277 22.247913 0.769423696541665 Product description 3545 2022-04-22 14:03:01.089303 2025-04-09 Closed Customer 3545 953779.7668325640 +3649 f 20 187620 5.5364103 0.03353219394015383 Product description 3649 2023-08-10 14:03:01.089303 2025-01-04 Closed Customer 3649 674329.7239037280 +3562 f 55 557064 0.25907657 0.15805708441112287 Product description 3562 2022-02-08 14:03:01.089303 2023-06-06 Closed Customer 3562 992519.3331194250 +3546 f 94 847494 41.78454 0.5303671909985823 Product description 3546 2022-04-25 14:03:01.089303 2024-03-25 Closed Customer 3546 710900.0972038650 +3650 f 34 43265 22.948938 0.8112545932541337 Product description 3650 2024-03-15 14:03:01.089303 2023-11-14 Closed Customer 3650 131221.9309665290 +3567 t 96 818457 49.6191 0.47420960723446015 Product description 3567 2021-10-13 14:03:01.089303 2025-11-04 Processing Customer 3567 207420.8055663430 +3549 f 47 46744 40.031647 0.018821666175227847 Product description 3549 2024-02-02 14:03:01.089303 2023-10-17 Closed Customer 3549 297886.4452556100 +3654 t 34 593626 49.00824 0.8227018358436382 Product description 3654 2024-03-06 14:03:01.089303 2023-07-09 Closed Customer 3654 615028.5692765640 +3570 f 13 404950 84.30876 0.430339213308951 Product description 3570 2023-09-06 14:03:01.089303 2025-10-13 Closed Customer 3570 693534.7561684400 +3552 t 39 151463 78.81398 0.09347497092156942 Product description 3552 2023-04-18 14:03:01.089303 2023-05-05 Closed Customer 3552 284817.9823835190 +3657 f 17 775791 74.4088 0.017548941470465707 Product description 3657 2024-07-08 14:03:01.089303 2024-03-23 Processing Customer 3657 63865.6523742007 +3571 f 86 899612 54.31594 0.13426703790561945 Product description 3571 2024-07-22 14:03:01.089303 2023-12-08 Processing Customer 3571 870162.4801607860 +3553 f 50 353346 56.95088 0.18912251509742362 Product description 3553 2022-06-03 14:03:01.089303 2023-08-14 Closed Customer 3553 272084.2370783140 +3664 t 92 23508 61.74902 0.3348152862196869 Product description 3664 2021-09-03 14:03:01.089303 2023-10-26 Closed Customer 3664 314880.4054982610 +3578 t 16 982581 34.08987 0.36020617028514934 Product description 3578 2024-06-08 14:03:01.089303 2025-09-28 Processing Customer 3578 107045.5554535740 +3559 t 61 369153 89.52883 0.6962903190060317 Product description 3559 2024-05-13 14:03:01.089303 2024-05-12 Processing Customer 3559 874565.7739175560 +3671 f 74 13028 28.520353 0.21001725699217388 Product description 3671 2021-09-06 14:03:01.089303 2025-01-21 Closed Customer 3671 550099.4559572060 +3581 f 84 989306 72.234886 0.65744370304893 Product description 3581 2023-12-11 14:03:01.089303 2023-08-29 Closed Customer 3581 159701.1959108980 +3560 t 1 192272 92.04952 0.7117234080616868 Product description 3560 2022-04-29 14:03:01.089303 2025-02-17 Processing Customer 3560 871474.3144029700 +3673 f 0 600015 43.65674 0.7989326100877392 Product description 3673 2023-01-11 14:03:01.089303 2023-02-13 Closed Customer 3673 258626.7091115140 +3582 t 71 550627 37.8895 0.9069106969095166 Product description 3582 2021-12-21 14:03:01.089303 2023-12-29 Processing Customer 3582 133420.9029775120 +3564 f 40 563765 57.10389 0.07187649670226648 Product description 3564 2023-11-16 14:03:01.089303 2023-01-27 Processing Customer 3564 276189.0386022150 +3676 f 18 636451 97.16917 0.24637555319472426 Product description 3676 2023-09-06 14:03:01.089303 2023-06-09 Processing Customer 3676 665469.3206553160 +3588 t 6 616800 14.93444 0.5962412682709335 Product description 3588 2022-03-09 14:03:01.089303 2025-01-04 Processing Customer 3588 509308.9473290040 +3565 t 20 204553 22.376083 0.1369204501522887 Product description 3565 2022-01-01 14:03:01.089303 2025-11-20 Closed Customer 3565 975729.0112097050 +3679 t 81 827925 56.868996 0.46119778049101257 Product description 3679 2022-02-23 14:03:01.089303 2024-04-22 Processing Customer 3679 409283.6189976800 +3589 f 61 907531 72.64116 0.47816496424362853 Product description 3589 2021-12-14 14:03:01.089303 2023-06-30 Closed Customer 3589 149274.4003931890 +3568 f 53 792062 2.8000643 0.46364654351159373 Product description 3568 2024-04-22 14:03:01.089303 2025-06-11 Closed Customer 3568 12237.9180545984 +3681 f 30 72764 37.5345 0.1552518922912185 Product description 3681 2024-06-03 14:03:01.089303 2025-05-12 Closed Customer 3681 504897.6214352300 +3594 t 39 793897 0.7492639 0.09056967760665557 Product description 3594 2022-08-27 14:03:01.089303 2024-09-21 Closed Customer 3594 301169.9686191350 +3569 f 81 67480 94.36879 0.7776687467445242 Product description 3569 2023-05-04 14:03:01.089303 2025-12-04 Processing Customer 3569 763520.7885450330 +3682 t 62 957252 20.613714 0.4835663609156242 Product description 3682 2021-08-25 14:03:01.089303 2024-12-19 Processing Customer 3682 812436.6918728650 +3596 t 100 707239 36.35759 0.33089535334941544 Product description 3596 2023-09-23 14:03:01.089303 2023-03-07 Closed Customer 3596 748534.3765504740 +3572 f 59 873518 15.989888 0.004513918137128314 Product description 3572 2024-03-28 14:03:01.089303 2025-05-17 Closed Customer 3572 747965.8824644880 +3685 t 30 453998 16.49654 0.9444402743044975 Product description 3685 2021-10-16 14:03:01.089303 2024-04-18 Processing Customer 3685 458872.3829560840 +3597 t 22 562743 35.04888 0.3197851817970623 Product description 3597 2024-04-22 14:03:01.089303 2023-05-01 Closed Customer 3597 742443.0123128330 +3573 f 72 858621 81.91399 0.9162946392013254 Product description 3573 2024-03-20 14:03:01.089303 2024-06-10 Closed Customer 3573 505852.2790074950 +3686 t 11 137904 75.21746 0.37617358728494565 Product description 3686 2023-01-30 14:03:01.089303 2025-02-22 Closed Customer 3686 894934.0162482460 +3598 t 38 267920 67.5536 0.6673372284401431 Product description 3598 2023-07-10 14:03:01.089303 2023-10-02 Processing Customer 3598 888267.4081044190 +3574 t 9 342448 99.72408 0.5769288986305625 Product description 3574 2021-11-10 14:03:01.089303 2024-11-16 Closed Customer 3574 484675.0174777590 +3690 f 62 753933 6.937943 0.44982743923294777 Product description 3690 2023-02-14 14:03:01.089303 2025-05-16 Closed Customer 3690 595440.0974258180 +3599 f 79 23941 5.212245 0.9745089576967736 Product description 3599 2022-11-06 14:03:01.089303 2024-07-18 Closed Customer 3599 67812.7337256029 +3576 f 91 189777 91.781555 0.44717575847244007 Product description 3576 2021-11-27 14:03:01.089303 2023-01-08 Closed Customer 3576 785210.3326647430 +3692 f 26 198248 61.732307 0.9938272874716958 Product description 3692 2022-07-07 14:03:01.089303 2023-01-25 Closed Customer 3692 891747.1493474420 +3601 t 61 542970 92.3775 0.9592210244663981 Product description 3601 2024-04-30 14:03:01.089303 2025-07-15 Processing Customer 3601 995679.4425338200 +3577 f 39 886956 46.90479 0.3871927417333225 Product description 3577 2024-02-03 14:03:01.089303 2023-03-13 Closed Customer 3577 403838.6063116130 +3693 t 65 386046 49.43551 0.7122736664706792 Product description 3693 2022-08-03 14:03:01.089303 2025-08-26 Processing Customer 3693 540116.9843492220 +3602 f 86 988713 4.080174 0.26433220908608135 Product description 3602 2023-10-08 14:03:01.089303 2023-09-23 Closed Customer 3602 578333.2379509430 +3579 t 40 191387 40.37312 0.08670913470957942 Product description 3579 2023-04-22 14:03:01.089303 2024-11-30 Closed Customer 3579 381547.3393197060 +3694 t 3 182725 25.909147 0.7617269280769179 Product description 3694 2023-03-28 14:03:01.089303 2025-10-18 Closed Customer 3694 483897.3016787840 +3604 f 95 938097 0.9005112 0.2660048588691346 Product description 3604 2022-01-25 14:03:01.089303 2023-08-04 Closed Customer 3604 505656.0672254950 +3580 f 12 382865 95.48563 0.013843121385853863 Product description 3580 2022-08-16 14:03:01.089303 2023-11-29 Processing Customer 3580 283624.4755006770 +3704 f 68 384833 95.55444 0.15403422805250955 Product description 3704 2023-10-08 14:03:01.089303 2023-03-29 Processing Customer 3704 525973.4929641520 +3606 t 72 675599 10.824424 0.6041806618663976 Product description 3606 2023-03-06 14:03:01.089303 2024-05-06 Processing Customer 3606 440555.2311186370 +3584 t 96 696641 25.568106 0.396942685239452 Product description 3584 2021-12-25 14:03:01.089303 2024-07-18 Processing Customer 3584 521953.2399828740 +3706 f 16 289789 31.776035 0.5715453870628764 Product description 3706 2021-08-09 14:03:01.089303 2024-04-04 Processing Customer 3706 5998.0330717231 +3610 f 10 442746 64.28564 0.016100362827540238 Product description 3610 2022-05-31 14:03:01.089303 2024-11-15 Closed Customer 3610 868184.0896175500 +3586 t 87 879763 37.936424 0.18487278068543134 Product description 3586 2022-01-13 14:03:01.089303 2025-05-04 Closed Customer 3586 540015.8453780970 +3713 f 100 892751 7.7059336 0.8286923380852045 Product description 3713 2022-11-15 14:03:01.089303 2024-02-20 Processing Customer 3713 869082.1814143950 +3611 f 7 886361 20.010372 0.8284292682295877 Product description 3611 2023-04-09 14:03:01.089303 2023-07-03 Cancelled Customer 3611 246079.9417228580 +3587 f 1 752849 93.62639 0.02171503824637 Product description 3587 2021-10-12 14:03:01.089303 2024-07-25 Processing Customer 3587 929029.3760034660 +3714 t 41 225971 59.800934 0.03556537919605063 Product description 3714 2023-12-27 14:03:01.089303 2023-02-14 Processing Customer 3714 559340.7545041240 +3615 t 31 453856 6.6522174 0.418141491853774 Product description 3615 2022-03-06 14:03:01.089303 2024-08-13 Closed Customer 3615 440350.7870749870 +3591 f 83 301817 90.35469 0.25305520291077954 Product description 3591 2024-04-23 14:03:01.089303 2023-02-05 Closed Customer 3591 467450.5780070780 +3715 f 7 849440 28.140583 0.8259513022986908 Product description 3715 2022-11-04 14:03:01.089303 2023-09-30 Processing Customer 3715 812007.6626158370 +3618 f 93 441169 66.46211 0.7760242397632382 Product description 3618 2021-11-29 14:03:01.089303 2025-08-30 Processing Customer 3618 187738.7927971660 +3593 t 43 907693 54.87425 0.6078218978071277 Product description 3593 2022-01-09 14:03:01.089303 2025-09-27 Closed Customer 3593 34543.4700641896 +3721 f 16 353133 5.516521 0.41086437165679257 Product description 3721 2023-11-09 14:03:01.089303 2023-07-30 Closed Customer 3721 386365.8644710770 +3619 f 10 781653 31.289074 0.8874132451952903 Product description 3619 2023-10-09 14:03:01.089303 2023-06-21 Processing Customer 3619 282372.1482643830 +3595 f 96 103114 84.002 0.8518079981009308 Product description 3595 2022-01-18 14:03:01.089303 2025-04-22 Closed Customer 3595 493970.0582959040 +3722 t 47 216789 0.51996416 0.3150421715044729 Product description 3722 2023-09-22 14:03:01.089303 2025-02-10 Closed Customer 3722 662441.8978370520 +3622 t 22 376554 2.2463624 0.9905264836362804 Product description 3622 2024-03-10 14:03:01.089303 2023-02-09 Closed Customer 3622 916539.6750456730 +3609 f 89 440288 61.093956 0.7155180799931173 Product description 3609 2021-11-18 14:03:01.089303 2024-01-31 Processing Customer 3609 901691.4016525100 +3723 f 59 175077 88.6121 0.2429418821038567 Product description 3723 2022-08-07 14:03:01.089303 2025-04-15 Closed Customer 3723 781265.6994759130 +3624 t 59 313033 63.049515 0.05751047211263938 Product description 3624 2022-12-19 14:03:01.089303 2024-02-01 Closed Customer 3624 427232.6810437730 +3612 t 94 34196 89.68053 0.6830531745761377 Product description 3612 2024-03-03 14:03:01.089303 2023-12-15 Processing Customer 3612 814105.7909532950 +3724 f 38 789472 62.593605 0.9511076033832495 Product description 3724 2024-06-23 14:03:01.089303 2024-09-25 Closed Customer 3724 268456.5577361400 +3626 f 40 790772 26.322254 0.5952135522210185 Product description 3626 2023-07-17 14:03:01.089303 2024-10-24 Closed Customer 3626 522308.7365335640 +3614 t 89 769852 1.5517721 0.6526120121081647 Product description 3614 2023-06-05 14:03:01.089303 2025-02-27 Closed Customer 3614 263598.8431858000 +3728 t 27 461136 20.966957 0.4421578134449007 Product description 3728 2024-02-05 14:03:01.089303 2025-06-19 Closed Customer 3728 251425.9579604250 +3628 f 84 396337 71.949234 0.8175929116706016 Product description 3628 2021-08-10 14:03:01.089303 2025-05-10 Closed Customer 3628 485300.1632614530 +3616 f 1 604316 50.29285 0.7987850822202986 Product description 3616 2023-01-14 14:03:01.089303 2025-09-01 Closed Customer 3616 725580.4592710470 +3732 t 74 230450 60.328148 0.3940119009397449 Product description 3732 2023-07-16 14:03:01.089303 2025-03-13 Closed Customer 3732 839789.2694725860 +3634 f 35 123670 22.240585 0.42613559546209245 Product description 3634 2024-01-07 14:03:01.089303 2024-01-09 Processing Customer 3634 833451.9594971290 +3617 f 37 944931 59.391068 0.08767795026533065 Product description 3617 2022-11-07 14:03:01.089303 2025-12-18 Processing Customer 3617 720572.0741884360 +3735 t 7 615760 70.086655 0.23850151105819606 Product description 3735 2023-06-01 14:03:01.089303 2023-06-23 Processing Customer 3735 243125.1781339120 +3637 t 80 428838 76.480675 0.8267152651911971 Product description 3637 2023-01-19 14:03:01.089303 2024-01-13 Processing Customer 3637 66689.8174666351 +3620 f 21 787401 95.26065 0.15300813880724462 Product description 3620 2022-12-16 14:03:01.089303 2025-12-01 Processing Customer 3620 245430.9839572100 +3737 t 87 857486 21.471663 0.39801538566003103 Product description 3737 2021-11-15 14:03:01.089303 2024-06-08 Closed Customer 3737 810360.1400461110 +3638 f 84 544439 27.290586 0.5250014576258977 Product description 3638 2023-08-16 14:03:01.089303 2024-01-12 Processing Customer 3638 661619.3013207300 +3627 f 3 238233 53.20636 0.7067894969219424 Product description 3627 2023-04-18 14:03:01.089303 2024-10-13 Processing Customer 3627 517685.2022958620 +3738 t 28 204936 36.146923 0.9802650917361788 Product description 3738 2023-08-21 14:03:01.089303 2024-03-27 Closed Customer 3738 405697.5252094510 +3640 t 25 78444 16.399889 0.5843206308095148 Product description 3640 2022-11-03 14:03:01.089303 2024-07-14 Cancelled Customer 3640 437230.3952268200 +3629 t 29 246016 72.3912 0.011959044647376516 Product description 3629 2022-06-03 14:03:01.089303 2023-06-22 Closed Customer 3629 5069.3538856628 +3744 f 34 390991 80.63343 0.4261774413851356 Product description 3744 2024-03-25 14:03:01.089303 2025-03-28 Closed Customer 3744 95711.8027039563 +3643 t 6 626234 30.04376 0.7159094962251338 Product description 3643 2022-11-01 14:03:01.089303 2025-11-18 Closed Customer 3643 150914.4753882690 +3631 t 84 119049 54.08222 0.2240802521893812 Product description 3631 2022-08-19 14:03:01.089303 2024-06-02 Closed Customer 3631 561828.4038938660 +3745 f 25 976548 44.65002 0.5980028516781104 Product description 3745 2024-02-14 14:03:01.089303 2023-11-17 Processing Customer 3745 510167.8850109050 +3644 f 22 170402 91.02623 0.9241581863742745 Product description 3644 2022-12-24 14:03:01.089303 2024-09-08 Processing Customer 3644 218823.5970527900 +3632 t 21 517731 27.511646 0.9878086168565332 Product description 3632 2023-04-28 14:03:01.089303 2023-05-07 Closed Customer 3632 175402.9881767460 +3752 t 73 184507 55.725124 0.5808807936744955 Product description 3752 2022-05-23 14:03:01.089303 2024-08-19 Closed Customer 3752 625788.1876037280 +3651 t 21 356025 90.074715 0.6163484421347754 Product description 3651 2022-02-16 14:03:01.089303 2023-03-23 Closed Customer 3651 659804.0022909760 +3633 f 86 997943 51.872944 0.09190267321267243 Product description 3633 2022-04-09 14:03:01.089303 2025-10-07 Closed Customer 3633 938221.4663907260 +3753 f 24 349193 39.918728 0.37269777594701026 Product description 3753 2022-11-03 14:03:01.089303 2023-04-18 Closed Customer 3753 945760.3812754950 +3652 f 42 430650 30.200638 0.4450320807691561 Product description 3652 2022-11-10 14:03:01.089303 2025-12-29 Closed Customer 3652 774838.9727602360 +3635 f 68 605757 23.04227 0.8021981951056105 Product description 3635 2021-08-27 14:03:01.089303 2025-01-27 Processing Customer 3635 921385.4429787070 +3755 t 63 804134 25.812614 0.08028893147383087 Product description 3755 2022-06-16 14:03:01.089303 2025-01-31 Closed Customer 3755 214547.0824208890 +3656 t 30 269465 55.339725 0.793084969707774 Product description 3656 2023-12-29 14:03:01.089303 2024-04-01 Closed Customer 3656 617873.1705579350 +3641 t 70 216018 58.221554 0.0870485071746856 Product description 3641 2023-01-02 14:03:01.089303 2023-01-03 Closed Customer 3641 296126.6809656240 +3756 f 94 482746 58.719254 0.38042790642516167 Product description 3756 2022-01-08 14:03:01.089303 2023-08-09 Closed Customer 3756 390857.2457443460 +3659 f 29 716747 94.8141 0.975326028032601 Product description 3659 2022-10-25 14:03:01.089303 2023-06-15 Closed Customer 3659 163771.0047022840 +3645 f 56 577603 36.013367 0.26698134829734244 Product description 3645 2021-09-29 14:03:01.089303 2024-04-21 Closed Customer 3645 64830.7091810416 +3759 f 21 437579 68.40072 0.7617730957242799 Product description 3759 2023-11-10 14:03:01.089303 2023-10-28 Closed Customer 3759 590097.1357481920 +3662 f 94 623760 9.072507 0.4816959160094392 Product description 3662 2023-06-03 14:03:01.089303 2023-01-15 Closed Customer 3662 573347.5786753170 +3653 f 22 440774 91.539345 0.0842025680207712 Product description 3653 2023-12-18 14:03:01.089303 2023-10-05 Closed Customer 3653 128207.8116386710 +3762 f 17 427108 18.704975 0.1672561419528833 Product description 3762 2021-12-24 14:03:01.089303 2025-01-13 Processing Customer 3762 259764.7858072380 +3666 t 44 426876 30.989357 0.2321913859605651 Product description 3666 2023-07-15 14:03:01.089303 2023-06-01 Processing Customer 3666 248016.1894489330 +3655 f 89 641775 50.272453 0.5945149087357962 Product description 3655 2021-08-07 14:03:01.089303 2024-06-09 Closed Customer 3655 695195.4715583820 +3763 t 69 810671 46.81066 0.5724140156531519 Product description 3763 2023-04-10 14:03:01.089303 2025-11-06 Closed Customer 3763 69744.0784487888 +3675 f 64 975330 15.098704 0.7347030663280343 Product description 3675 2021-08-18 14:03:01.089303 2024-03-17 Closed Customer 3675 937966.6073422680 +3658 f 26 417816 31.222603 0.22844020732192405 Product description 3658 2023-05-20 14:03:01.089303 2025-02-26 Closed Customer 3658 344435.2661660550 +3764 f 36 919529 87.658264 0.19790850551689942 Product description 3764 2021-09-10 14:03:01.089303 2023-07-13 Closed Customer 3764 844472.3265478760 +3677 t 47 273073 39.610138 0.8824336047209336 Product description 3677 2024-01-29 14:03:01.089303 2025-05-14 Closed Customer 3677 253611.6784605160 +3660 t 24 736391 32.26724 0.8010007395045236 Product description 3660 2024-06-06 14:03:01.089303 2025-12-23 Closed Customer 3660 126133.8280174190 +3766 t 49 710788 39.068676 0.58176063037142 Product description 3766 2023-01-23 14:03:01.089303 2025-12-17 Processing Customer 3766 881531.4080954800 +3680 f 60 19711 22.296003 0.3840353866229371 Product description 3680 2023-04-25 14:03:01.089303 2023-08-09 Processing Customer 3680 869893.8322071470 +3661 t 16 475778 46.664818 0.05018664829808017 Product description 3661 2022-05-02 14:03:01.089303 2025-11-18 Closed Customer 3661 207014.5290783470 +3768 f 28 564930 10.291535 0.8585345815675325 Product description 3768 2022-08-25 14:03:01.089303 2025-12-27 Processing Customer 3768 448538.7650223240 +3688 t 52 59594 16.540106 0.18561564106866868 Product description 3688 2024-06-21 14:03:01.089303 2024-12-16 Closed Customer 3688 169206.0207976310 +3663 t 21 621284 94.37604 0.2540726644509519 Product description 3663 2024-05-21 14:03:01.089303 2023-05-25 Closed Customer 3663 82403.4121994295 +3769 t 77 82409 13.623924 0.29440245356909145 Product description 3769 2022-07-27 14:03:01.089303 2024-10-12 Closed Customer 3769 356200.4117554770 +3698 f 94 42815 9.392793 0.9776553395728449 Product description 3698 2023-10-10 14:03:01.089303 2023-10-31 Closed Customer 3698 221993.9580814630 +3665 t 76 182573 69.58864 0.946797471407919 Product description 3665 2023-05-12 14:03:01.089303 2025-11-29 Processing Customer 3665 855523.1996506160 +3771 f 50 990431 77.32634 0.044061264288082214 Product description 3771 2023-02-18 14:03:01.089303 2023-09-02 Closed Customer 3771 11005.0769958185 +3709 t 60 976721 35.892006 0.7473219170756131 Product description 3709 2024-03-13 14:03:01.089303 2025-06-15 Processing Customer 3709 355789.9181001010 +3667 f 32 466154 32.904358 0.02852822088748752 Product description 3667 2022-10-14 14:03:01.089303 2023-11-28 Processing Customer 3667 314220.9361772820 +3778 t 55 17753 55.836227 0.47399808504685836 Product description 3778 2023-09-11 14:03:01.089303 2023-06-02 Processing Customer 3778 130231.0051633060 +3710 f 89 545767 51.330593 0.521520558409204 Product description 3710 2024-07-03 14:03:01.089303 2023-05-11 Cancelled Customer 3710 554685.9837555580 +3668 t 87 574045 55.890858 0.706083022577559 Product description 3668 2022-06-08 14:03:01.089303 2023-08-14 Closed Customer 3668 409914.4202200440 +3780 t 78 170375 83.43976 0.9690837274151463 Product description 3780 2023-09-08 14:03:01.089303 2023-07-01 Processing Customer 3780 770130.0726620170 +3711 f 97 395014 53.73303 0.5178538799979648 Product description 3711 2024-01-03 14:03:01.089303 2024-11-18 Closed Customer 3711 264542.4841814080 +3669 t 87 824110 22.250122 0.6884238953639468 Product description 3669 2022-04-14 14:03:01.089303 2025-04-25 Closed Customer 3669 987124.1848784140 +3781 f 17 941228 55.66428 0.04373870705094873 Product description 3781 2022-05-11 14:03:01.089303 2024-04-05 Processing Customer 3781 491641.2542638930 +3716 f 59 522435 57.998962 0.44049258094798915 Product description 3716 2022-04-29 14:03:01.089303 2023-10-07 Cancelled Customer 3716 639423.4890034480 +3670 f 12 719212 72.14839 0.14309942358779892 Product description 3670 2023-07-22 14:03:01.089303 2023-12-20 Processing Customer 3670 232538.8955498620 +3783 f 96 230394 57.25036 0.9807371905152777 Product description 3783 2022-07-29 14:03:01.089303 2023-07-14 Processing Customer 3783 963726.2205737930 +3726 t 19 814020 11.319324 0.06966171583423986 Product description 3726 2023-03-25 14:03:01.089303 2024-10-15 Cancelled Customer 3726 875070.7398410460 +3672 t 2 978240 34.09821 0.004411835141318932 Product description 3672 2024-01-12 14:03:01.089303 2023-11-10 Closed Customer 3672 463116.7626640610 +3784 t 0 334208 81.0492 0.08147628838786147 Product description 3784 2023-12-12 14:03:01.089303 2023-03-03 Closed Customer 3784 86027.4307035915 +3727 f 37 841196 31.5442 0.1277296209401939 Product description 3727 2023-07-03 14:03:01.089303 2025-12-15 Closed Customer 3727 498521.3724828590 +3674 f 89 425509 90.31748 0.4399042608680759 Product description 3674 2023-03-10 14:03:01.089303 2024-12-13 Closed Customer 3674 988736.9043779270 +3790 t 26 370376 67.67611 0.07353617796126599 Product description 3790 2022-06-10 14:03:01.089303 2025-06-04 Processing Customer 3790 714502.7606260510 +3739 f 71 993963 66.926994 0.28055404221207425 Product description 3739 2021-11-17 14:03:01.089303 2023-09-21 Closed Customer 3739 87825.8975304043 +3678 t 7 957347 76.63941 0.36504725480350686 Product description 3678 2024-06-25 14:03:01.089303 2023-08-31 Closed Customer 3678 267296.7277001170 +3791 f 48 498824 84.396835 0.3647007175866861 Product description 3791 2023-05-12 14:03:01.089303 2024-09-05 Closed Customer 3791 292050.8485988730 +3741 f 27 956237 64.43321 0.43606513921792356 Product description 3741 2021-10-16 14:03:01.089303 2023-07-16 Cancelled Customer 3741 835633.9204863230 +3683 t 13 326881 6.6800528 0.8493899764550719 Product description 3683 2023-06-16 14:03:01.089303 2025-05-13 Processing Customer 3683 939363.5023839510 +3792 t 71 11579 40.65815 0.08885610772046704 Product description 3792 2022-10-04 14:03:01.089303 2024-11-15 Closed Customer 3792 430299.9199485700 +3742 f 63 743785 92.34763 0.6180602953126915 Product description 3742 2023-12-03 14:03:01.089303 2023-05-23 Closed Customer 3742 659165.1857380180 +3684 f 29 997737 48.58168 0.7508154412815813 Product description 3684 2023-08-24 14:03:01.089303 2025-11-30 Closed Customer 3684 682870.9638663390 +3795 f 97 976228 49.14662 0.17812226044897272 Product description 3795 2022-06-28 14:03:01.089303 2023-05-06 Processing Customer 3795 724980.3483205820 +3743 f 20 930397 30.545132 0.41148489333819427 Product description 3743 2022-02-17 14:03:01.089303 2025-08-09 Processing Customer 3743 418709.0301320140 +3687 f 17 719405 44.018867 0.18255154566492138 Product description 3687 2022-01-25 14:03:01.089303 2024-02-25 Processing Customer 3687 588967.3240613400 +3798 f 28 240775 21.397167 0.38279176996800146 Product description 3798 2021-09-15 14:03:01.089303 2025-07-17 Closed Customer 3798 851241.1424907680 +3747 f 76 985188 79.29753 0.8280887537997508 Product description 3747 2022-03-01 14:03:01.089303 2023-03-08 Closed Customer 3747 771714.9510771440 +3689 t 54 45865 25.059456 0.9389169639342256 Product description 3689 2022-08-30 14:03:01.089303 2024-03-19 Processing Customer 3689 111629.0454681670 +3804 t 93 254723 59.069687 0.2148446496796339 Product description 3804 2022-04-30 14:03:01.089303 2023-04-17 Processing Customer 3804 976362.9465961370 +3748 f 92 792573 11.9076395 0.11937234788913642 Product description 3748 2023-06-23 14:03:01.089303 2023-07-25 Closed Customer 3748 976118.5835117560 +3691 f 15 423798 2.169697 0.030531262600234754 Product description 3691 2021-10-20 14:03:01.089303 2025-11-01 Closed Customer 3691 702003.8218877960 +3806 f 24 165565 16.942453 0.05091012296927744 Product description 3806 2024-05-15 14:03:01.089303 2023-08-14 Processing Customer 3806 405085.1564102840 +3751 f 43 777436 54.94556 0.5321683100510235 Product description 3751 2022-10-06 14:03:01.089303 2024-01-05 Closed Customer 3751 695250.7944024400 +3695 t 21 669967 25.43735 0.5026359817284387 Product description 3695 2023-01-23 14:03:01.089303 2024-05-28 Closed Customer 3695 917413.7594392740 +3810 t 13 592828 20.62164 0.8741638274271253 Product description 3810 2023-09-18 14:03:01.089303 2024-05-25 Closed Customer 3810 930427.6734527370 +3761 t 29 564019 23.004515 0.55168093064621 Product description 3761 2024-05-01 14:03:01.089303 2025-08-07 Closed Customer 3761 277227.6578999640 +3696 t 86 850062 95.89818 0.2685514294666689 Product description 3696 2022-04-07 14:03:01.089303 2023-09-05 Processing Customer 3696 478810.2472533320 +3816 f 4 934089 68.3222 0.6703974081391877 Product description 3816 2023-04-14 14:03:01.089303 2023-09-24 Processing Customer 3816 660496.7456136880 +3765 t 20 940491 94.76217 0.05117342510120082 Product description 3765 2024-06-30 14:03:01.089303 2024-12-05 Closed Customer 3765 664512.2363482300 +3697 f 76 798802 8.499189 0.39675096949620325 Product description 3697 2022-02-13 14:03:01.089303 2025-02-13 Closed Customer 3697 293325.6755530390 +3819 t 3 986486 45.905003 0.2811869379771679 Product description 3819 2022-02-28 14:03:01.089303 2023-05-26 Processing Customer 3819 787061.7779016090 +3776 t 19 18108 68.31114 0.9987392114106193 Product description 3776 2022-01-05 14:03:01.089303 2023-12-27 Processing Customer 3776 460935.8012358560 +3699 t 52 833280 41.438736 0.7915595213085425 Product description 3699 2023-06-12 14:03:01.089303 2025-11-26 Closed Customer 3699 686109.9913249790 +3820 f 14 137106 60.581932 0.3508844301794696 Product description 3820 2021-10-01 14:03:01.089303 2024-01-09 Closed Customer 3820 283269.5754401340 +3777 t 39 838486 96.05465 0.2770297797542618 Product description 3777 2022-08-20 14:03:01.089303 2023-06-03 Closed Customer 3777 435347.2656702170 +3700 f 78 306697 39.724674 0.793406322205719 Product description 3700 2022-12-01 14:03:01.089303 2025-07-01 Processing Customer 3700 881406.5098974490 +3821 t 31 201057 94.655205 0.07514967004154016 Product description 3821 2023-02-11 14:03:01.089303 2025-04-20 Closed Customer 3821 381392.1182965140 +3779 t 53 233204 69.38431 0.7726451092722293 Product description 3779 2023-11-15 14:03:01.089303 2024-05-08 Closed Customer 3779 293018.2950078900 +3701 f 22 795967 6.5319796 0.08735903668900846 Product description 3701 2023-05-28 14:03:01.089303 2025-08-30 Closed Customer 3701 987180.8779045030 +3822 f 73 781174 52.345303 0.6445455242211082 Product description 3822 2023-06-27 14:03:01.089303 2023-12-01 Processing Customer 3822 156046.6600276310 +3782 f 69 624361 26.405457 0.5298788447138811 Product description 3782 2024-04-02 14:03:01.089303 2023-11-27 Cancelled Customer 3782 15298.3091195473 +3702 t 85 93805 33.46038 0.9927487026799398 Product description 3702 2022-03-09 14:03:01.089303 2024-12-18 Closed Customer 3702 564055.8230105380 +3824 t 21 118515 13.796489 0.7870565385619841 Product description 3824 2024-04-29 14:03:01.089303 2024-06-16 Processing Customer 3824 26040.4724891963 +3785 f 75 639645 34.40503 0.28302531343454973 Product description 3785 2023-08-06 14:03:01.089303 2025-12-08 Processing Customer 3785 932676.6756176250 +3703 t 64 294150 32.4881 0.5615968095375621 Product description 3703 2022-11-03 14:03:01.089303 2023-08-06 Closed Customer 3703 978773.4468685690 +3825 f 41 382493 27.127821 0.3517578024553032 Product description 3825 2021-09-10 14:03:01.089303 2025-02-16 Processing Customer 3825 886739.3628567050 +3786 t 62 435533 90.04667 0.0028116048400690374 Product description 3786 2021-11-27 14:03:01.089303 2024-01-18 Closed Customer 3786 425639.0264410080 +3705 t 59 899462 84.02724 0.8991702367205434 Product description 3705 2021-10-14 14:03:01.089303 2025-10-20 Processing Customer 3705 442768.1441222720 +3826 f 65 497377 14.727415 0.25874223720903444 Product description 3826 2023-02-07 14:03:01.089303 2025-04-26 Closed Customer 3826 59507.5197501664 +3789 t 69 316309 70.859856 0.29330694582910155 Product description 3789 2023-10-12 14:03:01.089303 2024-11-11 Processing Customer 3789 678523.7021859380 +3707 f 27 22606 31.330614 0.09276311036617813 Product description 3707 2021-10-24 14:03:01.089303 2024-05-30 Closed Customer 3707 270283.9984703150 +3827 f 11 318601 58.983475 0.3466543003244098 Product description 3827 2024-04-21 14:03:01.089303 2025-07-23 Closed Customer 3827 239214.5048275050 +3796 t 91 190088 85.95933 0.20281338890828948 Product description 3796 2023-05-18 14:03:01.089303 2024-10-05 Cancelled Customer 3796 207944.6836409820 +3708 f 18 268620 22.473846 0.7750432926521071 Product description 3708 2022-05-17 14:03:01.089303 2025-07-19 Closed Customer 3708 440878.2294038960 +3828 f 21 264684 5.359025 0.5534418472965967 Product description 3828 2023-11-24 14:03:01.089303 2024-11-07 Closed Customer 3828 599009.1734251410 +3797 t 11 441940 42.620876 0.6045261518810214 Product description 3797 2021-08-10 14:03:01.089303 2023-06-26 Processing Customer 3797 712270.3804365360 +3712 f 33 218397 93.64524 0.16999846881513747 Product description 3712 2023-12-16 14:03:01.089303 2024-07-10 Processing Customer 3712 731080.9981269520 +3830 t 92 929670 81.5717 0.4414091894634069 Product description 3830 2023-05-22 14:03:01.089303 2023-02-02 Processing Customer 3830 522096.5284940210 +3799 f 37 255754 5.528063 0.3682102583893787 Product description 3799 2022-12-18 14:03:01.089303 2023-06-02 Closed Customer 3799 630252.1510550960 +3717 t 44 453376 17.147654 0.8853551723891471 Product description 3717 2023-12-15 14:03:01.089303 2023-12-06 Closed Customer 3717 897441.1574870550 +3833 t 41 141055 86.37455 0.6343775191553647 Product description 3833 2022-10-07 14:03:01.089303 2023-10-12 Processing Customer 3833 845198.5929556930 +3801 t 81 147461 19.130388 0.6729276804994733 Product description 3801 2021-12-09 14:03:01.089303 2023-12-24 Closed Customer 3801 838964.3556570120 +3718 t 22 18368 52.141598 0.9107798665306177 Product description 3718 2024-04-07 14:03:01.089303 2024-05-03 Processing Customer 3718 70385.1808199794 +3836 t 5 975790 27.886562 0.7912818537328334 Product description 3836 2024-03-03 14:03:01.089303 2024-07-21 Closed Customer 3836 383538.0452529090 +3805 f 57 646369 88.752594 0.4457048790848539 Product description 3805 2023-03-15 14:03:01.089303 2023-07-07 Closed Customer 3805 311789.6969657680 +3719 f 24 363738 37.93918 0.6827571507478254 Product description 3719 2022-05-03 14:03:01.089303 2024-08-31 Processing Customer 3719 659346.6522826110 +3837 f 92 305070 21.102114 0.40775831061168333 Product description 3837 2023-04-18 14:03:01.089303 2024-04-21 Closed Customer 3837 236940.3887070940 +3807 t 48 724495 82.4143 0.6345372774980156 Product description 3807 2021-12-27 14:03:01.089303 2023-05-07 Closed Customer 3807 53895.6852149681 +3720 t 56 430828 97.46329 0.9813928421983888 Product description 3720 2021-12-31 14:03:01.089303 2024-11-13 Closed Customer 3720 627471.1563928110 +3838 t 29 627600 7.242015 0.02467089836577685 Product description 3838 2022-01-27 14:03:01.089303 2025-06-08 Closed Customer 3838 12992.7868644621 +3809 t 92 638726 46.523693 0.0914152436674236 Product description 3809 2022-09-20 14:03:01.089303 2023-12-14 Closed Customer 3809 243790.8862462520 +3725 t 80 227035 26.4474 0.3854574913745168 Product description 3725 2024-04-19 14:03:01.089303 2023-11-20 Closed Customer 3725 494093.7138028860 +3839 t 30 823417 64.24819 0.6581122366032304 Product description 3839 2022-12-07 14:03:01.089303 2024-08-12 Closed Customer 3839 14668.0655170535 +3813 f 1 423850 12.840584 0.6415694750162722 Product description 3813 2022-09-29 14:03:01.089303 2025-07-10 Closed Customer 3813 833275.2092623110 +3729 f 96 987815 53.34888 0.8655241816614705 Product description 3729 2023-04-15 14:03:01.089303 2024-08-07 Processing Customer 3729 455574.3143450530 +3840 f 68 844404 35.26954 0.8521656429643869 Product description 3840 2022-06-11 14:03:01.089303 2025-12-07 Closed Customer 3840 442450.3061696510 +3814 f 40 152839 86.092636 0.4668913216297135 Product description 3814 2022-11-13 14:03:01.089303 2023-03-18 Closed Customer 3814 855011.1042502730 +3730 t 74 320168 21.966866 0.030463903845067364 Product description 3730 2023-06-02 14:03:01.089303 2025-03-10 Processing Customer 3730 617777.6447711420 +3844 t 98 178310 56.54951 0.7683143166289028 Product description 3844 2022-01-11 14:03:01.089303 2023-12-31 Closed Customer 3844 419484.4435060040 +3815 f 19 509680 89.02791 0.5866588666485093 Product description 3815 2022-10-17 14:03:01.089303 2024-10-07 Processing Customer 3815 106492.2575899060 +3731 f 57 993680 81.30998 0.4134962979343726 Product description 3731 2023-03-28 14:03:01.089303 2024-08-10 Processing Customer 3731 938759.1716933730 +3847 f 49 628970 74.33396 0.38243289932552926 Product description 3847 2024-01-04 14:03:01.089303 2025-06-13 Closed Customer 3847 481957.0367596700 +3823 t 51 838714 60.38372 0.49653514569225976 Product description 3823 2024-06-15 14:03:01.089303 2024-05-15 Processing Customer 3823 630622.5035734560 +3733 t 88 902590 39.72321 0.2803939497014696 Product description 3733 2022-09-12 14:03:01.089303 2024-04-24 Processing Customer 3733 8837.1967884378 +3849 t 28 711274 56.746067 0.6884555651775628 Product description 3849 2024-05-11 14:03:01.089303 2025-01-13 Processing Customer 3849 71315.4599727765 +3829 f 98 335245 66.28126 0.8758833784455113 Product description 3829 2024-08-01 14:03:01.089303 2024-08-07 Processing Customer 3829 906856.8125779140 +3734 f 89 297960 95.57159 0.22789820109255743 Product description 3734 2023-05-16 14:03:01.089303 2025-09-12 Closed Customer 3734 635766.8125958720 +3851 t 81 547263 57.64718 0.3454674173505836 Product description 3851 2021-09-28 14:03:01.089303 2025-03-26 Closed Customer 3851 95873.8401533203 +3831 f 31 398985 2.8046625 0.08855329376624965 Product description 3831 2022-01-15 14:03:01.089303 2024-07-19 Closed Customer 3831 906828.4653039240 +3736 t 97 402974 50.858624 0.6900237179368176 Product description 3736 2023-11-27 14:03:01.089303 2024-08-26 Closed Customer 3736 220670.1372205980 +3852 f 25 548695 37.303196 0.37435451700881117 Product description 3852 2023-10-10 14:03:01.089303 2023-07-29 Closed Customer 3852 662983.2066389800 +3832 f 65 917294 76.65687 0.45754315813106317 Product description 3832 2024-02-14 14:03:01.089303 2023-03-12 Closed Customer 3832 372213.6801121680 +3740 t 80 243525 48.69731 0.2250631789630262 Product description 3740 2022-03-03 14:03:01.089303 2023-12-29 Processing Customer 3740 287767.5462200490 +3853 f 5 73202 6.2593365 0.31811685910103193 Product description 3853 2022-10-04 14:03:01.089303 2025-07-06 Processing Customer 3853 521151.2542425720 +3834 f 9 785397 52.984608 0.3736389662197972 Product description 3834 2021-12-14 14:03:01.089303 2025-12-08 Processing Customer 3834 954747.0456635740 +3746 t 67 554794 80.03138 0.6436622352147978 Product description 3746 2021-10-05 14:03:01.089303 2023-11-05 Cancelled Customer 3746 638738.6449363030 +3854 f 75 283452 40.722584 0.2887090766687237 Product description 3854 2024-02-01 14:03:01.089303 2025-01-21 Processing Customer 3854 248532.1046010930 +3841 t 88 800997 39.75381 0.1699315575238849 Product description 3841 2023-04-19 14:03:01.089303 2025-03-21 Processing Customer 3841 292697.3929081240 +3749 t 69 974313 50.067833 0.7024172103603554 Product description 3749 2021-12-09 14:03:01.089303 2023-08-26 Closed Customer 3749 41655.5469850408 +3857 f 57 724985 38.8956 0.36384309489937294 Product description 3857 2022-05-02 14:03:01.089303 2024-03-08 Closed Customer 3857 706510.6208780380 +3842 f 9 161540 60.08451 0.7252445993809822 Product description 3842 2022-06-12 14:03:01.089303 2024-02-09 Processing Customer 3842 507674.5549668760 +3750 f 56 833729 79.41115 0.8694387054415351 Product description 3750 2023-04-21 14:03:01.089303 2025-12-19 Closed Customer 3750 26288.4783469914 +3858 f 89 640858 5.350692 0.6794112924144997 Product description 3858 2023-07-09 14:03:01.089303 2023-04-22 Processing Customer 3858 254655.5776012230 +3843 f 11 71729 88.280396 0.8830969207046913 Product description 3843 2021-09-08 14:03:01.089303 2024-05-06 Closed Customer 3843 707893.0611624230 +3754 f 79 308008 84.84856 0.5464094779136595 Product description 3754 2021-10-18 14:03:01.089303 2025-02-25 Cancelled Customer 3754 233183.7786536290 +3865 t 38 765801 69.21008 0.06750256874403959 Product description 3865 2024-06-29 14:03:01.089303 2024-01-02 Cancelled Customer 3865 953764.6333473830 +3846 f 24 732511 20.28338 0.36759187540033267 Product description 3846 2021-12-03 14:03:01.089303 2024-02-23 Processing Customer 3846 152781.4863807540 +3757 f 41 147282 36.359123 0.03879902148925396 Product description 3757 2021-10-24 14:03:01.089303 2025-01-03 Closed Customer 3757 591695.9673836110 +3866 t 60 990031 66.63108 0.7615024117288733 Product description 3866 2023-09-01 14:03:01.089303 2025-12-02 Closed Customer 3866 251691.8102918740 +3850 t 64 221445 66.92722 0.13049919442312685 Product description 3850 2022-09-18 14:03:01.089303 2025-07-30 Processing Customer 3850 718391.9267118740 +3758 f 3 170641 45.81635 0.1381992987554881 Product description 3758 2023-01-15 14:03:01.089303 2025-09-28 Closed Customer 3758 716260.9940785850 +3868 t 17 106133 6.5795627 0.7143475490711602 Product description 3868 2024-01-25 14:03:01.089303 2023-01-26 Closed Customer 3868 40391.3959575348 +3856 f 6 811557 75.326355 0.24120200544113501 Product description 3856 2022-03-26 14:03:01.089303 2023-02-04 Closed Customer 3856 377590.0395569280 +3760 t 89 994813 86.89462 0.37716418101499016 Product description 3760 2023-11-28 14:03:01.089303 2025-01-05 Processing Customer 3760 120525.6186630910 +3872 t 85 666747 82.49916 0.21340361137572827 Product description 3872 2023-06-14 14:03:01.089303 2024-06-20 Processing Customer 3872 950045.1015228320 +3860 t 40 767855 21.254538 0.3910840601006562 Product description 3860 2021-11-12 14:03:01.089303 2024-05-05 Closed Customer 3860 205970.0314206910 +3767 t 69 616983 31.36731 0.030684069011478243 Product description 3767 2021-11-13 14:03:01.089303 2024-09-25 Processing Customer 3767 365351.0292173830 +3879 f 44 13967 88.54574 0.25661220135752316 Product description 3879 2024-02-10 14:03:01.089303 2025-03-09 Processing Customer 3879 480729.7959524630 +3861 t 37 915015 9.567692 0.5168480901679082 Product description 3861 2023-10-13 14:03:01.089303 2025-06-04 Processing Customer 3861 737337.0313272930 +3770 f 62 576570 42.52887 0.07372731147340517 Product description 3770 2022-01-03 14:03:01.089303 2025-06-10 Closed Customer 3770 572653.7130546880 +3881 f 31 17817 31.726076 0.6109142319600274 Product description 3881 2023-05-23 14:03:01.089303 2025-12-13 Processing Customer 3881 407470.1360244150 +3864 t 88 996293 77.14296 0.3408246610530661 Product description 3864 2021-08-07 14:03:01.089303 2025-08-21 Closed Customer 3864 14288.2408390648 +3772 t 13 810916 4.5889335 0.07866587485414556 Product description 3772 2021-08-10 14:03:01.089303 2025-05-17 Closed Customer 3772 823518.3865256950 +3883 f 48 550920 11.745133 0.6922051814615848 Product description 3883 2023-05-19 14:03:01.089303 2024-09-26 Closed Customer 3883 254255.8586201910 +3867 f 22 856534 94.00804 0.9041910111615827 Product description 3867 2024-06-04 14:03:01.089303 2023-05-30 Closed Customer 3867 373764.6148032570 +3773 t 63 89354 32.166946 0.22194817624313146 Product description 3773 2023-01-07 14:03:01.089303 2024-03-22 Processing Customer 3773 820634.3076942590 +3886 t 85 142237 98.177986 0.6210030022503226 Product description 3886 2021-11-10 14:03:01.089303 2025-07-08 Processing Customer 3886 149994.5393287730 +3870 f 27 530254 25.648361 0.9610373767300651 Product description 3870 2021-11-27 14:03:01.089303 2025-09-27 Closed Customer 3870 993150.9327796850 +3774 f 56 237215 41.91786 0.09203046746666388 Product description 3774 2022-10-06 14:03:01.089303 2025-09-07 Closed Customer 3774 569467.1703235810 +3889 t 51 283083 39.189987 0.3599586190239954 Product description 3889 2022-03-26 14:03:01.089303 2023-11-30 Processing Customer 3889 549890.1074845650 +3871 t 48 121627 42.976326 0.25834349170437676 Product description 3871 2021-11-12 14:03:01.089303 2025-05-02 Cancelled Customer 3871 438465.1324459520 +3775 f 45 444482 28.11371 0.8624801622814431 Product description 3775 2023-11-08 14:03:01.089303 2023-02-02 Processing Customer 3775 207809.9989303260 +3890 t 1 608721 30.473831 0.7095334617965143 Product description 3890 2024-04-20 14:03:01.089303 2024-02-03 Closed Customer 3890 966459.9167860790 +3873 f 24 795198 11.055624 0.8544166902843173 Product description 3873 2022-10-15 14:03:01.089303 2025-05-28 Processing Customer 3873 375293.4771998930 +3787 t 49 255597 33.838528 0.8250170458518014 Product description 3787 2024-06-19 14:03:01.089303 2024-06-22 Processing Customer 3787 441992.7086035960 +3893 t 5 535764 33.989277 0.5525442640860909 Product description 3893 2022-02-16 14:03:01.089303 2025-11-28 Closed Customer 3893 259792.8521006240 +3875 t 15 510390 63.18101 0.4822219710683271 Product description 3875 2024-02-16 14:03:01.089303 2023-07-11 Closed Customer 3875 931238.7204506050 +3788 t 44 271092 7.9652777 0.1685516078800049 Product description 3788 2022-05-04 14:03:01.089303 2023-04-14 Processing Customer 3788 930349.1605419620 +3900 t 82 575447 27.880957 0.10352053500179537 Product description 3900 2023-01-26 14:03:01.089303 2024-03-24 Processing Customer 3900 141558.0037890290 +3876 f 26 149454 58.92925 0.6081226883674802 Product description 3876 2021-10-15 14:03:01.089303 2024-02-06 Closed Customer 3876 793507.2138242600 +3793 t 17 477487 56.600266 0.030840740271663947 Product description 3793 2022-07-21 14:03:01.089303 2024-07-29 Processing Customer 3793 993361.1239098390 +3903 t 67 481937 85.535904 0.6401716927769989 Product description 3903 2022-04-28 14:03:01.089303 2023-10-16 Processing Customer 3903 193030.2964914790 +3880 t 41 461622 0.7234363 0.07455805504402235 Product description 3880 2024-01-26 14:03:01.089303 2023-07-09 Processing Customer 3880 437451.0645865930 +3794 t 81 714890 90.55955 0.5580125706223811 Product description 3794 2022-06-04 14:03:01.089303 2025-06-24 Closed Customer 3794 31568.3936390023 +3905 t 75 235726 48.873802 0.8273723987021704 Product description 3905 2022-01-11 14:03:01.089303 2024-02-24 Processing Customer 3905 75749.0168344930 +3882 f 43 898655 72.8056 0.5069289799136172 Product description 3882 2023-10-18 14:03:01.089303 2023-09-13 Closed Customer 3882 650837.8640112830 +3800 t 21 475523 21.438402 0.09300793018393705 Product description 3800 2024-04-07 14:03:01.089303 2025-07-22 Processing Customer 3800 885942.0428783730 +3907 t 22 826829 98.327965 0.09463787344099828 Product description 3907 2022-06-02 14:03:01.089303 2023-07-15 Processing Customer 3907 543437.3063157030 +3888 f 77 468201 77.677505 0.6130188405932984 Product description 3888 2021-12-23 14:03:01.089303 2023-07-15 Closed Customer 3888 232088.2160842890 +3802 t 28 962159 17.949648 0.20822735056100328 Product description 3802 2023-09-23 14:03:01.089303 2023-07-11 Processing Customer 3802 598508.1543242890 +3909 f 11 417084 74.89781 0.5437125166818966 Product description 3909 2022-10-11 14:03:01.089303 2023-07-26 Processing Customer 3909 198193.2345513120 +3891 f 86 281447 57.580322 0.7935887182003185 Product description 3891 2024-06-24 14:03:01.089303 2023-12-18 Closed Customer 3891 130112.5619156130 +3803 f 15 248906 25.088497 0.342464077537052 Product description 3803 2024-03-23 14:03:01.089303 2024-11-23 Closed Customer 3803 376333.7270470720 +3914 t 69 160107 88.259636 0.4181896200758608 Product description 3914 2023-09-09 14:03:01.089303 2024-07-13 Processing Customer 3914 442423.7238796070 +3892 t 50 672359 59.95359 0.3104141611703852 Product description 3892 2023-06-05 14:03:01.089303 2023-09-13 Processing Customer 3892 713535.2294082900 +3808 t 47 902818 17.29241 0.26225275770356404 Product description 3808 2023-03-14 14:03:01.089303 2025-06-24 Processing Customer 3808 736069.6436058550 +3918 t 45 536103 61.792625 0.9485608271020176 Product description 3918 2022-03-02 14:03:01.089303 2025-03-26 Closed Customer 3918 436557.7033018160 +3895 f 58 554009 52.636642 0.062133577218268954 Product description 3895 2022-11-08 14:03:01.089303 2023-12-31 Processing Customer 3895 555571.9341335430 +3811 f 81 140063 47.62888 0.9629609791870948 Product description 3811 2024-07-08 14:03:01.089303 2025-10-18 Processing Customer 3811 256800.5044667420 +3920 f 55 800363 40.82461 0.2407432541423553 Product description 3920 2021-12-29 14:03:01.089303 2025-12-11 Closed Customer 3920 919021.5656654250 +3896 t 95 935450 40.190487 0.16524935468487456 Product description 3896 2022-05-31 14:03:01.089303 2025-08-22 Closed Customer 3896 13548.3272235852 +3812 f 38 108477 42.042664 0.06265852525231708 Product description 3812 2022-02-19 14:03:01.089303 2023-10-08 Cancelled Customer 3812 989720.8429745060 +3927 f 35 617136 97.64791 0.39273024777424226 Product description 3927 2021-10-22 14:03:01.089303 2023-04-12 Closed Customer 3927 941767.8782243540 +3897 t 95 419515 29.57497 0.5705306730058126 Product description 3897 2022-12-17 14:03:01.089303 2025-06-08 Closed Customer 3897 80588.6634161403 +3817 t 12 273744 11.8971405 0.519741337591352 Product description 3817 2024-05-30 14:03:01.089303 2024-02-19 Closed Customer 3817 22964.0490186895 +3930 f 30 864603 17.480827 0.7731886876507978 Product description 3930 2022-02-10 14:03:01.089303 2025-05-22 Closed Customer 3930 652126.8396343130 +3906 f 70 847705 61.544018 0.7169857505887904 Product description 3906 2021-09-22 14:03:01.089303 2023-05-10 Closed Customer 3906 388258.7484490720 +3818 f 19 102451 60.824608 0.16870520730630645 Product description 3818 2023-01-04 14:03:01.089303 2024-09-12 Closed Customer 3818 836723.1368111450 +3932 t 100 771523 72.752205 0.16083522207374656 Product description 3932 2024-05-30 14:03:01.089303 2023-10-12 Closed Customer 3932 285248.0401251680 +3908 t 1 43900 8.233934 0.8688795751868028 Product description 3908 2022-04-02 14:03:01.089303 2025-02-14 Processing Customer 3908 652384.2891577840 +3835 f 21 326797 54.53505 0.49784176003191405 Product description 3835 2024-05-13 14:03:01.089303 2025-02-24 Closed Customer 3835 887877.0284971510 +3937 t 63 949155 40.370808 0.929920942432485 Product description 3937 2022-01-24 14:03:01.089303 2025-01-06 Processing Customer 3937 237753.6416822250 +3910 t 17 352642 15.443879 0.47041039713795385 Product description 3910 2023-06-01 14:03:01.089303 2025-08-15 Closed Customer 3910 530064.8563179740 +3845 f 26 262199 64.142746 0.527922081888196 Product description 3845 2023-03-03 14:03:01.089303 2024-09-29 Closed Customer 3845 199307.2484489320 +3951 f 41 847397 26.72245 0.38650827755205697 Product description 3951 2022-10-15 14:03:01.089303 2023-12-24 Cancelled Customer 3951 909869.5365816990 +3913 f 1 821809 78.70421 0.02049435080463269 Product description 3913 2023-06-13 14:03:01.089303 2023-03-21 Closed Customer 3913 683504.4623267130 +3848 f 31 26857 91.32658 0.41325823275003515 Product description 3848 2022-06-27 14:03:01.089303 2024-08-10 Closed Customer 3848 225562.7951699570 +3953 f 33 400509 31.424911 0.5193158466334182 Product description 3953 2023-04-12 14:03:01.089303 2023-08-16 Processing Customer 3953 401095.6612359240 +3919 t 40 77680 89.51044 0.41933205649182526 Product description 3919 2022-04-24 14:03:01.089303 2023-01-31 Closed Customer 3919 149119.9439604250 +3855 t 79 933258 32.48163 0.4220760871641467 Product description 3855 2023-01-25 14:03:01.089303 2023-05-28 Processing Customer 3855 827170.8772631140 +3955 f 43 931597 98.1826 0.24654446059347634 Product description 3955 2024-03-10 14:03:01.089303 2024-04-10 Processing Customer 3955 841631.1846070850 +3922 t 73 659411 97.37576 0.12061807888323273 Product description 3922 2022-07-05 14:03:01.089303 2024-08-14 Processing Customer 3922 868865.1491155670 +3859 t 62 476212 35.82255 0.8116465704182154 Product description 3859 2022-08-13 14:03:01.089303 2024-12-17 Closed Customer 3859 196711.6762884660 +3957 t 94 698348 69.44989 0.902277742206806 Product description 3957 2024-01-05 14:03:01.089303 2023-05-02 Closed Customer 3957 939549.5955342700 +3925 f 8 807964 72.34879 0.8395093686070254 Product description 3925 2022-01-18 14:03:01.089303 2023-11-03 Closed Customer 3925 731644.4457754270 +3862 f 93 144179 74.43006 0.23513981392699534 Product description 3862 2023-11-24 14:03:01.089303 2024-09-03 Closed Customer 3862 703645.2101724960 +3960 f 78 631465 49.029285 0.9081046016208276 Product description 3960 2023-03-24 14:03:01.089303 2023-01-17 Processing Customer 3960 407387.5633087200 +3928 f 21 496401 98.27585 0.5748147900149618 Product description 3928 2023-09-11 14:03:01.089303 2024-05-05 Closed Customer 3928 719830.7456074280 +3863 t 17 632525 24.730503 0.007752799484574524 Product description 3863 2024-04-25 14:03:01.089303 2025-09-12 Processing Customer 3863 956437.6861546220 +3962 f 84 610087 69.93998 0.6898017291279643 Product description 3962 2022-05-13 14:03:01.089303 2024-01-21 Processing Customer 3962 787854.2849668370 +3929 f 9 819337 48.514053 0.7997736339520003 Product description 3929 2023-03-29 14:03:01.089303 2025-07-29 Closed Customer 3929 842240.7562675960 +3869 f 61 332672 44.476353 0.33922265606061686 Product description 3869 2024-06-22 14:03:01.089303 2025-03-10 Closed Customer 3869 754836.8959768370 +3963 t 58 335718 2.7783244 0.9036908428751715 Product description 3963 2022-04-12 14:03:01.089303 2024-08-18 Processing Customer 3963 143996.9285487770 +3931 t 54 966125 40.037178 0.34350288317570943 Product description 3931 2023-02-15 14:03:01.089303 2023-12-03 Processing Customer 3931 733850.0376767350 +3874 t 24 621163 31.517885 0.5560099941213785 Product description 3874 2022-08-08 14:03:01.089303 2024-01-26 Closed Customer 3874 599806.0023795300 +3966 f 97 385247 37.503788 0.2443165392530915 Product description 3966 2022-10-15 14:03:01.089303 2023-05-28 Processing Customer 3966 341846.5153512890 +3933 f 10 437179 68.96395 0.19877195242381163 Product description 3933 2022-04-22 14:03:01.089303 2024-01-10 Closed Customer 3933 641149.3865885770 +3877 f 46 50202 30.624794 0.6080963496177425 Product description 3877 2021-12-02 14:03:01.089303 2023-10-18 Closed Customer 3877 442004.6546897110 +3970 f 11 629578 75.58582 0.503275129697748 Product description 3970 2024-02-26 14:03:01.089303 2025-11-29 Cancelled Customer 3970 729362.0277000980 +3934 t 54 61737 70.834 0.5759863143991666 Product description 3934 2024-05-05 14:03:01.089303 2024-03-03 Closed Customer 3934 286102.7286745110 +3878 f 47 994425 9.318368 0.9419537062716579 Product description 3878 2021-11-19 14:03:01.089303 2024-08-26 Processing Customer 3878 531152.1040005900 +3975 t 54 856910 1.6030687 0.5394155944865169 Product description 3975 2023-08-30 14:03:01.089303 2025-12-04 Processing Customer 3975 265721.1414135500 +3935 f 1 977110 65.73962 0.5657905439827999 Product description 3935 2022-07-27 14:03:01.089303 2024-10-17 Closed Customer 3935 17964.5652436697 +3884 f 71 896799 84.326385 0.9673146196448563 Product description 3884 2022-01-10 14:03:01.089303 2024-05-06 Closed Customer 3884 889643.2563181240 +3976 t 8 872785 32.138317 0.4965235944213582 Product description 3976 2022-01-06 14:03:01.089303 2025-07-28 Closed Customer 3976 518819.8964563000 +3936 f 75 961903 4.6518674 0.31018180140511475 Product description 3936 2023-11-23 14:03:01.089303 2025-12-10 Closed Customer 3936 690468.1746836620 +3885 t 4 38429 79.785 0.46326154132284714 Product description 3885 2021-11-24 14:03:01.089303 2025-11-18 Closed Customer 3885 600424.9647219600 +3982 t 13 522898 81.35701 0.413732287663624 Product description 3982 2022-03-12 14:03:01.089303 2024-04-19 Closed Customer 3982 951291.4277897270 +3939 t 85 496054 1.9623485 0.06401202793688299 Product description 3939 2021-09-15 14:03:01.089303 2024-09-09 Processing Customer 3939 374358.4258012300 +3887 f 27 620995 61.149475 0.9298216739051703 Product description 3887 2023-03-15 14:03:01.089303 2023-08-25 Closed Customer 3887 146697.7072999360 +3983 f 81 474028 84.09021 0.582648216637093 Product description 3983 2021-11-04 14:03:01.089303 2023-09-25 Closed Customer 3983 473352.9776351090 +3941 t 97 499506 42.48994 0.0946335072707214 Product description 3941 2024-02-09 14:03:01.089303 2024-11-12 Closed Customer 3941 818614.3257727030 +3894 t 34 580738 9.601674 0.34867876028208045 Product description 3894 2023-05-10 14:03:01.089303 2025-11-14 Closed Customer 3894 884122.7846310100 +3984 f 47 912343 50.7646 0.30080030002014624 Product description 3984 2023-12-14 14:03:01.089303 2025-09-15 Closed Customer 3984 922327.6396887880 +3942 t 82 710719 43.58501 0.7527283150045179 Product description 3942 2023-04-04 14:03:01.089303 2025-11-27 Closed Customer 3942 234103.4334755360 +3898 t 35 382222 54.35808 0.5979457780120079 Product description 3898 2024-02-22 14:03:01.089303 2023-10-25 Processing Customer 3898 817921.6998511830 +3986 f 90 395733 4.6933994 0.5028521055725825 Product description 3986 2023-03-03 14:03:01.089303 2023-10-17 Closed Customer 3986 715443.9193740460 +3952 f 4 311591 60.771603 0.9670777172592224 Product description 3952 2021-09-13 14:03:01.089303 2023-06-27 Closed Customer 3952 841438.9842250680 +3899 t 61 146787 89.50902 0.6156560288297293 Product description 3899 2021-12-31 14:03:01.089303 2024-02-28 Processing Customer 3899 282308.3533625730 +3992 t 60 513668 76.48539 0.3253435122860999 Product description 3992 2023-08-25 14:03:01.089303 2025-05-30 Closed Customer 3992 188967.3189596980 +3956 t 58 276154 93.33671 0.05401163176387058 Product description 3956 2023-08-11 14:03:01.089303 2023-11-28 Processing Customer 3956 524015.4966433260 +3901 t 90 532489 13.286231 0.47920933325250203 Product description 3901 2024-04-24 14:03:01.089303 2025-03-23 Processing Customer 3901 348540.7722976250 +3994 t 7 587935 13.2465515 0.05358173291025636 Product description 3994 2024-06-21 14:03:01.089303 2025-01-28 Cancelled Customer 3994 312374.2418653530 +3958 f 62 372320 9.660411 0.4966204684770119 Product description 3958 2021-12-31 14:03:01.089303 2024-04-03 Closed Customer 3958 235422.6696762720 +3902 f 27 607028 37.177387 0.41995539578597274 Product description 3902 2024-01-30 14:03:01.089303 2025-02-14 Closed Customer 3902 188918.8293331690 +3997 f 92 292988 75.13996 0.9451759067665009 Product description 3997 2022-04-01 14:03:01.089303 2025-03-29 Closed Customer 3997 601360.0196854620 +3961 f 25 938802 2.1545517 0.8348041133555029 Product description 3961 2022-04-06 14:03:01.089303 2025-02-02 Closed Customer 3961 199873.1011998810 +3904 f 5 763475 73.879486 0.6302760690553448 Product description 3904 2023-05-06 14:03:01.089303 2024-08-06 Processing Customer 3904 613121.2595683730 +4000 f 3 580577 10.131296 0.47083078035274184 Product description 4000 2022-04-23 14:03:01.089303 2025-06-04 Closed Customer 4000 883553.3955977400 +3965 t 72 219838 88.507164 0.9404974946180502 Product description 3965 2021-09-02 14:03:01.089303 2025-05-30 Closed Customer 3965 112242.9389524950 +3911 t 51 271690 15.633212 0.5201590808396439 Product description 3911 2021-10-23 14:03:01.089303 2023-12-26 Cancelled Customer 3911 180053.3702279770 +4005 f 19 921175 60.23848 0.8514501152607821 Product description 4005 2023-05-01 14:03:01.089303 2025-07-01 Closed Customer 4005 49847.8535645610 +3972 t 18 43576 32.877045 0.5661104298469013 Product description 3972 2024-08-01 14:03:01.089303 2024-12-14 Cancelled Customer 3972 346525.8164450940 +3912 t 69 910355 80.81586 0.27618879094347193 Product description 3912 2022-10-24 14:03:01.089303 2025-08-05 Closed Customer 3912 540653.5527318010 +4008 t 51 489108 22.777138 0.05810828963446113 Product description 4008 2021-11-06 14:03:01.089303 2024-06-01 Closed Customer 4008 599266.2422085680 +3973 t 87 895711 78.274155 0.8071634331298689 Product description 3973 2022-07-14 14:03:01.089303 2023-03-01 Closed Customer 3973 23530.0686088848 +3915 f 27 159301 36.376213 0.9409561371530231 Product description 3915 2023-04-25 14:03:01.089303 2023-07-18 Processing Customer 3915 218247.6668366990 +4010 f 66 158844 20.014534 0.20258664502184587 Product description 4010 2024-04-22 14:03:01.089303 2025-03-06 Closed Customer 4010 829160.3570972260 +3974 t 99 525107 46.83487 0.8541176233909376 Product description 3974 2022-09-25 14:03:01.089303 2025-07-06 Processing Customer 3974 928386.0230623590 +3916 t 19 700174 94.68552 0.8765681814736084 Product description 3916 2022-12-02 14:03:01.089303 2023-11-10 Closed Customer 3916 977916.0146437430 +4011 f 51 377054 76.28333 0.5903512856094437 Product description 4011 2021-10-31 14:03:01.089303 2023-07-24 Closed Customer 4011 542419.2665090820 +3977 t 3 964641 78.54519 0.6140417933887896 Product description 3977 2023-08-17 14:03:01.089303 2023-06-02 Closed Customer 3977 140299.2161550070 +3917 t 18 864242 83.6592 0.7419887235241873 Product description 3917 2024-02-09 14:03:01.089303 2024-09-07 Processing Customer 3917 48290.5706514423 +4012 f 90 554269 76.37765 0.43989037119818164 Product description 4012 2022-04-06 14:03:01.089303 2024-03-22 Closed Customer 4012 73501.3782504588 +3978 f 32 991893 34.527275 0.4387942473025568 Product description 3978 2024-05-22 14:03:01.089303 2025-02-27 Closed Customer 3978 924804.0715973360 +3921 t 7 263284 60.105568 0.05602515278760478 Product description 3921 2023-03-02 14:03:01.089303 2024-06-22 Processing Customer 3921 414593.5943657160 +4013 t 96 231988 6.5608582 0.5373716052228446 Product description 4013 2023-05-03 14:03:01.089303 2023-08-07 Processing Customer 4013 392889.8530977950 +3980 t 45 388677 46.05253 0.2787711163274871 Product description 3980 2024-06-28 14:03:01.089303 2025-05-18 Cancelled Customer 3980 260367.7654614070 +3923 f 34 38627 1.9298695 0.7816658086324821 Product description 3923 2021-12-21 14:03:01.089303 2025-05-03 Closed Customer 3923 687680.5313019890 +4015 f 24 411372 52.024605 0.19500225438678598 Product description 4015 2021-09-15 14:03:01.089303 2024-06-12 Closed Customer 4015 262484.0812930710 +3988 t 28 721811 74.86076 0.2982055787196103 Product description 3988 2021-10-21 14:03:01.089303 2023-01-03 Closed Customer 3988 525202.0185813290 +3924 t 64 788720 20.01575 0.6003097611131594 Product description 3924 2021-11-15 14:03:01.089303 2025-01-08 Processing Customer 3924 640501.1417511480 +4017 f 25 81434 50.26062 0.908968720345456 Product description 4017 2024-05-19 14:03:01.089303 2023-08-08 Processing Customer 4017 519105.8884604410 +3998 f 70 8180 45.199944 0.8691679216537551 Product description 3998 2023-11-16 14:03:01.089303 2025-02-19 Processing Customer 3998 896486.1678497410 +3926 f 99 327571 75.55835 0.08382266383107151 Product description 3926 2022-11-20 14:03:01.089303 2025-01-14 Processing Customer 3926 128615.9117675930 +4023 t 61 774906 6.1887293 0.5743599271288602 Product description 4023 2023-08-08 14:03:01.089303 2023-04-08 Closed Customer 4023 407623.0853379210 +3999 t 60 603519 65.61949 0.34889047691293484 Product description 3999 2021-11-04 14:03:01.089303 2025-01-16 Processing Customer 3999 113067.0321235710 +3938 t 4 257428 6.227723 0.9730228972958272 Product description 3938 2023-07-11 14:03:01.089303 2024-05-28 Processing Customer 3938 738002.7566606100 +4027 t 65 993524 83.81115 0.7791282894359739 Product description 4027 2024-02-26 14:03:01.089303 2024-06-23 Processing Customer 4027 243021.5481104020 +4001 t 31 173146 24.876863 0.8815393742297886 Product description 4001 2023-10-27 14:03:01.089303 2025-03-30 Processing Customer 4001 19692.6362192720 +3940 f 15 418736 74.97075 0.7209724482988804 Product description 3940 2022-08-10 14:03:01.089303 2024-08-25 Closed Customer 3940 804363.1131972650 +4029 t 12 301150 86.16913 0.19343298974941803 Product description 4029 2021-11-10 14:03:01.089303 2024-09-03 Closed Customer 4029 504136.6072376720 +4006 t 97 469958 63.057648 0.9192879138741219 Product description 4006 2023-05-28 14:03:01.089303 2025-12-23 Cancelled Customer 4006 426257.6696621000 +3943 f 50 59339 16.752136 0.08327050923526969 Product description 3943 2023-02-16 14:03:01.089303 2023-03-24 Closed Customer 3943 630034.4698777030 +4031 f 98 108004 90.77327 0.2663477716431828 Product description 4031 2023-02-13 14:03:01.089303 2023-04-05 Closed Customer 4031 534068.5019391710 +4007 t 93 502615 21.77946 0.8716078270988028 Product description 4007 2022-10-14 14:03:01.089303 2024-12-26 Closed Customer 4007 719536.3188119470 +3944 t 5 292760 21.3178 0.4817115954959519 Product description 3944 2024-03-07 14:03:01.089303 2024-04-28 Closed Customer 3944 70318.0344287482 +4033 t 62 623823 16.569588 0.2971599888836991 Product description 4033 2022-07-21 14:03:01.089303 2025-09-06 Closed Customer 4033 281822.7327507010 +4014 f 19 412964 98.67716 0.29001658441495337 Product description 4014 2023-07-06 14:03:01.089303 2023-04-10 Processing Customer 4014 301862.3362496630 +3945 f 17 196516 73.77871 0.8097186628158042 Product description 3945 2022-06-26 14:03:01.089303 2025-05-14 Processing Customer 3945 235130.8065523090 +4036 f 98 613814 98.01008 0.24454441226224333 Product description 4036 2022-09-11 14:03:01.089303 2024-12-11 Closed Customer 4036 979325.1315420940 +4016 f 83 433856 44.66885 0.8085325368818737 Product description 4016 2023-11-09 14:03:01.089303 2025-06-07 Closed Customer 4016 616843.3576517170 +3946 t 37 682655 59.85181 0.02507883066223826 Product description 3946 2023-02-03 14:03:01.089303 2024-09-08 Processing Customer 3946 431963.6345319640 +4037 t 4 716751 79.29755 0.0819790483711742 Product description 4037 2021-12-06 14:03:01.089303 2023-04-08 Processing Customer 4037 743138.7165051040 +4024 t 18 182760 48.04214 0.916996095304409 Product description 4024 2023-06-30 14:03:01.089303 2024-04-05 Closed Customer 4024 445689.5318711180 +3947 t 41 13449 42.93661 0.6915120592054009 Product description 3947 2023-08-28 14:03:01.089303 2023-12-09 Processing Customer 3947 779393.6724940560 +4038 f 93 536552 8.727529 0.9627522817502836 Product description 4038 2023-12-21 14:03:01.089303 2025-02-13 Closed Customer 4038 443480.1240366220 +4025 f 58 483285 45.440273 0.9931121664824225 Product description 4025 2022-08-13 14:03:01.089303 2024-11-22 Processing Customer 4025 725792.0517679680 +3948 t 49 648464 95.94411 0.2829564290552611 Product description 3948 2023-08-12 14:03:01.089303 2024-08-28 Cancelled Customer 3948 713807.5157572530 +4039 f 88 124532 23.871601 0.5687041380670692 Product description 4039 2022-11-27 14:03:01.089303 2024-08-15 Processing Customer 4039 179573.1793063490 +4030 t 12 19858 43.37092 0.12039124112007116 Product description 4030 2023-09-19 14:03:01.089303 2025-03-17 Closed Customer 4030 479135.1586125430 +3949 t 37 473435 93.67973 0.5419642780177547 Product description 3949 2022-08-06 14:03:01.089303 2024-04-02 Closed Customer 3949 343204.0461368690 +4044 t 46 204557 6.5486236 0.3199340995787594 Product description 4044 2022-08-21 14:03:01.089303 2024-10-03 Processing Customer 4044 924928.8002984710 +4032 f 43 361390 77.00479 0.08468832058577291 Product description 4032 2023-03-15 14:03:01.089303 2025-12-19 Processing Customer 4032 401789.3229723630 +3950 t 95 829242 59.023712 0.05251560061285332 Product description 3950 2022-10-19 14:03:01.089303 2024-10-07 Closed Customer 3950 607678.2069909120 +4046 f 90 648133 2.449045 0.721480564021725 Product description 4046 2022-03-21 14:03:01.089303 2025-08-08 Closed Customer 4046 399778.5432579130 +4034 f 80 885356 80.28894 0.7725870112960074 Product description 4034 2023-07-15 14:03:01.089303 2025-03-23 Processing Customer 4034 657957.1787292410 +3954 f 54 690471 92.91481 0.9394850033513755 Product description 3954 2021-09-08 14:03:01.089303 2023-05-23 Processing Customer 3954 891525.2525379960 +4048 t 11 764759 38.837772 0.313759361553565 Product description 4048 2022-09-10 14:03:01.089303 2023-11-29 Processing Customer 4048 675913.5641055670 +4035 t 20 639183 80.31276 0.07185077267401496 Product description 4035 2023-07-30 14:03:01.089303 2025-04-08 Closed Customer 4035 347917.7966007110 +3959 t 32 242228 32.572857 0.722306379844543 Product description 3959 2023-05-05 14:03:01.089303 2025-01-15 Processing Customer 3959 359020.7011970110 +4050 t 48 705367 24.26491 0.4515080059097514 Product description 4050 2022-04-12 14:03:01.089303 2025-02-20 Processing Customer 4050 391170.3334943620 +4040 t 65 454382 51.489506 0.10809313244379481 Product description 4040 2022-08-13 14:03:01.089303 2023-10-30 Closed Customer 4040 481463.6767845930 +3964 f 45 971280 38.26918 0.7439430139034151 Product description 3964 2023-09-11 14:03:01.089303 2023-05-15 Closed Customer 3964 589439.1490400400 +4052 t 60 885219 15.447774 0.1522968773686415 Product description 4052 2022-06-18 14:03:01.089303 2025-12-12 Closed Customer 4052 268011.7349003520 +4041 f 25 10471 27.425583 0.8932821803008757 Product description 4041 2024-06-03 14:03:01.089303 2025-08-25 Processing Customer 4041 819211.8463660020 +3967 f 76 939675 73.75316 0.9339550419331353 Product description 3967 2024-02-29 14:03:01.089303 2024-09-11 Processing Customer 3967 399092.3235892150 +4055 t 73 660885 35.982845 0.2486238770538236 Product description 4055 2023-06-09 14:03:01.089303 2024-03-17 Cancelled Customer 4055 797693.4497213010 +4042 f 89 209271 11.483787 0.7320360026296377 Product description 4042 2024-04-25 14:03:01.089303 2024-02-28 Closed Customer 4042 867365.9433276480 +3968 t 79 891408 82.05315 0.3246769471573252 Product description 3968 2022-09-05 14:03:01.089303 2024-12-08 Closed Customer 3968 706697.7010787170 +4056 f 55 476601 15.539937 0.8844010947171093 Product description 4056 2023-06-12 14:03:01.089303 2024-12-07 Closed Customer 4056 758326.8369518380 +4047 f 47 226142 59.09732 0.4213468486043901 Product description 4047 2023-09-19 14:03:01.089303 2024-03-13 Processing Customer 4047 242162.3785922690 +3969 t 57 556350 96.43096 0.3437953566120946 Product description 3969 2024-05-02 14:03:01.089303 2023-02-06 Closed Customer 3969 449057.4078488980 +4058 t 14 723308 66.43182 0.37972859840585826 Product description 4058 2023-07-26 14:03:01.089303 2025-01-31 Closed Customer 4058 716784.1718042140 +4053 f 75 763004 53.455727 0.5159533372575105 Product description 4053 2022-10-12 14:03:01.089303 2023-02-09 Processing Customer 4053 511423.1384132850 +3971 t 22 15266 80.995155 0.5717548965188222 Product description 3971 2022-03-14 14:03:01.089303 2025-08-20 Cancelled Customer 3971 941566.8458707490 +4062 t 89 111482 85.02827 0.4321141734132432 Product description 4062 2022-03-23 14:03:01.089303 2025-10-07 Processing Customer 4062 569980.2170183550 +4057 t 90 837788 28.921001 0.33686234859118613 Product description 4057 2021-08-24 14:03:01.089303 2023-06-07 Closed Customer 4057 949061.3043919180 +3979 t 30 647138 10.260746 0.7670779668057648 Product description 3979 2022-01-09 14:03:01.089303 2024-08-02 Closed Customer 3979 923389.4942036510 +4063 f 35 135070 12.903427 0.6098887673568605 Product description 4063 2021-09-15 14:03:01.089303 2023-03-19 Cancelled Customer 4063 182559.9820606780 +4059 f 41 752701 35.137383 0.4126281388782722 Product description 4059 2023-10-16 14:03:01.089303 2024-07-19 Closed Customer 4059 51405.6364816540 +3981 t 13 386287 65.73363 0.900978147794973 Product description 3981 2021-09-09 14:03:01.089303 2025-02-19 Closed Customer 3981 61987.3631465246 +4070 f 5 821069 42.21331 0.9116641709539337 Product description 4070 2024-01-24 14:03:01.089303 2024-12-07 Closed Customer 4070 257752.1185143220 +4061 f 41 558191 40.896645 0.38542593271252557 Product description 4061 2023-03-11 14:03:01.089303 2024-08-23 Closed Customer 4061 592217.9435151520 +3985 f 22 240872 41.740566 0.9669590320883472 Product description 3985 2022-03-29 14:03:01.089303 2024-01-30 Closed Customer 3985 734209.2909973450 +4072 f 62 500810 77.35702 0.8115870167392245 Product description 4072 2023-07-01 14:03:01.089303 2025-05-24 Processing Customer 4072 909638.9554509270 +4067 f 30 163126 66.426254 0.4498976083716535 Product description 4067 2022-11-07 14:03:01.089303 2025-05-22 Processing Customer 4067 262543.4668577850 +3987 t 76 642503 77.775246 0.6156009843259511 Product description 3987 2021-08-15 14:03:01.089303 2024-10-15 Processing Customer 3987 548153.7461451290 +4078 f 67 105612 99.609245 0.7982250595756071 Product description 4078 2023-07-27 14:03:01.089303 2024-01-26 Closed Customer 4078 807849.2622831030 +4069 f 42 439033 79.07336 0.50916576764482 Product description 4069 2021-08-15 14:03:01.089303 2023-06-19 Closed Customer 4069 203962.3245473900 +3989 f 54 550965 55.421722 0.22647895510350935 Product description 3989 2024-02-12 14:03:01.089303 2025-06-29 Cancelled Customer 3989 432364.2870911120 +4079 f 78 704283 31.047495 0.35012373478583925 Product description 4079 2022-07-13 14:03:01.089303 2024-03-29 Closed Customer 4079 892002.7031231930 +4074 t 13 691314 99.74412 0.054718592731216376 Product description 4074 2024-01-06 14:03:01.089303 2024-06-08 Closed Customer 4074 571230.9089076010 +3990 t 66 412044 89.732155 0.5952444277427027 Product description 3990 2022-08-09 14:03:01.089303 2023-01-04 Processing Customer 3990 819132.4714071730 +4083 f 89 944477 56.524067 0.4226971109062774 Product description 4083 2023-02-07 14:03:01.089303 2025-05-23 Processing Customer 4083 750018.3289429750 +4076 f 31 77299 87.74192 0.9211703354861704 Product description 4076 2023-03-02 14:03:01.089303 2024-09-29 Closed Customer 4076 32233.5553591131 +3991 f 61 327452 42.57376 0.8343701760281981 Product description 3991 2022-04-22 14:03:01.089303 2023-08-03 Closed Customer 3991 323468.9340151460 +4091 t 53 142815 54.461105 0.12886432802426384 Product description 4091 2023-03-17 14:03:01.089303 2025-12-09 Processing Customer 4091 946423.2284772970 +4077 t 33 930228 6.703196 0.29314692762184436 Product description 4077 2022-12-11 14:03:01.089303 2024-11-17 Closed Customer 4077 358179.8401932370 +3993 t 60 199885 93.8953 0.2652089661627208 Product description 3993 2022-06-06 14:03:01.089303 2025-10-19 Processing Customer 3993 854257.0258495350 +4092 f 31 797184 41.854015 0.7148304546028399 Product description 4092 2022-04-28 14:03:01.089303 2024-07-20 Closed Customer 4092 220189.5484072940 +4081 t 85 477306 87.35436 0.3770632522855557 Product description 4081 2024-07-21 14:03:01.089303 2024-10-27 Closed Customer 4081 889099.1977223020 +3995 t 1 347626 31.996147 0.9593847206342865 Product description 3995 2023-11-23 14:03:01.089303 2025-11-25 Closed Customer 3995 264124.4709779260 +4095 f 77 992631 7.209155 0.9484472050765334 Product description 4095 2023-07-14 14:03:01.089303 2024-06-30 Processing Customer 4095 814752.4383037810 +4082 t 17 931876 13.629097 0.1098013934750206 Product description 4082 2023-04-25 14:03:01.089303 2025-01-30 Closed Customer 4082 582429.4323084520 +3996 f 45 114188 75.36644 0.6618026743453846 Product description 3996 2022-09-10 14:03:01.089303 2025-08-20 Processing Customer 3996 256995.7423211090 +4096 f 55 105594 28.969332 0.48648454901915983 Product description 4096 2022-09-20 14:03:01.089303 2025-01-14 Closed Customer 4096 202435.7347349510 +4084 t 31 941837 56.583862 0.5088055294326246 Product description 4084 2024-05-05 14:03:01.089303 2023-11-30 Closed Customer 4084 184552.9532986920 +4002 f 15 135688 12.740129 0.1069407405309839 Product description 4002 2023-09-07 14:03:01.089303 2025-09-14 Closed Customer 4002 668561.1491003480 +4097 f 38 8488 49.839027 0.39471895889494135 Product description 4097 2022-04-30 14:03:01.089303 2025-03-03 Closed Customer 4097 173810.1221497990 +4085 t 56 574503 31.331945 0.6229667746391065 Product description 4085 2024-07-24 14:03:01.089303 2025-02-08 Closed Customer 4085 272729.8049440560 +4003 t 45 353309 26.485687 0.7299680984296124 Product description 4003 2023-06-16 14:03:01.089303 2025-06-07 Processing Customer 4003 855082.6414078190 +4098 f 16 112175 92.936325 0.6215716559235105 Product description 4098 2022-08-31 14:03:01.089303 2025-07-17 Processing Customer 4098 158904.9811987910 +4087 f 17 760968 84.183556 0.9450182714536233 Product description 4087 2023-01-19 14:03:01.089303 2025-11-27 Closed Customer 4087 417307.0172772810 +4004 t 31 327033 73.96047 0.7553511267859072 Product description 4004 2023-01-28 14:03:01.089303 2025-03-16 Processing Customer 4004 77231.3909165590 +4103 f 14 63564 93.52929 0.1608537415215352 Product description 4103 2024-02-14 14:03:01.089303 2024-08-11 Processing Customer 4103 204389.3233905120 +4090 f 61 85643 98.97209 0.5305025045100358 Product description 4090 2021-09-29 14:03:01.089303 2023-07-12 Closed Customer 4090 60048.8466336842 +4009 t 56 33879 66.974846 0.86142218747867 Product description 4009 2023-11-06 14:03:01.089303 2025-07-29 Processing Customer 4009 200654.0717756170 +4106 f 13 576580 63.219994 0.13851863112730456 Product description 4106 2022-10-27 14:03:01.089303 2024-10-27 Processing Customer 4106 631173.3603179060 +4099 t 7 468707 87.84304 0.14074627568281883 Product description 4099 2024-07-14 14:03:01.089303 2025-10-24 Closed Customer 4099 198071.2432921050 +4018 t 91 795016 70.3478 0.6405845147329039 Product description 4018 2022-06-19 14:03:01.089303 2023-07-09 Processing Customer 4018 979150.6336416870 +4109 t 72 550995 88.01023 0.2420597385189751 Product description 4109 2021-10-19 14:03:01.089303 2023-05-21 Closed Customer 4109 962049.3996286790 +4100 t 52 810179 61.0003 0.6495464081322915 Product description 4100 2022-07-11 14:03:01.089303 2024-11-04 Closed Customer 4100 649656.1530618480 +4019 f 74 244319 6.8544536 0.38867026699192664 Product description 4019 2022-10-20 14:03:01.089303 2024-01-11 Closed Customer 4019 159675.6793485100 +4111 t 9 944979 77.32058 0.17422893600863887 Product description 4111 2024-07-13 14:03:01.089303 2023-04-14 Processing Customer 4111 812632.5828485540 +4105 f 79 894310 11.172762 0.984072287608857 Product description 4105 2023-04-09 14:03:01.089303 2024-04-01 Closed Customer 4105 882157.8513859980 +4020 f 27 548986 7.9800577 0.6903600864485178 Product description 4020 2021-10-18 14:03:01.089303 2024-03-20 Closed Customer 4020 763710.9198846940 +4112 t 16 913538 79.37347 0.6942286867525667 Product description 4112 2021-12-01 14:03:01.089303 2025-09-25 Closed Customer 4112 327878.0868908310 +4107 t 26 622652 73.34391 0.13264492998073862 Product description 4107 2022-12-19 14:03:01.089303 2023-05-11 Closed Customer 4107 516892.4832791430 +4021 t 50 467262 36.48325 0.18950409094310672 Product description 4021 2024-07-24 14:03:01.089303 2025-12-03 Closed Customer 4021 212333.7134778890 +4114 t 57 754842 13.958968 0.29219880250206387 Product description 4114 2022-05-02 14:03:01.089303 2025-12-06 Processing Customer 4114 603021.2525897870 +4108 t 95 136239 77.18016 0.709413082931821 Product description 4108 2022-10-28 14:03:01.089303 2025-07-15 Closed Customer 4108 283456.8622021150 +4022 f 84 501325 17.752666 0.5846352890733719 Product description 4022 2023-03-04 14:03:01.089303 2024-05-07 Closed Customer 4022 594132.2767761720 +4115 f 51 355242 91.60994 0.036499033744291864 Product description 4115 2021-10-24 14:03:01.089303 2025-06-26 Processing Customer 4115 460397.8090903490 +4110 t 37 294379 48.95129 0.44803477101083544 Product description 4110 2023-01-18 14:03:01.089303 2024-04-15 Processing Customer 4110 48938.8531635839 +4026 f 5 707100 79.53012 0.9232702215058062 Product description 4026 2022-07-02 14:03:01.089303 2025-10-24 Closed Customer 4026 415195.6189099340 +4120 f 81 303058 88.74623 0.9275710312451295 Product description 4120 2024-06-21 14:03:01.089303 2024-06-13 Closed Customer 4120 611610.7281274350 +4118 t 43 312115 87.85991 0.8153774060093362 Product description 4118 2022-09-26 14:03:01.089303 2023-06-02 Processing Customer 4118 380307.8177822530 +4028 f 51 319556 84.14152 0.23455709619099352 Product description 4028 2023-01-26 14:03:01.089303 2023-06-08 Processing Customer 4028 889953.8934750880 +4121 t 33 486371 48.474316 0.8447481671419297 Product description 4121 2022-12-14 14:03:01.089303 2023-12-08 Closed Customer 4121 597026.1238860070 +4119 t 10 182266 82.50093 0.39660386809795156 Product description 4119 2023-12-27 14:03:01.089303 2023-08-12 Closed Customer 4119 315382.9364924480 +4043 f 78 606928 82.90028 0.9671500942696163 Product description 4043 2023-08-12 14:03:01.089303 2023-08-30 Closed Customer 4043 527706.4895551150 +4123 f 61 860536 6.2392573 0.030723531722649966 Product description 4123 2023-06-16 14:03:01.089303 2023-04-19 Processing Customer 4123 690687.9808139370 +4124 f 7 508210 88.33854 0.21206240691889278 Product description 4124 2021-12-26 14:03:01.089303 2024-10-06 Cancelled Customer 4124 780536.6868754540 +4045 f 60 139835 19.32464 0.5669066985098077 Product description 4045 2022-02-07 14:03:01.089303 2025-04-25 Processing Customer 4045 585981.9080438560 +4125 f 67 823607 47.508408 0.2935432114498724 Product description 4125 2024-01-01 14:03:01.089303 2023-09-24 Closed Customer 4125 332358.3808789540 +4126 t 68 604223 11.72144 0.6384491048730041 Product description 4126 2023-10-15 14:03:01.089303 2023-12-05 Processing Customer 4126 690535.3914195120 +4049 t 48 444478 29.658504 0.33909598929902884 Product description 4049 2022-02-22 14:03:01.089303 2024-10-23 Closed Customer 4049 315662.5755423480 +4135 f 87 678014 19.448952 0.6688389869312701 Product description 4135 2023-05-05 14:03:01.089303 2024-03-10 Closed Customer 4135 87283.5328615942 +4127 f 76 230884 67.810875 0.4173941825644576 Product description 4127 2021-12-16 14:03:01.089303 2025-12-27 Processing Customer 4127 515010.7453439040 +4051 t 95 245548 41.28035 0.5531190542834814 Product description 4051 2023-05-01 14:03:01.089303 2024-04-11 Closed Customer 4051 697754.8102377470 +4136 f 38 603469 94.225494 0.47622725855300985 Product description 4136 2024-05-17 14:03:01.089303 2024-06-04 Processing Customer 4136 339030.2005618470 +4128 t 62 254225 66.0871 0.9421877959779295 Product description 4128 2023-07-12 14:03:01.089303 2023-09-19 Processing Customer 4128 885295.6258302780 +4054 f 59 70404 28.17111 0.9528630573423733 Product description 4054 2021-10-01 14:03:01.089303 2024-03-28 Processing Customer 4054 818354.7013000950 +4138 t 4 345252 79.84254 0.18026350579980743 Product description 4138 2023-02-20 14:03:01.089303 2024-11-25 Closed Customer 4138 195642.8829131090 +4129 t 30 646146 37.39508 0.017273502736891544 Product description 4129 2022-02-16 14:03:01.089303 2024-02-16 Closed Customer 4129 283775.2965900540 +4060 t 94 234520 24.019728 0.07661037175050112 Product description 4060 2022-05-21 14:03:01.089303 2025-11-02 Closed Customer 4060 344837.6193425630 +4141 f 63 737471 71.579475 0.08788763123106946 Product description 4141 2021-08-21 14:03:01.089303 2025-05-13 Closed Customer 4141 993671.0750607710 +4131 f 95 738332 56.099606 0.48351637900846356 Product description 4131 2021-08-10 14:03:01.089303 2025-04-05 Processing Customer 4131 125212.8188751950 +4064 f 14 646211 67.18466 0.38433685835936515 Product description 4064 2023-09-17 14:03:01.089303 2023-03-23 Closed Customer 4064 412892.2319477510 +4144 f 67 591404 10.343384 0.46593737684498393 Product description 4144 2023-02-18 14:03:01.089303 2025-03-19 Processing Customer 4144 188430.0913459110 +4133 t 42 455629 57.751698 0.9552538624919507 Product description 4133 2024-05-09 14:03:01.089303 2023-06-16 Closed Customer 4133 229160.0250180070 +4065 f 42 301224 28.541395 0.5255311478758209 Product description 4065 2024-05-07 14:03:01.089303 2023-04-03 Processing Customer 4065 967213.6683136120 +4147 t 96 240862 54.500534 0.26835893730806504 Product description 4147 2023-02-12 14:03:01.089303 2023-07-13 Closed Customer 4147 764736.0569938080 +4134 t 97 158272 37.434395 0.8960602639270121 Product description 4134 2022-04-22 14:03:01.089303 2023-09-18 Closed Customer 4134 698557.8807993100 +4066 f 38 895600 4.3459888 0.8872738688034225 Product description 4066 2021-10-05 14:03:01.089303 2023-04-07 Processing Customer 4066 790716.1806029000 +4148 f 76 654113 82.51821 0.7404966188175521 Product description 4148 2023-07-18 14:03:01.089303 2025-09-28 Processing Customer 4148 779402.7163655420 +4137 f 58 651172 61.530563 0.9585561541137295 Product description 4137 2024-07-04 14:03:01.089303 2023-09-16 Cancelled Customer 4137 68713.6515807012 +4068 f 38 152962 4.6704254 0.6069376623356213 Product description 4068 2023-05-21 14:03:01.089303 2023-08-16 Processing Customer 4068 298934.5796194340 +4153 f 92 478623 29.616602 0.04969531881002354 Product description 4153 2021-10-31 14:03:01.089303 2024-03-05 Closed Customer 4153 140682.9532095590 +4142 t 83 782419 76.77278 0.7137683852074197 Product description 4142 2021-08-06 14:03:01.089303 2024-04-07 Processing Customer 4142 914139.8100406380 +4071 f 10 585104 29.530209 0.8964694172687366 Product description 4071 2021-09-16 14:03:01.089303 2023-08-24 Processing Customer 4071 642527.2428135430 +4155 f 20 907266 72.853935 0.9756515009004616 Product description 4155 2022-07-18 14:03:01.089303 2023-10-19 Processing Customer 4155 818253.3771484980 +4146 f 3 97439 0.50152665 0.1653771788704681 Product description 4146 2023-09-27 14:03:01.089303 2023-09-06 Closed Customer 4146 579718.5877089600 +4073 f 98 633161 32.227257 0.8701236355006721 Product description 4073 2024-05-29 14:03:01.089303 2025-09-10 Processing Customer 4073 847366.4168753670 +4156 f 17 797013 71.00446 0.3653674980139243 Product description 4156 2022-02-21 14:03:01.089303 2023-12-26 Closed Customer 4156 596555.4882646240 +4150 f 75 65208 95.600494 0.30095322641463795 Product description 4150 2022-12-02 14:03:01.089303 2024-11-06 Closed Customer 4150 243584.6091959350 +4075 t 44 71100 76.87869 0.42868882769215944 Product description 4075 2022-12-10 14:03:01.089303 2025-09-25 Closed Customer 4075 546955.0387091860 +4157 f 90 484505 46.62744 0.8511241388586015 Product description 4157 2022-04-24 14:03:01.089303 2024-12-06 Closed Customer 4157 899045.1844062090 +4154 f 26 257728 64.921364 0.8083003565017286 Product description 4154 2023-10-14 14:03:01.089303 2025-04-13 Closed Customer 4154 382309.1792547400 +4080 f 32 228560 70.845726 0.5094839166444949 Product description 4080 2023-03-31 14:03:01.089303 2025-11-12 Processing Customer 4080 354309.6020649090 +4159 f 99 828438 80.195335 0.09059003306180102 Product description 4159 2023-02-12 14:03:01.089303 2025-02-14 Closed Customer 4159 775671.3607510020 +4161 t 6 380827 21.39781 0.12105665002671984 Product description 4161 2021-10-11 14:03:01.089303 2024-01-12 Processing Customer 4161 787019.6258063800 +4086 f 7 105059 46.0672 0.13351349778629995 Product description 4086 2023-09-04 14:03:01.089303 2023-01-18 Closed Customer 4086 596567.7011306520 +4162 f 26 332393 20.287415 0.1128732269087962 Product description 4162 2023-09-01 14:03:01.089303 2023-01-26 Cancelled Customer 4162 434282.6841338690 +4163 f 86 213192 29.668066 0.9449502671947378 Product description 4163 2022-08-12 14:03:01.089303 2023-08-06 Closed Customer 4163 856847.3076343610 +4088 f 63 443346 32.41295 0.7894263862294757 Product description 4088 2023-08-17 14:03:01.089303 2023-06-08 Closed Customer 4088 503573.5633910080 +4166 t 25 681665 8.2264805 0.755294822017607 Product description 4166 2024-01-17 14:03:01.089303 2025-10-22 Closed Customer 4166 925175.4515024970 +4165 f 66 118174 63.346287 0.14958633288154388 Product description 4165 2021-11-16 14:03:01.089303 2023-07-07 Processing Customer 4165 109703.4964660540 +4089 t 11 181925 87.24878 0.7702595302727993 Product description 4089 2021-08-23 14:03:01.089303 2024-11-21 Processing Customer 4089 946680.2314457960 +4167 t 99 815754 9.190181 0.7248634048892448 Product description 4167 2023-11-23 14:03:01.089303 2025-05-25 Closed Customer 4167 861985.9235344980 +4169 f 16 206903 19.009768 0.3456666241813018 Product description 4169 2024-06-14 14:03:01.089303 2024-11-04 Closed Customer 4169 701336.5330542390 +4093 t 49 201217 20.042051 0.6347645464072791 Product description 4093 2022-11-09 14:03:01.089303 2024-03-23 Processing Customer 4093 82980.7860747778 +4168 f 37 592954 55.27153 0.16706928917210817 Product description 4168 2021-09-20 14:03:01.089303 2024-04-17 Processing Customer 4168 910622.2413029030 +4172 t 62 319284 58.852734 0.7895677471119775 Product description 4172 2023-06-02 14:03:01.089303 2024-10-12 Closed Customer 4172 630004.1058097460 +4094 f 88 693460 41.381557 0.3716426782835818 Product description 4094 2023-06-17 14:03:01.089303 2024-03-20 Closed Customer 4094 215404.8164867670 +4170 t 26 10532 76.07593 0.6197314866965762 Product description 4170 2023-05-29 14:03:01.089303 2023-02-25 Closed Customer 4170 998159.5481732410 +4174 t 97 990703 61.102863 0.14452610900610452 Product description 4174 2024-04-29 14:03:01.089303 2025-05-24 Closed Customer 4174 335803.5904113380 +4101 f 2 420525 79.5275 0.6895943493093704 Product description 4101 2022-12-18 14:03:01.089303 2024-09-03 Closed Customer 4101 830110.5402257820 +4173 t 49 35980 50.39456 0.5597410687786528 Product description 4173 2022-08-19 14:03:01.089303 2023-09-04 Closed Customer 4173 152962.7768816790 +4180 t 81 466099 85.13073 0.768719584878145 Product description 4180 2022-02-18 14:03:01.089303 2023-01-25 Processing Customer 4180 621254.1582672340 +4102 t 78 45270 52.105488 0.593835076502959 Product description 4102 2022-11-21 14:03:01.089303 2023-10-28 Closed Customer 4102 428160.6225542730 +4176 f 4 487698 50.667835 0.0859678764425631 Product description 4176 2023-03-31 14:03:01.089303 2025-01-20 Closed Customer 4176 42727.0789178422 +4181 f 89 349360 78.286644 0.9259666967797777 Product description 4181 2022-08-28 14:03:01.089303 2023-02-20 Closed Customer 4181 815883.5725038430 +4104 f 89 148198 40.501663 0.23639248579915417 Product description 4104 2024-03-17 14:03:01.089303 2025-10-16 Closed Customer 4104 291346.6187459260 +4183 f 71 904978 42.641094 0.003386666843685049 Product description 4183 2024-05-26 14:03:01.089303 2025-06-26 Closed Customer 4183 72242.4546573990 +4185 t 18 215832 55.34284 0.5177318433980425 Product description 4185 2024-06-06 14:03:01.089303 2023-06-02 Processing Customer 4185 161210.8248917540 +4113 t 22 889881 53.635124 0.8055568187347895 Product description 4113 2024-05-05 14:03:01.089303 2025-10-20 Processing Customer 4113 620213.5182252850 +4194 f 57 602560 76.01151 0.5685336497145492 Product description 4194 2024-03-09 14:03:01.089303 2025-08-03 Closed Customer 4194 492214.9764154470 +4186 t 24 179775 31.337326 0.2361101703329176 Product description 4186 2022-04-11 14:03:01.089303 2025-04-06 Cancelled Customer 4186 335204.2979956130 +4116 t 24 850923 37.451004 0.4461024406091916 Product description 4116 2024-04-15 14:03:01.089303 2023-04-10 Closed Customer 4116 532067.4965981380 +4195 f 53 757792 32.058628 0.5859860843133227 Product description 4195 2022-08-11 14:03:01.089303 2025-06-30 Closed Customer 4195 753819.1345244910 +4188 f 24 524226 57.524025 0.24316237021547948 Product description 4188 2023-12-13 14:03:01.089303 2023-03-28 Closed Customer 4188 900089.2310121070 +4117 t 8 285991 25.760233 0.41106422309647783 Product description 4117 2024-04-22 14:03:01.089303 2024-02-23 Closed Customer 4117 873661.7892729010 +4197 f 54 492032 74.559 0.6397307556286158 Product description 4197 2021-10-24 14:03:01.089303 2025-11-15 Processing Customer 4197 16684.6781555492 +4190 f 79 294956 85.2656 0.7043554748040037 Product description 4190 2022-10-20 14:03:01.089303 2025-11-25 Closed Customer 4190 169846.5534561220 +4122 t 38 878550 68.11512 0.3010569256951605 Product description 4122 2021-09-26 14:03:01.089303 2023-05-03 Processing Customer 4122 359337.9831713930 +4198 f 84 52900 95.49893 0.9345210964675665 Product description 4198 2022-01-27 14:03:01.089303 2025-07-13 Closed Customer 4198 708243.3147359520 +4192 t 98 663757 70.84618 0.2620499770877771 Product description 4192 2022-06-06 14:03:01.089303 2023-06-20 Processing Customer 4192 967772.6366716430 +4130 t 37 123928 9.2769785 0.0741569104654225 Product description 4130 2024-02-01 14:03:01.089303 2025-08-24 Closed Customer 4130 260661.2588606080 +4200 f 93 947641 54.65874 0.9478857266670779 Product description 4200 2023-12-21 14:03:01.089303 2024-04-16 Closed Customer 4200 935014.4600807010 +4193 t 84 451556 28.68666 0.6193498766999852 Product description 4193 2021-08-08 14:03:01.089303 2024-02-10 Closed Customer 4193 879360.2039986120 +4132 t 85 731864 86.64827 0.388103644702678 Product description 4132 2024-07-16 14:03:01.089303 2025-10-02 Processing Customer 4132 592580.2444053050 +4204 f 96 279573 89.43526 0.397278064103336 Product description 4204 2022-07-01 14:03:01.089303 2025-04-02 Processing Customer 4204 838394.0427794410 +4196 t 70 496519 48.44757 0.8051396688421377 Product description 4196 2022-09-24 14:03:01.089303 2024-03-05 Processing Customer 4196 584141.9736691940 +4139 f 2 657997 18.108173 0.769072922633601 Product description 4139 2023-06-21 14:03:01.089303 2023-12-12 Cancelled Customer 4139 246320.4986455770 +4205 t 48 434760 22.752201 0.10917039348748503 Product description 4205 2023-06-27 14:03:01.089303 2023-05-23 Closed Customer 4205 554302.2733339810 +4201 f 72 147645 45.980694 0.46012327833349786 Product description 4201 2024-02-16 14:03:01.089303 2023-11-07 Cancelled Customer 4201 757570.9683375040 +4140 t 33 734713 59.75315 0.2964974093909518 Product description 4140 2023-04-17 14:03:01.089303 2025-09-16 Processing Customer 4140 927541.7343108610 +4206 t 76 200237 80.79356 0.2361142124346749 Product description 4206 2021-08-27 14:03:01.089303 2023-10-08 Closed Customer 4206 228009.4038757880 +4202 f 17 795100 96.55168 0.6342982593486504 Product description 4202 2023-12-31 14:03:01.089303 2024-11-29 Processing Customer 4202 561959.9476174170 +4143 f 50 382903 69.70787 0.2592109921602699 Product description 4143 2022-12-08 14:03:01.089303 2025-07-23 Closed Customer 4143 765388.9935468530 +4209 f 12 478994 24.725822 0.7354976940738531 Product description 4209 2023-11-06 14:03:01.089303 2025-02-10 Processing Customer 4209 701206.7577575960 +4203 t 83 468590 42.735725 0.8953420926782378 Product description 4203 2022-05-29 14:03:01.089303 2023-06-08 Closed Customer 4203 744714.4956176430 +4145 t 46 432157 93.54373 0.1845775201831117 Product description 4145 2022-08-16 14:03:01.089303 2023-07-29 Processing Customer 4145 628989.3329245150 +4210 f 85 377122 58.271416 0.8997554261873013 Product description 4210 2024-04-02 14:03:01.089303 2024-10-03 Closed Customer 4210 614106.2942074600 +4216 f 81 575235 88.24811 0.540768852577397 Product description 4216 2024-06-14 14:03:01.089303 2025-09-16 Processing Customer 4216 102875.2137378390 +4149 f 58 807987 55.544106 0.609385952166825 Product description 4149 2023-10-27 14:03:01.089303 2024-01-03 Closed Customer 4149 86991.0657601629 +4212 t 19 596901 63.53719 0.3786384607903095 Product description 4212 2024-04-06 14:03:01.089303 2025-02-17 Closed Customer 4212 280219.0793136460 +4219 f 15 219430 74.75693 0.9640691534943109 Product description 4219 2022-06-25 14:03:01.089303 2024-11-20 Processing Customer 4219 123872.5768412370 +4151 f 97 124222 51.172245 0.7495591079734538 Product description 4151 2022-08-08 14:03:01.089303 2024-09-15 Closed Customer 4151 726785.0292720050 +4213 f 63 489177 89.49996 0.3243957883197517 Product description 4213 2022-11-26 14:03:01.089303 2024-12-28 Closed Customer 4213 980617.1022442950 +4220 t 42 668686 4.8423023 0.9020371061171311 Product description 4220 2023-08-27 14:03:01.089303 2023-03-28 Closed Customer 4220 347796.0056115070 +4152 t 88 74113 52.671406 0.1139869293713005 Product description 4152 2021-12-01 14:03:01.089303 2024-07-18 Closed Customer 4152 8889.8068011680 +4214 t 63 309455 11.10226 0.6730129607430335 Product description 4214 2024-06-29 14:03:01.089303 2024-12-22 Closed Customer 4214 22139.6411859516 +4223 t 95 959166 40.716377 0.8149940148037338 Product description 4223 2023-12-21 14:03:01.089303 2023-01-24 Closed Customer 4223 259279.2130820670 +4158 t 36 63723 72.424324 0.7987728344372016 Product description 4158 2022-01-22 14:03:01.089303 2024-03-04 Processing Customer 4158 99157.5804508607 +4217 t 83 711824 27.853765 0.17053464766469872 Product description 4217 2023-06-08 14:03:01.089303 2024-10-15 Closed Customer 4217 620669.9510748310 +4225 f 26 572657 15.488484 0.8609850180361853 Product description 4225 2022-04-24 14:03:01.089303 2023-07-25 Processing Customer 4225 4428.4045301097 +4160 f 91 459811 57.652172 0.3209755086663151 Product description 4160 2022-05-25 14:03:01.089303 2025-09-25 Closed Customer 4160 861357.4761552240 +4222 f 43 133447 40.438892 0.9131517668583307 Product description 4222 2021-09-04 14:03:01.089303 2024-04-01 Processing Customer 4222 439522.6404410050 +4229 f 71 150430 94.20959 0.16438284442591922 Product description 4229 2022-03-08 14:03:01.089303 2025-03-09 Processing Customer 4229 603461.2044308430 +4164 t 22 214444 94.10176 0.11838478385345752 Product description 4164 2024-04-15 14:03:01.089303 2023-01-29 Closed Customer 4164 653768.2860060800 +4224 t 77 73773 8.703357 0.9053112500516001 Product description 4224 2024-06-30 14:03:01.089303 2023-04-23 Closed Customer 4224 222218.3599738090 +4234 t 4 620039 0.9654834 0.3848233058665578 Product description 4234 2023-03-31 14:03:01.089303 2024-11-08 Closed Customer 4234 326702.1243691990 +4171 f 14 360460 45.512157 0.8881009445011685 Product description 4171 2024-01-03 14:03:01.089303 2023-10-05 Closed Customer 4171 553396.5722002880 +4228 t 13 904988 59.463867 0.3833520617428796 Product description 4228 2023-11-24 14:03:01.089303 2025-01-31 Processing Customer 4228 666774.4462764840 +4237 t 79 642177 12.173113 0.4937448611136297 Product description 4237 2023-02-10 14:03:01.089303 2025-11-14 Closed Customer 4237 111085.7203027540 +4175 t 53 574772 70.737885 0.4703567649887219 Product description 4175 2021-11-19 14:03:01.089303 2025-01-28 Cancelled Customer 4175 343098.8156328280 +4233 t 69 304855 63.220196 0.8934002206456633 Product description 4233 2024-07-26 14:03:01.089303 2023-01-01 Closed Customer 4233 201224.6270399770 +4239 f 64 10811 87.413864 0.3106202217318206 Product description 4239 2022-08-27 14:03:01.089303 2025-06-02 Closed Customer 4239 992476.8427890810 +4177 t 24 373673 87.47146 0.2029294394154384 Product description 4177 2022-03-20 14:03:01.089303 2025-03-04 Closed Customer 4177 799152.0827440370 +4235 f 43 222370 86.20271 0.03396053620664574 Product description 4235 2023-04-30 14:03:01.089303 2023-09-26 Closed Customer 4235 441300.4245674090 +4241 f 89 839248 29.305237 0.9672836501124245 Product description 4241 2024-05-18 14:03:01.089303 2024-11-07 Closed Customer 4241 472762.3991496590 +4178 t 96 113521 34.707256 0.4304466753399687 Product description 4178 2024-04-27 14:03:01.089303 2023-05-05 Closed Customer 4178 179431.4438753160 +4245 f 20 220220 81.08228 0.8982587548181904 Product description 4245 2023-07-22 14:03:01.089303 2025-12-15 Processing Customer 4245 256482.9791230490 +4242 t 84 944071 54.583134 0.28281252053308137 Product description 4242 2022-04-16 14:03:01.089303 2024-07-23 Processing Customer 4242 752267.2908518970 +4179 t 7 433508 68.105965 0.3920373060546858 Product description 4179 2024-06-10 14:03:01.089303 2024-09-22 Closed Customer 4179 25485.9420148748 +4247 f 24 90595 92.373116 0.27900045179965716 Product description 4247 2021-10-21 14:03:01.089303 2025-10-05 Closed Customer 4247 167065.6891329190 +4246 f 80 167065 11.385922 0.3480454764818326 Product description 4246 2023-11-18 14:03:01.089303 2025-11-28 Closed Customer 4246 229079.1085125930 +4182 t 72 300900 9.576393 0.6422187361274219 Product description 4182 2024-02-20 14:03:01.089303 2023-03-06 Closed Customer 4182 699025.1706273510 +4248 t 90 263665 67.0001 0.11623857334969401 Product description 4248 2023-03-16 14:03:01.089303 2025-02-25 Closed Customer 4248 271722.6429247150 +4252 f 35 858134 13.66003 0.9276943182688022 Product description 4252 2023-02-08 14:03:01.089303 2024-12-25 Processing Customer 4252 639820.8126790120 +4184 f 11 495316 31.286531 0.6393858854026995 Product description 4184 2023-08-24 14:03:01.089303 2024-07-06 Processing Customer 4184 237133.8266367570 +4250 t 70 160026 79.53429 0.3721610043407928 Product description 4250 2024-04-07 14:03:01.089303 2023-02-12 Closed Customer 4250 309769.8853907860 +4260 f 61 625921 63.249954 0.6653397552511287 Product description 4260 2022-02-19 14:03:01.089303 2023-06-04 Closed Customer 4260 886799.8188600130 +4187 t 7 305951 81.66155 0.3127822637041824 Product description 4187 2023-11-11 14:03:01.089303 2025-08-18 Processing Customer 4187 652203.6745941050 +4254 f 80 961058 13.110063 0.5814878376597541 Product description 4254 2023-02-08 14:03:01.089303 2025-05-07 Closed Customer 4254 518271.5246058510 +4264 t 23 761090 85.704956 0.8079882506599851 Product description 4264 2023-03-22 14:03:01.089303 2024-05-12 Processing Customer 4264 307510.1656107720 +4189 t 83 416851 11.5211735 0.30639313146492597 Product description 4189 2022-06-10 14:03:01.089303 2025-07-30 Cancelled Customer 4189 294855.1640552890 +4256 f 91 945991 80.76122 0.7417396656999351 Product description 4256 2024-06-07 14:03:01.089303 2025-06-14 Closed Customer 4256 398261.0693421620 +4265 t 12 832357 97.657776 0.4233794265939146 Product description 4265 2024-08-02 14:03:01.089303 2023-08-05 Processing Customer 4265 626380.9804482320 +4191 t 65 542959 97.68785 0.9043487506594161 Product description 4191 2023-07-31 14:03:01.089303 2025-10-01 Processing Customer 4191 476702.0769150500 +4259 t 9 859395 86.00113 0.26799061455641393 Product description 4259 2022-06-30 14:03:01.089303 2025-03-21 Closed Customer 4259 92827.2069606067 +4268 t 75 331358 4.35113 0.639007425504186 Product description 4268 2023-07-30 14:03:01.089303 2025-03-19 Cancelled Customer 4268 793594.5128265410 +4199 t 27 840453 28.407383 0.7266704705651108 Product description 4199 2022-09-23 14:03:01.089303 2024-08-23 Closed Customer 4199 832611.5083640210 +4266 t 62 529226 87.919495 0.9598555065342929 Product description 4266 2023-03-12 14:03:01.089303 2023-05-11 Closed Customer 4266 572680.5966357130 +4270 f 54 153740 96.22427 0.9512051133237591 Product description 4270 2022-02-19 14:03:01.089303 2023-04-03 Closed Customer 4270 50729.4823672630 +4207 f 93 58213 43.40099 0.9186149399342227 Product description 4207 2024-02-07 14:03:01.089303 2024-06-30 Closed Customer 4207 816522.0525324520 +4267 t 86 84103 47.29754 0.7704694402029908 Product description 4267 2022-06-25 14:03:01.089303 2024-09-10 Closed Customer 4267 590437.5457277950 +4281 f 65 29758 11.861685 0.8847326938925164 Product description 4281 2022-05-28 14:03:01.089303 2023-02-07 Processing Customer 4281 956625.2294639770 +4208 f 37 591296 17.349993 0.5705426743035105 Product description 4208 2024-04-03 14:03:01.089303 2024-07-18 Processing Customer 4208 692244.7603077410 +4269 f 64 918982 47.213444 0.4576414257754031 Product description 4269 2023-06-29 14:03:01.089303 2025-01-26 Closed Customer 4269 927116.2452981730 +4282 f 4 109837 64.944855 0.7915438462022522 Product description 4282 2024-05-04 14:03:01.089303 2024-08-05 Cancelled Customer 4282 866869.2289025370 +4211 t 19 829279 20.443237 0.7014753274692183 Product description 4211 2023-09-28 14:03:01.089303 2025-03-28 Processing Customer 4211 138158.2693867110 +4274 t 97 113477 66.97667 0.1277803721115056 Product description 4274 2023-10-12 14:03:01.089303 2023-02-19 Closed Customer 4274 796427.3324010380 +4283 t 46 990288 10.194513 0.7770732986133062 Product description 4283 2024-08-02 14:03:01.089303 2025-06-12 Closed Customer 4283 969387.4470224270 +4215 f 12 74986 23.92312 0.21212374293163805 Product description 4215 2022-12-25 14:03:01.089303 2025-05-02 Closed Customer 4215 797614.6559864330 +4275 t 0 227351 96.1982 0.33730854591527404 Product description 4275 2022-09-05 14:03:01.089303 2024-08-16 Processing Customer 4275 172346.1240874900 +4287 t 84 436311 42.1236 0.2540424842982212 Product description 4287 2023-05-05 14:03:01.089303 2024-10-02 Processing Customer 4287 588647.6347964230 +4218 t 21 194250 16.67211 0.26233493739945146 Product description 4218 2022-10-16 14:03:01.089303 2024-02-10 Closed Customer 4218 431359.7064105930 +4276 t 90 312078 83.428764 0.2360549484895138 Product description 4276 2023-09-14 14:03:01.089303 2024-09-28 Processing Customer 4276 269634.3524713850 +4290 t 63 424217 71.50938 0.8280541169940285 Product description 4290 2024-05-06 14:03:01.089303 2023-10-28 Processing Customer 4290 867786.2446973710 +4221 f 82 954904 47.851204 0.3939521122306644 Product description 4221 2022-03-16 14:03:01.089303 2023-07-09 Closed Customer 4221 227186.3143788800 +4278 t 34 286205 6.639276 0.47571458904833364 Product description 4278 2022-04-14 14:03:01.089303 2024-12-09 Closed Customer 4278 299807.8288251450 +4291 f 53 839124 50.93073 0.23399507496766248 Product description 4291 2023-07-04 14:03:01.089303 2023-09-16 Closed Customer 4291 708830.1566470460 +4226 t 38 865747 68.41547 0.21673905589981501 Product description 4226 2022-11-12 14:03:01.089303 2025-01-28 Closed Customer 4226 551482.6193867780 +4279 t 56 392458 30.949558 0.7250100086909477 Product description 4279 2024-07-27 14:03:01.089303 2024-08-11 Closed Customer 4279 872976.7678896390 +4293 t 85 307480 76.2743 0.25568102897624456 Product description 4293 2024-06-24 14:03:01.089303 2025-02-05 Closed Customer 4293 582502.4593929410 +4227 f 58 837878 54.774624 0.40536394341198445 Product description 4227 2022-12-10 14:03:01.089303 2023-07-29 Closed Customer 4227 672195.1984199390 +4280 t 30 334270 67.53783 0.7547426396903028 Product description 4280 2022-01-10 14:03:01.089303 2024-09-14 Processing Customer 4280 696577.3639958360 +4294 t 23 710803 43.256855 0.2643360830268442 Product description 4294 2023-08-20 14:03:01.089303 2025-06-26 Closed Customer 4294 5738.6201971568 +4230 f 17 185881 47.587105 0.8195036059221295 Product description 4230 2021-09-15 14:03:01.089303 2025-05-19 Processing Customer 4230 679576.0903396690 +4286 f 7 385397 18.995441 0.9959996793516588 Product description 4286 2023-12-11 14:03:01.089303 2024-01-31 Closed Customer 4286 829228.1531703760 +4295 f 23 791069 90.81615 0.08188470935306569 Product description 4295 2022-10-06 14:03:01.089303 2023-06-23 Closed Customer 4295 658447.6395935180 +4231 t 76 545972 42.774483 0.1848057522283284 Product description 4231 2022-05-08 14:03:01.089303 2023-05-10 Processing Customer 4231 190458.5796455050 +4288 t 38 923907 79.69437 0.5244151391158134 Product description 4288 2023-04-25 14:03:01.089303 2025-05-09 Processing Customer 4288 356367.1088656330 +4300 f 63 985002 13.858545 0.5180850809024768 Product description 4300 2022-03-25 14:03:01.089303 2025-12-07 Processing Customer 4300 140834.2636321930 +4232 f 53 394771 91.43242 0.47442091143665976 Product description 4232 2024-04-25 14:03:01.089303 2025-06-26 Closed Customer 4232 824025.3210725860 +4292 t 7 132186 66.034225 0.966594310526677 Product description 4292 2022-08-23 14:03:01.089303 2025-06-10 Closed Customer 4292 686215.7784756850 +4303 f 68 168211 20.701122 0.5047712794581862 Product description 4303 2022-10-16 14:03:01.089303 2025-12-15 Processing Customer 4303 612809.1124929260 +4236 t 87 644790 47.58873 0.15516747782886853 Product description 4236 2023-02-04 14:03:01.089303 2024-07-02 Processing Customer 4236 752314.6865962180 +4296 f 80 523476 21.050611 0.028863054833546897 Product description 4296 2023-06-15 14:03:01.089303 2025-12-28 Closed Customer 4296 594953.1388638510 +4305 f 100 75671 84.58352 0.31519506606451486 Product description 4305 2021-10-20 14:03:01.089303 2025-04-30 Closed Customer 4305 628908.6025679540 +4238 f 78 121667 79.90245 0.31448659283150704 Product description 4238 2023-04-18 14:03:01.089303 2025-08-22 Closed Customer 4238 418661.6617103490 +4297 f 42 398211 79.91463 0.5714340672887808 Product description 4297 2022-10-30 14:03:01.089303 2024-03-06 Closed Customer 4297 565895.9227138920 +4306 t 24 951665 16.952826 0.7925911212185248 Product description 4306 2021-08-12 14:03:01.089303 2025-12-14 Closed Customer 4306 169036.6792914940 +4240 f 77 436622 87.280594 0.41892818381742813 Product description 4240 2024-05-07 14:03:01.089303 2025-08-05 Closed Customer 4240 730982.0269853980 +4298 t 72 215701 84.7311 0.36729974035086954 Product description 4298 2022-07-13 14:03:01.089303 2025-02-02 Closed Customer 4298 729746.0764992470 +4307 f 79 281320 91.55563 0.4609721973891503 Product description 4307 2022-11-11 14:03:01.089303 2024-02-18 Processing Customer 4307 710798.0659666500 +4243 t 31 497832 13.639168 0.13858323380495818 Product description 4243 2021-11-22 14:03:01.089303 2025-07-29 Processing Customer 4243 221132.1846872960 +4299 f 89 715780 34.89049 0.13614055729680175 Product description 4299 2023-04-02 14:03:01.089303 2025-01-04 Closed Customer 4299 348436.1776670820 +4309 f 11 569060 39.918518 0.7450854522132211 Product description 4309 2023-01-21 14:03:01.089303 2025-09-16 Closed Customer 4309 419964.5287557980 +4244 f 79 469207 85.67218 0.20931957835766468 Product description 4244 2023-11-19 14:03:01.089303 2024-09-13 Closed Customer 4244 361324.0311073970 +4302 t 59 974711 38.520805 0.8768958570693961 Product description 4302 2023-12-05 14:03:01.089303 2023-03-06 Closed Customer 4302 70277.9041378463 +4313 t 80 958123 28.662443 0.7263434549198244 Product description 4313 2022-12-15 14:03:01.089303 2024-09-15 Closed Customer 4313 219398.1312070510 +4249 t 56 617525 83.97543 0.8513085657987673 Product description 4249 2023-08-02 14:03:01.089303 2025-08-11 Closed Customer 4249 158700.0631071370 +4304 t 59 156797 29.118265 0.7891236162971644 Product description 4304 2022-11-19 14:03:01.089303 2024-01-09 Closed Customer 4304 561212.9329209520 +4315 f 2 650879 45.423367 0.5212488335071761 Product description 4315 2022-05-24 14:03:01.089303 2023-05-28 Closed Customer 4315 626240.5969005580 +4251 f 96 319479 63.986008 0.7272978978351148 Product description 4251 2021-09-29 14:03:01.089303 2023-07-01 Closed Customer 4251 877210.9815895380 +4308 f 99 819741 25.090048 0.5074236844986153 Product description 4308 2022-01-23 14:03:01.089303 2024-02-19 Closed Customer 4308 915166.3860575280 +4319 f 24 207965 52.446255 0.4019468724555786 Product description 4319 2022-06-21 14:03:01.089303 2024-09-06 Closed Customer 4319 473024.3234973200 +4253 f 47 890101 47.885136 0.0987517912644833 Product description 4253 2023-06-29 14:03:01.089303 2025-09-11 Processing Customer 4253 19215.4022936144 +4312 f 28 714428 54.759018 0.2897624938834902 Product description 4312 2024-07-09 14:03:01.089303 2023-05-22 Cancelled Customer 4312 668172.3158422730 +4325 t 95 715507 98.03528 0.10961563676365316 Product description 4325 2022-03-15 14:03:01.089303 2025-11-10 Processing Customer 4325 644996.7395682280 +4255 f 35 784016 98.4279 0.9662864820332544 Product description 4255 2022-04-18 14:03:01.089303 2023-02-15 Processing Customer 4255 277649.9848739710 +4314 f 75 521376 53.249794 0.3155609842808218 Product description 4314 2022-10-21 14:03:01.089303 2023-06-19 Closed Customer 4314 174754.7160013130 +4326 f 68 472250 11.483411 0.9099484662730184 Product description 4326 2023-02-07 14:03:01.089303 2024-09-12 Closed Customer 4326 85365.3513132784 +4257 t 99 938220 57.200798 0.11922787433032767 Product description 4257 2023-03-10 14:03:01.089303 2025-10-04 Closed Customer 4257 721074.8171497590 +4324 t 54 289534 52.956825 0.7273192692146822 Product description 4324 2023-11-24 14:03:01.089303 2025-11-02 Closed Customer 4324 797481.1615595070 +4328 t 78 756736 11.408098 0.8217507932830337 Product description 4328 2023-07-16 14:03:01.089303 2023-12-15 Closed Customer 4328 550103.1493790410 +4258 t 62 520227 6.03988 0.3149486405092432 Product description 4258 2023-11-24 14:03:01.089303 2025-06-19 Processing Customer 4258 595487.3152552660 +4327 t 72 789826 94.45111 0.40204458873725457 Product description 4327 2023-07-06 14:03:01.089303 2024-07-01 Closed Customer 4327 302925.4406370930 +4329 t 52 633894 35.510956 0.4460039298213694 Product description 4329 2024-06-08 14:03:01.089303 2023-08-18 Closed Customer 4329 568124.3880702240 +4261 f 1 613102 38.448742 0.8571277292427695 Product description 4261 2023-03-26 14:03:01.089303 2024-01-04 Processing Customer 4261 611522.2581486290 +4333 f 48 551412 16.582195 0.3546950736922909 Product description 4333 2021-08-21 14:03:01.089303 2023-09-26 Closed Customer 4333 159977.3973199530 +4335 t 99 581772 14.313146 0.3250201976636511 Product description 4335 2024-01-26 14:03:01.089303 2023-03-16 Cancelled Customer 4335 992945.5067077160 +4262 t 83 838487 16.759241 0.5633372323647876 Product description 4262 2021-10-01 14:03:01.089303 2024-12-05 Closed Customer 4262 920283.6353952470 +4341 t 52 716005 17.238106 0.09949890326889488 Product description 4341 2022-04-10 14:03:01.089303 2023-01-25 Closed Customer 4341 466561.3381843450 +4336 t 83 440141 6.8080826 0.05241440465742642 Product description 4336 2023-09-05 14:03:01.089303 2024-07-20 Processing Customer 4336 755592.6466142000 +4263 f 53 879646 62.198036 0.12110879579483225 Product description 4263 2023-03-07 14:03:01.089303 2023-06-19 Closed Customer 4263 897203.6778897240 +4342 f 86 807989 73.94003 0.3131403499285099 Product description 4342 2021-08-22 14:03:01.089303 2024-10-24 Closed Customer 4342 953205.3348243780 +4348 f 6 109139 39.32019 0.9945647364497106 Product description 4348 2022-02-21 14:03:01.089303 2024-12-03 Closed Customer 4348 160792.7360045840 +4271 f 92 527882 92.508804 0.05343281739857275 Product description 4271 2022-06-07 14:03:01.089303 2024-08-18 Closed Customer 4271 920054.1804885310 +4343 f 10 992228 74.04447 0.8127540144336649 Product description 4343 2024-04-14 14:03:01.089303 2025-04-08 Closed Customer 4343 743525.6926550510 +4352 f 64 896267 62.224907 0.9262404112733975 Product description 4352 2023-09-08 14:03:01.089303 2023-04-26 Cancelled Customer 4352 80812.9251874021 +4272 t 38 437103 77.80587 0.33393706932231026 Product description 4272 2023-09-24 14:03:01.089303 2023-01-25 Processing Customer 4272 979669.4106728730 +4344 t 31 267421 31.215298 0.5387939778567628 Product description 4344 2022-06-10 14:03:01.089303 2025-10-31 Closed Customer 4344 40617.5798631558 +4356 f 66 931359 97.08638 0.8583880833114783 Product description 4356 2023-12-31 14:03:01.089303 2024-12-17 Closed Customer 4356 873708.1776303270 +4273 f 61 917142 67.145706 0.6982403481989792 Product description 4273 2022-02-28 14:03:01.089303 2024-04-11 Closed Customer 4273 16710.7991604318 +4350 f 31 193490 68.5301 0.9213884088876654 Product description 4350 2023-07-27 14:03:01.089303 2025-07-23 Closed Customer 4350 614349.2926218630 +4358 t 39 992714 89.06496 0.08817103476183163 Product description 4358 2022-03-30 14:03:01.089303 2025-08-09 Closed Customer 4358 494252.1694547110 +4277 t 38 102980 58.856056 0.1276248132494615 Product description 4277 2023-01-22 14:03:01.089303 2024-09-03 Closed Customer 4277 492340.9219651840 +4354 f 47 778094 31.170101 0.07005862848964028 Product description 4354 2021-10-27 14:03:01.089303 2023-01-04 Closed Customer 4354 389189.7796393560 +4361 f 21 522642 60.385227 0.9566792458698181 Product description 4361 2021-08-08 14:03:01.089303 2025-07-03 Closed Customer 4361 6527.2192650596 +4284 f 86 516295 58.60655 0.2343042225893157 Product description 4284 2021-10-12 14:03:01.089303 2024-03-22 Closed Customer 4284 889623.5852433530 +4355 t 33 522229 40.38361 0.05185002005495676 Product description 4355 2022-04-01 14:03:01.089303 2024-04-15 Closed Customer 4355 46523.3356919406 +4362 f 75 840284 32.822918 0.21041105322030162 Product description 4362 2024-07-06 14:03:01.089303 2023-11-22 Processing Customer 4362 869082.4333626070 +4285 t 9 20255 8.48022 0.4194394870973852 Product description 4285 2024-02-13 14:03:01.089303 2023-12-09 Closed Customer 4285 70768.1854667648 +4363 t 56 967417 24.788298 0.01892045147165078 Product description 4363 2021-10-26 14:03:01.089303 2024-08-18 Closed Customer 4363 166524.9570411940 +4367 t 16 438470 44.884342 0.07168078234790798 Product description 4367 2022-10-18 14:03:01.089303 2023-01-24 Processing Customer 4367 920702.1128919950 +4289 f 39 570166 77.56235 0.6138871664725656 Product description 4289 2023-02-18 14:03:01.089303 2023-09-10 Closed Customer 4289 443744.5232984880 +4364 f 50 815923 87.0421 0.8936276255825959 Product description 4364 2022-08-31 14:03:01.089303 2023-07-06 Closed Customer 4364 992182.0902563740 +4368 f 48 622426 17.376036 0.2778969601187846 Product description 4368 2023-12-04 14:03:01.089303 2023-08-10 Cancelled Customer 4368 166573.4275534630 +4301 f 94 425251 3.2361894 0.47536543483118265 Product description 4301 2022-05-25 14:03:01.089303 2025-08-06 Processing Customer 4301 956870.6752172210 +4366 f 10 809947 93.55666 0.5644638783174329 Product description 4366 2023-06-01 14:03:01.089303 2023-11-29 Processing Customer 4366 322475.1361027140 +4369 f 88 27613 11.500552 0.5198152595770722 Product description 4369 2022-02-10 14:03:01.089303 2024-04-28 Cancelled Customer 4369 969621.2642080870 +4310 f 82 276729 57.85677 0.8314289310386584 Product description 4310 2021-09-23 14:03:01.089303 2024-01-31 Cancelled Customer 4310 2869.8682630335 +4372 t 41 893867 61.00171 0.5385063041533158 Product description 4372 2021-10-25 14:03:01.089303 2023-11-04 Closed Customer 4372 813200.2874308420 +4371 f 4 218737 95.32225 0.945650546569393 Product description 4371 2022-03-04 14:03:01.089303 2024-07-08 Processing Customer 4371 612352.7208575650 +4311 f 97 420582 1.3121691 0.14470943022349658 Product description 4311 2021-09-06 14:03:01.089303 2025-03-29 Processing Customer 4311 501742.6485035440 +4374 f 13 786663 23.709337 0.6951986391900462 Product description 4374 2023-05-16 14:03:01.089303 2024-11-12 Closed Customer 4374 615641.9777841830 +4373 f 8 603498 23.89611 0.1923443512239409 Product description 4373 2024-04-27 14:03:01.089303 2025-09-19 Processing Customer 4373 677605.7810854890 +4316 t 44 38575 70.44319 0.22027987558060502 Product description 4316 2022-10-01 14:03:01.089303 2024-10-25 Processing Customer 4316 427015.1183847870 +4377 t 52 834479 43.78507 0.7648155686755018 Product description 4377 2023-06-15 14:03:01.089303 2025-01-31 Closed Customer 4377 600599.6313863410 +4376 f 45 91101 21.562355 0.8382247695213145 Product description 4376 2023-08-08 14:03:01.089303 2024-12-06 Closed Customer 4376 104035.2991311620 +4317 t 1 640766 29.059235 0.8135421138395849 Product description 4317 2021-11-23 14:03:01.089303 2023-09-13 Closed Customer 4317 576431.0372944480 +4380 f 25 442341 82.05809 0.7393504233493431 Product description 4380 2022-05-08 14:03:01.089303 2024-10-04 Processing Customer 4380 47212.4140024910 +4379 f 99 341215 1.0623478 0.5853307127623744 Product description 4379 2021-09-03 14:03:01.089303 2025-07-09 Processing Customer 4379 768688.5245657890 +4318 t 52 383627 8.388818 0.809525703709884 Product description 4318 2023-06-06 14:03:01.089303 2023-07-23 Closed Customer 4318 261377.4565191280 +4381 f 39 735569 94.45332 0.00382918959863332 Product description 4381 2022-02-28 14:03:01.089303 2024-09-10 Closed Customer 4381 22933.0167083184 +4384 t 94 701064 82.55215 0.8904120921948184 Product description 4384 2023-11-28 14:03:01.089303 2025-10-19 Processing Customer 4384 272478.2329649500 +4320 t 22 622964 84.50617 0.28334673336381044 Product description 4320 2021-09-12 14:03:01.089303 2024-09-13 Closed Customer 4320 108710.4284487670 +4385 f 37 753402 5.1025286 0.14399284020706915 Product description 4385 2022-12-01 14:03:01.089303 2024-04-15 Processing Customer 4385 327385.1030469390 +4386 f 53 914068 80.57487 0.0830025019174947 Product description 4386 2022-06-06 14:03:01.089303 2023-11-16 Processing Customer 4386 482343.3079678950 +4321 t 5 188654 97.98658 0.37305860677811964 Product description 4321 2023-08-18 14:03:01.089303 2024-09-13 Closed Customer 4321 712899.4905948500 +4389 t 55 621299 26.50955 0.3437656696121252 Product description 4389 2023-11-21 14:03:01.089303 2025-05-09 Closed Customer 4389 491501.8395181900 +4387 t 78 327399 39.299862 0.012119643168102101 Product description 4387 2021-08-12 14:03:01.089303 2025-10-23 Processing Customer 4387 994487.1617372190 +4322 f 81 562486 27.243595 0.19006561690991575 Product description 4322 2023-08-30 14:03:01.089303 2024-11-18 Closed Customer 4322 897171.0612967240 +4394 t 21 246189 23.824965 0.9957930217632267 Product description 4394 2021-08-27 14:03:01.089303 2025-10-13 Closed Customer 4394 882719.2436271110 +4391 f 32 595452 13.76316 0.8531363458679841 Product description 4391 2024-02-07 14:03:01.089303 2024-12-22 Closed Customer 4391 370292.3329742300 +4323 f 47 835475 27.653187 0.06877393433714829 Product description 4323 2023-09-03 14:03:01.089303 2025-11-11 Closed Customer 4323 839166.1306724960 +4395 f 15 703309 8.405729 0.9819568917765196 Product description 4395 2022-03-31 14:03:01.089303 2023-09-30 Closed Customer 4395 229993.9973432250 +4392 t 71 460590 13.383687 0.49885285832018766 Product description 4392 2023-10-18 14:03:01.089303 2025-11-29 Processing Customer 4392 579233.1148909180 +4330 t 8 650869 88.30642 0.29706367198117434 Product description 4330 2023-11-18 14:03:01.089303 2023-08-19 Cancelled Customer 4330 553444.4666930900 +4396 t 18 420449 54.8499 0.247307910567379 Product description 4396 2021-12-23 14:03:01.089303 2023-07-14 Closed Customer 4396 591284.1903171150 +4397 f 28 332127 93.165794 0.2039099933124966 Product description 4397 2024-04-25 14:03:01.089303 2024-11-06 Closed Customer 4397 672203.1961021880 +4331 t 27 666833 76.110435 0.16780915057140788 Product description 4331 2024-06-07 14:03:01.089303 2024-12-02 Processing Customer 4331 970758.8563867980 +4402 t 89 290011 62.469498 0.11461369970824364 Product description 4402 2022-06-11 14:03:01.089303 2023-05-21 Processing Customer 4402 584165.6036289570 +4401 t 38 82772 63.114788 0.9710071675818703 Product description 4401 2023-09-14 14:03:01.089303 2024-05-01 Closed Customer 4401 643277.2152649520 +4332 t 0 973800 80.51703 0.989118927190745 Product description 4332 2022-10-15 14:03:01.089303 2023-12-29 Processing Customer 4332 209882.2515355150 +4403 t 36 352974 82.47617 0.9304295627489623 Product description 4403 2023-11-01 14:03:01.089303 2025-03-06 Processing Customer 4403 747326.7225843080 +4405 f 54 193400 15.751484 0.4825497206081373 Product description 4405 2023-08-30 14:03:01.089303 2025-10-29 Closed Customer 4405 233751.3418623300 +4334 t 74 128963 44.956226 0.7489009052152866 Product description 4334 2023-07-08 14:03:01.089303 2024-04-15 Processing Customer 4334 98681.0186638713 +4406 f 86 455802 59.30375 0.6462601432926647 Product description 4406 2023-01-21 14:03:01.089303 2025-10-08 Closed Customer 4406 295910.9088527290 +4408 f 58 713613 21.90984 0.7604890389530929 Product description 4408 2024-03-09 14:03:01.089303 2023-11-28 Closed Customer 4408 417949.8475524570 +4337 t 94 820553 6.0187883 0.01395885259159968 Product description 4337 2021-12-03 14:03:01.089303 2024-07-01 Processing Customer 4337 235551.9231624580 +4407 f 51 703247 87.52192 0.0380872255923137 Product description 4407 2022-04-07 14:03:01.089303 2025-01-28 Closed Customer 4407 64748.0454206892 +4409 t 66 966380 83.998825 0.20868409503041008 Product description 4409 2023-12-30 14:03:01.089303 2024-08-19 Closed Customer 4409 267893.3472011100 +4338 t 66 981623 18.983007 0.996179375608456 Product description 4338 2024-05-24 14:03:01.089303 2023-03-08 Closed Customer 4338 178704.1404412300 +4412 t 53 647652 50.53946 0.0504968990349397 Product description 4412 2023-10-09 14:03:01.089303 2024-12-03 Closed Customer 4412 828480.2339177130 +4410 f 48 924417 60.03552 0.8267035902512241 Product description 4410 2024-07-08 14:03:01.089303 2025-02-17 Closed Customer 4410 51947.8802192097 +4339 f 92 483756 72.648575 0.25386069407291245 Product description 4339 2023-07-15 14:03:01.089303 2024-04-09 Processing Customer 4339 41468.8255754179 +4414 t 96 990868 89.07136 0.5501480860950139 Product description 4414 2024-07-26 14:03:01.089303 2025-05-03 Closed Customer 4414 951064.9543314750 +4413 t 77 300262 29.699617 0.8513017334755553 Product description 4413 2021-09-14 14:03:01.089303 2025-10-06 Processing Customer 4413 429450.7248044110 +4340 t 83 978925 14.859254 0.12042020791735553 Product description 4340 2023-09-08 14:03:01.089303 2023-09-22 Closed Customer 4340 811776.0869492830 +4415 t 72 814697 34.758648 0.6665780130741723 Product description 4415 2022-01-15 14:03:01.089303 2025-04-24 Closed Customer 4415 389347.6953836590 +4424 t 18 661661 45.08463 0.04595846074417054 Product description 4424 2022-01-28 14:03:01.089303 2025-07-11 Closed Customer 4424 642274.9122719220 +4345 f 17 868109 26.857487 0.46754243692365094 Product description 4345 2024-02-20 14:03:01.089303 2024-04-03 Closed Customer 4345 158947.2041740940 +4416 t 64 441126 9.254378 0.911218993442283 Product description 4416 2021-08-12 14:03:01.089303 2025-01-22 Closed Customer 4416 958414.3935779570 +4426 t 76 155081 10.478646 0.9816550613812787 Product description 4426 2023-06-29 14:03:01.089303 2023-09-20 Closed Customer 4426 590710.2865979680 +4346 t 53 332312 68.93043 0.530658393156763 Product description 4346 2023-12-30 14:03:01.089303 2024-05-04 Processing Customer 4346 357397.6922115240 +4417 f 27 320194 18.532892 0.07175767958365498 Product description 4417 2024-07-24 14:03:01.089303 2023-01-18 Processing Customer 4417 418556.9486238700 +4429 t 30 124354 55.126656 0.12982121416795778 Product description 4429 2022-09-09 14:03:01.089303 2023-12-13 Cancelled Customer 4429 957665.2933122850 +4347 t 96 526636 58.958656 0.6247870785212939 Product description 4347 2023-02-05 14:03:01.089303 2023-05-29 Closed Customer 4347 121760.9000947670 +4418 t 6 830946 43.36271 0.3564646968555607 Product description 4418 2024-07-17 14:03:01.089303 2023-04-10 Closed Customer 4418 648868.1866205650 +4430 f 61 572217 32.988804 0.7440583249221007 Product description 4430 2022-12-04 14:03:01.089303 2023-09-04 Closed Customer 4430 727162.2893541440 +4349 f 41 962422 34.000603 0.0787146208544911 Product description 4349 2022-06-18 14:03:01.089303 2025-10-18 Closed Customer 4349 495894.2730206850 +4419 t 89 835270 77.487305 0.5300243202584909 Product description 4419 2021-08-13 14:03:01.089303 2025-11-12 Closed Customer 4419 748166.9066873130 +4432 t 3 294602 44.776836 0.06386073490803312 Product description 4432 2022-04-07 14:03:01.089303 2023-08-25 Closed Customer 4432 144954.1439129800 +4351 t 88 304848 40.884068 0.8710053470883281 Product description 4351 2024-07-06 14:03:01.089303 2023-04-11 Closed Customer 4351 180491.5332237980 +4420 f 82 246395 76.21135 0.8744757733300403 Product description 4420 2023-10-21 14:03:01.089303 2024-05-07 Processing Customer 4420 16800.3341631255 +4434 t 67 267012 72.42562 0.6068760233971133 Product description 4434 2023-02-14 14:03:01.089303 2025-12-29 Closed Customer 4434 245850.5140689230 +4353 t 25 858872 98.53965 0.3217971137732505 Product description 4353 2022-11-28 14:03:01.089303 2023-01-25 Closed Customer 4353 426250.4717770850 +4422 f 38 949522 78.307655 0.9393518343516547 Product description 4422 2023-04-15 14:03:01.089303 2023-04-10 Closed Customer 4422 788188.2219905200 +4440 t 46 16534 91.582115 0.797935977372191 Product description 4440 2023-07-08 14:03:01.089303 2023-01-07 Processing Customer 4440 275588.5806219820 +4357 t 55 80646 34.024193 0.7716595279173504 Product description 4357 2024-05-14 14:03:01.089303 2025-08-10 Closed Customer 4357 228785.1001710340 +4425 t 10 71852 78.05387 0.41961800986381803 Product description 4425 2022-11-29 14:03:01.089303 2023-10-23 Closed Customer 4425 775863.2705606660 +4441 t 84 359478 55.843224 0.340480299062655 Product description 4441 2023-02-06 14:03:01.089303 2023-12-09 Closed Customer 4441 543325.7352971200 +4359 t 87 60946 73.88426 0.2747491970618725 Product description 4359 2024-01-10 14:03:01.089303 2025-09-05 Processing Customer 4359 289512.6338929010 +4427 f 23 271884 30.4288 0.9407516057605676 Product description 4427 2024-07-16 14:03:01.089303 2024-04-17 Closed Customer 4427 242278.0574658500 +4442 t 17 846879 47.758663 0.9839508536712032 Product description 4442 2023-06-25 14:03:01.089303 2023-05-04 Closed Customer 4442 520011.2132869600 +4360 t 80 598021 29.135864 0.10414869499263091 Product description 4360 2023-08-18 14:03:01.089303 2024-12-06 Closed Customer 4360 183103.9108023700 +4428 t 97 659950 0.98111415 0.6942761144004592 Product description 4428 2023-03-01 14:03:01.089303 2023-09-21 Closed Customer 4428 942477.1561206490 +4444 f 62 384325 76.491196 0.7464475482709005 Product description 4444 2022-05-25 14:03:01.089303 2023-03-22 Processing Customer 4444 375621.1273285040 +4365 f 56 258107 18.278837 0.3848386913897244 Product description 4365 2021-10-13 14:03:01.089303 2024-08-01 Closed Customer 4365 286138.9325461840 +4431 f 14 71647 61.108025 0.6251177464885274 Product description 4431 2023-01-11 14:03:01.089303 2023-03-02 Processing Customer 4431 429203.1359509100 +4445 f 21 718838 61.79403 0.21268961321396773 Product description 4445 2023-08-03 14:03:01.089303 2025-02-04 Processing Customer 4445 5435.5000638076 +4370 t 77 273172 83.992256 0.23319207782076035 Product description 4370 2023-03-22 14:03:01.089303 2024-09-24 Processing Customer 4370 369683.1319013930 +4435 f 52 223522 80.06308 0.4461948213571745 Product description 4435 2022-03-28 14:03:01.089303 2025-01-23 Closed Customer 4435 197437.9735013830 +4448 f 20 212805 3.2041636 0.3461979280306835 Product description 4448 2022-11-30 14:03:01.089303 2024-07-05 Processing Customer 4448 878507.1096628240 +4375 f 23 54248 78.7531 0.18894826283104038 Product description 4375 2022-11-19 14:03:01.089303 2025-07-29 Processing Customer 4375 237923.0895547440 +4438 t 45 837553 66.5912 0.4931611869088499 Product description 4438 2023-02-02 14:03:01.089303 2024-06-12 Processing Customer 4438 101072.0539183830 +4451 f 31 174197 3.1390543 0.7548720176005332 Product description 4451 2023-04-20 14:03:01.089303 2023-02-25 Closed Customer 4451 137042.9600903660 +4378 f 21 395154 25.653128 0.510231088449018 Product description 4378 2022-06-19 14:03:01.089303 2024-09-16 Processing Customer 4378 583412.7116570440 +4447 t 90 492477 87.08375 0.6280712937924378 Product description 4447 2024-07-31 14:03:01.089303 2023-02-07 Closed Customer 4447 963751.2034914300 +4454 t 44 339177 78.32683 0.548839171878079 Product description 4454 2022-03-20 14:03:01.089303 2025-12-12 Closed Customer 4454 119608.5242950640 +4382 t 14 645919 0.5333814 0.5722276750100335 Product description 4382 2024-07-05 14:03:01.089303 2025-09-13 Closed Customer 4382 293928.1185326510 +4453 f 100 654084 78.58091 0.35778965514434447 Product description 4453 2021-09-15 14:03:01.089303 2024-07-19 Closed Customer 4453 164585.1906161900 +4456 f 52 419444 49.074234 0.6226101149835301 Product description 4456 2024-05-27 14:03:01.089303 2023-01-17 Closed Customer 4456 917692.9671509380 +4383 t 11 897422 4.5356426 0.20231575459736462 Product description 4383 2024-05-20 14:03:01.089303 2025-10-09 Closed Customer 4383 882523.9364573570 +4455 f 29 489053 42.1823 0.8841407674797708 Product description 4455 2024-04-09 14:03:01.089303 2023-10-28 Processing Customer 4455 249168.4914401340 +4461 t 78 720287 60.941765 0.22510401806025726 Product description 4461 2022-06-06 14:03:01.089303 2023-09-18 Processing Customer 4461 728628.6484852020 +4388 t 10 588255 85.67197 0.583436033793042 Product description 4388 2022-03-03 14:03:01.089303 2023-03-10 Processing Customer 4388 623562.3477908700 +4462 f 19 728216 94.232285 0.7983993830407599 Product description 4462 2022-04-18 14:03:01.089303 2023-10-28 Closed Customer 4462 275687.0488149130 +4464 f 69 953521 97.29094 0.08556752585938909 Product description 4464 2021-09-16 14:03:01.089303 2023-03-10 Processing Customer 4464 105804.0999327940 +4390 f 43 467609 0.010812924 0.4088870140584788 Product description 4390 2023-05-30 14:03:01.089303 2023-04-22 Closed Customer 4390 750148.1344088710 +4463 t 52 496895 27.726421 0.9283241948985577 Product description 4463 2024-01-04 14:03:01.089303 2024-09-13 Closed Customer 4463 328840.2930020060 +4467 f 35 781551 12.19882 0.5901725117055818 Product description 4467 2024-04-03 14:03:01.089303 2023-11-14 Processing Customer 4467 375165.7550638650 +4393 f 30 721673 48.654255 0.04818615412060723 Product description 4393 2023-09-30 14:03:01.089303 2025-11-08 Processing Customer 4393 322456.3781486760 +4465 t 64 294739 71.01706 0.6071145971601055 Product description 4465 2024-08-02 14:03:01.089303 2024-10-20 Closed Customer 4465 380289.3411425540 +4469 f 4 915434 70.31501 0.23279342542423365 Product description 4469 2022-11-05 14:03:01.089303 2024-04-02 Closed Customer 4469 53679.0921028079 +4398 t 54 144688 31.744581 0.9464765855300215 Product description 4398 2022-02-06 14:03:01.089303 2025-06-15 Closed Customer 4398 509540.9005969420 +4466 f 40 488505 76.04361 0.3052987919281449 Product description 4466 2023-04-04 14:03:01.089303 2025-09-26 Processing Customer 4466 815318.3191565070 +4472 f 53 288874 78.96781 0.14506756789706543 Product description 4472 2021-08-06 14:03:01.089303 2024-10-24 Processing Customer 4472 461832.5722178480 +4399 t 62 419570 76.77062 0.5080806749102678 Product description 4399 2021-10-01 14:03:01.089303 2023-11-10 Processing Customer 4399 187726.9074338020 +4468 t 37 109873 58.153515 0.6355815624482659 Product description 4468 2022-12-10 14:03:01.089303 2023-11-29 Closed Customer 4468 794046.3989262090 +4475 t 22 598183 77.20611 0.8504064410766006 Product description 4475 2024-02-26 14:03:01.089303 2025-04-20 Cancelled Customer 4475 711073.9390860490 +4400 f 89 257531 78.71575 0.6554100043343283 Product description 4400 2022-12-30 14:03:01.089303 2023-05-22 Processing Customer 4400 235161.4898541890 +4471 f 64 190559 89.02409 0.45246142933812195 Product description 4471 2021-11-11 14:03:01.089303 2025-05-18 Closed Customer 4471 623792.9981698510 +4483 f 89 435294 73.00068 0.3755860247292411 Product description 4483 2024-03-29 14:03:01.089303 2023-09-11 Processing Customer 4483 828779.3735476970 +4404 f 39 507280 30.94373 0.3804020638299974 Product description 4404 2023-09-07 14:03:01.089303 2024-12-25 Closed Customer 4404 323736.8214668410 +4473 f 49 765338 73.60653 0.2381592062410931 Product description 4473 2023-08-20 14:03:01.089303 2024-11-18 Cancelled Customer 4473 567794.8654890770 +4488 t 67 289201 47.59873 0.34827556986732944 Product description 4488 2022-01-22 14:03:01.089303 2025-10-10 Closed Customer 4488 677063.0133730010 +4411 f 62 947163 26.607035 0.34602996055299684 Product description 4411 2022-05-07 14:03:01.089303 2025-01-04 Processing Customer 4411 408621.5162124740 +4474 f 79 879257 81.94337 0.5294858342353983 Product description 4474 2022-08-13 14:03:01.089303 2023-01-27 Processing Customer 4474 942438.2674160440 +4489 f 53 694943 15.933576 0.06675882072861938 Product description 4489 2023-09-26 14:03:01.089303 2024-10-28 Closed Customer 4489 658621.5395530460 +4421 f 68 363529 31.471973 0.33681275164260427 Product description 4421 2022-07-10 14:03:01.089303 2024-10-04 Closed Customer 4421 808400.9232492700 +4476 f 82 778830 65.0519 0.9118755162892036 Product description 4476 2023-02-05 14:03:01.089303 2024-01-11 Closed Customer 4476 249282.4732874650 +4490 t 57 42943 79.88128 0.0010409344680120114 Product description 4490 2022-10-21 14:03:01.089303 2024-10-28 Closed Customer 4490 134934.3524725550 +4423 t 74 25174 83.47517 0.1947953644573488 Product description 4423 2023-10-13 14:03:01.089303 2023-07-06 Closed Customer 4423 169152.6267782950 +4479 t 84 281825 72.48367 0.10110720905028003 Product description 4479 2023-01-12 14:03:01.089303 2023-07-01 Closed Customer 4479 612984.3606715540 +4491 f 30 846220 59.901794 0.12963089869731093 Product description 4491 2023-08-10 14:03:01.089303 2024-05-24 Closed Customer 4491 219175.8670271680 +4433 f 1 418962 39.835308 0.2257888782530486 Product description 4433 2022-07-22 14:03:01.089303 2024-12-20 Closed Customer 4433 489888.4604045330 +4482 f 83 362954 91.92956 0.5386092094837416 Product description 4482 2021-10-04 14:03:01.089303 2024-07-28 Processing Customer 4482 264286.1733021680 +4494 t 53 987601 10.38753 0.02339665372571531 Product description 4494 2022-07-27 14:03:01.089303 2025-11-04 Closed Customer 4494 962702.7945803800 +4436 t 57 319398 29.218306 0.8160206522505149 Product description 4436 2022-03-28 14:03:01.089303 2024-02-19 Closed Customer 4436 785697.1939921600 +4486 t 90 9705 60.61566 0.5288604099935377 Product description 4486 2023-02-10 14:03:01.089303 2024-02-18 Processing Customer 4486 983431.8585905420 +4497 f 81 576694 72.17678 0.9236661344321071 Product description 4497 2024-04-23 14:03:01.089303 2024-01-17 Processing Customer 4497 409517.5895986000 +4437 t 1 36338 38.425304 0.9757280820535286 Product description 4437 2024-04-17 14:03:01.089303 2025-06-17 Cancelled Customer 4437 883349.1760700060 +4487 t 32 746459 71.88573 0.06385223621714786 Product description 4487 2024-04-14 14:03:01.089303 2024-01-21 Processing Customer 4487 365144.0974119710 +4499 t 43 298910 48.85329 0.9368534529611345 Product description 4499 2022-06-01 14:03:01.089303 2024-01-25 Closed Customer 4499 689990.3095358300 +4439 f 38 35675 28.986076 0.038933138527941225 Product description 4439 2024-01-30 14:03:01.089303 2023-12-02 Processing Customer 4439 777391.7195928700 +4492 t 55 681457 18.501982 0.9289782469414085 Product description 4492 2022-10-04 14:03:01.089303 2025-09-03 Closed Customer 4492 452940.1576077060 +4500 f 87 207377 78.4617 0.7410624925273872 Product description 4500 2022-11-17 14:03:01.089303 2023-05-12 Processing Customer 4500 557768.9280443470 +4443 t 81 444325 32.12571 0.04981941675607615 Product description 4443 2022-06-22 14:03:01.089303 2024-05-31 Closed Customer 4443 359955.2344990330 +4493 t 54 322468 97.71504 0.48842947454354046 Product description 4493 2022-01-19 14:03:01.089303 2024-07-20 Closed Customer 4493 525885.0472096700 +4501 f 77 660117 87.12077 0.10623507378341301 Product description 4501 2024-05-24 14:03:01.089303 2025-05-13 Closed Customer 4501 637392.6749215430 +4446 t 51 526352 73.59043 0.2747401472703821 Product description 4446 2022-11-23 14:03:01.089303 2025-02-27 Processing Customer 4446 936000.5214184350 +4495 f 46 224567 75.32293 0.9395798373416788 Product description 4495 2021-10-29 14:03:01.089303 2023-09-14 Closed Customer 4495 945441.1720647120 +4504 f 25 640906 45.99199 0.23321387294280882 Product description 4504 2023-07-01 14:03:01.089303 2023-09-13 Closed Customer 4504 116042.6049424290 +4449 f 0 254547 95.14662 0.9688398380029319 Product description 4449 2023-12-21 14:03:01.089303 2023-01-13 Closed Customer 4449 638788.9118613900 +4496 f 57 407258 56.806435 0.5995875134333666 Product description 4496 2024-06-03 14:03:01.089303 2023-05-17 Closed Customer 4496 876072.4242539620 +4507 f 76 354938 75.33332 0.9082559833253931 Product description 4507 2022-10-26 14:03:01.089303 2024-09-03 Processing Customer 4507 848141.9806246890 +4450 f 56 526939 11.040061 0.6482878945310553 Product description 4450 2024-02-15 14:03:01.089303 2023-06-10 Closed Customer 4450 286632.9067046960 +4498 f 9 428001 59.514126 0.2269441748215506 Product description 4498 2022-08-24 14:03:01.089303 2023-05-26 Closed Customer 4498 91750.2370635006 +4514 t 29 194898 9.415466 0.045879603106467215 Product description 4514 2024-05-07 14:03:01.089303 2023-07-18 Processing Customer 4514 684940.4088630490 +4452 t 2 940823 51.070065 0.8554850596434385 Product description 4452 2023-07-29 14:03:01.089303 2024-07-04 Processing Customer 4452 964268.4964070940 +4502 f 94 140912 85.20425 0.5945760110050067 Product description 4502 2022-01-21 14:03:01.089303 2024-07-26 Closed Customer 4502 393060.4171582390 +4515 t 87 211404 78.051 0.5046660897092217 Product description 4515 2024-01-12 14:03:01.089303 2023-02-10 Closed Customer 4515 502604.5603248260 +4457 t 22 738194 88.80862 0.6673873541669373 Product description 4457 2022-05-15 14:03:01.089303 2023-01-03 Closed Customer 4457 509784.9201887360 +4503 t 3 167415 8.8355875 0.84453097422087 Product description 4503 2021-11-10 14:03:01.089303 2025-11-29 Closed Customer 4503 394837.0451416640 +4516 f 7 854291 99.422844 0.7664458319164389 Product description 4516 2023-07-07 14:03:01.089303 2023-06-06 Closed Customer 4516 482640.1962361830 +4458 f 16 518603 90.65084 0.8541153802922246 Product description 4458 2024-04-15 14:03:01.089303 2025-03-15 Processing Customer 4458 819638.2649345040 +4505 t 41 387562 67.54051 0.5771376002770161 Product description 4505 2021-12-21 14:03:01.089303 2023-06-20 Closed Customer 4505 750607.1343132560 +4518 f 71 414187 10.793947 0.5612178901491696 Product description 4518 2022-10-02 14:03:01.089303 2023-07-31 Closed Customer 4518 409539.1107268540 +4459 t 24 519673 75.95416 0.9444582130439336 Product description 4459 2023-01-06 14:03:01.089303 2025-07-27 Processing Customer 4459 267337.2053158830 +4508 t 76 634961 20.011211 0.5748435596675385 Product description 4508 2023-08-15 14:03:01.089303 2025-12-14 Closed Customer 4508 497631.1303959660 +4520 t 58 743102 2.5690253 0.8306579855680774 Product description 4520 2021-08-17 14:03:01.089303 2024-10-06 Processing Customer 4520 244793.8364650570 +4460 t 61 810876 28.068369 0.9171160347449465 Product description 4460 2022-02-01 14:03:01.089303 2023-01-04 Processing Customer 4460 550717.9149443220 +4511 t 70 258853 48.342297 0.40797042363302083 Product description 4511 2021-12-08 14:03:01.089303 2025-12-09 Processing Customer 4511 821097.3849567150 +4521 f 12 173356 70.47502 0.33374764142860514 Product description 4521 2024-02-23 14:03:01.089303 2023-08-14 Processing Customer 4521 237745.7224923060 +4470 f 28 608357 12.556489 0.6184589541105545 Product description 4470 2023-01-26 14:03:01.089303 2025-03-18 Closed Customer 4470 956388.0941948640 +4519 t 67 259306 95.59134 0.8795174111888819 Product description 4519 2023-03-22 14:03:01.089303 2024-01-14 Processing Customer 4519 572856.1951742750 +4524 t 73 299213 24.128092 0.7257671963551324 Product description 4524 2023-12-22 14:03:01.089303 2023-11-20 Processing Customer 4524 292347.4303178680 +4477 t 21 540543 87.89175 0.02069505135969152 Product description 4477 2022-10-24 14:03:01.089303 2025-03-26 Closed Customer 4477 930313.4420536380 +4523 f 46 716100 41.729977 0.235034048333862 Product description 4523 2021-09-14 14:03:01.089303 2024-02-11 Closed Customer 4523 49334.7510000177 +4532 f 46 246062 11.31595 0.2843804347243868 Product description 4532 2023-03-29 14:03:01.089303 2023-04-01 Processing Customer 4532 584052.3732382510 +4478 t 92 860461 51.210754 0.47918658470951314 Product description 4478 2022-04-17 14:03:01.089303 2025-12-03 Closed Customer 4478 950945.6039412360 +4525 t 66 140804 30.170116 0.4836413068859535 Product description 4525 2023-04-29 14:03:01.089303 2025-11-01 Processing Customer 4525 979910.1879815100 +4538 f 69 263872 52.851578 0.6357990269697176 Product description 4538 2022-11-24 14:03:01.089303 2024-10-05 Closed Customer 4538 526585.2256242240 +4480 f 17 996626 82.93715 0.3820177584986304 Product description 4480 2024-03-12 14:03:01.089303 2023-08-17 Processing Customer 4480 562708.5319601900 +4526 t 53 148849 10.907206 0.6239489404604122 Product description 4526 2022-02-13 14:03:01.089303 2024-07-06 Processing Customer 4526 360507.5200009940 +4539 t 91 234221 21.872402 0.6819647903945203 Product description 4539 2022-11-12 14:03:01.089303 2025-11-14 Processing Customer 4539 917925.1851703180 +4481 f 93 343716 50.516144 0.6077279868270757 Product description 4481 2023-01-15 14:03:01.089303 2025-06-05 Processing Customer 4481 874522.6680986780 +4527 t 65 311448 10.45059 0.18115860438720333 Product description 4527 2023-07-04 14:03:01.089303 2023-12-30 Closed Customer 4527 232585.0493018960 +4543 t 19 214509 66.15462 0.7168776968593527 Product description 4543 2022-12-11 14:03:01.089303 2023-06-06 Processing Customer 4543 373916.5803281920 +4484 t 50 888820 83.750275 0.8463507400940067 Product description 4484 2022-12-07 14:03:01.089303 2023-07-05 Closed Customer 4484 38371.0208661299 +4530 f 68 41368 42.44753 0.9716371661255643 Product description 4530 2024-06-17 14:03:01.089303 2023-11-19 Closed Customer 4530 989180.0284311640 +4544 f 55 946340 52.260296 0.6346358758937534 Product description 4544 2021-10-06 14:03:01.089303 2023-09-27 Closed Customer 4544 251891.4903949110 +4485 t 5 207129 58.773586 0.9379894277475707 Product description 4485 2022-02-20 14:03:01.089303 2024-03-01 Processing Customer 4485 693998.1996499820 +4534 f 45 534282 3.5227153 0.06476190964364648 Product description 4534 2024-02-25 14:03:01.089303 2024-02-17 Closed Customer 4534 619428.0071276740 +4550 f 47 784741 40.85404 0.9711061863887629 Product description 4550 2021-08-07 14:03:01.089303 2025-10-07 Processing Customer 4550 5022.6435064715 +4506 f 1 710932 78.9151 0.13680237756075186 Product description 4506 2022-02-26 14:03:01.089303 2025-10-15 Processing Customer 4506 395283.5449209930 +4540 t 21 125667 2.3673906 0.0023378591552223327 Product description 4540 2021-09-05 14:03:01.089303 2023-03-23 Processing Customer 4540 878799.0564271130 +4551 t 62 326431 54.924625 0.36784300393685854 Product description 4551 2022-03-01 14:03:01.089303 2024-12-29 Closed Customer 4551 866094.5382153930 +4509 t 45 703539 64.519135 0.5044793352542918 Product description 4509 2022-12-10 14:03:01.089303 2025-07-11 Closed Customer 4509 587769.0882331020 +4541 t 43 523423 90.04404 0.8421179956296179 Product description 4541 2022-11-09 14:03:01.089303 2025-12-27 Closed Customer 4541 469886.7886035670 +4553 t 34 754369 92.75537 0.3519198613998178 Product description 4553 2022-07-20 14:03:01.089303 2024-05-01 Processing Customer 4553 369932.7025481050 +4510 t 100 629516 97.13099 0.019159987592470173 Product description 4510 2024-01-02 14:03:01.089303 2023-01-27 Processing Customer 4510 85492.7104252070 +4542 f 70 472448 28.312683 0.8144005562057011 Product description 4542 2022-07-22 14:03:01.089303 2025-06-24 Processing Customer 4542 314148.1830378010 +4559 f 86 69140 1.483653 0.7328270008906834 Product description 4559 2023-11-12 14:03:01.089303 2024-11-23 Closed Customer 4559 73444.5832580946 +4512 f 74 760991 76.66819 0.25231732359810977 Product description 4512 2024-03-23 14:03:01.089303 2024-04-13 Closed Customer 4512 487389.0410623720 +4546 f 80 749895 99.0437 0.12729917067140306 Product description 4546 2024-01-04 14:03:01.089303 2023-10-07 Processing Customer 4546 596280.6808467110 +4560 t 81 945456 98.073845 0.3182314377649469 Product description 4560 2022-10-02 14:03:01.089303 2023-02-24 Processing Customer 4560 926510.9418112800 +4513 f 80 737405 57.893253 0.588242785348239 Product description 4513 2023-04-26 14:03:01.089303 2023-09-03 Closed Customer 4513 722043.5347483590 +4552 t 91 122861 64.66129 0.63463306595877 Product description 4552 2022-06-26 14:03:01.089303 2023-10-06 Processing Customer 4552 627470.5170831960 +4567 f 88 231 44.288433 0.3585916596436256 Product description 4567 2023-07-15 14:03:01.089303 2023-11-12 Closed Customer 4567 310907.1735962200 +4517 f 29 956201 51.339985 0.8938599674414327 Product description 4517 2023-09-22 14:03:01.089303 2023-04-23 Closed Customer 4517 492858.3472210450 +4555 t 61 522519 99.37407 0.9093351684404887 Product description 4555 2022-11-11 14:03:01.089303 2024-05-29 Closed Customer 4555 224449.5851833580 +4568 t 62 934788 11.130795 0.7358260051875725 Product description 4568 2023-04-15 14:03:01.089303 2023-03-18 Processing Customer 4568 176929.2372231560 +4522 f 85 865915 83.84778 0.6787482826646247 Product description 4522 2023-12-09 14:03:01.089303 2023-11-30 Closed Customer 4522 159027.0956605830 +4556 f 8 337736 72.55511 0.12590342111565533 Product description 4556 2023-10-31 14:03:01.089303 2023-01-07 Processing Customer 4556 30776.0256243199 +4570 f 42 188395 9.144854 0.2607011193750175 Product description 4570 2024-04-20 14:03:01.089303 2023-07-21 Closed Customer 4570 447514.7766432600 +4528 t 35 392127 83.09417 0.16506627337773594 Product description 4528 2024-02-13 14:03:01.089303 2023-06-07 Processing Customer 4528 541908.2409385540 +4561 t 82 934454 50.289413 0.7568438516188785 Product description 4561 2022-05-13 14:03:01.089303 2024-04-20 Closed Customer 4561 193130.6272566000 +4571 t 81 360088 91.55914 0.36972926431755226 Product description 4571 2024-05-18 14:03:01.089303 2025-09-08 Closed Customer 4571 875332.1349703140 +4529 t 47 953477 10.973094 0.8320250837105156 Product description 4529 2023-09-15 14:03:01.089303 2025-05-26 Closed Customer 4529 280745.8465508360 +4563 f 100 701365 65.23162 0.5302379728976412 Product description 4563 2022-04-25 14:03:01.089303 2025-02-10 Closed Customer 4563 443442.8522108650 +4573 f 37 41645 47.750996 0.32419695922698466 Product description 4573 2024-04-24 14:03:01.089303 2023-08-22 Closed Customer 4573 228866.4999722840 +4531 f 65 217351 86.377846 0.9920935049257089 Product description 4531 2023-06-12 14:03:01.089303 2025-03-17 Processing Customer 4531 500553.6236944010 +4566 t 20 948340 56.429424 0.5673824013708746 Product description 4566 2022-04-20 14:03:01.089303 2023-11-06 Closed Customer 4566 120298.0732034650 +4574 f 76 445117 66.25736 0.42866791372032864 Product description 4574 2022-04-24 14:03:01.089303 2024-01-19 Closed Customer 4574 718542.8931402880 +4533 f 79 906641 84.48917 0.690440178441829 Product description 4533 2022-01-18 14:03:01.089303 2023-11-14 Closed Customer 4533 417844.4693124350 +4569 t 16 918750 8.75041 0.8765151401534901 Product description 4569 2022-04-17 14:03:01.089303 2025-07-19 Processing Customer 4569 130026.6130197800 +4578 f 81 943527 90.216255 0.8826353663676691 Product description 4578 2022-06-20 14:03:01.089303 2025-10-10 Processing Customer 4578 52481.6468835070 +4535 f 83 633812 77.298416 0.06856228960214494 Product description 4535 2022-08-24 14:03:01.089303 2025-02-28 Closed Customer 4535 416532.5400003750 +4572 f 32 274961 77.13034 0.8017410175389266 Product description 4572 2022-11-26 14:03:01.089303 2023-08-18 Closed Customer 4572 948603.8218751320 +4579 f 39 950473 47.74292 0.8109010658654334 Product description 4579 2021-08-15 14:03:01.089303 2023-07-06 Closed Customer 4579 496915.9654188000 +4536 t 50 662233 10.930519 0.16353156980884975 Product description 4536 2024-03-17 14:03:01.089303 2025-11-01 Processing Customer 4536 819641.0080141660 +4575 f 73 584076 50.33836 0.9673470314727304 Product description 4575 2021-08-25 14:03:01.089303 2024-06-02 Processing Customer 4575 765746.7432267420 +4582 f 29 305984 22.773375 0.6333912538272877 Product description 4582 2024-03-21 14:03:01.089303 2025-02-10 Closed Customer 4582 562810.2549897700 +4537 f 40 648092 28.06668 0.4760290882890281 Product description 4537 2021-11-16 14:03:01.089303 2025-02-11 Processing Customer 4537 922799.0500037890 +4581 t 54 466773 18.295158 0.5367612924206036 Product description 4581 2022-05-04 14:03:01.089303 2024-07-13 Processing Customer 4581 964524.1573806870 +4585 t 50 241479 2.8771944 0.09888348658320112 Product description 4585 2024-01-26 14:03:01.089303 2024-11-01 Closed Customer 4585 659038.1382227050 +4545 f 87 732556 27.593054 0.12608021642091316 Product description 4545 2021-12-04 14:03:01.089303 2024-11-08 Processing Customer 4545 671924.9173443770 +4584 f 16 760105 59.957554 0.4278144314089367 Product description 4584 2023-09-28 14:03:01.089303 2024-01-20 Closed Customer 4584 387088.6009622010 +4598 f 69 902376 59.505234 0.6392829722873223 Product description 4598 2021-08-05 14:03:01.089303 2023-08-27 Closed Customer 4598 846516.6628181180 +4547 t 29 347393 66.06732 0.5796494501278495 Product description 4547 2023-01-16 14:03:01.089303 2023-10-31 Closed Customer 4547 531902.0661267050 +4587 f 76 498528 69.15494 0.34590915657944876 Product description 4587 2024-02-08 14:03:01.089303 2023-03-18 Closed Customer 4587 287830.3175726770 +4601 t 30 486574 50.980522 0.5883081528779961 Product description 4601 2023-05-15 14:03:01.089303 2024-11-23 Processing Customer 4601 454769.2594552830 +4548 f 83 370473 47.32343 0.8193566407813471 Product description 4548 2024-05-31 14:03:01.089303 2024-01-26 Closed Customer 4548 915392.1327158730 +4588 f 63 319973 96.9909 0.058944793528457495 Product description 4588 2023-11-27 14:03:01.089303 2024-09-20 Closed Customer 4588 446133.2844946920 +4602 f 48 532078 73.43262 0.96218359520822 Product description 4602 2022-07-10 14:03:01.089303 2025-06-18 Closed Customer 4602 728504.5969353940 +4549 f 80 582533 68.79584 0.08862732309801302 Product description 4549 2023-07-30 14:03:01.089303 2024-10-12 Closed Customer 4549 863905.3833096280 +4591 f 97 8492 13.587624 0.885900440894428 Product description 4591 2024-01-17 14:03:01.089303 2024-04-25 Closed Customer 4591 528657.3249619050 +4603 f 11 109353 75.25765 0.9855749220819625 Product description 4603 2023-09-07 14:03:01.089303 2025-09-06 Processing Customer 4603 767070.6809084250 +4554 f 31 875010 82.43319 0.975479956770041 Product description 4554 2021-11-04 14:03:01.089303 2025-12-10 Closed Customer 4554 577013.8863510750 +4593 f 45 481971 2.615844 0.41639322601762174 Product description 4593 2022-06-02 14:03:01.089303 2023-01-06 Processing Customer 4593 706518.0423563930 +4611 f 11 133992 28.307579 0.1151729707923046 Product description 4611 2023-07-02 14:03:01.089303 2024-10-18 Closed Customer 4611 950833.3328968210 +4557 t 63 965349 14.949951 0.9932693537662693 Product description 4557 2021-11-02 14:03:01.089303 2025-07-08 Closed Customer 4557 193647.5955629220 +4594 f 46 806819 43.98285 0.18192346746088717 Product description 4594 2023-10-08 14:03:01.089303 2023-06-13 Processing Customer 4594 965973.9994492820 +4615 t 45 730547 58.6514 0.027776813585258964 Product description 4615 2022-07-28 14:03:01.089303 2023-10-17 Closed Customer 4615 253296.7397053840 +4558 f 41 733518 59.766083 0.05407832127171375 Product description 4558 2022-01-05 14:03:01.089303 2024-04-03 Processing Customer 4558 538462.3181297950 +4599 t 39 272138 11.781247 0.5205233025052856 Product description 4599 2023-11-24 14:03:01.089303 2023-05-30 Closed Customer 4599 36377.8184793944 +4620 t 25 477583 92.4018 0.5811441397961836 Product description 4620 2021-12-04 14:03:01.089303 2023-08-31 Closed Customer 4620 947098.2198887580 +4562 f 15 526138 73.68935 0.9493689019304448 Product description 4562 2021-09-12 14:03:01.089303 2023-02-10 Processing Customer 4562 283893.9179451930 +4606 f 98 469592 78.01683 0.40581048552038723 Product description 4606 2021-11-13 14:03:01.089303 2025-02-07 Closed Customer 4606 199008.6896941890 +4624 t 79 684355 27.490135 0.4726433352869428 Product description 4624 2023-10-11 14:03:01.089303 2025-02-02 Closed Customer 4624 898348.3895781530 +4564 f 84 791640 18.317457 0.8438927262249045 Product description 4564 2024-07-16 14:03:01.089303 2024-09-22 Cancelled Customer 4564 445371.3243163510 +4608 t 66 127754 26.813484 0.004433194087656744 Product description 4608 2021-09-10 14:03:01.089303 2025-05-09 Closed Customer 4608 762386.9375459410 +4627 t 26 224707 86.75585 0.968428627630761 Product description 4627 2024-01-16 14:03:01.089303 2025-01-07 Processing Customer 4627 794054.3337903990 +4565 t 10 822938 10.798665 0.8920294748495721 Product description 4565 2023-03-13 14:03:01.089303 2024-02-01 Closed Customer 4565 96839.8679398668 +4609 f 1 90502 38.510418 0.5138860198174875 Product description 4609 2021-08-17 14:03:01.089303 2023-03-12 Processing Customer 4609 825636.5844017000 +4628 t 5 273641 71.65875 0.36491425297512237 Product description 4628 2022-06-15 14:03:01.089303 2025-05-12 Closed Customer 4628 770660.0227051940 +4576 t 47 120208 50.148216 0.6030343096767581 Product description 4576 2024-02-16 14:03:01.089303 2024-12-10 Processing Customer 4576 679990.2615533390 +4623 t 30 996122 80.46653 0.6935034107786642 Product description 4623 2021-11-26 14:03:01.089303 2023-01-18 Closed Customer 4623 345398.2621718980 +4635 t 29 72182 97.86121 0.3143928450170428 Product description 4635 2023-09-12 14:03:01.089303 2023-02-25 Processing Customer 4635 473413.2990138700 +4577 f 86 967328 11.96595 0.6978353742301593 Product description 4577 2024-04-18 14:03:01.089303 2024-03-12 Closed Customer 4577 877905.0771434560 +4626 f 37 85564 12.476208 0.427798110158502 Product description 4626 2023-01-10 14:03:01.089303 2023-07-19 Closed Customer 4626 700487.0588051590 +4639 f 52 753275 46.88239 0.5433450145656984 Product description 4639 2024-06-03 14:03:01.089303 2023-03-17 Processing Customer 4639 980887.1597980940 +4580 t 1 1753 33.08191 0.8052057971640778 Product description 4580 2021-11-17 14:03:01.089303 2025-06-25 Closed Customer 4580 962789.4371316010 +4630 f 59 967433 80.41855 0.4714506742517166 Product description 4630 2022-01-02 14:03:01.089303 2023-12-22 Closed Customer 4630 871579.4057399790 +4640 f 13 592999 76.49223 0.7281526862022538 Product description 4640 2023-02-07 14:03:01.089303 2023-12-21 Closed Customer 4640 256129.4583982770 +4583 f 7 287362 3.8157446 0.5095199240415056 Product description 4583 2023-01-29 14:03:01.089303 2023-01-05 Closed Customer 4583 802882.0717997470 +4634 f 10 383457 86.52185 0.6166758049804564 Product description 4634 2023-01-10 14:03:01.089303 2024-07-04 Closed Customer 4634 690309.9376459850 +4641 f 59 378717 86.758354 0.23259951500596898 Product description 4641 2024-07-16 14:03:01.089303 2024-07-09 Closed Customer 4641 213985.5926199130 +4586 t 11 874262 44.72844 0.7185382046826589 Product description 4586 2022-04-16 14:03:01.089303 2025-06-19 Closed Customer 4586 242729.3940537500 +4643 f 28 228401 93.340454 0.4769784312875238 Product description 4643 2023-05-27 14:03:01.089303 2023-03-22 Closed Customer 4643 575910.8251777720 +4648 f 30 423168 16.11273 0.12125070988335906 Product description 4648 2022-11-10 14:03:01.089303 2023-09-14 Processing Customer 4648 228526.6351304500 +4589 f 71 772238 59.794754 0.34959099038963615 Product description 4589 2021-10-26 14:03:01.089303 2024-09-03 Closed Customer 4589 856839.0666203850 +4644 f 83 194688 36.28249 0.47733594092792586 Product description 4644 2022-09-14 14:03:01.089303 2023-10-10 Closed Customer 4644 372799.3765092280 +4649 t 32 21684 13.408793 0.6309248341825757 Product description 4649 2022-04-20 14:03:01.089303 2023-09-05 Processing Customer 4649 957848.3016433310 +4590 t 13 745882 91.19931 0.36821675903361495 Product description 4590 2022-08-09 14:03:01.089303 2023-08-13 Processing Customer 4590 670182.4225214170 +4650 f 22 345953 26.067097 0.8608635712977311 Product description 4650 2021-11-02 14:03:01.089303 2023-08-21 Closed Customer 4650 133102.9092353760 +4652 f 7 361962 4.486825 0.6136603380339132 Product description 4652 2023-12-29 14:03:01.089303 2023-06-29 Closed Customer 4652 316839.7836437010 +4592 f 42 379566 86.85657 0.36193436343031493 Product description 4592 2024-02-14 14:03:01.089303 2025-01-06 Closed Customer 4592 332964.6828408280 +4653 t 18 662005 72.13437 0.9564920072811383 Product description 4653 2021-09-03 14:03:01.089303 2023-06-25 Closed Customer 4653 693589.8409612870 +4663 f 58 896024 35.370464 0.4126088118627216 Product description 4663 2023-04-24 14:03:01.089303 2023-04-06 Closed Customer 4663 733646.6046133770 +4595 f 13 528416 43.339912 0.8634858938451373 Product description 4595 2021-08-14 14:03:01.089303 2025-10-05 Closed Customer 4595 712836.3705332070 +4657 f 10 139262 58.24982 0.9502813441554459 Product description 4657 2021-08-07 14:03:01.089303 2024-07-09 Processing Customer 4657 273197.5823584780 +4665 t 99 426880 27.173426 0.24076962428523885 Product description 4665 2023-02-19 14:03:01.089303 2025-06-29 Closed Customer 4665 689820.9302056420 +4596 f 97 527998 98.88096 0.8842502809928092 Product description 4596 2022-02-23 14:03:01.089303 2023-01-03 Processing Customer 4596 641744.5953246710 +4658 f 87 143104 52.035984 0.4511305710806788 Product description 4658 2022-02-16 14:03:01.089303 2024-02-19 Closed Customer 4658 408611.9600553460 +4674 t 68 929916 29.218285 0.4093026530432944 Product description 4674 2023-03-18 14:03:01.089303 2024-04-10 Processing Customer 4674 370483.0818673980 +4597 t 89 581312 61.64944 0.8308957922721305 Product description 4597 2024-01-17 14:03:01.089303 2024-07-10 Closed Customer 4597 315468.9780546210 +4660 t 32 616243 97.132065 0.16554159883131447 Product description 4660 2022-03-13 14:03:01.089303 2024-12-29 Closed Customer 4660 867258.5245749500 +4675 t 31 732773 60.638653 0.5096236388742632 Product description 4675 2024-06-13 14:03:01.089303 2024-06-09 Closed Customer 4675 886775.0209471410 +4600 t 4 14139 66.77074 0.08013681196870692 Product description 4600 2024-07-27 14:03:01.089303 2023-04-24 Processing Customer 4600 154836.8597111850 +4661 t 30 271158 25.205845 0.3371741384523368 Product description 4661 2023-06-21 14:03:01.089303 2024-02-10 Closed Customer 4661 977653.4099204570 +4679 t 50 606052 82.37642 0.7024799965844828 Product description 4679 2023-02-11 14:03:01.089303 2024-04-10 Closed Customer 4679 114007.4338840760 +4604 t 65 954042 98.23782 0.6348227092072989 Product description 4604 2021-08-13 14:03:01.089303 2025-04-04 Processing Customer 4604 993334.8707615400 +4667 t 81 220259 65.55361 0.13000959150763336 Product description 4667 2024-02-17 14:03:01.089303 2024-07-14 Processing Customer 4667 647661.9264165890 +4682 t 81 439609 72.75332 0.8598647039379195 Product description 4682 2023-05-07 14:03:01.089303 2025-05-29 Closed Customer 4682 142662.6879067640 +4605 f 9 504735 29.412615 0.026184145562588412 Product description 4605 2023-01-23 14:03:01.089303 2025-12-24 Processing Customer 4605 587571.4815109950 +4668 t 87 651137 73.04427 0.07962626245008764 Product description 4668 2021-09-29 14:03:01.089303 2023-12-23 Processing Customer 4668 50163.0068318732 +4683 t 73 526015 13.859673 0.3773588421626748 Product description 4683 2023-07-03 14:03:01.089303 2025-04-19 Closed Customer 4683 147499.1181836670 +4607 f 100 162623 48.20962 0.21456609920302583 Product description 4607 2023-11-03 14:03:01.089303 2024-02-05 Cancelled Customer 4607 256423.1230549300 +4670 t 41 427895 11.550597 0.338259056423059 Product description 4670 2022-04-21 14:03:01.089303 2024-09-24 Closed Customer 4670 295740.8172823510 +4693 f 57 768364 79.23819 0.1423239036078492 Product description 4693 2022-11-24 14:03:01.089303 2023-05-26 Processing Customer 4693 77772.5747685451 +4610 f 32 833612 43.714333 0.6231544972144114 Product description 4610 2022-06-19 14:03:01.089303 2023-01-23 Processing Customer 4610 140587.4128686620 +4671 t 0 467912 42.118725 0.9776029902059058 Product description 4671 2024-07-18 14:03:01.089303 2023-03-12 Processing Customer 4671 484541.4198730890 +4698 t 98 160601 17.874155 0.0739162278918819 Product description 4698 2023-12-27 14:03:01.089303 2024-06-22 Closed Customer 4698 794933.9488833190 +4612 t 16 470700 47.271004 0.9554148541984695 Product description 4612 2023-02-14 14:03:01.089303 2024-09-20 Processing Customer 4612 659862.2624838840 +4673 f 44 173455 87.38849 0.49752430618680776 Product description 4673 2021-12-21 14:03:01.089303 2023-09-30 Processing Customer 4673 568199.4883154860 +4699 t 25 943085 23.776047 0.31753080043921855 Product description 4699 2022-04-20 14:03:01.089303 2024-04-13 Closed Customer 4699 555089.7958557210 +4613 f 76 439305 94.007774 0.1737635315138668 Product description 4613 2023-05-22 14:03:01.089303 2024-04-07 Closed Customer 4613 584362.5549684860 +4676 f 87 59148 89.35001 0.29362718480205885 Product description 4676 2023-12-24 14:03:01.089303 2025-11-02 Closed Customer 4676 983980.9135442080 +4700 f 68 862222 93.169334 0.6811853959336354 Product description 4700 2024-03-13 14:03:01.089303 2023-07-22 Closed Customer 4700 207202.3854241750 +4614 t 77 191692 67.89402 0.9244226971132044 Product description 4614 2023-05-19 14:03:01.089303 2024-11-15 Closed Customer 4614 353100.5802323650 +4678 t 59 655216 90.76614 0.2459771431938158 Product description 4678 2023-05-11 14:03:01.089303 2025-08-07 Processing Customer 4678 217214.4393142190 +4701 f 64 743582 27.436512 0.9445914256937904 Product description 4701 2022-07-08 14:03:01.089303 2025-06-04 Processing Customer 4701 155158.3971090620 +4616 f 35 71323 16.202648 0.21485418243804233 Product description 4616 2023-07-26 14:03:01.089303 2023-03-28 Closed Customer 4616 791303.2772318690 +4680 f 18 810880 73.263985 0.047556672564734725 Product description 4680 2023-08-05 14:03:01.089303 2024-07-19 Closed Customer 4680 510075.8629466430 +4703 t 94 141903 24.964575 0.4054741885422537 Product description 4703 2021-11-03 14:03:01.089303 2024-11-19 Closed Customer 4703 971536.5497311340 +4617 f 96 439863 98.79741 0.21373947267980853 Product description 4617 2021-11-30 14:03:01.089303 2025-12-10 Closed Customer 4617 453325.3030626980 +4684 f 9 448001 77.29597 0.6565736325711562 Product description 4684 2022-06-09 14:03:01.089303 2024-10-20 Closed Customer 4684 665013.6759241430 +4706 t 57 402320 17.980211 0.9406326883899716 Product description 4706 2021-10-05 14:03:01.089303 2025-08-18 Closed Customer 4706 400368.4087256970 +4618 f 4 215122 26.906837 0.21239287527368944 Product description 4618 2022-07-18 14:03:01.089303 2024-03-08 Closed Customer 4618 880837.9945284270 +4685 f 95 501015 64.12607 0.751416366917308 Product description 4685 2023-02-23 14:03:01.089303 2024-11-02 Closed Customer 4685 72777.0109807935 +4717 t 43 870839 92.67633 0.49073939477558426 Product description 4717 2022-12-06 14:03:01.089303 2025-09-30 Closed Customer 4717 675057.6558415200 +4619 t 43 873049 37.859863 0.3694773654893204 Product description 4619 2023-08-19 14:03:01.089303 2025-09-26 Processing Customer 4619 244849.0337368130 +4687 t 96 42330 35.04583 0.55114062229109 Product description 4687 2022-02-11 14:03:01.089303 2023-12-17 Processing Customer 4687 152641.1308702650 +4719 t 20 746440 12.557574 0.07064467933138374 Product description 4719 2022-10-29 14:03:01.089303 2025-04-07 Cancelled Customer 4719 474655.6374040590 +4621 f 90 165951 90.27452 0.9263048462223331 Product description 4621 2023-07-19 14:03:01.089303 2025-11-02 Closed Customer 4621 227470.9588058170 +4689 f 83 396019 17.084185 0.09271631802725366 Product description 4689 2022-10-21 14:03:01.089303 2025-01-05 Processing Customer 4689 792782.1208312410 +4720 f 99 238428 63.946507 0.4736326422766268 Product description 4720 2021-09-16 14:03:01.089303 2025-01-05 Closed Customer 4720 195969.0201451670 +4622 t 76 945981 35.248108 0.4393902697813168 Product description 4622 2022-10-15 14:03:01.089303 2024-04-24 Processing Customer 4622 465708.1847566790 +4691 f 90 629144 85.58314 0.7355726101974547 Product description 4691 2024-04-09 14:03:01.089303 2024-04-27 Closed Customer 4691 528356.5437776470 +4721 f 71 247666 55.75334 0.07143013594855319 Product description 4721 2022-06-05 14:03:01.089303 2025-06-24 Processing Customer 4721 342496.1618394100 +4625 t 41 931344 33.09779 0.6901435175591182 Product description 4625 2024-01-04 14:03:01.089303 2023-07-18 Processing Customer 4625 397674.0803027990 +4695 t 38 214523 58.548992 0.20169484573267127 Product description 4695 2022-06-24 14:03:01.089303 2023-06-10 Cancelled Customer 4695 437369.0854195150 +4725 f 55 196347 19.583368 0.6991531658193253 Product description 4725 2023-05-22 14:03:01.089303 2023-05-16 Processing Customer 4725 424989.0428750370 +4629 t 48 36307 25.767761 0.8739310113706615 Product description 4629 2022-03-13 14:03:01.089303 2025-06-14 Closed Customer 4629 312177.3196069170 +4696 t 91 143964 21.818768 0.2606230475448328 Product description 4696 2023-05-24 14:03:01.089303 2023-12-18 Closed Customer 4696 64654.9091928712 +4728 f 63 133058 2.4620306 0.7440668488479858 Product description 4728 2023-01-04 14:03:01.089303 2024-10-16 Closed Customer 4728 945955.1341408070 +4631 f 39 844102 9.264179 0.37791733979929276 Product description 4631 2022-10-07 14:03:01.089303 2024-02-04 Closed Customer 4631 554897.9081031650 +4702 t 91 779961 24.003162 0.9969478190641041 Product description 4702 2021-09-12 14:03:01.089303 2023-09-28 Closed Customer 4702 34580.9151222305 +4731 t 61 437034 15.546004 0.11979824917791859 Product description 4731 2023-04-02 14:03:01.089303 2024-01-14 Processing Customer 4731 431762.1231209720 +4632 f 73 469377 89.60918 0.6249112737416205 Product description 4632 2024-06-14 14:03:01.089303 2024-02-24 Closed Customer 4632 679421.4950817410 +4705 t 93 758768 72.56049 0.20729833459373737 Product description 4705 2021-10-13 14:03:01.089303 2025-03-31 Closed Customer 4705 946435.2833347260 +4732 t 12 364937 21.709517 0.9809669451689942 Product description 4732 2024-01-08 14:03:01.089303 2025-05-04 Closed Customer 4732 319943.7923764100 +4633 f 92 26987 4.4393535 0.9000905593836812 Product description 4633 2023-03-20 14:03:01.089303 2023-09-16 Processing Customer 4633 754299.4892230230 +4708 f 56 957696 89.0285 0.8023447120858549 Product description 4708 2022-12-01 14:03:01.089303 2023-03-03 Processing Customer 4708 98725.4399922613 +4734 f 96 968213 0.8273308 0.8419747774825339 Product description 4734 2022-04-24 14:03:01.089303 2025-08-16 Closed Customer 4734 262937.9576285620 +4636 t 67 119398 27.60744 0.73344384905214 Product description 4636 2023-07-01 14:03:01.089303 2024-07-17 Cancelled Customer 4636 118505.0712187530 +4709 f 41 911310 9.079283 0.6288326762579501 Product description 4709 2022-06-12 14:03:01.089303 2024-06-27 Processing Customer 4709 21563.6537440282 +4735 f 47 104404 66.22383 0.6866941711702239 Product description 4735 2023-04-29 14:03:01.089303 2025-04-13 Closed Customer 4735 590256.6522620450 +4637 t 8 896659 93.9967 0.2348237013472243 Product description 4637 2021-11-16 14:03:01.089303 2025-02-18 Closed Customer 4637 540760.0999385340 +4711 t 93 155227 44.596058 0.9888800238307454 Product description 4711 2023-08-04 14:03:01.089303 2023-02-22 Processing Customer 4711 550593.8949416380 +4736 t 13 469513 59.18778 0.835796652143685 Product description 4736 2021-09-24 14:03:01.089303 2025-07-03 Closed Customer 4736 988871.1023968820 +4638 t 22 747142 61.06774 0.5807420260774094 Product description 4638 2024-04-09 14:03:01.089303 2025-11-25 Processing Customer 4638 551527.2253463370 +4716 t 32 980411 52.33225 0.677218797705855 Product description 4716 2021-10-09 14:03:01.089303 2023-07-07 Closed Customer 4716 827756.4457976360 +4740 t 13 240383 22.484753 0.3196225227169336 Product description 4740 2024-07-15 14:03:01.089303 2023-07-04 Closed Customer 4740 694882.3993035550 +4642 f 21 43096 2.4361851 0.5272908574715984 Product description 4642 2023-03-19 14:03:01.089303 2024-11-12 Closed Customer 4642 682558.0253323520 +4724 t 51 660954 18.448523 0.37916011121878057 Product description 4724 2022-12-20 14:03:01.089303 2024-11-02 Closed Customer 4724 859444.5594263330 +4741 t 71 729456 41.671745 0.07175270274689183 Product description 4741 2022-12-12 14:03:01.089303 2024-02-03 Processing Customer 4741 629276.5621174640 +4645 f 15 631452 52.301407 0.45796459006329115 Product description 4645 2022-02-01 14:03:01.089303 2025-09-11 Closed Customer 4645 868079.5301465630 +4729 f 12 74077 76.764465 0.8839080057271289 Product description 4729 2021-12-17 14:03:01.089303 2023-10-04 Processing Customer 4729 303929.2946672740 +4747 t 81 978355 54.391003 0.5306179969568987 Product description 4747 2021-11-22 14:03:01.089303 2024-12-23 Closed Customer 4747 188729.2908316200 +4646 f 64 202230 65.1525 0.893284675510202 Product description 4646 2023-01-13 14:03:01.089303 2025-03-18 Closed Customer 4646 528344.3208964050 +4738 f 50 398243 14.981177 0.9173377133126621 Product description 4738 2022-09-24 14:03:01.089303 2023-03-26 Closed Customer 4738 39059.6876082689 +4751 f 73 370141 54.626137 0.4124077492625844 Product description 4751 2023-09-28 14:03:01.089303 2023-03-15 Processing Customer 4751 807538.4082206480 +4647 t 8 334209 98.73083 0.944061773376653 Product description 4647 2023-05-17 14:03:01.089303 2023-04-29 Processing Customer 4647 141758.9152305150 +4739 t 39 541215 57.6878 0.20381356826394637 Product description 4739 2022-04-27 14:03:01.089303 2023-09-29 Closed Customer 4739 80772.2152777082 +4753 f 92 508487 66.28754 0.21903751092079204 Product description 4753 2024-04-30 14:03:01.089303 2024-05-12 Processing Customer 4753 643125.4748046520 +4651 f 14 922588 41.809765 0.5304082432661801 Product description 4651 2022-05-14 14:03:01.089303 2025-07-09 Processing Customer 4651 551247.1782663190 +4742 t 35 590767 27.559341 0.6327074506023536 Product description 4742 2023-01-24 14:03:01.089303 2024-04-20 Closed Customer 4742 226189.0067060040 +4755 f 33 591842 69.79324 0.22946538398352345 Product description 4755 2023-04-28 14:03:01.089303 2025-08-28 Processing Customer 4755 741682.9096754010 +4654 f 62 656119 84.90544 0.8829035525604141 Product description 4654 2022-03-23 14:03:01.089303 2025-08-01 Processing Customer 4654 417240.5051781460 +4743 t 1 835075 6.8351893 0.2965646753258895 Product description 4743 2023-01-13 14:03:01.089303 2025-02-28 Processing Customer 4743 655475.4710459360 +4757 t 13 793709 21.651903 0.5908392699602487 Product description 4757 2023-04-11 14:03:01.089303 2024-10-02 Closed Customer 4757 574264.2330854470 +4655 t 55 191066 30.256804 0.603726855791578 Product description 4655 2021-11-24 14:03:01.089303 2023-01-30 Closed Customer 4655 700945.5942855250 +4744 t 89 856542 64.250885 0.6602732468064687 Product description 4744 2024-01-07 14:03:01.089303 2023-10-01 Closed Customer 4744 284817.5982466010 +4759 t 72 592894 14.775656 0.695406693236734 Product description 4759 2023-12-24 14:03:01.089303 2024-09-15 Processing Customer 4759 329552.3494094650 +4656 f 71 458149 27.726995 0.8463099663527984 Product description 4656 2022-11-01 14:03:01.089303 2025-02-28 Closed Customer 4656 756685.8341446230 +4750 f 19 332735 9.449886 0.9658114287525521 Product description 4750 2021-10-12 14:03:01.089303 2024-10-31 Closed Customer 4750 756152.1867047280 +4763 f 55 633032 51.973568 0.6121048808997145 Product description 4763 2024-07-19 14:03:01.089303 2024-07-22 Processing Customer 4763 91130.8866336249 +4659 t 95 577047 32.147224 0.35009134758530536 Product description 4659 2022-12-24 14:03:01.089303 2024-04-25 Closed Customer 4659 696149.3489482640 +4754 t 62 769102 63.134163 0.296440186694511 Product description 4754 2022-09-02 14:03:01.089303 2023-01-15 Closed Customer 4754 834030.2359644160 +4765 t 92 679559 21.881184 0.5247896528329647 Product description 4765 2022-02-18 14:03:01.089303 2025-06-20 Processing Customer 4765 901317.0480935710 +4662 f 81 457247 54.381004 0.8794893161089661 Product description 4662 2022-06-11 14:03:01.089303 2024-01-01 Closed Customer 4662 115205.3713845230 +4756 f 72 625172 39.555683 0.5792711093132183 Product description 4756 2023-11-28 14:03:01.089303 2025-06-27 Processing Customer 4756 154281.6130627110 +4766 t 22 892574 19.36288 0.6904557862723166 Product description 4766 2022-03-18 14:03:01.089303 2023-08-17 Closed Customer 4766 181067.2711984330 +4664 t 8 347642 37.645435 0.3590224376552129 Product description 4664 2023-01-07 14:03:01.089303 2024-02-22 Processing Customer 4664 946431.6274284780 +4761 f 25 459107 48.825974 0.374932938912508 Product description 4761 2021-08-06 14:03:01.089303 2023-09-23 Processing Customer 4761 258670.7982819940 +4767 f 37 299250 20.132463 0.5125633709139521 Product description 4767 2021-09-07 14:03:01.089303 2024-01-28 Closed Customer 4767 558398.9385667220 +4666 f 80 131991 32.282562 0.04397007733657432 Product description 4666 2023-10-18 14:03:01.089303 2023-06-08 Closed Customer 4666 689365.1591007490 +4764 f 46 248985 93.83449 0.8267251651896359 Product description 4764 2024-07-09 14:03:01.089303 2024-09-30 Closed Customer 4764 726667.8805082200 +4768 t 96 586847 0.435205 0.20643170953538714 Product description 4768 2023-07-09 14:03:01.089303 2025-08-22 Closed Customer 4768 653321.6171453550 +4669 t 59 104766 75.94815 0.09087772326276422 Product description 4669 2023-10-16 14:03:01.089303 2023-06-07 Closed Customer 4669 225402.8211219430 +4774 f 92 788108 96.963806 0.5689695390543505 Product description 4774 2021-09-22 14:03:01.089303 2025-09-11 Closed Customer 4774 276022.0151539380 +4769 t 36 809197 59.713978 0.637958779836282 Product description 4769 2022-11-08 14:03:01.089303 2024-08-08 Processing Customer 4769 149033.1408689620 +4672 t 12 121060 53.28387 0.6954209029147265 Product description 4672 2021-12-26 14:03:01.089303 2025-01-04 Closed Customer 4672 181513.5273550970 +4775 t 3 670424 21.176025 0.7163015184757953 Product description 4775 2021-09-07 14:03:01.089303 2023-12-22 Closed Customer 4775 636543.3859255240 +4770 t 73 469936 46.331512 0.20473830921790892 Product description 4770 2024-05-30 14:03:01.089303 2025-12-13 Closed Customer 4770 656641.6585050130 +4677 f 68 469527 84.23686 0.6064789213035482 Product description 4677 2023-07-11 14:03:01.089303 2023-08-15 Processing Customer 4677 375527.7938497380 +4776 t 10 165581 91.84183 0.5694121077621617 Product description 4776 2023-05-23 14:03:01.089303 2024-11-15 Processing Customer 4776 34490.3610566085 +4773 t 4 560709 47.53543 0.3283268574904099 Product description 4773 2021-08-13 14:03:01.089303 2023-05-06 Closed Customer 4773 742572.1921937730 +4681 t 76 203012 62.56729 0.7783919230286571 Product description 4681 2021-10-12 14:03:01.089303 2024-06-01 Processing Customer 4681 383172.1430137410 +4780 t 31 595141 20.88608 0.9652094584477666 Product description 4780 2022-12-20 14:03:01.089303 2023-01-17 Processing Customer 4780 46738.9569595618 +4777 f 69 46871 41.72261 0.767341705040046 Product description 4777 2024-04-24 14:03:01.089303 2025-06-29 Processing Customer 4777 560767.1666941950 +4686 f 26 141237 39.35936 0.2584427826928959 Product description 4686 2022-08-29 14:03:01.089303 2025-03-03 Processing Customer 4686 102404.3107480530 +4782 f 27 185864 74.57229 0.4169890339612863 Product description 4782 2022-04-05 14:03:01.089303 2024-04-15 Processing Customer 4782 188531.1805646770 +4778 t 35 243719 35.68429 0.9664960504944133 Product description 4778 2023-06-17 14:03:01.089303 2024-01-05 Processing Customer 4778 743373.7005741780 +4688 t 59 789414 61.904415 0.535950640846643 Product description 4688 2023-12-25 14:03:01.089303 2025-09-22 Processing Customer 4688 490581.3833434860 +4787 t 100 856161 63.23317 0.19186114450703684 Product description 4787 2024-02-20 14:03:01.089303 2024-12-31 Closed Customer 4787 12114.9407391847 +4779 t 66 730050 45.72611 0.2807905236640593 Product description 4779 2021-08-11 14:03:01.089303 2024-06-06 Closed Customer 4779 43760.1661264218 +4690 t 3 959958 58.100613 0.8825488573231297 Product description 4690 2023-03-17 14:03:01.089303 2024-05-16 Closed Customer 4690 427295.2114025760 +4788 f 44 996923 26.918108 0.7447753469390079 Product description 4788 2022-02-19 14:03:01.089303 2024-08-24 Closed Customer 4788 995172.9427700360 +4781 t 33 632679 56.65415 0.08972633952431863 Product description 4781 2021-10-19 14:03:01.089303 2025-10-28 Processing Customer 4781 457464.0282748530 +4692 f 44 525592 76.53688 0.8891536489910195 Product description 4692 2022-04-25 14:03:01.089303 2024-10-16 Closed Customer 4692 778033.5124234520 +4790 f 84 424261 41.02946 0.6723661403824295 Product description 4790 2022-03-25 14:03:01.089303 2023-02-21 Closed Customer 4790 855143.6837489670 +4783 t 76 987013 0.33124322 0.5111081783863014 Product description 4783 2023-12-24 14:03:01.089303 2024-01-07 Processing Customer 4783 923297.1546032790 +4694 f 27 153886 38.988667 0.18013002763748887 Product description 4694 2023-04-02 14:03:01.089303 2023-05-23 Processing Customer 4694 116024.0779751370 +4798 f 5 69426 37.775536 0.9330934953608647 Product description 4798 2024-04-13 14:03:01.089303 2025-04-11 Processing Customer 4798 919504.6782692590 +4784 t 20 216587 7.26347 0.38318739314635764 Product description 4784 2023-06-01 14:03:01.089303 2025-10-28 Closed Customer 4784 308520.9831769720 +4697 t 16 457978 88.12932 0.13714271241182274 Product description 4697 2023-06-12 14:03:01.089303 2024-04-23 Closed Customer 4697 338813.6924919570 +4799 f 55 638670 68.893456 0.07420000688858153 Product description 4799 2023-07-31 14:03:01.089303 2023-05-23 Closed Customer 4799 904724.8180259720 +4785 t 37 200586 51.72782 0.47147080826162124 Product description 4785 2021-08-18 14:03:01.089303 2025-02-11 Cancelled Customer 4785 131290.8503434680 +4704 f 55 835176 3.3978374 0.3053515201255408 Product description 4704 2021-12-18 14:03:01.089303 2024-12-03 Closed Customer 4704 535511.4159159870 +4800 f 12 782194 75.19689 0.5141446089844521 Product description 4800 2021-08-18 14:03:01.089303 2024-08-31 Closed Customer 4800 118009.9700727590 +4794 f 35 434774 32.454285 0.9057875972307734 Product description 4794 2023-06-09 14:03:01.089303 2024-10-19 Processing Customer 4794 888264.3120782060 +4707 f 76 631081 25.422157 0.4393570408594698 Product description 4707 2023-01-01 14:03:01.089303 2024-09-04 Closed Customer 4707 993968.7952096570 +4803 f 31 924247 0.40536883 0.040026355783091105 Product description 4803 2023-12-07 14:03:01.089303 2023-12-11 Processing Customer 4803 486695.6587504530 +4796 f 62 400317 98.974144 0.5048496067187749 Product description 4796 2021-09-28 14:03:01.089303 2025-01-06 Processing Customer 4796 14120.9114173719 +4710 f 87 677249 10.027917 0.6731400085859036 Product description 4710 2024-01-16 14:03:01.089303 2025-01-02 Closed Customer 4710 942378.5418570640 +4807 t 79 776586 83.415306 0.862414602277866 Product description 4807 2024-06-04 14:03:01.089303 2025-04-28 Closed Customer 4807 228922.1600719990 +4802 f 10 171186 49.35633 0.7694633837678886 Product description 4802 2023-07-09 14:03:01.089303 2023-01-19 Processing Customer 4802 288949.2843633120 +4712 t 5 460565 5.7977796 0.9710143712720267 Product description 4712 2022-08-21 14:03:01.089303 2024-11-29 Closed Customer 4712 615932.6020876140 +4808 f 87 849857 64.27913 0.859920474539841 Product description 4808 2022-03-29 14:03:01.089303 2025-06-13 Closed Customer 4808 273390.1620982700 +4805 t 28 553618 52.20637 0.954987036765214 Product description 4805 2024-07-17 14:03:01.089303 2025-05-22 Processing Customer 4805 474128.9722218410 +4713 f 18 48487 4.9870796 0.1463505033243706 Product description 4713 2023-01-02 14:03:01.089303 2025-05-01 Closed Customer 4713 357937.2729397610 +4809 t 10 233680 39.70995 0.7467592508784548 Product description 4809 2024-06-29 14:03:01.089303 2025-10-14 Closed Customer 4809 267721.5081405640 +4811 f 74 576796 1.511999 0.13000114818537511 Product description 4811 2022-10-22 14:03:01.089303 2023-01-16 Processing Customer 4811 278886.7832749420 +4714 t 38 784955 10.45597 0.4738583595430086 Product description 4714 2024-02-27 14:03:01.089303 2023-07-09 Processing Customer 4714 733073.6115027780 +4810 t 80 900120 24.738956 0.6634532336626435 Product description 4810 2023-11-28 14:03:01.089303 2024-10-07 Closed Customer 4810 822946.6024279230 +4812 f 88 524629 94.211006 0.2076346044170485 Product description 4812 2023-12-05 14:03:01.089303 2024-06-10 Closed Customer 4812 196138.7474956170 +4715 t 73 255081 21.581806 0.7095540390590429 Product description 4715 2022-03-18 14:03:01.089303 2025-02-26 Cancelled Customer 4715 588447.3392537610 +4813 t 98 298422 14.838842 0.6317216943373154 Product description 4813 2021-08-04 14:03:01.089303 2023-04-11 Closed Customer 4813 874003.7140405940 +4814 f 25 857910 96.7189 0.1439327864633846 Product description 4814 2024-01-18 14:03:01.089303 2023-06-03 Closed Customer 4814 668308.3880370050 +4718 t 13 303661 82.33946 0.9282472557821784 Product description 4718 2022-04-16 14:03:01.089303 2024-07-18 Processing Customer 4718 439487.4073318460 +4815 f 69 241211 33.365883 0.585223047001243 Product description 4815 2024-02-20 14:03:01.089303 2023-03-18 Closed Customer 4815 426436.7169863770 +4817 t 14 958609 20.296051 0.14121159534714067 Product description 4817 2022-08-28 14:03:01.089303 2024-05-30 Processing Customer 4817 82042.1096601009 +4722 f 95 859081 85.118645 0.2797669760245931 Product description 4722 2022-10-05 14:03:01.089303 2024-07-08 Closed Customer 4722 92594.8344517451 +4816 t 98 596361 59.436592 0.3328637543859827 Product description 4816 2023-09-15 14:03:01.089303 2024-09-14 Processing Customer 4816 344353.2955580470 +4824 t 9 492875 4.3426666 0.2370688077922587 Product description 4824 2023-12-28 14:03:01.089303 2024-09-05 Closed Customer 4824 49446.7523351432 +4723 f 47 52210 1.0030288 0.9282315046436302 Product description 4723 2023-08-16 14:03:01.089303 2024-05-11 Processing Customer 4723 764764.9758432140 +4818 f 98 725786 58.697334 0.537572733900852 Product description 4818 2022-06-18 14:03:01.089303 2023-07-10 Closed Customer 4818 307482.8468354870 +4827 t 12 325149 3.2855961 0.1306736244423483 Product description 4827 2022-03-11 14:03:01.089303 2025-03-02 Processing Customer 4827 550790.0231391500 +4726 f 51 475748 67.721 0.0714995067400288 Product description 4726 2022-11-25 14:03:01.089303 2023-07-23 Closed Customer 4726 768441.4841881020 +4821 t 1 771622 90.05787 0.3406130695340295 Product description 4821 2024-01-24 14:03:01.089303 2023-01-15 Processing Customer 4821 616312.6221984610 +4829 f 7 824903 16.276258 0.007872940384661575 Product description 4829 2023-07-23 14:03:01.089303 2024-04-29 Closed Customer 4829 991970.9094427420 +4727 f 8 485690 68.9598 0.01320630871209616 Product description 4727 2023-10-08 14:03:01.089303 2023-05-09 Closed Customer 4727 18057.4337288348 +4823 f 90 520655 93.80798 0.4696237924167903 Product description 4823 2021-10-23 14:03:01.089303 2025-09-27 Closed Customer 4823 125664.8871246180 +4832 t 69 951033 40.999035 0.6837116342324059 Product description 4832 2024-04-09 14:03:01.089303 2025-01-27 Closed Customer 4832 189899.9787942660 +4730 t 91 921401 68.48566 0.38618529159639436 Product description 4730 2022-04-21 14:03:01.089303 2023-02-27 Closed Customer 4730 955735.0001769860 +4830 f 84 907756 26.839293 0.6193803966598068 Product description 4830 2022-01-14 14:03:01.089303 2024-06-11 Closed Customer 4830 833430.7448393150 +4836 t 50 74803 4.1524916 0.6648959787017823 Product description 4836 2022-04-18 14:03:01.089303 2025-07-07 Processing Customer 4836 400752.1004802190 +4733 f 77 7509 24.92241 0.7133867192200931 Product description 4733 2022-03-12 14:03:01.089303 2023-03-18 Closed Customer 4733 25186.0554909413 +4831 f 1 874824 53.024395 0.037754397757431946 Product description 4831 2021-11-23 14:03:01.089303 2024-11-05 Processing Customer 4831 478140.9606651470 +4839 t 4 712877 12.446331 0.6468374138237571 Product description 4839 2023-02-16 14:03:01.089303 2024-01-02 Processing Customer 4839 901242.3510368210 +4737 t 61 230354 7.6462154 0.8338532461702393 Product description 4737 2024-05-28 14:03:01.089303 2023-12-31 Closed Customer 4737 389423.4724522650 +4837 f 74 592752 71.009056 0.20664958089132313 Product description 4837 2022-08-07 14:03:01.089303 2023-10-02 Closed Customer 4837 153713.3504558420 +4845 t 74 642185 57.467545 0.21849539835398346 Product description 4845 2022-03-08 14:03:01.089303 2024-05-07 Cancelled Customer 4845 278971.3576874710 +4745 f 17 502911 43.719456 0.5101964224588578 Product description 4745 2024-04-18 14:03:01.089303 2025-05-07 Closed Customer 4745 634442.8651389580 +4838 f 86 449323 67.942154 0.27271595208156185 Product description 4838 2023-06-25 14:03:01.089303 2025-04-15 Processing Customer 4838 295584.9584988820 +4847 f 93 263755 8.570002 0.8483822640796461 Product description 4847 2022-08-16 14:03:01.089303 2024-08-18 Processing Customer 4847 983969.1667177670 +4746 t 97 259858 53.026417 0.7717576724197279 Product description 4746 2023-10-11 14:03:01.089303 2025-01-24 Closed Customer 4746 992918.2133414540 +4841 f 48 850489 37.215164 0.42667570899027396 Product description 4841 2021-11-13 14:03:01.089303 2025-09-29 Closed Customer 4841 787209.0199140270 +4850 t 95 161096 93.8208 0.2694344208509918 Product description 4850 2022-07-09 14:03:01.089303 2024-03-29 Closed Customer 4850 363050.5801783990 +4748 f 22 179052 34.234188 0.5300344985555476 Product description 4748 2022-04-09 14:03:01.089303 2024-02-08 Closed Customer 4748 875092.7799972100 +4842 f 24 281417 85.19813 0.24432779327037935 Product description 4842 2022-11-23 14:03:01.089303 2024-06-15 Closed Customer 4842 326475.7622949650 +4851 t 75 25865 63.405598 0.6375485511726566 Product description 4851 2023-11-13 14:03:01.089303 2025-03-06 Processing Customer 4851 600464.0848164050 +4749 t 48 238149 58.47995 0.3855303932595895 Product description 4749 2024-03-20 14:03:01.089303 2025-08-31 Processing Customer 4749 242177.0671235920 +4844 t 66 606014 31.951094 0.8947589011495012 Product description 4844 2023-06-30 14:03:01.089303 2023-08-30 Processing Customer 4844 727215.2883578080 +4852 t 20 89285 0.029985385 0.9482418269353374 Product description 4852 2023-10-28 14:03:01.089303 2025-12-23 Closed Customer 4852 592545.8171326350 +4752 t 53 361678 94.282326 0.24534644634560365 Product description 4752 2021-08-23 14:03:01.089303 2023-10-10 Processing Customer 4752 984043.4081924840 +4848 f 40 285052 98.240715 0.6158372838197792 Product description 4848 2024-07-09 14:03:01.089303 2024-10-20 Processing Customer 4848 201277.3884587100 +4853 t 43 568539 34.532436 0.17860774127248646 Product description 4853 2024-07-14 14:03:01.089303 2024-07-24 Closed Customer 4853 830306.1838096500 +4758 f 24 234546 72.49594 0.5076124959817783 Product description 4758 2023-11-04 14:03:01.089303 2024-08-14 Closed Customer 4758 26060.6561504630 +4849 f 62 282433 5.8770075 0.8233311240926753 Product description 4849 2021-12-21 14:03:01.089303 2024-08-27 Processing Customer 4849 528553.6144068850 +4859 t 37 908640 48.75442 0.16148596769327384 Product description 4859 2023-08-08 14:03:01.089303 2025-05-26 Processing Customer 4859 232400.5637137850 +4760 f 83 789684 89.857315 0.30356894188482997 Product description 4760 2022-02-26 14:03:01.089303 2024-11-10 Cancelled Customer 4760 420468.5274748780 +4854 t 74 330415 20.937757 0.8944345090551806 Product description 4854 2021-12-18 14:03:01.089303 2025-12-28 Processing Customer 4854 284071.7852908520 +4860 t 20 918608 93.71992 0.05465467058091633 Product description 4860 2023-08-26 14:03:01.089303 2024-12-24 Closed Customer 4860 504171.5390341710 +4762 t 89 930552 89.31255 0.537824176426561 Product description 4762 2022-01-31 14:03:01.089303 2025-02-11 Closed Customer 4762 21259.7481787107 +4855 f 58 371748 91.77206 0.005965387124760468 Product description 4855 2024-01-20 14:03:01.089303 2025-11-08 Closed Customer 4855 681053.0687272770 +4862 t 24 251623 94.319756 0.9747078398723872 Product description 4862 2023-01-01 14:03:01.089303 2025-11-29 Closed Customer 4862 888604.1578824870 +4771 f 24 608836 99.31838 0.6788888149219474 Product description 4771 2022-11-03 14:03:01.089303 2023-06-07 Processing Customer 4771 264400.2617321310 +4856 t 7 485310 29.629272 0.7480437789590653 Product description 4856 2024-02-07 14:03:01.089303 2023-09-22 Closed Customer 4856 838316.8848970580 +4863 t 76 577920 93.603645 0.21384748502742923 Product description 4863 2022-01-05 14:03:01.089303 2025-02-04 Processing Customer 4863 37003.9648585667 +4772 t 47 351719 37.353737 0.004859847931591332 Product description 4772 2022-08-26 14:03:01.089303 2023-01-11 Processing Customer 4772 701006.8269675890 +4857 f 26 788098 59.978577 0.5086797748228378 Product description 4857 2022-07-21 14:03:01.089303 2024-03-20 Processing Customer 4857 412931.1670387170 +4878 t 15 685469 17.73371 0.099162105335445 Product description 4878 2023-11-13 14:03:01.089303 2024-12-27 Processing Customer 4878 587081.1438417470 +4786 t 21 868980 40.4022 0.45987666832418483 Product description 4786 2023-03-13 14:03:01.089303 2023-02-05 Processing Customer 4786 79790.7973826675 +4858 t 69 229605 73.59489 0.925479612520526 Product description 4858 2022-01-18 14:03:01.089303 2023-09-26 Closed Customer 4858 155797.0733150890 +4880 t 84 416370 69.786835 0.026516598520984758 Product description 4880 2021-11-08 14:03:01.089303 2025-04-16 Processing Customer 4880 97986.5412837846 +4789 t 100 489419 13.055959 0.6631109212141482 Product description 4789 2022-05-28 14:03:01.089303 2024-11-29 Processing Customer 4789 547856.8639915590 +4861 t 97 734815 94.84383 0.7514770378791269 Product description 4861 2021-09-23 14:03:01.089303 2025-11-17 Closed Customer 4861 63924.6097811785 +4883 f 69 961152 39.783897 0.37590968145948267 Product description 4883 2023-03-06 14:03:01.089303 2025-11-15 Closed Customer 4883 118936.8205609080 +4791 f 50 821969 91.16408 0.9733748848877042 Product description 4791 2022-08-06 14:03:01.089303 2023-05-02 Cancelled Customer 4791 700095.7586412110 +4864 f 15 114570 32.35355 0.619579450166519 Product description 4864 2021-11-25 14:03:01.089303 2023-03-07 Processing Customer 4864 689331.8080008620 +4889 f 74 902788 92.34875 0.346592737872669 Product description 4889 2022-03-22 14:03:01.089303 2023-07-05 Closed Customer 4889 696077.0368419520 +4792 f 31 953069 36.77679 0.8960436906797717 Product description 4792 2021-10-25 14:03:01.089303 2023-06-03 Cancelled Customer 4792 36275.9559788479 +4866 f 9 9954 85.72436 0.7319729697115633 Product description 4866 2024-03-26 14:03:01.089303 2025-07-12 Processing Customer 4866 809185.5629772590 +4890 f 80 18552 7.224488 0.8873841776128089 Product description 4890 2021-09-02 14:03:01.089303 2023-03-23 Closed Customer 4890 624253.8854276670 +4793 f 10 459053 47.664402 0.5542757337245305 Product description 4793 2023-06-04 14:03:01.089303 2024-09-16 Processing Customer 4793 507761.5772594620 +4867 t 86 877633 96.29516 0.911360551016152 Product description 4867 2022-09-27 14:03:01.089303 2025-01-26 Processing Customer 4867 871855.9938947160 +4891 f 36 149039 66.26275 0.8460873374049669 Product description 4891 2024-06-02 14:03:01.089303 2024-08-31 Processing Customer 4891 929305.0217541850 +4795 t 56 572769 33.176537 0.33341867914806755 Product description 4795 2022-01-13 14:03:01.089303 2023-11-14 Processing Customer 4795 351874.4371110180 +4869 f 33 780171 78.04866 0.4953876033420528 Product description 4869 2021-10-05 14:03:01.089303 2025-12-21 Closed Customer 4869 450128.3347978920 +4892 t 27 150385 9.772795 0.020091359304778678 Product description 4892 2023-04-18 14:03:01.089303 2025-10-26 Closed Customer 4892 356869.0003139250 +4797 f 66 422105 32.54854 0.35492616408500766 Product description 4797 2024-06-28 14:03:01.089303 2025-06-05 Closed Customer 4797 569534.8375048080 +4870 t 63 839560 68.474655 0.6660709499122319 Product description 4870 2021-10-06 14:03:01.089303 2025-06-05 Closed Customer 4870 944153.2402755290 +4906 f 73 812015 38.510834 0.26312749767942023 Product description 4906 2021-11-13 14:03:01.089303 2025-12-19 Processing Customer 4906 761434.5016848990 +4801 t 9 426165 36.12317 0.27351705115310665 Product description 4801 2023-02-16 14:03:01.089303 2025-08-06 Closed Customer 4801 937806.0466944720 +4871 t 35 89681 88.75505 0.16239143320854055 Product description 4871 2023-09-12 14:03:01.089303 2024-10-17 Closed Customer 4871 66219.6824657677 +4913 t 16 729233 49.307716 0.5293690405973237 Product description 4913 2023-09-13 14:03:01.089303 2024-01-31 Closed Customer 4913 873419.4659838050 +4804 t 38 490533 37.922684 0.5561677744397926 Product description 4804 2023-11-23 14:03:01.089303 2024-06-21 Closed Customer 4804 298267.8281084110 +4872 f 47 107594 47.653603 0.6858155369284376 Product description 4872 2023-04-13 14:03:01.089303 2023-12-21 Closed Customer 4872 513505.5730029060 +4915 t 5 873689 75.9703 0.7440905999716989 Product description 4915 2022-02-06 14:03:01.089303 2025-01-28 Closed Customer 4915 569711.4114633560 +4806 t 73 878982 63.830704 0.9517328032024324 Product description 4806 2023-05-15 14:03:01.089303 2024-02-21 Processing Customer 4806 914374.5031351320 +4873 t 94 787354 27.716496 0.4127284625242993 Product description 4873 2023-07-04 14:03:01.089303 2023-06-27 Closed Customer 4873 531411.3369140720 +4919 t 61 878699 69.776276 0.5316808563926188 Product description 4919 2023-03-31 14:03:01.089303 2024-12-13 Closed Customer 4919 174759.3033210140 +4819 f 40 116148 24.049265 0.8261953729893818 Product description 4819 2022-10-19 14:03:01.089303 2025-12-26 Processing Customer 4819 556755.0235978910 +4875 f 24 740581 12.591492 0.4029648418258702 Product description 4875 2022-11-19 14:03:01.089303 2025-03-17 Processing Customer 4875 754140.8830464780 +4921 f 82 951832 18.085083 0.02123953360163 Product description 4921 2024-07-26 14:03:01.089303 2025-02-22 Processing Customer 4921 857123.1023326180 +4820 t 10 695351 2.4034548 0.8591183261180504 Product description 4820 2023-05-22 14:03:01.089303 2024-09-06 Closed Customer 4820 295208.3319505580 +4876 f 84 276874 5.675607 0.015717961026354033 Product description 4876 2024-06-08 14:03:01.089303 2025-05-18 Closed Customer 4876 620398.4705576000 +4927 t 3 305089 50.17314 0.669592811767906 Product description 4927 2023-11-12 14:03:01.089303 2024-08-27 Closed Customer 4927 765546.2188078030 +4822 f 76 949953 62.969524 0.9938131366930136 Product description 4822 2024-02-02 14:03:01.089303 2024-01-05 Closed Customer 4822 443651.6246566700 +4877 t 11 359202 5.969209 0.0966475202393795 Product description 4877 2022-08-19 14:03:01.089303 2024-10-27 Closed Customer 4877 681557.6649064530 +4930 t 80 662656 44.127537 0.05459240948549393 Product description 4930 2022-04-08 14:03:01.089303 2024-12-10 Closed Customer 4930 87404.8481318077 +4825 t 52 455083 97.54259 0.5248984504522269 Product description 4825 2023-08-02 14:03:01.089303 2023-04-02 Closed Customer 4825 441336.6799947300 +4882 f 11 976289 49.44938 0.979331452964729 Product description 4882 2023-05-21 14:03:01.089303 2025-08-27 Processing Customer 4882 683660.5691290000 +4932 f 95 37066 35.924564 0.8353629081163874 Product description 4932 2021-08-25 14:03:01.089303 2024-05-29 Closed Customer 4932 122966.4895490890 +4826 t 31 816653 84.01864 0.24667780925366145 Product description 4826 2022-03-25 14:03:01.089303 2024-03-14 Closed Customer 4826 113038.9818882700 +4885 t 31 418040 23.033611 0.7822644097119493 Product description 4885 2022-11-11 14:03:01.089303 2023-08-28 Processing Customer 4885 96155.7501408556 +4933 f 44 818625 90.27434 0.989359662818913 Product description 4933 2023-08-02 14:03:01.089303 2024-12-12 Closed Customer 4933 617069.1978194860 +4828 t 28 383960 78.6474 0.0905124435700202 Product description 4828 2021-11-09 14:03:01.089303 2024-03-26 Closed Customer 4828 741371.1326096540 +4887 f 53 646507 87.99363 0.04133970347521654 Product description 4887 2024-05-02 14:03:01.089303 2025-03-16 Processing Customer 4887 567434.3142848630 +4935 t 27 87347 22.507769 0.5050630679722374 Product description 4935 2021-10-02 14:03:01.089303 2025-07-17 Processing Customer 4935 628389.0524029270 +4833 f 23 789232 33.754566 0.35320924951444255 Product description 4833 2024-04-12 14:03:01.089303 2024-01-14 Closed Customer 4833 140969.8790519120 +4893 f 54 411506 69.01111 0.14024391456457153 Product description 4893 2022-07-09 14:03:01.089303 2025-09-22 Processing Customer 4893 922297.0842325000 +4936 f 76 885396 97.09585 0.8000606531209229 Product description 4936 2023-12-10 14:03:01.089303 2024-01-05 Processing Customer 4936 842765.5264042180 +4834 t 29 419508 79.910034 0.5489879813573992 Product description 4834 2023-01-17 14:03:01.089303 2024-11-02 Closed Customer 4834 150131.3423128000 +4896 f 41 673692 46.17327 0.38594039555063375 Product description 4896 2023-02-04 14:03:01.089303 2025-09-29 Closed Customer 4896 647139.4520945740 +4939 f 2 546033 34.658604 0.20857558454817848 Product description 4939 2022-02-23 14:03:01.089303 2023-10-13 Processing Customer 4939 832043.3349522780 +4835 t 69 904885 89.57537 0.9143684054159777 Product description 4835 2023-09-04 14:03:01.089303 2023-08-12 Closed Customer 4835 266417.0098911600 +4897 t 30 30592 23.537365 0.2724119514894241 Product description 4897 2022-08-24 14:03:01.089303 2024-10-09 Processing Customer 4897 357782.4419525550 +4941 f 95 204787 5.285304 0.9744303134733343 Product description 4941 2024-06-17 14:03:01.089303 2023-02-19 Closed Customer 4941 21682.1961627964 +4840 t 79 225343 27.321753 0.5248142259789006 Product description 4840 2023-08-04 14:03:01.089303 2025-10-14 Closed Customer 4840 513878.2358813470 +4899 t 46 906521 66.16149 0.6773498521790486 Product description 4899 2021-12-03 14:03:01.089303 2025-02-07 Closed Customer 4899 972711.0260892820 +4942 f 54 535742 54.61425 0.05201497069570138 Product description 4942 2023-07-30 14:03:01.089303 2023-11-29 Closed Customer 4942 722042.9356331730 +4843 f 82 471339 17.934486 0.38438624203337923 Product description 4843 2021-12-04 14:03:01.089303 2025-06-21 Closed Customer 4843 977438.6381948580 +4901 f 33 793507 66.84079 0.6877263051858122 Product description 4901 2023-03-25 14:03:01.089303 2024-11-19 Closed Customer 4901 602203.6397076290 +4943 f 30 407367 64.990555 0.6526081451742556 Product description 4943 2024-07-11 14:03:01.089303 2023-10-19 Closed Customer 4943 465490.1474973310 +4846 f 24 590420 80.34744 0.9038111276810383 Product description 4846 2022-10-23 14:03:01.089303 2024-04-29 Closed Customer 4846 541947.7476023750 +4903 f 2 22554 25.245298 0.25123562135222244 Product description 4903 2021-10-26 14:03:01.089303 2025-12-21 Closed Customer 4903 674792.6047690780 +4944 t 80 953841 22.117575 0.7065969377109056 Product description 4944 2023-04-23 14:03:01.089303 2023-06-28 Closed Customer 4944 952299.4588206370 +4865 f 81 463313 74.0009 0.1164071876119337 Product description 4865 2021-12-10 14:03:01.089303 2025-05-30 Closed Customer 4865 880557.5901534900 +4904 t 76 964741 97.31263 0.7872015678212207 Product description 4904 2021-10-26 14:03:01.089303 2024-11-26 Closed Customer 4904 822786.5955936590 +4949 t 74 158542 1.9752069 0.10115596169066521 Product description 4949 2022-08-09 14:03:01.089303 2025-03-29 Closed Customer 4949 553127.3064093480 +4868 t 69 41501 98.24632 0.308103793491199 Product description 4868 2023-07-23 14:03:01.089303 2023-11-09 Processing Customer 4868 544393.2425226560 +4907 t 55 473169 90.96652 0.7918700680635311 Product description 4907 2021-09-05 14:03:01.089303 2023-01-05 Closed Customer 4907 925448.0448433890 +4953 f 78 349265 50.051292 0.39831085965307267 Product description 4953 2023-11-03 14:03:01.089303 2024-04-01 Closed Customer 4953 261782.9505663600 +4874 t 41 523645 51.902527 0.22523884145218886 Product description 4874 2022-10-23 14:03:01.089303 2023-04-30 Closed Customer 4874 438768.7039041490 +4908 f 97 881607 33.57185 0.6322284300939671 Product description 4908 2023-05-06 14:03:01.089303 2024-11-21 Processing Customer 4908 330873.8215224340 +4964 f 8 703601 38.611244 0.5415913192421868 Product description 4964 2021-09-02 14:03:01.089303 2023-08-29 Processing Customer 4964 993795.7358522560 +4879 f 33 74560 24.578249 0.09136829129651858 Product description 4879 2024-04-13 14:03:01.089303 2023-08-29 Closed Customer 4879 976253.8572523280 +4909 t 99 506584 34.05803 0.19691236961189418 Product description 4909 2022-02-03 14:03:01.089303 2025-08-05 Processing Customer 4909 211.7155128296 +4967 f 17 436299 4.311255 0.27067703611847804 Product description 4967 2023-10-16 14:03:01.089303 2025-02-11 Closed Customer 4967 368507.7744809070 +4881 t 50 837090 54.449524 0.9284525744580421 Product description 4881 2023-03-28 14:03:01.089303 2023-04-04 Closed Customer 4881 613315.9658936230 +4922 t 9 805496 15.427035 0.9108965176993351 Product description 4922 2024-03-26 14:03:01.089303 2024-05-12 Closed Customer 4922 834425.9193354340 +4969 t 58 476218 97.53462 0.646889593076736 Product description 4969 2023-07-30 14:03:01.089303 2024-10-22 Closed Customer 4969 128770.7836629830 +4884 f 69 268242 31.85625 0.6503076467032542 Product description 4884 2024-04-01 14:03:01.089303 2023-12-07 Closed Customer 4884 634901.7097537590 +4928 f 13 344313 42.18929 0.9453165510067549 Product description 4928 2022-03-27 14:03:01.089303 2024-01-29 Processing Customer 4928 854801.7782901770 +4971 t 53 144155 80.67022 0.9712369182185867 Product description 4971 2023-01-06 14:03:01.089303 2025-03-20 Processing Customer 4971 739500.7274583380 +4886 t 17 114293 13.635457 0.8705588096555701 Product description 4886 2022-11-25 14:03:01.089303 2024-05-26 Processing Customer 4886 334109.1098317040 +4929 f 90 490695 30.550892 0.5612147875577094 Product description 4929 2024-05-21 14:03:01.089303 2025-09-26 Closed Customer 4929 770795.7067747240 +4973 t 81 515295 95.387375 0.3974632310084729 Product description 4973 2023-05-02 14:03:01.089303 2023-03-14 Closed Customer 4973 559511.4028692870 +4888 t 99 602954 50.66849 0.8092581047744289 Product description 4888 2021-10-07 14:03:01.089303 2024-01-06 Closed Customer 4888 411841.1260800590 +4946 f 48 367154 55.320625 0.9426804885289215 Product description 4946 2022-07-12 14:03:01.089303 2025-09-21 Processing Customer 4946 255175.8837038670 +4976 f 38 201015 59.78917 0.43220977134966887 Product description 4976 2022-11-17 14:03:01.089303 2024-01-28 Cancelled Customer 4976 903977.6760566910 +4894 t 76 39809 52.496445 0.97261275851573 Product description 4894 2023-04-28 14:03:01.089303 2023-09-22 Processing Customer 4894 956700.7540556350 +4947 f 0 153629 19.579138 0.3442642757511223 Product description 4947 2024-03-24 14:03:01.089303 2023-04-12 Closed Customer 4947 544116.0320420020 +4977 f 84 744105 37.921 0.39692885382507725 Product description 4977 2024-05-02 14:03:01.089303 2023-11-11 Processing Customer 4977 176627.1515985660 +4895 f 81 573443 84.541985 0.43845503172204303 Product description 4895 2022-03-14 14:03:01.089303 2023-10-07 Processing Customer 4895 559220.5137171750 +4952 f 24 809632 90.250755 0.031184214043094016 Product description 4952 2022-02-12 14:03:01.089303 2023-01-25 Closed Customer 4952 919946.3232293360 +4979 f 51 166794 71.95367 0.33128908967502113 Product description 4979 2021-11-14 14:03:01.089303 2023-11-26 Cancelled Customer 4979 377490.9352425450 +4898 f 73 434950 93.37275 0.6292427719707021 Product description 4898 2022-06-19 14:03:01.089303 2024-06-28 Processing Customer 4898 859064.5195816970 +4955 t 79 969752 88.14994 0.9884162862337647 Product description 4955 2023-06-11 14:03:01.089303 2024-12-11 Closed Customer 4955 443138.4599444390 +4980 f 25 819235 55.886852 0.2646508847200053 Product description 4980 2022-04-19 14:03:01.089303 2024-12-10 Cancelled Customer 4980 991105.5895749930 +4900 f 16 480052 20.562342 0.36846918538991247 Product description 4900 2021-08-23 14:03:01.089303 2025-05-09 Processing Customer 4900 889680.0905292070 +4956 t 37 452204 78.05987 0.5800294329801687 Product description 4956 2022-09-16 14:03:01.089303 2023-05-27 Processing Customer 4956 526250.0744517630 +4985 f 90 687448 83.78619 0.5552486604863311 Product description 4985 2023-12-21 14:03:01.089303 2023-02-27 Closed Customer 4985 836403.0401614290 +4902 f 21 650635 34.626526 0.722710805101535 Product description 4902 2023-05-08 14:03:01.089303 2023-09-28 Processing Customer 4902 773572.3164812680 +4957 f 5 617345 55.601368 0.13003148853240276 Product description 4957 2023-01-01 14:03:01.089303 2023-12-11 Closed Customer 4957 814085.1407998080 +4988 f 30 841826 74.3121 0.6897132347227704 Product description 4988 2022-02-19 14:03:01.089303 2024-08-07 Cancelled Customer 4988 956387.6950502500 +4905 f 90 521460 25.068903 0.8224465504042087 Product description 4905 2023-08-29 14:03:01.089303 2023-11-30 Processing Customer 4905 472129.1678085290 +4959 f 43 701748 95.494995 0.4820249875109255 Product description 4959 2022-07-19 14:03:01.089303 2023-06-14 Processing Customer 4959 361371.1122781890 +4989 t 28 387228 3.3785214 0.06226448782998517 Product description 4989 2024-05-13 14:03:01.089303 2025-01-10 Closed Customer 4989 729263.0649721910 +4910 f 23 127381 98.84974 0.3933143540938957 Product description 4910 2022-08-17 14:03:01.089303 2023-01-08 Closed Customer 4910 38760.4229862610 +4962 t 44 423232 36.193142 0.7668734163342847 Product description 4962 2023-06-24 14:03:01.089303 2025-08-30 Closed Customer 4962 940475.6178534550 +4991 t 98 606226 95.9611 0.7598750172296889 Product description 4991 2023-06-19 14:03:01.089303 2025-01-21 Closed Customer 4991 505172.5790537170 +4911 t 32 724853 28.944036 0.7159625766910409 Product description 4911 2023-04-17 14:03:01.089303 2025-04-19 Closed Customer 4911 642382.8980904990 +4970 t 36 154737 98.37255 0.5908291158174706 Product description 4970 2022-06-24 14:03:01.089303 2023-08-14 Cancelled Customer 4970 136173.5706938700 +4995 t 41 687765 24.325552 0.6930666573598856 Product description 4995 2023-05-16 14:03:01.089303 2025-09-28 Closed Customer 4995 105660.7049469030 +4912 t 54 882182 1.0359057 0.8294481657091168 Product description 4912 2023-02-16 14:03:01.089303 2024-01-20 Processing Customer 4912 657519.4224026750 +4972 t 83 977594 99.4613 0.0842836546195791 Product description 4972 2024-07-27 14:03:01.089303 2023-10-03 Processing Customer 4972 58270.8097112530 +4996 t 91 7628 1.2495593 0.17528066132454967 Product description 4996 2022-03-03 14:03:01.089303 2025-05-16 Processing Customer 4996 592292.4770292570 +4914 t 88 151755 75.00462 0.18657354116393776 Product description 4914 2021-11-18 14:03:01.089303 2023-05-02 Processing Customer 4914 333673.1457070210 +4975 t 47 14944 71.35908 0.3180478968851368 Product description 4975 2021-09-13 14:03:01.089303 2024-10-19 Processing Customer 4975 354227.1026674510 +4997 t 43 73546 92.090294 0.513022056103857 Product description 4997 2021-09-16 14:03:01.089303 2023-11-23 Processing Customer 4997 14079.8697348323 +4916 f 77 851670 59.638653 0.3793136056993731 Product description 4916 2024-03-24 14:03:01.089303 2025-04-09 Processing Customer 4916 344687.8199910690 +4978 f 56 241694 69.605865 0.23997250199586162 Product description 4978 2022-12-12 14:03:01.089303 2025-07-15 Processing Customer 4978 191555.2464403380 +5002 f 28 113437 29.705387 0.2529340247301093 Product description 5002 2021-11-10 14:03:01.089303 2023-02-06 Processing Customer 5002 103583.7579601630 +4917 t 55 350682 14.238802 0.9796779342688495 Product description 4917 2024-01-03 14:03:01.089303 2024-09-28 Closed Customer 4917 305889.2330238730 +4981 f 17 644207 87.29298 0.9507374522584549 Product description 4981 2021-08-14 14:03:01.089303 2023-04-18 Processing Customer 4981 130014.8451965410 +5003 t 68 188084 31.10498 0.06277349919827913 Product description 5003 2022-02-18 14:03:01.089303 2024-08-07 Processing Customer 5003 99604.0816473034 +4918 f 31 436954 30.513166 0.978070365808712 Product description 4918 2021-10-17 14:03:01.089303 2025-02-04 Closed Customer 4918 884743.5479591080 +4982 t 73 539581 25.715805 0.21785595682873904 Product description 4982 2024-01-15 14:03:01.089303 2025-09-02 Closed Customer 4982 471125.8197313340 +5004 t 85 567913 33.753517 0.8722425194587373 Product description 5004 2023-03-02 14:03:01.089303 2023-07-09 Processing Customer 5004 550065.7294171100 +4920 f 71 411092 93.13244 0.9053783182403095 Product description 4920 2021-09-11 14:03:01.089303 2024-10-23 Closed Customer 4920 162634.5704337350 +4986 t 77 371332 28.481176 0.2642330604766734 Product description 4986 2022-09-30 14:03:01.089303 2025-09-22 Processing Customer 4986 55362.9230854966 +5006 t 61 739678 82.72206 0.7368917247385056 Product description 5006 2023-01-18 14:03:01.089303 2023-06-08 Closed Customer 5006 833933.9803265380 +4923 t 57 360489 51.108284 0.4957707517458019 Product description 4923 2024-03-14 14:03:01.089303 2025-02-22 Closed Customer 4923 362066.8941038940 +4994 t 52 527561 18.294504 0.9008758342217611 Product description 4994 2024-06-10 14:03:01.089303 2023-02-18 Processing Customer 4994 287318.8877072650 +5009 t 38 924734 96.68145 0.43472554155081866 Product description 5009 2023-03-07 14:03:01.089303 2025-04-25 Processing Customer 5009 876251.1621186740 +4924 t 22 754725 92.678665 0.517073074869657 Product description 4924 2021-11-14 14:03:01.089303 2024-04-06 Cancelled Customer 4924 579717.2907617490 +4998 t 74 329906 85.4574 0.6962404747399269 Product description 4998 2022-07-05 14:03:01.089303 2024-02-05 Processing Customer 4998 921792.4634845080 +5015 f 81 182997 81.040764 0.3030824066184792 Product description 5015 2022-02-19 14:03:01.089303 2025-05-22 Cancelled Customer 5015 190012.2226979800 +4925 f 6 816710 61.491104 0.46686347398891925 Product description 4925 2021-08-17 14:03:01.089303 2024-04-09 Processing Customer 4925 639628.2190401980 +4999 t 56 641980 44.8081 0.964978551297687 Product description 4999 2021-10-11 14:03:01.089303 2024-01-23 Processing Customer 4999 477553.5259866570 +5019 t 47 549047 65.93113 0.10911786542262192 Product description 5019 2023-10-23 14:03:01.089303 2025-06-09 Closed Customer 5019 398080.0120636450 +4926 f 49 700159 60.622288 0.34005491140868926 Product description 4926 2022-07-26 14:03:01.089303 2025-01-12 Processing Customer 4926 913730.6936667500 +5001 f 13 251296 69.389435 0.16155786922169924 Product description 5001 2023-03-17 14:03:01.089303 2025-12-08 Closed Customer 5001 21933.1515191499 +5020 t 56 39039 24.174067 0.6611572779176491 Product description 5020 2022-06-07 14:03:01.089303 2025-03-05 Closed Customer 5020 653370.2573332860 +4931 f 67 923195 11.668198 0.4259534216348406 Product description 4931 2022-09-02 14:03:01.089303 2024-05-20 Processing Customer 4931 536640.7856654900 +5005 t 36 785087 35.182957 0.2885811563433087 Product description 5005 2023-03-25 14:03:01.089303 2025-05-29 Processing Customer 5005 971346.5857912170 +5021 f 20 395462 83.82136 0.36695848809214127 Product description 5021 2022-04-11 14:03:01.089303 2023-03-22 Closed Customer 5021 561621.3080245560 +4934 t 12 353900 86.90861 0.05597381235573451 Product description 4934 2023-05-03 14:03:01.089303 2024-08-15 Closed Customer 4934 208514.9477131840 +5008 f 91 697028 37.545403 0.37081848031663256 Product description 5008 2022-02-04 14:03:01.089303 2024-07-07 Processing Customer 5008 185094.2438676670 +5026 f 20 836472 26.950098 0.4719031352364702 Product description 5026 2024-03-26 14:03:01.089303 2023-03-11 Processing Customer 5026 268249.4851962000 +4937 f 59 101966 88.569115 0.06566581580727515 Product description 4937 2023-12-15 14:03:01.089303 2024-03-23 Closed Customer 4937 852936.8601593960 +5011 f 65 659651 1.2304306 0.5008669021408672 Product description 5011 2022-07-12 14:03:01.089303 2025-06-04 Cancelled Customer 5011 64835.9128376619 +5027 t 15 782772 28.93619 0.48825044060668077 Product description 5027 2023-08-07 14:03:01.089303 2023-03-20 Closed Customer 5027 204168.0678017600 +4938 t 97 386041 42.773228 0.4409670113993549 Product description 4938 2024-08-01 14:03:01.089303 2024-10-29 Processing Customer 4938 845632.4505890080 +5012 f 30 395029 86.16133 0.28261757735713644 Product description 5012 2023-08-23 14:03:01.089303 2024-08-16 Processing Customer 5012 61712.9455386767 +5032 f 92 646089 13.604648 0.6654138068542714 Product description 5032 2021-12-18 14:03:01.089303 2024-02-08 Closed Customer 5032 837396.7010153150 +4940 f 67 598008 57.052433 0.865872619340518 Product description 4940 2024-06-28 14:03:01.089303 2023-03-16 Processing Customer 4940 226909.4239147410 +5016 t 71 100187 99.17212 0.10658637391657066 Product description 5016 2024-02-01 14:03:01.089303 2024-05-27 Closed Customer 5016 904948.0513926900 +5033 f 62 286397 23.204468 0.5761446555538363 Product description 5033 2024-05-04 14:03:01.089303 2024-08-24 Processing Customer 5033 581693.6944935800 +4945 f 73 434691 6.2040963 0.9248185945522103 Product description 4945 2023-09-21 14:03:01.089303 2024-03-30 Closed Customer 4945 912715.7456324820 +5018 f 10 840212 71.11313 0.944444261276665 Product description 5018 2024-06-05 14:03:01.089303 2023-10-26 Closed Customer 5018 429616.6468768410 +5036 f 10 117741 7.0304956 0.8811758748222296 Product description 5036 2022-09-23 14:03:01.089303 2025-12-05 Closed Customer 5036 257587.2986720280 +4948 f 70 514608 79.62377 0.26088662889494785 Product description 4948 2022-02-21 14:03:01.089303 2024-04-27 Closed Customer 4948 717346.2203360610 +5022 t 43 573757 12.400096 0.3925124839837082 Product description 5022 2021-12-21 14:03:01.089303 2024-11-02 Closed Customer 5022 90450.8942674163 +5037 t 53 395675 43.515068 0.2508314365353108 Product description 5037 2022-10-14 14:03:01.089303 2023-03-03 Closed Customer 5037 789182.4073240060 +4950 f 54 373105 63.57839 0.9542559463982379 Product description 4950 2022-08-14 14:03:01.089303 2023-02-15 Closed Customer 4950 666195.3563027370 +5023 t 33 688603 52.81618 0.18583126581707887 Product description 5023 2023-07-14 14:03:01.089303 2025-02-11 Closed Customer 5023 817092.6161488870 +5038 f 68 219473 15.135408 0.2926209450304178 Product description 5038 2024-06-16 14:03:01.089303 2023-11-09 Closed Customer 5038 373267.7767941440 +4951 t 53 228132 69.83746 0.060485232153990154 Product description 4951 2024-02-09 14:03:01.089303 2025-12-30 Closed Customer 4951 608056.0678777760 +5024 t 4 97441 8.090242 0.7557617243266179 Product description 5024 2024-06-18 14:03:01.089303 2024-05-02 Closed Customer 5024 121994.4808447300 +5044 t 25 432604 85.75523 0.6420671616810729 Product description 5044 2024-06-10 14:03:01.089303 2024-04-08 Processing Customer 5044 695123.7565923090 +4954 f 91 418067 77.13364 0.7779594108507304 Product description 4954 2021-10-22 14:03:01.089303 2023-09-04 Closed Customer 4954 537967.5836334740 +5028 f 62 423608 65.78475 0.6275189998311035 Product description 5028 2022-02-02 14:03:01.089303 2023-02-21 Processing Customer 5028 388213.2521532680 +5045 f 71 918757 57.970325 0.673592694876799 Product description 5045 2023-01-20 14:03:01.089303 2023-08-13 Processing Customer 5045 81445.4268379095 +4958 f 99 731671 64.80796 0.4924340163670955 Product description 4958 2024-02-11 14:03:01.089303 2023-10-01 Closed Customer 4958 34874.7770643243 +5030 t 95 766183 94.75815 0.9429882198648869 Product description 5030 2022-04-28 14:03:01.089303 2024-05-23 Processing Customer 5030 375837.6847709250 +5046 t 54 128475 99.66382 0.11183185333344525 Product description 5046 2022-08-08 14:03:01.089303 2023-10-17 Closed Customer 5046 61206.7718633682 +4960 f 45 755255 19.47794 0.9609367791856904 Product description 4960 2023-02-25 14:03:01.089303 2025-10-21 Closed Customer 4960 50064.8143535187 +5031 f 46 373987 24.176306 0.5420365348830884 Product description 5031 2022-11-06 14:03:01.089303 2025-03-16 Processing Customer 5031 137920.5103841240 +5049 f 90 643292 60.12683 0.24221615799390506 Product description 5049 2021-09-15 14:03:01.089303 2024-01-25 Processing Customer 5049 151815.6535638940 +4961 f 61 36497 29.60339 0.05479438694539951 Product description 4961 2024-07-13 14:03:01.089303 2025-06-09 Closed Customer 4961 728978.1025988520 +5035 f 77 321844 3.179964 0.40194306243898836 Product description 5035 2023-01-29 14:03:01.089303 2024-06-17 Processing Customer 5035 174573.8793834410 +5061 f 68 806716 51.8073 0.5222538081302481 Product description 5061 2023-09-18 14:03:01.089303 2023-12-27 Closed Customer 5061 785365.3413753680 +4963 f 4 266491 50.07836 0.8820546528510711 Product description 4963 2024-01-16 14:03:01.089303 2023-11-13 Processing Customer 4963 895986.9872114440 +5040 t 91 721408 97.50269 0.6385329922398526 Product description 5040 2024-02-07 14:03:01.089303 2025-02-20 Closed Customer 5040 721254.0592775310 +5064 f 69 52653 81.697914 0.6148854726109612 Product description 5064 2022-01-21 14:03:01.089303 2023-08-13 Closed Customer 5064 491410.4991499850 +4965 t 71 436115 84.82164 0.3741614458811817 Product description 4965 2023-07-27 14:03:01.089303 2023-11-27 Processing Customer 4965 337516.7165986350 +5042 t 99 888070 81.76391 0.3397183799171586 Product description 5042 2023-03-29 14:03:01.089303 2025-10-17 Cancelled Customer 5042 125066.6545851400 +5065 f 89 986011 17.85603 0.9843178833274528 Product description 5065 2021-12-06 14:03:01.089303 2024-02-01 Closed Customer 5065 737030.9189325890 +4966 t 73 471774 49.648975 0.598359579382592 Product description 4966 2021-09-29 14:03:01.089303 2024-12-31 Closed Customer 4966 555144.7656762750 +5043 f 16 465728 44.35438 0.8076389054645254 Product description 5043 2021-10-31 14:03:01.089303 2025-12-11 Processing Customer 5043 589136.3778909310 +5069 f 93 838462 36.633514 0.013560715881165919 Product description 5069 2021-08-15 14:03:01.089303 2023-09-15 Processing Customer 5069 709490.0830539430 +4968 f 20 14388 81.79819 0.2787843184829448 Product description 4968 2024-03-31 14:03:01.089303 2023-12-02 Closed Customer 4968 251250.4509583590 +5048 f 95 195885 97.932526 0.7178564159753513 Product description 5048 2024-07-11 14:03:01.089303 2025-05-17 Processing Customer 5048 990040.5431976510 +5070 t 96 763192 17.84138 0.6731006282193768 Product description 5070 2024-07-07 14:03:01.089303 2025-12-07 Closed Customer 5070 504770.8286232510 +4974 t 38 724521 11.707111 0.9857198394931466 Product description 4974 2021-11-21 14:03:01.089303 2024-05-21 Closed Customer 4974 74141.7291022799 +5052 f 5 800039 85.46149 0.05386450642553697 Product description 5052 2024-06-02 14:03:01.089303 2024-08-19 Processing Customer 5052 110827.0344371860 +5071 f 91 801506 10.0973625 0.2377170649120437 Product description 5071 2024-01-09 14:03:01.089303 2024-02-23 Closed Customer 5071 983208.3926383110 +4983 f 24 535275 21.354988 0.036903715794888825 Product description 4983 2021-09-29 14:03:01.089303 2025-01-06 Closed Customer 4983 780697.5883364730 +5053 f 80 334456 43.77012 0.39657419245431313 Product description 5053 2022-07-01 14:03:01.089303 2023-11-09 Processing Customer 5053 533226.3443613670 +5073 f 6 18623 31.49722 0.06616854643828063 Product description 5073 2022-04-14 14:03:01.089303 2024-06-10 Closed Customer 5073 588469.3500558740 +4984 t 14 651378 32.00029 0.624969184545396 Product description 4984 2023-05-25 14:03:01.089303 2023-11-17 Processing Customer 4984 974798.5841431300 +5054 t 92 768422 53.954086 0.48474081026989424 Product description 5054 2022-10-11 14:03:01.089303 2025-02-15 Processing Customer 5054 355215.2186226250 +5080 f 38 576292 79.51063 0.28050317880123643 Product description 5080 2021-12-06 14:03:01.089303 2023-10-12 Processing Customer 5080 373117.7270021600 +4987 f 57 580850 25.775953 0.044858591602757514 Product description 4987 2024-03-29 14:03:01.089303 2025-08-11 Processing Customer 4987 597056.3447852660 +5057 t 92 188737 98.63231 0.2912660252655179 Product description 5057 2023-07-09 14:03:01.089303 2024-10-24 Closed Customer 5057 328354.5828111440 +5081 t 40 656418 15.2285795 0.9597806882453064 Product description 5081 2023-02-05 14:03:01.089303 2023-10-04 Cancelled Customer 5081 615991.1266273820 +4990 f 22 78805 34.562828 0.39945699866597195 Product description 4990 2023-08-01 14:03:01.089303 2024-01-08 Processing Customer 4990 736436.0761792170 +5058 t 70 152636 79.70466 0.7102133702688427 Product description 5058 2021-11-24 14:03:01.089303 2023-10-30 Processing Customer 5058 584571.2036405290 +5082 f 31 755173 34.96929 0.8072980471361575 Product description 5082 2021-10-30 14:03:01.089303 2023-02-09 Closed Customer 5082 639594.5572126570 +4992 f 61 66344 79.102516 0.43144810961748803 Product description 4992 2024-01-23 14:03:01.089303 2023-06-23 Processing Customer 4992 139651.4451019260 +5059 t 90 711478 4.5038915 0.5034155841848822 Product description 5059 2022-12-18 14:03:01.089303 2024-04-29 Closed Customer 5059 275504.2315122580 +5086 f 67 595683 23.705156 0.7061683714253562 Product description 5086 2022-06-12 14:03:01.089303 2023-10-14 Processing Customer 5086 952483.3908342640 +4993 t 46 398516 34.18748 0.6226506012147901 Product description 4993 2023-02-09 14:03:01.089303 2025-12-23 Closed Customer 4993 504649.0092816920 +5062 t 21 348099 64.17444 0.9514082145006704 Product description 5062 2023-02-25 14:03:01.089303 2023-10-05 Processing Customer 5062 548232.3237531330 +5090 t 46 359767 27.888035 0.4994225602673765 Product description 5090 2024-03-20 14:03:01.089303 2025-01-09 Closed Customer 5090 543777.7175328160 +5000 f 91 630805 67.5119 0.9701945907737972 Product description 5000 2024-02-15 14:03:01.089303 2025-04-17 Closed Customer 5000 813885.4070657470 +5066 f 59 177953 83.36356 0.5572662323953104 Product description 5066 2024-06-24 14:03:01.089303 2025-05-07 Processing Customer 5066 865527.6214979470 +5092 f 13 848492 36.07524 0.2738685684862716 Product description 5092 2023-10-14 14:03:01.089303 2023-06-23 Processing Customer 5092 746615.8362778290 +5007 f 27 794565 98.25398 0.9077650256843022 Product description 5007 2022-01-23 14:03:01.089303 2023-08-24 Closed Customer 5007 859410.6252778030 +5068 f 65 33610 9.924899 0.24310688793307733 Product description 5068 2022-03-18 14:03:01.089303 2023-04-07 Processing Customer 5068 509468.6028395970 +5096 f 70 272471 9.860537 0.4237729153742009 Product description 5096 2022-03-24 14:03:01.089303 2025-12-14 Closed Customer 5096 645333.2992071770 +5010 f 16 720813 94.41227 0.14567047508279174 Product description 5010 2022-04-27 14:03:01.089303 2024-11-19 Processing Customer 5010 216733.3853457830 +5074 t 11 357360 41.914726 0.5177961208423376 Product description 5074 2022-09-07 14:03:01.089303 2025-03-16 Processing Customer 5074 856008.1262745600 +5099 f 59 66537 53.68351 0.24962518343861717 Product description 5099 2022-08-02 14:03:01.089303 2023-07-09 Closed Customer 5099 800570.6437687120 +5013 t 96 678723 33.115616 0.12550892287109505 Product description 5013 2021-10-29 14:03:01.089303 2024-05-15 Closed Customer 5013 843758.6103043630 +5076 t 11 766139 4.864555 0.16525785250439284 Product description 5076 2023-04-22 14:03:01.089303 2025-03-19 Processing Customer 5076 501329.8927486930 +5101 t 62 325668 42.866123 0.5513940013984637 Product description 5101 2022-07-28 14:03:01.089303 2023-02-08 Processing Customer 5101 602194.5192761500 +5014 f 43 808586 49.21645 0.13068541963589198 Product description 5014 2023-03-05 14:03:01.089303 2023-02-20 Cancelled Customer 5014 639472.5607894110 +5077 t 33 78385 65.41354 0.5001493650530371 Product description 5077 2021-09-15 14:03:01.089303 2023-12-12 Processing Customer 5077 664661.9233608390 +5109 f 9 798831 43.81601 0.3747042551514639 Product description 5109 2021-10-13 14:03:01.089303 2024-07-11 Cancelled Customer 5109 964565.9039216030 +5017 f 74 163875 39.089817 0.6139223475961799 Product description 5017 2024-03-06 14:03:01.089303 2025-11-07 Closed Customer 5017 227757.4455698680 +5078 f 89 307401 51.318157 0.4945824517618682 Product description 5078 2023-12-17 14:03:01.089303 2023-10-27 Processing Customer 5078 224618.8715081060 +5113 f 36 444135 87.43017 0.37422932576467716 Product description 5113 2024-05-07 14:03:01.089303 2024-10-21 Closed Customer 5113 395698.9259003340 +5025 t 89 946894 23.716103 0.5510684371375731 Product description 5025 2024-03-29 14:03:01.089303 2024-11-21 Closed Customer 5025 140965.4009789100 +5083 t 6 180204 13.749035 0.8465474075828645 Product description 5083 2023-06-05 14:03:01.089303 2023-10-29 Closed Customer 5083 844997.8760063740 +5116 f 35 861381 67.03044 0.942804530715943 Product description 5116 2023-01-17 14:03:01.089303 2023-11-28 Processing Customer 5116 476762.2605006850 +5029 t 29 628267 94.12044 0.6415090792636349 Product description 5029 2023-01-16 14:03:01.089303 2025-06-12 Closed Customer 5029 376496.8738828610 +5084 f 45 154227 81.60487 0.19790081580472574 Product description 5084 2022-10-02 14:03:01.089303 2023-05-19 Closed Customer 5084 553231.5719988570 +5117 f 16 836579 52.743374 0.2455936459013408 Product description 5117 2024-07-03 14:03:01.089303 2025-12-22 Closed Customer 5117 339511.2389668780 +5034 t 74 291794 80.15921 0.6035572673185357 Product description 5034 2022-01-21 14:03:01.089303 2024-08-30 Cancelled Customer 5034 439000.7006235950 +5088 f 11 304984 72.178894 0.862141223210191 Product description 5088 2024-03-13 14:03:01.089303 2023-09-17 Closed Customer 5088 738179.3693940470 +5118 t 12 140081 44.20024 0.14926481295932703 Product description 5118 2021-09-18 14:03:01.089303 2025-09-10 Closed Customer 5118 564392.0892550580 +5039 f 58 813396 39.75167 0.6643056799542926 Product description 5039 2022-11-23 14:03:01.089303 2025-10-29 Closed Customer 5039 122671.2076762270 +5100 f 74 33650 84.98493 0.10322034912534761 Product description 5100 2023-03-02 14:03:01.089303 2023-02-21 Processing Customer 5100 79060.3892912642 +5119 t 28 979651 76.12415 0.21585378240621722 Product description 5119 2023-02-09 14:03:01.089303 2025-07-29 Closed Customer 5119 684161.7198531790 +5041 f 8 13431 18.73886 0.7597304918638095 Product description 5041 2024-02-08 14:03:01.089303 2023-08-23 Processing Customer 5041 947331.9993606140 +5105 f 30 854135 33.31656 0.42291495685960356 Product description 5105 2023-10-04 14:03:01.089303 2023-03-07 Closed Customer 5105 303177.8401722820 +5121 f 41 202140 61.100994 0.20005950762456948 Product description 5121 2023-04-13 14:03:01.089303 2023-10-29 Closed Customer 5121 80047.0925682291 +5047 t 34 649109 92.57788 0.8795913376569864 Product description 5047 2023-11-07 14:03:01.089303 2023-05-01 Closed Customer 5047 156431.2407552180 +5107 f 98 126927 25.522232 0.4190296209439417 Product description 5107 2023-02-26 14:03:01.089303 2024-06-30 Processing Customer 5107 714565.3119579900 +5122 f 69 688288 68.36871 0.8578448941306824 Product description 5122 2024-01-03 14:03:01.089303 2023-06-11 Closed Customer 5122 779822.9919000050 +5050 t 19 387447 78.574135 0.4380382375055696 Product description 5050 2022-07-25 14:03:01.089303 2024-01-20 Closed Customer 5050 405771.2061688650 +5108 t 23 640582 18.07179 0.44681020850262954 Product description 5108 2023-01-02 14:03:01.089303 2024-03-18 Processing Customer 5108 676383.8184852060 +5123 t 62 380902 18.662989 0.7350991388151407 Product description 5123 2022-07-05 14:03:01.089303 2023-09-21 Closed Customer 5123 847550.0725657030 +5051 f 24 834948 41.227627 0.398169887080865 Product description 5051 2023-06-06 14:03:01.089303 2025-08-02 Closed Customer 5051 407353.6971723040 +5112 t 41 110916 16.866985 0.2033813772902242 Product description 5112 2021-12-13 14:03:01.089303 2025-02-12 Closed Customer 5112 858214.0018301270 +5127 f 73 924076 7.1923833 0.14217771387311373 Product description 5127 2023-03-30 14:03:01.089303 2024-12-08 Closed Customer 5127 444990.5600037740 +5055 t 67 841451 13.134536 0.641601086647615 Product description 5055 2022-01-01 14:03:01.089303 2023-04-16 Processing Customer 5055 525618.3966154710 +5114 t 76 906159 86.05464 0.8695278074583719 Product description 5114 2023-12-03 14:03:01.089303 2024-06-13 Closed Customer 5114 866886.6202723110 +5130 t 52 191413 72.08073 0.7349001236322117 Product description 5130 2021-08-28 14:03:01.089303 2023-04-11 Closed Customer 5130 630825.5085173970 +5056 f 6 427867 4.2536206 0.2757007728538916 Product description 5056 2023-07-12 14:03:01.089303 2024-06-03 Closed Customer 5056 977879.9487716650 +5115 t 82 122310 43.754375 0.4796128289001125 Product description 5115 2024-05-10 14:03:01.089303 2025-11-18 Closed Customer 5115 626621.8703438890 +5132 f 37 373149 89.24819 0.2904647416057635 Product description 5132 2021-12-29 14:03:01.089303 2023-08-13 Closed Customer 5132 142659.8699167980 +5060 f 50 170853 95.919754 0.3932620061285981 Product description 5060 2022-05-16 14:03:01.089303 2023-12-16 Processing Customer 5060 570503.7053251230 +5124 t 28 910488 53.05794 0.6204258630966173 Product description 5124 2022-10-12 14:03:01.089303 2025-05-23 Processing Customer 5124 272812.4469939960 +5133 f 3 741798 7.546148 0.409521009606717 Product description 5133 2023-11-29 14:03:01.089303 2025-01-01 Closed Customer 5133 279282.8673418980 +5063 t 56 272306 71.78364 0.005482375062410227 Product description 5063 2023-04-13 14:03:01.089303 2024-12-30 Closed Customer 5063 157876.7401121230 +5125 t 6 847988 57.021263 0.16294715146612404 Product description 5125 2022-04-15 14:03:01.089303 2024-03-09 Processing Customer 5125 855866.0303383970 +5140 f 88 310552 65.480835 0.030344641289165253 Product description 5140 2023-01-31 14:03:01.089303 2024-05-18 Closed Customer 5140 372004.3332619840 +5067 f 79 244575 39.931805 0.08040559333885611 Product description 5067 2023-04-21 14:03:01.089303 2025-07-06 Closed Customer 5067 8949.3230435380 +5128 f 48 849730 70.0474 0.14863945243230958 Product description 5128 2023-07-09 14:03:01.089303 2024-03-26 Closed Customer 5128 228711.6326053820 +5141 f 19 89666 72.35405 0.2875009800881507 Product description 5141 2021-09-10 14:03:01.089303 2025-08-15 Closed Customer 5141 394383.1813464770 +5072 f 68 360691 58.71431 0.19636163773926896 Product description 5072 2022-11-06 14:03:01.089303 2024-12-14 Processing Customer 5072 196419.7908911060 +5129 f 74 776409 90.35442 0.40038007740713155 Product description 5129 2024-04-13 14:03:01.089303 2023-05-28 Closed Customer 5129 989703.5024091640 +5142 t 11 606411 28.245014 0.22642617344265048 Product description 5142 2022-08-21 14:03:01.089303 2024-10-14 Closed Customer 5142 599299.3305453070 +5075 f 71 204232 89.35696 0.36082996763702013 Product description 5075 2023-07-25 14:03:01.089303 2023-01-29 Processing Customer 5075 473955.6298865610 +5134 f 71 435140 27.832848 0.31769381999285784 Product description 5134 2024-02-26 14:03:01.089303 2023-01-02 Closed Customer 5134 338423.1860480470 +5151 t 53 902374 50.365944 0.2962151268729336 Product description 5151 2022-01-01 14:03:01.089303 2023-12-04 Closed Customer 5151 414767.0994559080 +5079 f 86 596264 26.216984 0.14293436405135296 Product description 5079 2021-08-12 14:03:01.089303 2024-10-15 Closed Customer 5079 496227.9889075990 +5135 t 96 379573 44.304756 0.574437373606326 Product description 5135 2022-02-20 14:03:01.089303 2023-05-12 Closed Customer 5135 199020.8871972850 +5152 f 28 929481 43.278675 0.5139409949071343 Product description 5152 2022-10-26 14:03:01.089303 2023-03-07 Processing Customer 5152 52085.1597716643 +5085 t 39 620107 39.03671 0.41841991901931763 Product description 5085 2024-06-30 14:03:01.089303 2025-07-30 Processing Customer 5085 715493.3178785540 +5136 t 30 698073 20.305042 0.2467897341385772 Product description 5136 2024-07-27 14:03:01.089303 2025-12-22 Closed Customer 5136 889657.6742578470 +5161 t 82 766255 78.267784 0.07768626401339063 Product description 5161 2022-04-14 14:03:01.089303 2025-07-04 Cancelled Customer 5161 409407.6535169760 +5087 f 76 441945 95.97165 0.9197979675084262 Product description 5087 2022-04-05 14:03:01.089303 2024-12-22 Processing Customer 5087 139311.0721999240 +5137 t 18 567096 93.148674 0.7094757000056937 Product description 5137 2024-04-26 14:03:01.089303 2025-02-03 Closed Customer 5137 537631.4418009900 +5162 t 67 616224 4.949183 0.9035878421212047 Product description 5162 2022-08-16 14:03:01.089303 2025-06-30 Closed Customer 5162 467264.1250739420 +5089 t 58 887078 95.00431 0.6276768808292879 Product description 5089 2024-06-28 14:03:01.089303 2023-11-13 Processing Customer 5089 988134.8268309720 +5138 f 75 25980 20.646725 0.7225519792216382 Product description 5138 2024-04-02 14:03:01.089303 2025-02-10 Closed Customer 5138 616391.9381967700 +5166 f 95 548764 63.791637 0.4821577988612802 Product description 5166 2024-03-25 14:03:01.089303 2025-07-23 Processing Customer 5166 480868.0770776550 +5091 f 50 29994 14.119547 0.2065581962983849 Product description 5091 2021-10-16 14:03:01.089303 2025-10-30 Closed Customer 5091 411217.0937696290 +5143 f 91 113643 0.07943348 0.6176986420410167 Product description 5143 2022-05-31 14:03:01.089303 2023-01-01 Processing Customer 5143 135492.6823340680 +5167 t 31 510532 60.466812 0.5587743979904118 Product description 5167 2022-10-07 14:03:01.089303 2024-11-16 Processing Customer 5167 496890.3193369160 +5093 t 25 713297 37.858948 0.9118883745944579 Product description 5093 2023-04-21 14:03:01.089303 2024-02-11 Closed Customer 5093 272910.3768405420 +5147 f 24 749861 25.925062 0.6959201770802288 Product description 5147 2021-08-26 14:03:01.089303 2024-11-08 Closed Customer 5147 606850.1952077550 +5170 t 8 78598 12.802954 0.6521284077199994 Product description 5170 2023-12-21 14:03:01.089303 2024-12-20 Closed Customer 5170 455420.6891527280 +5094 f 38 1318 12.538528 0.8557608607934775 Product description 5094 2022-01-29 14:03:01.089303 2023-12-29 Closed Customer 5094 812406.2516093670 +5149 t 71 124168 78.408676 0.9921044181533567 Product description 5149 2023-06-26 14:03:01.089303 2025-08-21 Closed Customer 5149 190644.8380248730 +5173 f 1 219960 89.934555 0.040695721966535814 Product description 5173 2023-12-07 14:03:01.089303 2024-11-19 Processing Customer 5173 43953.3738703268 +5095 f 32 216030 59.87214 0.10677722278160573 Product description 5095 2021-09-14 14:03:01.089303 2025-03-10 Closed Customer 5095 570490.3906962360 +5159 t 88 864899 90.41735 0.6902205368822116 Product description 5159 2024-07-06 14:03:01.089303 2024-12-21 Closed Customer 5159 335269.8175637130 +5174 f 38 318316 70.80979 0.4408692538907104 Product description 5174 2022-02-23 14:03:01.089303 2024-02-14 Processing Customer 5174 601655.2065288570 +5097 f 66 840696 95.82533 0.7724267048677511 Product description 5097 2024-02-04 14:03:01.089303 2023-07-29 Closed Customer 5097 679711.4130905510 +5160 t 86 699478 33.70636 0.09692969452119016 Product description 5160 2024-06-02 14:03:01.089303 2024-11-23 Processing Customer 5160 252894.2676499570 +5183 f 32 597413 73.33614 0.9442276461560581 Product description 5183 2022-10-15 14:03:01.089303 2025-10-10 Closed Customer 5183 347882.7049873880 +5098 t 5 819165 68.12899 0.27942935187356355 Product description 5098 2024-05-05 14:03:01.089303 2023-03-01 Closed Customer 5098 605766.2227752300 +5163 f 2 380681 64.19841 0.519108041756386 Product description 5163 2023-04-20 14:03:01.089303 2024-06-26 Processing Customer 5163 914855.5519354600 +5189 f 22 523808 20.235744 0.8275556718677706 Product description 5189 2024-03-30 14:03:01.089303 2024-07-02 Processing Customer 5189 869330.8985466180 +5102 t 96 240652 80.75827 0.39254508241793573 Product description 5102 2023-10-24 14:03:01.089303 2023-11-24 Closed Customer 5102 67674.4286357192 +5164 f 91 294759 32.171185 0.4151879052218099 Product description 5164 2022-08-02 14:03:01.089303 2024-01-20 Processing Customer 5164 230837.8790280370 +5201 f 28 718954 8.56023 0.4694016891058723 Product description 5201 2023-09-29 14:03:01.089303 2024-04-08 Closed Customer 5201 48321.4216296268 +5103 f 94 163113 89.17475 0.02635372618809484 Product description 5103 2022-07-11 14:03:01.089303 2025-01-31 Processing Customer 5103 988738.9100803290 +5165 t 31 964076 56.024048 0.9034563064795442 Product description 5165 2024-04-27 14:03:01.089303 2023-10-27 Closed Customer 5165 470477.2201380790 +5202 f 53 792833 50.488018 0.2237492520268205 Product description 5202 2023-07-09 14:03:01.089303 2025-06-09 Processing Customer 5202 592304.9821110280 +5104 f 54 43801 78.765305 0.4804878438881808 Product description 5104 2021-10-22 14:03:01.089303 2023-05-22 Closed Customer 5104 615997.6775009210 +5171 f 17 338476 2.3833005 0.9206282897513169 Product description 5171 2023-07-15 14:03:01.089303 2025-06-27 Processing Customer 5171 12721.2292629153 +5204 t 51 855070 71.47265 0.28256583796910917 Product description 5204 2022-09-26 14:03:01.089303 2024-09-21 Closed Customer 5204 900183.9154119190 +5106 t 33 547972 67.84864 0.3754991747832044 Product description 5106 2024-05-16 14:03:01.089303 2023-02-08 Processing Customer 5106 723370.1984248170 +5175 f 33 695788 56.290173 0.5064671952238378 Product description 5175 2022-07-18 14:03:01.089303 2023-04-22 Closed Customer 5175 459052.0804312060 +5206 f 6 440424 79.62505 0.5811533870828498 Product description 5206 2023-08-04 14:03:01.089303 2025-08-14 Processing Customer 5206 155416.7320007270 +5110 f 35 328118 34.102978 0.054221616163513175 Product description 5110 2022-03-24 14:03:01.089303 2025-02-19 Closed Customer 5110 240773.7809250890 +5177 f 13 276871 24.637287 0.7714963337094751 Product description 5177 2022-03-08 14:03:01.089303 2024-08-02 Cancelled Customer 5177 582963.7141033110 +5208 t 36 627476 57.74734 0.16785763576377377 Product description 5208 2023-01-13 14:03:01.089303 2024-02-23 Processing Customer 5208 27598.0457040284 +5111 f 37 883624 24.340403 0.6513859121233203 Product description 5111 2024-05-10 14:03:01.089303 2023-10-23 Cancelled Customer 5111 294670.9660046910 +5179 t 85 764790 4.0710645 0.5255490221709564 Product description 5179 2022-06-13 14:03:01.089303 2023-05-11 Closed Customer 5179 900120.4665277560 +5217 f 57 644039 34.07251 0.49120216265016836 Product description 5217 2024-06-12 14:03:01.089303 2024-11-10 Closed Customer 5217 475461.4407684240 +5120 f 22 982077 97.45874 0.7444021375754915 Product description 5120 2022-11-11 14:03:01.089303 2024-08-18 Closed Customer 5120 132913.0256545420 +5181 t 79 731701 62.40178 0.48290333655924655 Product description 5181 2022-12-20 14:03:01.089303 2024-07-03 Closed Customer 5181 575070.6995864580 +5218 t 99 462295 96.64863 0.3857655155729489 Product description 5218 2022-08-07 14:03:01.089303 2024-02-24 Closed Customer 5218 214283.1225227050 +5126 t 69 219662 70.51593 0.5191082231361364 Product description 5126 2021-11-19 14:03:01.089303 2023-03-02 Closed Customer 5126 629965.0476087530 +5182 f 4 914686 30.296688 0.9531565228123569 Product description 5182 2022-11-11 14:03:01.089303 2024-03-15 Processing Customer 5182 370336.3180912370 +5220 t 28 700637 45.499672 0.6544497111212024 Product description 5220 2023-04-20 14:03:01.089303 2025-06-19 Closed Customer 5220 20217.2504646363 +5131 f 56 943531 62.03119 0.5502865100044261 Product description 5131 2022-11-03 14:03:01.089303 2023-07-23 Cancelled Customer 5131 355672.7316330640 +5184 f 38 476732 88.86783 0.023046462967428738 Product description 5184 2023-07-16 14:03:01.089303 2024-04-06 Processing Customer 5184 867314.9148547560 +5221 f 41 351789 64.322 0.6466164878419605 Product description 5221 2024-05-04 14:03:01.089303 2024-07-10 Closed Customer 5221 120206.9127134600 +5139 t 26 895233 82.42145 0.9085013130466244 Product description 5139 2021-10-09 14:03:01.089303 2024-11-11 Closed Customer 5139 265680.3763337980 +5185 f 76 655363 56.00881 0.8178315527788342 Product description 5185 2022-10-05 14:03:01.089303 2025-01-06 Closed Customer 5185 698167.0175509470 +5222 t 59 387237 45.0643 0.21504053309080007 Product description 5222 2024-02-26 14:03:01.089303 2025-06-06 Closed Customer 5222 683104.3640125180 +5144 f 66 936085 16.906075 0.7963267067648339 Product description 5144 2022-09-28 14:03:01.089303 2023-12-12 Closed Customer 5144 939584.5323574430 +5194 f 88 468916 49.222187 0.97043076176044 Product description 5194 2021-12-01 14:03:01.089303 2025-11-18 Processing Customer 5194 155020.3462332970 +5225 f 15 182155 8.591637 0.5049339082657909 Product description 5225 2023-07-08 14:03:01.089303 2023-06-18 Closed Customer 5225 36307.7965124781 +5145 t 93 291046 42.13032 0.4898690000057222 Product description 5145 2024-05-28 14:03:01.089303 2023-07-08 Closed Customer 5145 405172.0563817230 +5195 t 35 236778 14.888612 0.09449213315236449 Product description 5195 2023-07-17 14:03:01.089303 2024-02-21 Processing Customer 5195 94347.0837374640 +5227 f 2 295206 27.67329 0.6815582888437461 Product description 5227 2024-07-01 14:03:01.089303 2023-10-15 Closed Customer 5227 55593.0398134556 +5146 f 84 641884 6.322133 0.5877548515685653 Product description 5146 2024-06-07 14:03:01.089303 2024-09-19 Closed Customer 5146 481764.3194290330 +5196 t 75 279169 32.73785 0.2133438967363901 Product description 5196 2023-02-17 14:03:01.089303 2025-01-17 Closed Customer 5196 432738.9710139290 +5228 t 98 389384 52.706093 0.36485969462916756 Product description 5228 2023-10-22 14:03:01.089303 2025-06-27 Closed Customer 5228 165857.2945966950 +5148 t 0 426600 5.072829 0.6449185481426944 Product description 5148 2022-06-18 14:03:01.089303 2025-03-06 Closed Customer 5148 515511.9810702400 +5197 t 11 713398 40.063496 0.5627778132717012 Product description 5197 2023-10-17 14:03:01.089303 2024-08-09 Closed Customer 5197 471408.0955095490 +5232 t 22 476883 50.52236 0.3271852364954526 Product description 5232 2023-09-16 14:03:01.089303 2023-07-22 Cancelled Customer 5232 575465.2193524240 +5150 f 27 203879 11.157386 0.6596045129349797 Product description 5150 2021-12-18 14:03:01.089303 2025-03-20 Closed Customer 5150 644658.7296599230 +5198 f 62 938943 29.215197 0.031133211662137228 Product description 5198 2022-07-11 14:03:01.089303 2024-12-03 Closed Customer 5198 595568.3578023600 +5233 f 18 553391 83.68677 0.3490708764263921 Product description 5233 2023-08-24 14:03:01.089303 2023-03-03 Closed Customer 5233 492820.7932081600 +5153 f 83 427120 8.156228 0.1507715115026933 Product description 5153 2021-09-15 14:03:01.089303 2024-09-06 Closed Customer 5153 141789.4786134400 +5199 f 88 200300 32.816475 0.0014461190540160374 Product description 5199 2021-08-04 14:03:01.089303 2023-02-19 Processing Customer 5199 907254.4954289050 +5236 t 60 267051 23.965347 0.003642014477694744 Product description 5236 2024-03-25 14:03:01.089303 2023-02-22 Closed Customer 5236 229877.7783532700 +5154 f 40 664874 82.82614 0.555385193471853 Product description 5154 2023-08-21 14:03:01.089303 2023-03-31 Closed Customer 5154 885794.6090713260 +5200 f 82 93796 58.87927 0.5512695737694315 Product description 5200 2021-09-14 14:03:01.089303 2024-10-03 Closed Customer 5200 485375.0992751140 +5238 f 61 913997 63.873943 0.9117155783474509 Product description 5238 2022-08-07 14:03:01.089303 2025-06-24 Processing Customer 5238 695450.8143834270 +5155 f 10 3654 52.988228 0.4590704636385361 Product description 5155 2022-04-03 14:03:01.089303 2023-08-26 Processing Customer 5155 892824.7900323430 +5205 f 69 988580 7.604299 0.3430697001929204 Product description 5205 2023-12-29 14:03:01.089303 2025-07-05 Processing Customer 5205 770822.2592691700 +5239 f 30 86828 71.3795 0.6866829158604055 Product description 5239 2021-12-29 14:03:01.089303 2024-02-06 Closed Customer 5239 362023.0957213270 +5156 t 99 873652 45.177586 0.9041891702104898 Product description 5156 2022-08-22 14:03:01.089303 2025-07-04 Processing Customer 5156 351695.7287613850 +5207 f 55 540787 44.20699 0.7016203300144639 Product description 5207 2023-01-02 14:03:01.089303 2023-09-09 Processing Customer 5207 742186.2328791880 +5243 t 79 518649 20.613184 0.16106290477142338 Product description 5243 2023-05-18 14:03:01.089303 2024-08-17 Closed Customer 5243 432170.5194304930 +5157 f 91 191669 79.5968 0.4537042075397544 Product description 5157 2022-01-11 14:03:01.089303 2024-05-20 Processing Customer 5157 869544.9363503300 +5209 f 20 647730 2.1421635 0.3861194137359192 Product description 5209 2022-01-26 14:03:01.089303 2024-07-11 Closed Customer 5209 818738.6690453060 +5245 t 52 900673 75.11439 0.705965587541673 Product description 5245 2022-11-15 14:03:01.089303 2025-04-16 Cancelled Customer 5245 865448.4274960520 +5158 f 16 257464 4.6943903 0.4370411464564832 Product description 5158 2022-07-25 14:03:01.089303 2023-08-11 Cancelled Customer 5158 920687.4693852890 +5210 t 51 1642 6.7494135 0.5917876249564102 Product description 5210 2022-12-14 14:03:01.089303 2025-07-02 Processing Customer 5210 906448.5796654470 +5247 t 99 928603 87.75989 0.2972757165124733 Product description 5247 2022-06-07 14:03:01.089303 2023-10-13 Closed Customer 5247 646023.8914387700 +5168 t 89 517776 40.51915 0.5259710462511435 Product description 5168 2023-07-20 14:03:01.089303 2023-01-24 Cancelled Customer 5168 447909.1853408190 +5211 f 20 132577 71.225204 0.5607228356947402 Product description 5211 2024-04-03 14:03:01.089303 2024-11-16 Closed Customer 5211 360860.9304233600 +5252 f 12 354476 33.566044 0.45462175857975495 Product description 5252 2024-02-03 14:03:01.089303 2023-06-12 Processing Customer 5252 395167.9795372950 +5169 f 97 560093 91.907906 0.9365273691974174 Product description 5169 2021-09-23 14:03:01.089303 2024-03-17 Closed Customer 5169 513176.1129845600 +5212 t 30 117345 62.756905 0.571398022714078 Product description 5212 2024-04-16 14:03:01.089303 2023-08-05 Cancelled Customer 5212 177457.8422563170 +5253 t 88 327956 65.01645 0.9872534655778367 Product description 5253 2023-10-11 14:03:01.089303 2024-05-04 Closed Customer 5253 452039.3900045680 +5172 t 25 493975 12.696828 0.15568074261955545 Product description 5172 2021-12-14 14:03:01.089303 2025-06-08 Closed Customer 5172 288716.0244590490 +5214 f 2 536369 79.0084 0.24691491605987537 Product description 5214 2024-03-20 14:03:01.089303 2023-05-23 Processing Customer 5214 284031.1871404920 +5257 f 84 161740 31.863071 0.9449870528452422 Product description 5257 2023-09-07 14:03:01.089303 2025-09-24 Processing Customer 5257 607966.9453491940 +5176 t 82 561018 72.88268 0.741630535045072 Product description 5176 2024-05-13 14:03:01.089303 2023-09-22 Processing Customer 5176 661098.9789206700 +5223 t 13 645212 67.978935 0.7371690240563744 Product description 5223 2024-01-29 14:03:01.089303 2025-07-09 Processing Customer 5223 659153.1122950870 +5259 f 50 713559 64.05319 0.6230642870971792 Product description 5259 2023-10-12 14:03:01.089303 2024-11-30 Processing Customer 5259 622922.0443754530 +5178 t 16 242826 84.9463 0.2235747464618676 Product description 5178 2023-09-05 14:03:01.089303 2025-02-14 Processing Customer 5178 9553.5493022112 +5224 t 73 525528 17.589825 0.021018917460590814 Product description 5224 2023-12-19 14:03:01.089303 2023-06-01 Closed Customer 5224 829070.2578751240 +5260 f 67 88579 2.6600916 0.9198711329809797 Product description 5260 2024-03-05 14:03:01.089303 2024-10-26 Closed Customer 5260 612262.1498862240 +5180 f 51 558992 25.762005 0.12166573375526113 Product description 5180 2022-09-12 14:03:01.089303 2025-08-27 Processing Customer 5180 84636.6505184690 +5226 f 61 92654 1.218692 0.017940002410259837 Product description 5226 2024-06-14 14:03:01.089303 2025-12-12 Cancelled Customer 5226 879406.1452344870 +5262 t 22 722700 92.77686 0.33137192003768234 Product description 5262 2022-12-18 14:03:01.089303 2025-01-14 Closed Customer 5262 146743.9154476540 +5186 f 21 894533 74.458755 0.007771872820772074 Product description 5186 2023-04-19 14:03:01.089303 2025-02-21 Cancelled Customer 5186 785758.3968985760 +5229 t 43 34826 1.0572114 0.09479545763045394 Product description 5229 2021-10-30 14:03:01.089303 2025-08-23 Processing Customer 5229 91878.1285050976 +5266 t 26 323397 81.91612 0.8084880439448838 Product description 5266 2024-03-31 14:03:01.089303 2024-07-24 Closed Customer 5266 367942.5456452240 +5187 f 43 986810 30.622597 0.3084595266447252 Product description 5187 2022-09-13 14:03:01.089303 2024-02-02 Closed Customer 5187 107426.1159376670 +5241 t 12 889292 40.191345 0.9698070294939853 Product description 5241 2022-06-04 14:03:01.089303 2023-09-02 Closed Customer 5241 931582.8857821810 +5267 t 33 880329 43.071648 0.039925093106575105 Product description 5267 2022-11-29 14:03:01.089303 2024-09-16 Closed Customer 5267 994284.2272617690 +5188 f 7 502496 50.355278 0.923521289867189 Product description 5188 2023-09-03 14:03:01.089303 2023-12-05 Cancelled Customer 5188 194366.8099714200 +5248 f 74 380889 8.836136 0.07858564505578158 Product description 5248 2023-07-30 14:03:01.089303 2025-09-01 Processing Customer 5248 934207.2057337810 +5280 f 42 620692 16.007702 0.358703911590716 Product description 5280 2023-05-09 14:03:01.089303 2025-09-08 Processing Customer 5280 260221.8942202550 +5190 t 10 701030 22.755388 0.483970387127858 Product description 5190 2024-04-13 14:03:01.089303 2024-10-18 Processing Customer 5190 918932.2095780880 +5249 t 69 303327 9.10646 0.13241218945426425 Product description 5249 2023-01-01 14:03:01.089303 2025-05-19 Processing Customer 5249 636870.0430152960 +5283 f 55 20045 65.59672 0.2523312314331605 Product description 5283 2022-01-20 14:03:01.089303 2025-12-17 Cancelled Customer 5283 265360.2502555830 +5191 f 14 743361 65.38334 0.6569835401603505 Product description 5191 2024-01-03 14:03:01.089303 2024-06-25 Closed Customer 5191 766724.5702061860 +5254 t 56 313442 63.210052 0.11851322589376423 Product description 5254 2022-03-05 14:03:01.089303 2025-11-26 Processing Customer 5254 89731.2498822736 +5284 f 45 129617 0.6136335 0.6651204423415571 Product description 5284 2021-12-18 14:03:01.089303 2024-12-14 Processing Customer 5284 825580.4638323030 +5192 f 67 71570 72.016205 0.004876354470500388 Product description 5192 2023-04-10 14:03:01.089303 2024-01-09 Closed Customer 5192 317226.3656930030 +5256 t 0 285927 31.663002 0.6034633040482689 Product description 5256 2024-07-20 14:03:01.089303 2025-03-26 Processing Customer 5256 714045.3702337800 +5287 t 35 287165 66.35452 0.27636685765745383 Product description 5287 2022-07-24 14:03:01.089303 2024-05-21 Closed Customer 5287 663841.8930107410 +5193 f 28 647418 90.05739 0.6957765107017728 Product description 5193 2024-06-08 14:03:01.089303 2024-03-02 Closed Customer 5193 403046.8688046870 +5258 f 71 654606 88.66596 0.3385707630095709 Product description 5258 2023-06-01 14:03:01.089303 2024-08-11 Closed Customer 5258 192624.4639013920 +5288 t 97 794563 65.470535 0.397522083444823 Product description 5288 2021-10-01 14:03:01.089303 2025-11-16 Closed Customer 5288 489259.1107559600 +5203 f 33 105244 19.13959 0.7992759635525211 Product description 5203 2024-02-26 14:03:01.089303 2023-07-25 Closed Customer 5203 131282.0352126490 +5261 t 95 204944 66.7413 0.20108202448172818 Product description 5261 2022-05-12 14:03:01.089303 2024-04-07 Closed Customer 5261 548655.1970471290 +5291 t 47 81092 36.326504 0.8792938174134868 Product description 5291 2021-11-28 14:03:01.089303 2023-06-26 Processing Customer 5291 49139.1799778000 +5213 f 39 967326 41.905724 0.5442860364251167 Product description 5213 2022-02-12 14:03:01.089303 2023-10-31 Processing Customer 5213 932020.2744965300 +5268 t 89 803096 97.62791 0.09650414474421609 Product description 5268 2023-08-21 14:03:01.089303 2024-08-03 Cancelled Customer 5268 805963.4171053030 +5293 f 30 529533 9.068085 0.5637312203778855 Product description 5293 2022-01-24 14:03:01.089303 2025-07-02 Closed Customer 5293 733669.1403352020 +5215 t 89 692744 45.14404 0.04699679437317528 Product description 5215 2023-01-04 14:03:01.089303 2024-11-10 Closed Customer 5215 512224.5476727440 +5269 f 78 415232 50.51923 0.6730381088579342 Product description 5269 2023-08-05 14:03:01.089303 2024-08-27 Processing Customer 5269 807993.4532365700 +5294 t 52 73206 72.75133 0.5647267167590293 Product description 5294 2023-04-07 14:03:01.089303 2025-10-28 Closed Customer 5294 887809.7705874520 +5216 t 50 367037 1.9382772 0.5492287059590062 Product description 5216 2023-12-12 14:03:01.089303 2024-06-25 Processing Customer 5216 234662.7100729320 +5270 f 14 843727 0.48733553 0.6329473127632532 Product description 5270 2022-01-16 14:03:01.089303 2025-08-27 Cancelled Customer 5270 770028.6993905120 +5295 f 49 709942 93.20615 0.6734178336733798 Product description 5295 2024-05-19 14:03:01.089303 2025-01-20 Closed Customer 5295 908942.7484492990 +5219 t 56 246464 75.2938 0.15546320285138293 Product description 5219 2023-01-04 14:03:01.089303 2024-05-18 Processing Customer 5219 293642.4315674340 +5271 t 56 565263 73.47228 0.7393117298649514 Product description 5271 2023-10-27 14:03:01.089303 2023-07-09 Processing Customer 5271 291134.0958331830 +5298 t 60 878520 36.05138 0.6849599535291482 Product description 5298 2023-11-24 14:03:01.089303 2023-12-24 Closed Customer 5298 525877.1464590380 +5230 f 75 76452 94.58391 0.5083531837884117 Product description 5230 2024-03-18 14:03:01.089303 2024-09-08 Processing Customer 5230 537967.0284797340 +5272 t 56 555530 84.55476 0.15896698546892907 Product description 5272 2022-11-13 14:03:01.089303 2025-07-04 Processing Customer 5272 13979.6042544624 +5302 t 30 689912 23.368126 0.74246889910739 Product description 5302 2023-07-12 14:03:01.089303 2025-09-25 Processing Customer 5302 396986.1867141230 +5231 f 70 854713 78.42999 0.15381176230451743 Product description 5231 2022-02-24 14:03:01.089303 2024-05-07 Closed Customer 5231 675924.6326413550 +5277 t 55 752738 88.14836 0.44581667328159824 Product description 5277 2023-05-31 14:03:01.089303 2025-11-06 Closed Customer 5277 371384.2136786770 +5304 t 89 701967 41.882027 0.5384084245518785 Product description 5304 2024-01-20 14:03:01.089303 2025-12-19 Processing Customer 5304 395429.2704465420 +5234 t 72 315728 49.19322 0.9060230993123461 Product description 5234 2022-05-12 14:03:01.089303 2023-08-18 Closed Customer 5234 987224.2131102880 +5278 t 62 66899 34.11033 0.28789211557526784 Product description 5278 2022-07-06 14:03:01.089303 2023-01-09 Processing Customer 5278 161274.5583707960 +5309 t 22 3765 11.32967 0.10038635024728748 Product description 5309 2024-05-25 14:03:01.089303 2023-07-30 Closed Customer 5309 610420.8831737520 +5235 t 86 634285 74.44996 0.1623915154940967 Product description 5235 2024-03-24 14:03:01.089303 2025-12-01 Closed Customer 5235 140662.9736377170 +5279 f 3 343837 98.818985 0.8990645877271248 Product description 5279 2022-06-10 14:03:01.089303 2025-03-12 Processing Customer 5279 304636.4234641420 +5313 t 50 209906 89.58143 0.16260560951535652 Product description 5313 2023-09-15 14:03:01.089303 2025-11-23 Closed Customer 5313 950474.7249946210 +5237 f 26 921592 91.241356 0.7098792740945008 Product description 5237 2021-09-14 14:03:01.089303 2024-11-23 Closed Customer 5237 597262.3797426660 +5281 t 56 714305 99.246124 0.5600578303026325 Product description 5281 2024-06-15 14:03:01.089303 2024-10-18 Closed Customer 5281 925551.2784038910 +5316 t 35 218038 26.616581 0.06886588828674789 Product description 5316 2023-08-30 14:03:01.089303 2024-04-16 Closed Customer 5316 708507.4193849220 +5240 t 73 655811 38.470047 0.3137746113503148 Product description 5240 2022-03-19 14:03:01.089303 2025-03-31 Processing Customer 5240 503623.6263306790 +5282 t 93 326595 64.81835 0.5331601668366943 Product description 5282 2024-02-10 14:03:01.089303 2024-10-17 Closed Customer 5282 856696.2030226330 +5317 t 17 642076 16.094755 0.9351773791744371 Product description 5317 2023-11-19 14:03:01.089303 2025-06-27 Closed Customer 5317 282628.5820782320 +5242 t 32 731288 82.60792 0.002780057829891547 Product description 5242 2024-05-24 14:03:01.089303 2023-10-04 Closed Customer 5242 492320.3320285480 +5285 t 2 863352 38.24194 0.4097377213417488 Product description 5285 2022-03-08 14:03:01.089303 2025-06-02 Processing Customer 5285 609793.9963239330 +5319 t 78 432185 38.252403 0.10193277785507959 Product description 5319 2022-10-06 14:03:01.089303 2023-09-04 Processing Customer 5319 976590.5738095100 +5244 t 88 430344 27.94814 0.8173399427236809 Product description 5244 2023-09-05 14:03:01.089303 2024-02-22 Closed Customer 5244 474450.9430862540 +5289 t 95 122892 86.27459 0.2912778422819571 Product description 5289 2023-09-19 14:03:01.089303 2025-09-09 Processing Customer 5289 269618.6177347040 +5323 f 84 269911 9.164365 0.6708410827216262 Product description 5323 2023-05-20 14:03:01.089303 2023-01-03 Closed Customer 5323 289994.5990404260 +5246 t 74 857104 3.8220592 0.20095270492754125 Product description 5246 2022-10-05 14:03:01.089303 2025-01-23 Processing Customer 5246 112558.2664352650 +5292 t 21 146733 84.388855 0.1407848274092416 Product description 5292 2024-04-20 14:03:01.089303 2023-09-03 Closed Customer 5292 434089.2170144350 +5324 t 66 80804 52.8262 0.705965631989951 Product description 5324 2023-08-06 14:03:01.089303 2025-02-11 Closed Customer 5324 908350.3760493340 +5250 t 66 915143 31.43376 0.6623068851546101 Product description 5250 2022-05-14 14:03:01.089303 2023-03-31 Processing Customer 5250 250450.4973932880 +5296 t 28 976564 62.589035 0.4385719577906855 Product description 5296 2023-06-10 14:03:01.089303 2023-11-26 Closed Customer 5296 107575.4933433150 +5327 t 35 254406 31.305487 0.4975302809147344 Product description 5327 2024-05-25 14:03:01.089303 2023-06-04 Closed Customer 5327 758209.8524651570 +5251 f 57 488011 76.05042 0.7569823576424248 Product description 5251 2022-02-19 14:03:01.089303 2023-11-11 Closed Customer 5251 762019.8985678920 +5299 t 5 510952 98.43064 0.5336691906053161 Product description 5299 2022-11-11 14:03:01.089303 2023-09-27 Closed Customer 5299 372457.5496455070 +5330 f 96 525141 58.457664 0.5170097766208066 Product description 5330 2022-08-29 14:03:01.089303 2023-01-22 Closed Customer 5330 320949.9331079750 +5255 t 75 842201 68.189224 0.897108474200639 Product description 5255 2024-04-20 14:03:01.089303 2024-09-18 Closed Customer 5255 883044.6732845590 +5300 t 72 231077 26.465614 0.11891298975244524 Product description 5300 2024-04-25 14:03:01.089303 2023-01-13 Processing Customer 5300 577429.7898919760 +5332 t 27 565252 40.20281 0.47140030722748705 Product description 5332 2024-01-13 14:03:01.089303 2025-08-14 Closed Customer 5332 176061.6783254530 +5263 t 96 94487 31.189102 0.5698011208793581 Product description 5263 2022-04-10 14:03:01.089303 2025-05-12 Closed Customer 5263 296051.3533549050 +5305 f 90 454903 99.90494 0.5900746031639343 Product description 5305 2022-09-01 14:03:01.089303 2024-12-09 Closed Customer 5305 386411.3873642800 +5337 t 30 58868 67.30588 0.6203509072247151 Product description 5337 2023-02-08 14:03:01.089303 2024-03-19 Closed Customer 5337 682387.2500459420 +5264 t 33 305794 88.03391 0.17514866281601726 Product description 5264 2024-04-18 14:03:01.089303 2024-10-28 Closed Customer 5264 224467.6848277860 +5306 f 30 32686 95.49664 0.4544298120451913 Product description 5306 2022-05-15 14:03:01.089303 2025-08-17 Processing Customer 5306 854765.7825142740 +5342 t 50 116269 29.265118 0.6301739713694055 Product description 5342 2024-05-14 14:03:01.089303 2024-04-04 Processing Customer 5342 417538.8435320850 +5265 t 24 713212 99.3285 0.9687257306372139 Product description 5265 2021-10-05 14:03:01.089303 2023-11-05 Closed Customer 5265 771729.1891688020 +5308 f 75 774090 79.01589 0.161813244012599 Product description 5308 2023-10-06 14:03:01.089303 2025-11-20 Closed Customer 5308 244237.8497464440 +5343 t 54 530340 62.73889 0.5113952202870955 Product description 5343 2024-02-18 14:03:01.089303 2025-06-14 Closed Customer 5343 676461.9356084080 +5273 f 38 517005 94.56464 0.752856983139754 Product description 5273 2024-04-03 14:03:01.089303 2023-04-20 Processing Customer 5273 697756.5614074020 +5310 t 52 558857 77.92999 0.5566660361649411 Product description 5310 2022-04-27 14:03:01.089303 2025-06-09 Closed Customer 5310 143133.6950861460 +5344 f 62 14638 74.57238 0.7341104805075993 Product description 5344 2023-03-16 14:03:01.089303 2025-11-11 Closed Customer 5344 148928.2941738570 +5274 t 40 440852 34.031956 0.14096124506380292 Product description 5274 2023-09-04 14:03:01.089303 2025-12-16 Closed Customer 5274 716854.4730722670 +5311 f 94 458880 54.005173 0.9159293618342517 Product description 5311 2023-05-12 14:03:01.089303 2024-03-31 Cancelled Customer 5311 714770.7645204730 +5345 t 11 204097 47.345234 0.8661168323267212 Product description 5345 2024-07-17 14:03:01.089303 2023-01-27 Closed Customer 5345 640360.1211488950 +5275 f 45 386147 64.371544 0.8157313113157763 Product description 5275 2021-11-04 14:03:01.089303 2023-02-06 Processing Customer 5275 397014.4648401540 +5312 t 48 603411 28.788723 0.26416080195435043 Product description 5312 2021-11-03 14:03:01.089303 2024-06-17 Processing Customer 5312 548322.0807879410 +5346 t 86 567746 39.565395 0.06651935591569114 Product description 5346 2024-06-25 14:03:01.089303 2024-02-15 Processing Customer 5346 488029.6716879260 +5276 f 59 977053 97.560295 0.40859783674995853 Product description 5276 2023-07-23 14:03:01.089303 2024-03-01 Closed Customer 5276 93758.4535307891 +5314 f 90 375254 34.628853 0.6922367620461323 Product description 5314 2022-03-01 14:03:01.089303 2024-03-18 Closed Customer 5314 801979.5917992310 +5349 t 92 667199 21.129017 0.502944902027604 Product description 5349 2024-01-28 14:03:01.089303 2024-01-17 Closed Customer 5349 227668.6909476310 +5286 t 79 711324 64.78562 0.6075658121426848 Product description 5286 2023-04-18 14:03:01.089303 2023-04-27 Closed Customer 5286 782311.7729711550 +5315 f 41 120598 29.828423 0.2796864785371618 Product description 5315 2023-12-29 14:03:01.089303 2023-12-29 Processing Customer 5315 429729.8833535020 +5351 t 47 837390 17.597427 0.38951507907392013 Product description 5351 2024-05-16 14:03:01.089303 2025-12-25 Closed Customer 5351 780271.1224270810 +5290 f 73 398071 85.950455 0.3993609497058195 Product description 5290 2024-06-26 14:03:01.089303 2023-08-09 Closed Customer 5290 653889.6506143390 +5318 t 8 652083 15.434147 0.11106149736655979 Product description 5318 2021-08-30 14:03:01.089303 2024-11-15 Closed Customer 5318 262702.5591721190 +5353 t 34 215626 7.304722 0.955854258959814 Product description 5353 2023-08-10 14:03:01.089303 2023-09-26 Processing Customer 5353 648504.5863300130 +5297 f 97 706584 95.65886 0.5787418349306712 Product description 5297 2023-01-05 14:03:01.089303 2025-08-25 Closed Customer 5297 602612.7337817540 +5320 t 16 190776 89.777954 0.26340325963471756 Product description 5320 2024-03-31 14:03:01.089303 2024-05-01 Closed Customer 5320 94163.8066156685 +5356 t 19 362520 53.737873 0.019562723949551497 Product description 5356 2022-05-12 14:03:01.089303 2023-08-25 Processing Customer 5356 544135.8111006450 +5301 t 54 701961 63.59704 0.10323961693300632 Product description 5301 2023-05-29 14:03:01.089303 2024-12-23 Processing Customer 5301 886388.6644235710 +5321 t 84 382210 30.10823 0.5193993278399027 Product description 5321 2024-06-22 14:03:01.089303 2023-08-10 Closed Customer 5321 868830.4645424620 +5360 f 4 932697 68.22387 0.9611023279669944 Product description 5360 2024-04-23 14:03:01.089303 2023-08-20 Processing Customer 5360 369363.0673284290 +5303 f 99 10626 42.101048 0.6483848554294873 Product description 5303 2021-11-29 14:03:01.089303 2024-11-08 Closed Customer 5303 482060.2267066080 +5325 f 36 21253 64.22126 0.973444338204775 Product description 5325 2023-06-12 14:03:01.089303 2025-01-15 Closed Customer 5325 192472.2056495800 +5369 t 42 615533 82.64976 0.31087023379804535 Product description 5369 2021-12-21 14:03:01.089303 2023-12-13 Processing Customer 5369 559638.0468567190 +5307 f 90 697102 69.88115 0.16324642713334114 Product description 5307 2021-09-15 14:03:01.089303 2025-03-31 Cancelled Customer 5307 173642.5337803200 +5326 t 52 657556 54.4924 0.5268651393185131 Product description 5326 2024-03-10 14:03:01.089303 2024-07-08 Closed Customer 5326 589970.4597986000 +5370 f 53 560959 93.56581 0.7986545340502822 Product description 5370 2021-09-23 14:03:01.089303 2024-03-21 Closed Customer 5370 797351.9564998880 +5322 t 90 431596 18.153576 0.28201532661446294 Product description 5322 2022-06-22 14:03:01.089303 2025-05-15 Closed Customer 5322 47993.4166553910 +5328 f 28 366405 70.236786 0.9274310505229586 Product description 5328 2022-11-08 14:03:01.089303 2024-08-22 Closed Customer 5328 721128.7420682170 +5372 t 94 630751 8.428853 0.9380345938430175 Product description 5372 2022-11-13 14:03:01.089303 2025-12-04 Closed Customer 5372 565535.1048457220 +5329 f 49 689855 67.71643 0.4794658143274262 Product description 5329 2022-05-02 14:03:01.089303 2025-06-28 Closed Customer 5329 218510.7479221780 +5334 t 8 143443 80.062836 0.6821049294879167 Product description 5334 2023-07-16 14:03:01.089303 2023-10-14 Processing Customer 5334 401384.7131715170 +5374 t 83 752893 94.762566 0.8756179909865516 Product description 5374 2022-06-03 14:03:01.089303 2025-02-05 Processing Customer 5374 383913.6124122650 +5331 f 74 240553 65.01826 0.9258389627330885 Product description 5331 2021-10-19 14:03:01.089303 2025-02-12 Closed Customer 5331 897729.5511303430 +5335 t 8 217285 58.883125 0.6512545954277762 Product description 5335 2023-12-10 14:03:01.089303 2025-04-07 Closed Customer 5335 283839.4991793510 +5379 t 10 505000 77.27741 0.8433672481168522 Product description 5379 2024-07-21 14:03:01.089303 2024-02-28 Closed Customer 5379 133564.7384587160 +5333 t 71 79598 97.18784 0.6475425639302301 Product description 5333 2022-08-01 14:03:01.089303 2023-04-24 Processing Customer 5333 792336.6230991000 +5336 f 99 432701 26.009506 0.9220865463078631 Product description 5336 2023-08-28 14:03:01.089303 2024-11-15 Processing Customer 5336 907385.0000373300 +5380 f 14 610963 46.768818 0.6353419304833459 Product description 5380 2022-11-08 14:03:01.089303 2024-09-30 Closed Customer 5380 747294.2477436180 +5340 t 64 363942 71.08184 0.5902575631142142 Product description 5340 2023-12-19 14:03:01.089303 2023-05-03 Closed Customer 5340 284290.4149345780 +5338 f 30 852684 4.574628 0.17237837307724035 Product description 5338 2023-01-21 14:03:01.089303 2023-06-11 Processing Customer 5338 873155.9342253520 +5382 f 11 468001 4.8873124 0.6654540220739058 Product description 5382 2022-04-07 14:03:01.089303 2024-09-23 Closed Customer 5382 494423.0905687590 +5341 t 25 912231 83.43719 0.49181811859898517 Product description 5341 2024-04-01 14:03:01.089303 2024-09-30 Processing Customer 5341 201673.5890931580 +5339 t 78 609117 15.69272 0.6008773478830101 Product description 5339 2022-04-10 14:03:01.089303 2023-03-23 Closed Customer 5339 720411.9228024620 +5383 t 89 856828 94.112946 0.9052508298935713 Product description 5383 2022-12-08 14:03:01.089303 2025-05-02 Closed Customer 5383 894377.7814019360 +5348 f 73 365556 4.876428 0.759832721688106 Product description 5348 2023-07-07 14:03:01.089303 2024-10-29 Closed Customer 5348 585167.3109764060 +5347 t 98 629577 89.68566 0.43583043212395367 Product description 5347 2024-04-04 14:03:01.089303 2025-05-30 Cancelled Customer 5347 399905.4498287970 +5384 f 67 443610 0.33657295 0.7658168548245676 Product description 5384 2023-04-30 14:03:01.089303 2025-09-02 Closed Customer 5384 596732.2885195470 +5352 f 40 598243 43.824924 0.7361732311274665 Product description 5352 2024-02-24 14:03:01.089303 2024-04-17 Closed Customer 5352 256436.9274200650 +5350 t 53 31548 68.87895 0.5890588465970126 Product description 5350 2023-05-20 14:03:01.089303 2025-05-20 Processing Customer 5350 610318.8220081780 +5385 t 94 31200 91.3632 0.13258535788997605 Product description 5385 2021-08-07 14:03:01.089303 2023-04-05 Closed Customer 5385 812660.2580667920 +5355 f 84 724518 60.93388 0.3216429502344553 Product description 5355 2022-05-13 14:03:01.089303 2024-02-28 Closed Customer 5355 228590.2189063230 +5354 f 14 968193 93.9386 0.27239902790085324 Product description 5354 2022-10-11 14:03:01.089303 2024-01-31 Closed Customer 5354 38248.0377944780 +5388 t 22 351880 17.881632 0.5077341284810224 Product description 5388 2024-06-30 14:03:01.089303 2023-07-28 Processing Customer 5388 636305.5098028810 +5359 t 91 414588 74.24055 0.6697808991447403 Product description 5359 2023-06-17 14:03:01.089303 2024-12-16 Closed Customer 5359 511704.6318310050 +5357 t 63 240564 99.43291 0.8883822702119346 Product description 5357 2021-09-16 14:03:01.089303 2023-01-27 Closed Customer 5357 245788.0853167430 +5396 f 2 863825 7.720207 0.7142948915326421 Product description 5396 2023-05-23 14:03:01.089303 2024-11-05 Closed Customer 5396 571827.5445797970 +5361 f 17 16282 0.73040277 0.8857996211421906 Product description 5361 2022-02-22 14:03:01.089303 2025-09-08 Closed Customer 5361 305470.8845202220 +5358 t 79 681522 9.31725 0.7923554382821933 Product description 5358 2023-05-25 14:03:01.089303 2024-02-27 Closed Customer 5358 364400.3626893980 +5398 f 77 356848 90.7914 0.368663619654388 Product description 5398 2023-10-02 14:03:01.089303 2025-06-27 Closed Customer 5398 51138.7958449916 +5364 f 10 974026 13.588149 0.41434026304703764 Product description 5364 2022-07-25 14:03:01.089303 2024-12-04 Processing Customer 5364 80017.2866491202 +5362 f 81 569372 9.797553 0.18720368042762914 Product description 5362 2021-11-30 14:03:01.089303 2024-01-18 Closed Customer 5362 5188.1197521873 +5400 f 66 176954 65.718185 0.3102362773521712 Product description 5400 2024-07-30 14:03:01.089303 2024-07-01 Processing Customer 5400 419465.0831673600 +5367 f 83 198996 76.075294 0.758697919958756 Product description 5367 2022-03-24 14:03:01.089303 2025-01-16 Cancelled Customer 5367 625524.0258660780 +5363 t 4 833826 40.352497 0.33751647607461877 Product description 5363 2022-09-17 14:03:01.089303 2023-10-08 Processing Customer 5363 916298.0443999690 +5405 f 22 257075 88.66488 0.4542424020979787 Product description 5405 2021-10-22 14:03:01.089303 2024-08-21 Closed Customer 5405 343407.4325815430 +5371 f 12 492594 64.98315 0.6115755307875794 Product description 5371 2022-03-14 14:03:01.089303 2023-01-20 Processing Customer 5371 250967.6745142570 +5365 f 44 512266 78.97781 0.36853074816050935 Product description 5365 2023-08-10 14:03:01.089303 2025-06-25 Processing Customer 5365 239239.7422794050 +5412 f 94 220683 49.612267 0.7830945259169475 Product description 5412 2021-10-25 14:03:01.089303 2023-11-14 Closed Customer 5412 52850.5090671771 +5376 t 99 469210 8.8880205 0.14677593526245047 Product description 5376 2021-09-05 14:03:01.089303 2025-05-19 Processing Customer 5376 767450.8186639390 +5366 f 99 905109 92.41717 0.24009864352181154 Product description 5366 2024-07-29 14:03:01.089303 2024-02-18 Closed Customer 5366 357233.4927819760 +5413 t 58 797005 55.66278 0.4620817123527736 Product description 5413 2022-04-04 14:03:01.089303 2023-11-03 Closed Customer 5413 572109.3710421310 +5378 f 90 381497 17.372377 0.5146399740684622 Product description 5378 2021-08-21 14:03:01.089303 2023-03-20 Cancelled Customer 5378 91561.4674599432 +5368 t 35 91639 39.53853 0.2438154395754708 Product description 5368 2023-06-17 14:03:01.089303 2024-11-03 Closed Customer 5368 944377.3141393700 +5414 f 82 275419 49.88893 0.2701850563548156 Product description 5414 2022-03-15 14:03:01.089303 2025-05-01 Processing Customer 5414 502659.4872489980 +5381 f 59 551083 10.911005 0.691134598526034 Product description 5381 2022-12-11 14:03:01.089303 2023-06-24 Closed Customer 5381 168278.5954078380 +5373 t 9 18866 60.121807 0.383773224945962 Product description 5373 2021-10-20 14:03:01.089303 2023-02-27 Closed Customer 5373 381009.2799855800 +5417 f 100 789565 53.737305 0.5677271645187467 Product description 5417 2023-05-10 14:03:01.089303 2023-10-31 Processing Customer 5417 420792.9914873740 +5390 t 83 665344 38.567368 0.931956711606567 Product description 5390 2021-09-13 14:03:01.089303 2023-11-13 Closed Customer 5390 738602.2967514980 +5375 t 96 58562 51.002434 0.024130406622020928 Product description 5375 2023-03-26 14:03:01.089303 2023-09-22 Closed Customer 5375 420569.9649202150 +5418 t 1 302032 66.71524 0.038281756957712076 Product description 5418 2023-03-15 14:03:01.089303 2023-03-11 Processing Customer 5418 656978.7520706070 +5391 t 58 112997 19.08185 0.9281144805308941 Product description 5391 2022-11-25 14:03:01.089303 2024-06-15 Processing Customer 5391 774795.0430873480 +5377 f 31 265996 53.424343 0.4605064384824189 Product description 5377 2023-02-09 14:03:01.089303 2023-02-02 Closed Customer 5377 543661.8835736660 +5420 f 76 167094 57.048584 0.7890360784495449 Product description 5420 2024-02-18 14:03:01.089303 2024-03-07 Processing Customer 5420 49070.5832451965 +5393 f 34 25157 1.851288 0.43001724315877965 Product description 5393 2021-11-19 14:03:01.089303 2024-04-10 Closed Customer 5393 458671.4695792330 +5386 f 47 805736 92.1689 0.33826104283930647 Product description 5386 2024-06-01 14:03:01.089303 2023-10-21 Closed Customer 5386 884504.2574061030 +5427 f 83 745925 82.606255 0.7702233128122451 Product description 5427 2024-01-03 14:03:01.089303 2023-10-21 Closed Customer 5427 995619.6073916100 +5395 f 82 193937 7.0253897 0.998370133608276 Product description 5395 2022-12-26 14:03:01.089303 2024-12-29 Cancelled Customer 5395 133591.8887715200 +5387 f 86 88613 58.362625 0.7083048971338357 Product description 5387 2024-01-29 14:03:01.089303 2023-10-22 Closed Customer 5387 865712.0325044510 +5430 t 90 892328 33.908623 0.3602793802480768 Product description 5430 2023-11-23 14:03:01.089303 2023-02-15 Closed Customer 5430 602516.2817776820 +5397 t 68 276682 76.95803 0.45180927525344927 Product description 5397 2023-08-12 14:03:01.089303 2024-07-15 Closed Customer 5397 316471.7398957250 +5389 t 74 253029 77.38544 0.806387110756333 Product description 5389 2022-09-15 14:03:01.089303 2025-10-06 Closed Customer 5389 735205.3291077960 +5431 t 66 695116 9.017835 0.9892897838699177 Product description 5431 2023-07-17 14:03:01.089303 2025-08-20 Closed Customer 5431 283836.6253804950 +5401 f 26 539999 9.420973 0.2625705676543397 Product description 5401 2022-01-30 14:03:01.089303 2024-01-29 Processing Customer 5401 112789.3006559330 +5392 f 60 838312 27.541967 0.8976593192835836 Product description 5392 2021-10-13 14:03:01.089303 2024-09-24 Closed Customer 5392 52029.7545043640 +5432 t 20 677993 56.20418 0.5105758574269039 Product description 5432 2023-07-06 14:03:01.089303 2025-08-30 Processing Customer 5432 104366.9371758820 +5404 f 61 372813 48.500965 0.4306151389373376 Product description 5404 2023-01-21 14:03:01.089303 2025-01-06 Processing Customer 5404 824675.5257564970 +5394 f 77 177240 23.827375 0.5565717009734357 Product description 5394 2021-09-09 14:03:01.089303 2023-06-30 Closed Customer 5394 697848.6257245710 +5433 t 10 107673 84.15562 0.5428451094976445 Product description 5433 2022-03-14 14:03:01.089303 2023-01-10 Closed Customer 5433 807781.5324945800 +5407 f 81 834216 73.23755 0.24925401305479866 Product description 5407 2024-04-11 14:03:01.089303 2024-09-11 Closed Customer 5407 368243.0778001160 +5399 t 29 614394 32.050686 0.271159268896092 Product description 5399 2023-05-02 14:03:01.089303 2023-02-15 Closed Customer 5399 251372.4687185180 +5434 f 100 687482 96.541534 0.8055068159899044 Product description 5434 2022-07-26 14:03:01.089303 2023-06-24 Closed Customer 5434 258600.5467272370 +5411 f 61 311094 13.226838 0.12237381488284527 Product description 5411 2023-11-27 14:03:01.089303 2023-09-30 Closed Customer 5411 118619.4048400540 +5402 t 73 234354 51.927155 0.8319602500520773 Product description 5402 2022-02-10 14:03:01.089303 2025-07-11 Processing Customer 5402 910797.3312890710 +5435 f 90 929535 41.533463 0.679766880832414 Product description 5435 2024-02-22 14:03:01.089303 2024-09-07 Closed Customer 5435 816087.8533878630 +5415 f 36 412552 13.24795 0.2801742694307201 Product description 5415 2022-06-16 14:03:01.089303 2025-01-25 Processing Customer 5415 244652.5721250770 +5403 t 57 761083 69.48803 0.02451406525091926 Product description 5403 2021-11-02 14:03:01.089303 2024-03-06 Processing Customer 5403 124658.4042936870 +5436 t 91 465622 96.36368 0.1542597054905066 Product description 5436 2023-12-19 14:03:01.089303 2025-05-15 Processing Customer 5436 434998.5309287660 +5419 t 41 302192 6.628258 0.7056076167184635 Product description 5419 2022-08-11 14:03:01.089303 2025-04-18 Closed Customer 5419 739432.4542508100 +5406 f 40 999810 54.57578 0.6913324871623132 Product description 5406 2023-02-04 14:03:01.089303 2024-05-30 Cancelled Customer 5406 794725.4589412580 +5441 t 17 554378 17.533636 0.8966151727034024 Product description 5441 2023-11-13 14:03:01.089303 2023-03-09 Closed Customer 5441 585739.3603084020 +5422 t 18 716123 10.582905 0.7409637944048093 Product description 5422 2021-11-29 14:03:01.089303 2024-05-03 Closed Customer 5422 862139.5205724700 +5408 f 35 62419 20.194714 0.12759699891662635 Product description 5408 2022-04-01 14:03:01.089303 2025-06-26 Closed Customer 5408 354405.0062610400 +5443 f 40 813805 7.8618584 0.5013553633268693 Product description 5443 2022-11-29 14:03:01.089303 2025-02-21 Closed Customer 5443 213369.3298289780 +5424 t 9 969384 95.17108 0.3665201997398775 Product description 5424 2024-05-06 14:03:01.089303 2023-06-02 Processing Customer 5424 84297.7726626160 +5409 f 53 844190 54.36146 0.39488975787674363 Product description 5409 2022-07-31 14:03:01.089303 2025-11-07 Closed Customer 5409 101453.4669462680 +5445 t 60 182982 28.544111 0.6658352749805481 Product description 5445 2024-01-14 14:03:01.089303 2024-09-15 Processing Customer 5445 456801.3093847800 +5426 t 8 66868 75.7336 0.07669833344221288 Product description 5426 2023-07-28 14:03:01.089303 2023-07-13 Closed Customer 5426 606517.5169958220 +5410 t 76 634339 6.091523 0.6577699828166423 Product description 5410 2023-12-18 14:03:01.089303 2024-08-18 Closed Customer 5410 128039.5281271400 +5446 t 96 854490 55.298405 0.6714954936457112 Product description 5446 2021-08-31 14:03:01.089303 2024-04-18 Processing Customer 5446 470010.6073724440 +5428 t 59 365076 20.279078 0.34537270076684123 Product description 5428 2023-06-02 14:03:01.089303 2024-07-30 Processing Customer 5428 21636.6356115643 +5416 t 50 26447 50.413055 0.26647296859120573 Product description 5416 2023-01-28 14:03:01.089303 2025-09-25 Closed Customer 5416 150572.0459480810 +5448 f 12 436315 26.618065 0.5566776214605476 Product description 5448 2021-12-22 14:03:01.089303 2023-06-19 Processing Customer 5448 108789.3985703160 +5429 t 53 224695 33.143505 0.5287474581415559 Product description 5429 2023-05-25 14:03:01.089303 2024-10-28 Closed Customer 5429 174815.8391247330 +5421 t 15 508387 66.18957 0.18799642386232662 Product description 5421 2023-04-22 14:03:01.089303 2025-05-31 Processing Customer 5421 615032.0215635430 +5458 t 29 193722 11.849624 0.39352015174407384 Product description 5458 2022-09-13 14:03:01.089303 2024-11-24 Closed Customer 5458 181629.8379932420 +5437 f 14 675023 97.26435 0.9195376468265373 Product description 5437 2022-03-16 14:03:01.089303 2024-02-26 Closed Customer 5437 679525.2210793660 +5423 f 53 183209 4.677453 0.6400182851322462 Product description 5423 2022-05-23 14:03:01.089303 2024-05-07 Closed Customer 5423 977475.7328491570 +5465 t 39 795773 59.77011 0.41770989530943936 Product description 5465 2023-05-14 14:03:01.089303 2025-12-22 Closed Customer 5465 688643.9174141050 +5438 f 41 364433 43.7034 0.6280208766254738 Product description 5438 2021-08-24 14:03:01.089303 2023-05-17 Processing Customer 5438 302693.4204732610 +5425 f 88 553310 11.547732 0.3556552674510378 Product description 5425 2023-07-13 14:03:01.089303 2024-12-22 Closed Customer 5425 197737.3234994030 +5469 f 70 594813 13.550945 0.03570966428212685 Product description 5469 2022-03-30 14:03:01.089303 2025-04-15 Closed Customer 5469 190367.2745570190 +5439 f 99 639967 56.475445 0.02848256480758593 Product description 5439 2021-10-16 14:03:01.089303 2025-04-05 Processing Customer 5439 236305.5161613590 +5447 f 53 493104 3.9495373 0.31267405178509833 Product description 5447 2024-04-15 14:03:01.089303 2023-11-22 Processing Customer 5447 143672.1295698080 +5471 f 97 582664 87.059906 0.9011740061453928 Product description 5471 2023-03-24 14:03:01.089303 2024-04-09 Closed Customer 5471 381817.2387595740 +5440 t 37 773681 52.771744 0.33548752446874985 Product description 5440 2022-02-04 14:03:01.089303 2023-09-19 Closed Customer 5440 294584.2319172410 +5450 f 39 162577 84.734955 0.6329114250081282 Product description 5450 2022-12-08 14:03:01.089303 2025-08-20 Closed Customer 5450 701308.1948483450 +5472 t 40 520341 7.47918 0.3961468914502042 Product description 5472 2021-10-14 14:03:01.089303 2023-02-19 Closed Customer 5472 861435.3223861570 +5442 t 55 429512 11.799017 0.3299691902933226 Product description 5442 2022-02-21 14:03:01.089303 2025-01-15 Processing Customer 5442 355923.9455448520 +5452 t 83 599670 87.180115 0.067480748775953 Product description 5452 2022-09-10 14:03:01.089303 2025-02-22 Cancelled Customer 5452 144960.9146741470 +5477 f 25 759961 67.89512 0.007012197566023559 Product description 5477 2021-12-19 14:03:01.089303 2025-10-18 Closed Customer 5477 957348.1894341780 +5444 f 32 114301 41.34854 0.28623217043224614 Product description 5444 2023-05-19 14:03:01.089303 2025-02-26 Processing Customer 5444 153566.6133000150 +5456 t 97 629506 28.124823 0.85757690313784 Product description 5456 2024-05-30 14:03:01.089303 2023-07-19 Cancelled Customer 5456 129260.9153098990 +5478 f 14 22441 64.849045 0.13064434196958885 Product description 5478 2024-05-26 14:03:01.089303 2025-07-11 Closed Customer 5478 318493.2330185570 +5449 t 82 152840 91.01054 0.15948198750366416 Product description 5449 2023-05-26 14:03:01.089303 2023-09-10 Processing Customer 5449 244427.8994864180 +5459 f 22 640853 30.312866 0.3398649390357029 Product description 5459 2022-12-18 14:03:01.089303 2023-10-06 Processing Customer 5459 192688.3545875950 +5479 f 24 620675 93.203896 0.7317847678015106 Product description 5479 2024-06-21 14:03:01.089303 2024-10-13 Closed Customer 5479 356588.4934879550 +5451 t 5 623287 62.27605 0.8985091260071449 Product description 5451 2022-02-19 14:03:01.089303 2023-05-30 Cancelled Customer 5451 782779.3094466280 +5460 f 86 839969 64.94593 0.2586489629666069 Product description 5460 2023-04-15 14:03:01.089303 2023-01-04 Closed Customer 5460 764186.7971688330 +5482 t 21 892768 46.95555 0.2045316979491396 Product description 5482 2022-04-14 14:03:01.089303 2023-12-06 Closed Customer 5482 160629.8460478260 +5453 f 3 967102 16.367735 0.9701586100781157 Product description 5453 2023-06-24 14:03:01.089303 2023-08-21 Processing Customer 5453 98041.2511162960 +5462 t 90 824116 52.175293 0.49914950534425984 Product description 5462 2023-03-03 14:03:01.089303 2023-04-16 Closed Customer 5462 998957.3784392080 +5487 t 78 713109 7.285829 0.6891845827079912 Product description 5487 2024-05-29 14:03:01.089303 2023-12-26 Closed Customer 5487 753190.9700640750 +5454 f 33 734584 28.27854 0.27547373006679976 Product description 5454 2023-09-18 14:03:01.089303 2024-04-16 Processing Customer 5454 935857.1045035440 +5464 f 55 391804 25.88726 0.01135684795156422 Product description 5464 2021-11-22 14:03:01.089303 2024-10-12 Closed Customer 5464 136261.7764226430 +5489 t 1 494160 41.395473 0.5267131066686837 Product description 5489 2023-03-01 14:03:01.089303 2023-01-28 Closed Customer 5489 851268.9103711470 +5455 t 51 332593 10.665465 0.4276225891723868 Product description 5455 2022-06-06 14:03:01.089303 2025-01-03 Closed Customer 5455 190727.1104833760 +5466 t 33 164471 61.82946 0.5475534845894963 Product description 5466 2023-07-24 14:03:01.089303 2025-06-23 Closed Customer 5466 709833.9406359100 +5490 f 79 203072 82.566315 0.4793035420051659 Product description 5490 2022-05-17 14:03:01.089303 2024-07-26 Closed Customer 5490 736918.0510411650 +5457 t 72 129058 53.487755 0.255087178741384 Product description 5457 2023-04-28 14:03:01.089303 2023-06-26 Processing Customer 5457 371808.8940013940 +5467 t 22 242504 68.32587 0.9065134244342694 Product description 5467 2022-11-06 14:03:01.089303 2023-02-28 Closed Customer 5467 655964.5339788740 +5492 f 65 946911 44.097965 0.5837854628151753 Product description 5492 2024-07-05 14:03:01.089303 2024-06-29 Processing Customer 5492 379105.3699309120 +5461 f 29 557472 31.850166 0.14841751209660003 Product description 5461 2024-03-29 14:03:01.089303 2025-06-21 Processing Customer 5461 894065.4469209730 +5468 t 25 493574 56.812584 0.18075881064163113 Product description 5468 2023-02-24 14:03:01.089303 2023-06-08 Processing Customer 5468 616912.6288697910 +5494 t 25 362275 24.781027 0.01873123900774587 Product description 5494 2022-02-09 14:03:01.089303 2025-04-06 Closed Customer 5494 491759.0236750510 +5463 f 68 878082 21.523603 0.44291015521087473 Product description 5463 2023-01-27 14:03:01.089303 2024-04-12 Cancelled Customer 5463 960743.9465983770 +5470 t 76 749380 3.1821175 0.26997152226491394 Product description 5470 2023-11-18 14:03:01.089303 2025-10-15 Processing Customer 5470 465012.3217989090 +5496 t 98 135518 38.54606 0.12322915005895041 Product description 5496 2023-01-22 14:03:01.089303 2025-01-11 Closed Customer 5496 83115.9660771732 +5476 t 89 438009 96.05305 0.8155121894217565 Product description 5476 2023-05-09 14:03:01.089303 2025-11-27 Processing Customer 5476 283362.3706921030 +5473 t 16 958923 13.148235 0.2689919127266869 Product description 5473 2022-01-11 14:03:01.089303 2025-11-18 Closed Customer 5473 383118.5729153720 +5498 f 84 341218 68.2467 0.28909904360233085 Product description 5498 2021-10-20 14:03:01.089303 2024-11-30 Processing Customer 5498 503856.7630867380 +5480 f 50 698873 13.04594 0.8329127406007721 Product description 5480 2023-02-09 14:03:01.089303 2024-01-13 Processing Customer 5480 205206.2064317610 +5474 f 59 97671 76.28001 0.2029678864055775 Product description 5474 2021-09-24 14:03:01.089303 2025-04-25 Closed Customer 5474 721637.9467625700 +5500 t 66 529178 64.15047 0.4379366476249835 Product description 5500 2022-10-19 14:03:01.089303 2025-03-19 Closed Customer 5500 419677.6515002650 +5481 t 49 356747 66.72644 0.009251087574444483 Product description 5481 2023-08-21 14:03:01.089303 2024-08-26 Processing Customer 5481 120642.5049576580 +5475 t 26 106707 58.253464 0.07195378878460801 Product description 5475 2022-08-02 14:03:01.089303 2023-04-13 Processing Customer 5475 998519.4341232740 +5502 f 10 690545 55.084736 0.44458155037950675 Product description 5502 2024-04-26 14:03:01.089303 2025-04-07 Processing Customer 5502 479066.1610938050 +5483 f 90 465625 51.293713 0.3235564739969412 Product description 5483 2022-12-02 14:03:01.089303 2023-12-16 Closed Customer 5483 421212.2068083560 +5484 f 51 460952 61.164707 0.6863829295986683 Product description 5484 2024-04-16 14:03:01.089303 2025-10-23 Processing Customer 5484 993866.6902789210 +5504 f 56 904133 0.829705 0.545452348187883 Product description 5504 2022-01-04 14:03:01.089303 2024-07-01 Processing Customer 5504 844911.6917864500 +5485 t 17 367194 40.733784 0.3520089849774344 Product description 5485 2024-03-17 14:03:01.089303 2025-07-04 Processing Customer 5485 813105.5216272640 +5493 f 6 605309 46.961468 0.5180645187201485 Product description 5493 2023-08-01 14:03:01.089303 2025-07-07 Processing Customer 5493 714738.1502477900 +5506 f 7 858984 9.1227 0.7565145811454066 Product description 5506 2023-06-01 14:03:01.089303 2024-06-05 Processing Customer 5506 633948.5440640610 +5486 t 15 247060 96.91515 0.7833512948451293 Product description 5486 2022-04-04 14:03:01.089303 2024-05-17 Processing Customer 5486 66819.7672627500 +5499 t 12 600806 95.62524 0.760261794778291 Product description 5499 2024-04-14 14:03:01.089303 2023-08-07 Closed Customer 5499 461262.4190906440 +5510 f 30 441880 64.053474 0.015704190499437942 Product description 5510 2022-12-23 14:03:01.089303 2025-05-12 Processing Customer 5510 257714.0125342080 +5488 t 96 531710 47.24398 0.944094103690265 Product description 5488 2024-02-13 14:03:01.089303 2025-08-04 Processing Customer 5488 373215.8362630570 +5505 f 81 671006 66.436745 0.06961554983717733 Product description 5505 2023-10-08 14:03:01.089303 2025-11-04 Processing Customer 5505 146253.4553379630 +5511 t 90 756445 15.583487 0.9236925260076809 Product description 5511 2024-03-08 14:03:01.089303 2025-05-07 Processing Customer 5511 286125.6656831800 +5491 f 86 593880 64.10087 0.1745381806819033 Product description 5491 2022-05-13 14:03:01.089303 2025-04-12 Processing Customer 5491 152408.1530502670 +5507 f 19 256441 39.792187 0.9008236807310119 Product description 5507 2022-03-21 14:03:01.089303 2024-02-06 Processing Customer 5507 220830.8011666560 +5513 t 35 218507 74.330505 0.627784596143858 Product description 5513 2023-07-27 14:03:01.089303 2024-04-16 Closed Customer 5513 669822.3951348150 +5495 t 22 644998 39.341953 0.374388453797426 Product description 5495 2024-03-06 14:03:01.089303 2024-05-27 Processing Customer 5495 121965.4766127430 +5508 t 48 183409 79.40873 0.44126125203025524 Product description 5508 2023-11-16 14:03:01.089303 2023-09-11 Processing Customer 5508 910503.2766971920 +5516 f 1 330857 97.77497 0.1887005623577771 Product description 5516 2021-10-13 14:03:01.089303 2023-06-06 Processing Customer 5516 976774.9232721670 +5497 f 29 250372 94.35546 0.44478655484170915 Product description 5497 2021-11-13 14:03:01.089303 2025-08-20 Closed Customer 5497 895007.0742565330 +5509 t 36 134309 29.344221 0.8559994033113192 Product description 5509 2023-01-28 14:03:01.089303 2023-05-01 Processing Customer 5509 647861.6873061180 +5519 f 29 51897 65.58892 0.6921800272084262 Product description 5519 2023-08-11 14:03:01.089303 2024-03-18 Closed Customer 5519 963122.5952681040 +5501 t 14 472992 39.95812 0.6170065007715841 Product description 5501 2024-03-24 14:03:01.089303 2025-03-14 Closed Customer 5501 573025.8142273500 +5515 f 42 554100 17.774952 0.8375241907467874 Product description 5515 2022-01-22 14:03:01.089303 2023-11-17 Processing Customer 5515 159026.0877229990 +5522 f 40 385814 58.317734 0.96307701885463 Product description 5522 2024-04-26 14:03:01.089303 2025-08-30 Processing Customer 5522 54370.8410659391 +5503 f 35 327612 74.94086 0.17680428525673264 Product description 5503 2022-01-01 14:03:01.089303 2025-08-21 Closed Customer 5503 292123.1897374030 +5518 t 72 780834 2.0847118 0.9375557497221543 Product description 5518 2024-05-12 14:03:01.089303 2023-12-03 Closed Customer 5518 908126.4165867960 +5527 t 88 930704 39.143463 0.2880755629561129 Product description 5527 2022-04-08 14:03:01.089303 2025-07-27 Processing Customer 5527 988747.4173928300 +5512 t 68 262365 73.1722 0.08932311186379494 Product description 5512 2023-12-13 14:03:01.089303 2023-09-08 Closed Customer 5512 553735.8636000680 +5521 f 19 588074 67.35419 0.6961441138287618 Product description 5521 2022-11-09 14:03:01.089303 2025-06-05 Closed Customer 5521 629863.7292765010 +5530 f 35 747751 86.811676 0.15707066445432005 Product description 5530 2023-05-28 14:03:01.089303 2023-11-27 Closed Customer 5530 407418.1531708870 +5514 t 64 318598 35.145744 0.6769216614185716 Product description 5514 2024-07-28 14:03:01.089303 2023-12-14 Closed Customer 5514 981524.2008044080 +5528 f 2 784922 16.601183 0.6626596474822186 Product description 5528 2021-10-11 14:03:01.089303 2025-08-04 Closed Customer 5528 487808.1145816960 +5531 t 34 598085 72.81568 0.8799185412917758 Product description 5531 2023-03-19 14:03:01.089303 2024-10-07 Closed Customer 5531 538039.2885208350 +5517 t 33 632395 78.55018 0.17465471134552857 Product description 5517 2023-11-26 14:03:01.089303 2025-04-04 Closed Customer 5517 965590.6181407660 +5529 t 12 69624 41.84602 0.3293016065950347 Product description 5529 2024-07-25 14:03:01.089303 2024-11-14 Processing Customer 5529 256207.6656002500 +5532 f 39 576251 60.37272 0.6537648131259566 Product description 5532 2023-09-24 14:03:01.089303 2025-10-01 Processing Customer 5532 605855.5652572220 +5520 f 16 410868 76.21666 0.10808972769080682 Product description 5520 2024-03-04 14:03:01.089303 2024-12-11 Closed Customer 5520 939937.3541900290 +5533 f 44 678377 42.368298 0.2655008252193376 Product description 5533 2022-03-22 14:03:01.089303 2025-11-19 Closed Customer 5533 88748.0398402118 +5534 f 25 230813 9.931857 0.6028838374249013 Product description 5534 2022-03-31 14:03:01.089303 2024-02-11 Closed Customer 5534 255916.9978551950 +5523 f 52 877010 83.27583 0.8266783861949172 Product description 5523 2024-02-03 14:03:01.089303 2024-11-23 Closed Customer 5523 916242.4101230190 +5535 t 14 343868 52.6289 0.645751550433328 Product description 5535 2023-04-19 14:03:01.089303 2025-09-27 Closed Customer 5535 305025.6762035350 +5538 f 10 565062 5.6098146 0.7735176556459997 Product description 5538 2023-12-09 14:03:01.089303 2025-12-03 Closed Customer 5538 175138.0399110260 +5524 f 88 105871 28.707306 0.8005539383197622 Product description 5524 2024-04-05 14:03:01.089303 2024-11-17 Closed Customer 5524 458174.9904774810 +5537 f 34 289642 48.784744 0.8011488018529924 Product description 5537 2021-10-05 14:03:01.089303 2025-06-18 Processing Customer 5537 719077.7589835020 +5542 f 25 858079 89.84081 0.7684380701494185 Product description 5542 2021-08-23 14:03:01.089303 2024-08-17 Processing Customer 5542 709525.0679448240 +5525 t 44 782074 50.32988 0.7680784994934591 Product description 5525 2023-04-07 14:03:01.089303 2025-07-28 Processing Customer 5525 762222.0378439980 +5539 f 75 249086 8.971205 0.006091736235557477 Product description 5539 2021-12-27 14:03:01.089303 2023-06-18 Closed Customer 5539 727509.1650658180 +5543 f 68 985988 98.1142 0.6947739732714346 Product description 5543 2024-05-16 14:03:01.089303 2023-03-29 Cancelled Customer 5543 689957.2671784670 +5526 f 74 510278 98.44728 0.5497832218051961 Product description 5526 2021-08-07 14:03:01.089303 2025-01-27 Cancelled Customer 5526 143149.5846922350 +5540 f 54 758133 31.34334 0.6956140165592082 Product description 5540 2022-01-05 14:03:01.089303 2023-12-28 Processing Customer 5540 36239.4563986044 +5549 f 20 427271 16.193048 0.3255552904326251 Product description 5549 2021-10-20 14:03:01.089303 2025-07-30 Closed Customer 5549 988702.6014523630 +5536 f 51 503409 52.506924 0.1844563917659272 Product description 5536 2023-10-29 14:03:01.089303 2024-09-18 Closed Customer 5536 910108.1206295200 +5544 t 40 896241 68.91735 0.5437760477308125 Product description 5544 2021-11-23 14:03:01.089303 2025-03-22 Processing Customer 5544 194109.1554719420 +5550 t 72 441085 72.99525 0.41463197484266345 Product description 5550 2022-11-13 14:03:01.089303 2024-06-23 Processing Customer 5550 399315.6438737450 +5541 f 65 858435 96.04672 0.10176939313117828 Product description 5541 2023-02-09 14:03:01.089303 2024-05-10 Processing Customer 5541 914034.3503208290 +5553 f 72 672030 94.33227 0.7801840166473148 Product description 5553 2023-07-26 14:03:01.089303 2024-06-03 Closed Customer 5553 417064.0734317890 +5552 f 72 250608 44.164192 0.5522594918705792 Product description 5552 2022-04-15 14:03:01.089303 2024-02-10 Processing Customer 5552 95412.7850146911 +5545 t 25 281728 43.551434 0.21443076713439524 Product description 5545 2024-02-29 14:03:01.089303 2024-02-15 Cancelled Customer 5545 175447.9268632490 +5557 f 85 768763 38.23542 0.19969235364726146 Product description 5557 2024-01-24 14:03:01.089303 2023-09-27 Closed Customer 5557 802283.1952868120 +5556 f 51 113697 46.204174 0.5547955856650901 Product description 5556 2024-03-23 14:03:01.089303 2023-08-18 Closed Customer 5556 77323.9063765310 +5546 t 5 924977 54.13067 0.2806527933882883 Product description 5546 2023-08-14 14:03:01.089303 2025-09-14 Closed Customer 5546 837895.5341861740 +5560 t 63 981654 26.875881 0.2222091666206758 Product description 5560 2022-02-20 14:03:01.089303 2024-08-02 Closed Customer 5560 237393.2866789370 +5563 f 0 532929 79.648186 0.10305907982212403 Product description 5563 2023-02-14 14:03:01.089303 2024-06-16 Processing Customer 5563 949551.1467778530 +5547 f 13 995693 99.93861 0.10956408253960248 Product description 5547 2021-08-14 14:03:01.089303 2025-07-13 Closed Customer 5547 345626.6242754180 +5565 t 80 721823 37.377846 0.6324204441674617 Product description 5565 2022-02-07 14:03:01.089303 2025-06-16 Closed Customer 5565 904582.3860027080 +5569 t 8 878231 75.8427 0.7172466300745697 Product description 5569 2024-03-22 14:03:01.089303 2025-12-17 Processing Customer 5569 788105.5007249630 +5548 t 37 481933 81.94229 0.8767405375055013 Product description 5548 2023-07-27 14:03:01.089303 2025-08-25 Processing Customer 5548 143832.0712453420 +5566 t 59 233969 11.281655 0.7319386417423068 Product description 5566 2022-07-29 14:03:01.089303 2023-06-04 Closed Customer 5566 44235.6379492423 +5571 t 14 671130 36.534874 0.85207346692507 Product description 5571 2022-05-14 14:03:01.089303 2023-10-24 Closed Customer 5571 52257.3831419102 +5551 f 20 804065 91.107735 0.9868800954151702 Product description 5551 2023-02-09 14:03:01.089303 2025-01-26 Processing Customer 5551 254641.2581364090 +5570 f 46 755532 23.728968 0.8345478288310026 Product description 5570 2024-03-30 14:03:01.089303 2023-08-19 Closed Customer 5570 956219.1319489910 +5573 f 70 188995 17.67871 0.6194514560856703 Product description 5573 2023-04-02 14:03:01.089303 2023-06-07 Cancelled Customer 5573 933699.8089543020 +5554 t 24 852716 31.027128 0.7163850310687572 Product description 5554 2021-08-30 14:03:01.089303 2023-02-14 Closed Customer 5554 971835.1123098610 +5572 f 6 932476 45.912632 0.9047018358813865 Product description 5572 2023-09-28 14:03:01.089303 2025-06-25 Processing Customer 5572 752303.4822382750 +5574 t 16 746729 12.250291 0.7780110961842119 Product description 5574 2022-08-27 14:03:01.089303 2025-10-05 Closed Customer 5574 107907.3232482340 +5555 t 77 173224 86.57978 0.2980633652493303 Product description 5555 2021-10-09 14:03:01.089303 2025-06-11 Closed Customer 5555 487525.7159378140 +5575 t 95 995876 38.121185 0.10315879238411796 Product description 5575 2024-02-10 14:03:01.089303 2023-05-16 Closed Customer 5575 850748.5461418510 +5577 f 99 980225 21.709908 0.9376862791226763 Product description 5577 2023-06-27 14:03:01.089303 2024-05-26 Closed Customer 5577 666564.2207406680 +5558 t 83 950102 78.45428 0.7411635157213006 Product description 5558 2022-06-30 14:03:01.089303 2024-04-22 Closed Customer 5558 944365.5941470440 +5576 t 55 252530 38.31293 0.23426305877798725 Product description 5576 2023-06-03 14:03:01.089303 2024-02-06 Closed Customer 5576 452774.8870875140 +5578 t 94 103427 84.60445 0.7323833293151516 Product description 5578 2024-04-21 14:03:01.089303 2024-01-12 Closed Customer 5578 385626.2535160300 +5559 f 60 319803 51.482243 0.7035335856407521 Product description 5559 2023-08-25 14:03:01.089303 2023-08-16 Closed Customer 5559 513532.2180527950 +5584 f 61 481671 5.6372166 0.26595759457785206 Product description 5584 2023-10-04 14:03:01.089303 2025-06-14 Closed Customer 5584 354071.3088709210 +5579 t 61 810494 11.651596 0.5875637586082441 Product description 5579 2023-05-03 14:03:01.089303 2023-08-17 Closed Customer 5579 219072.6810153050 +5561 t 65 397847 28.947296 0.36508105884086106 Product description 5561 2022-10-28 14:03:01.089303 2025-07-15 Closed Customer 5561 284287.5407960430 +5585 f 72 127318 75.04965 0.9067438346309338 Product description 5585 2022-12-08 14:03:01.089303 2023-05-16 Processing Customer 5585 597177.2595296580 +5580 f 10 389846 58.692696 0.8671391766425351 Product description 5580 2022-06-19 14:03:01.089303 2025-11-06 Processing Customer 5580 171675.3822982110 +5562 f 90 466795 59.03301 0.787072539334499 Product description 5562 2024-07-02 14:03:01.089303 2024-04-08 Closed Customer 5562 617825.1221864240 +5586 t 85 981749 46.332638 0.18019791207457203 Product description 5586 2024-07-29 14:03:01.089303 2023-07-26 Cancelled Customer 5586 297566.8587788750 +5582 f 96 573866 10.316883 0.26535220766247747 Product description 5582 2023-06-21 14:03:01.089303 2024-02-05 Closed Customer 5582 42416.4792923136 +5564 t 61 77916 30.024837 0.9162147685646609 Product description 5564 2022-07-04 14:03:01.089303 2023-08-13 Closed Customer 5564 112815.9369292660 +5588 f 37 23853 69.73869 0.32483333574786144 Product description 5588 2021-10-29 14:03:01.089303 2024-04-29 Processing Customer 5588 316113.8140905030 +5587 f 57 207102 6.3413806 0.2913975772854336 Product description 5587 2021-11-22 14:03:01.089303 2023-03-26 Closed Customer 5587 861597.3126572740 +5567 f 40 238527 33.013096 0.2973405402601479 Product description 5567 2023-09-22 14:03:01.089303 2023-04-21 Closed Customer 5567 952450.0742243660 +5592 t 47 588243 77.60601 0.7227750858106532 Product description 5592 2023-08-21 14:03:01.089303 2024-02-24 Closed Customer 5592 528141.9691226970 +5591 f 52 464296 89.32996 0.11071580034655781 Product description 5591 2022-02-03 14:03:01.089303 2024-06-02 Closed Customer 5591 178981.6679923180 +5568 t 62 567329 90.598625 0.42226937348899085 Product description 5568 2022-09-27 14:03:01.089303 2025-05-08 Processing Customer 5568 881087.1432374370 +5595 f 2 610930 1.0332879 0.9503850943372001 Product description 5595 2022-01-02 14:03:01.089303 2024-11-10 Processing Customer 5595 995599.9076410260 +5593 t 4 832250 41.675022 0.3462168074046126 Product description 5593 2024-02-12 14:03:01.089303 2024-06-06 Closed Customer 5593 827445.9915618810 +5581 t 82 5112 44.841885 0.9971550483880911 Product description 5581 2023-03-21 14:03:01.089303 2023-06-08 Processing Customer 5581 524809.3728657820 +5605 f 96 537772 76.51629 0.6410700236410207 Product description 5605 2024-01-21 14:03:01.089303 2024-06-30 Processing Customer 5605 524069.6542704730 +5597 f 9 789833 23.335674 0.804554535128279 Product description 5597 2023-11-07 14:03:01.089303 2025-04-29 Processing Customer 5597 743839.2022919520 +5583 f 71 897695 75.240845 0.28884582758107413 Product description 5583 2023-09-27 14:03:01.089303 2023-07-15 Processing Customer 5583 252096.8966392300 +5606 t 74 391589 53.13286 0.6492606671797105 Product description 5606 2024-07-08 14:03:01.089303 2024-09-27 Processing Customer 5606 39864.1078410584 +5599 t 17 760934 79.69996 0.37983566238824196 Product description 5599 2023-06-25 14:03:01.089303 2025-10-14 Processing Customer 5599 622400.5566135770 +5589 f 43 537775 21.41536 0.6724478182591263 Product description 5589 2022-10-15 14:03:01.089303 2025-09-23 Closed Customer 5589 849135.3102017100 +5608 f 86 283424 32.783432 0.2928015468155678 Product description 5608 2022-06-24 14:03:01.089303 2024-03-05 Closed Customer 5608 833570.9281129300 +5601 f 69 333317 47.36573 0.1094546225163846 Product description 5601 2024-07-09 14:03:01.089303 2025-01-07 Closed Customer 5601 741568.5614043500 +5590 t 58 507324 47.172417 0.6996391821397658 Product description 5590 2023-12-03 14:03:01.089303 2024-05-04 Closed Customer 5590 42540.3973448795 +5610 t 27 763206 73.444244 0.07892618648738647 Product description 5610 2022-02-22 14:03:01.089303 2024-07-17 Processing Customer 5610 566295.9196666190 +5602 f 42 38552 97.15358 0.6342628657040557 Product description 5602 2022-01-16 14:03:01.089303 2023-03-21 Processing Customer 5602 993978.4313019900 +5594 f 54 835194 81.57503 0.1504739549818872 Product description 5594 2021-12-14 14:03:01.089303 2023-01-19 Processing Customer 5594 831031.0397068080 +5612 f 3 300353 44.541977 0.6197691140799577 Product description 5612 2023-11-02 14:03:01.089303 2025-11-22 Processing Customer 5612 707058.3043593750 +5603 f 91 198948 62.742985 0.732495767307217 Product description 5603 2023-10-22 14:03:01.089303 2024-05-30 Processing Customer 5603 412818.7380856900 +5596 t 46 159595 81.989685 0.024527114346714285 Product description 5596 2022-10-01 14:03:01.089303 2023-01-03 Closed Customer 5596 883042.9948129530 +5621 t 47 641877 68.470406 0.9447426446825844 Product description 5621 2021-09-12 14:03:01.089303 2024-02-12 Closed Customer 5621 884011.9688140400 +5613 f 85 507709 10.108552 0.2698205489156429 Product description 5613 2022-05-15 14:03:01.089303 2025-07-20 Closed Customer 5613 574897.9331470210 +5598 f 44 658132 58.449226 0.6005408620883763 Product description 5598 2022-03-21 14:03:01.089303 2024-08-27 Cancelled Customer 5598 246465.7304840290 +5622 t 14 137518 93.84315 0.12833106929831217 Product description 5622 2021-10-27 14:03:01.089303 2025-09-29 Processing Customer 5622 682637.0808762300 +5618 t 33 690140 42.90208 0.53420022131343 Product description 5618 2022-01-06 14:03:01.089303 2023-12-02 Processing Customer 5618 276327.7744225970 +5600 f 78 964689 89.8563 0.22898962720501714 Product description 5600 2021-09-12 14:03:01.089303 2024-11-01 Closed Customer 5600 697687.7037625150 +5623 t 3 125415 87.7734 0.8426041755720277 Product description 5623 2024-04-02 14:03:01.089303 2025-02-20 Closed Customer 5623 895447.2812439070 +5620 f 28 224584 77.71292 0.24210241420625422 Product description 5620 2023-09-26 14:03:01.089303 2023-04-30 Closed Customer 5620 767281.4366744590 +5604 t 5 422745 63.077538 0.0939138671377151 Product description 5604 2023-07-15 14:03:01.089303 2025-02-11 Processing Customer 5604 361399.7799636870 +5625 t 12 288836 41.612602 0.6764964973442602 Product description 5625 2022-06-03 14:03:01.089303 2023-07-21 Closed Customer 5625 540160.5754082050 +5624 t 78 153714 20.165258 0.48999591530584397 Product description 5624 2024-02-10 14:03:01.089303 2025-04-12 Closed Customer 5624 557455.4264962330 +5607 t 35 72357 12.11713 0.062400167202405044 Product description 5607 2023-05-08 14:03:01.089303 2024-05-31 Closed Customer 5607 414140.2218352720 +5626 f 42 195270 60.42327 0.13488104173666926 Product description 5626 2022-09-29 14:03:01.089303 2024-04-20 Processing Customer 5626 171867.6262673600 +5628 t 78 11059 45.353912 0.22864486775545956 Product description 5628 2022-11-18 14:03:01.089303 2024-12-16 Processing Customer 5628 476488.4302905510 +5609 f 14 122528 71.39654 0.12585162576684183 Product description 5609 2023-01-23 14:03:01.089303 2024-04-09 Processing Customer 5609 491829.5100153750 +5633 f 25 865528 18.909962 0.5525750029513148 Product description 5633 2023-07-13 14:03:01.089303 2023-09-15 Closed Customer 5633 165074.5211934570 +5630 t 98 333921 8.587847 0.3245621031671 Product description 5630 2023-03-20 14:03:01.089303 2024-03-16 Closed Customer 5630 235547.1208411610 +5611 f 92 61947 52.278606 0.45634586207658145 Product description 5611 2024-01-17 14:03:01.089303 2023-05-07 Closed Customer 5611 971017.2146326420 +5634 t 84 344990 6.8096805 0.9336087973299172 Product description 5634 2022-05-15 14:03:01.089303 2025-08-15 Processing Customer 5634 787451.2939175600 +5631 f 17 19608 13.708382 0.257187811972198 Product description 5631 2023-01-30 14:03:01.089303 2024-07-01 Processing Customer 5631 767650.1852714850 +5614 f 66 533749 17.484467 0.9266062894250666 Product description 5614 2022-05-14 14:03:01.089303 2025-03-03 Closed Customer 5614 487330.5978599480 +5635 t 17 863930 91.97984 0.03627877783324607 Product description 5635 2023-09-18 14:03:01.089303 2024-04-13 Closed Customer 5635 634575.6564235460 +5632 t 69 190060 41.26401 0.10065107942959983 Product description 5632 2021-09-17 14:03:01.089303 2023-09-22 Processing Customer 5632 164680.1842206000 +5615 f 21 226886 86.77494 0.2429366608151824 Product description 5615 2023-06-23 14:03:01.089303 2025-03-11 Closed Customer 5615 420301.5823442410 +5654 f 60 364623 36.741528 0.0010444472833697205 Product description 5654 2021-11-25 14:03:01.089303 2025-06-19 Closed Customer 5654 841029.1375541910 +5636 t 53 665959 68.15377 0.6811037194022127 Product description 5636 2023-11-16 14:03:01.089303 2023-12-10 Processing Customer 5636 821295.7787653540 +5616 f 85 412639 63.211464 0.7024793107516984 Product description 5616 2023-09-26 14:03:01.089303 2023-07-14 Closed Customer 5616 964285.2224388290 +5660 f 9 811261 93.33245 0.33153939389488585 Product description 5660 2022-04-23 14:03:01.089303 2025-07-13 Processing Customer 5660 876561.9645946960 +5637 t 18 817179 85.55764 0.4838789759502937 Product description 5637 2024-06-16 14:03:01.089303 2024-01-27 Closed Customer 5637 743709.4476244260 +5617 t 58 753367 23.85604 0.4076634359028688 Product description 5617 2022-04-18 14:03:01.089303 2025-01-17 Processing Customer 5617 942580.9895695100 +5664 f 49 180616 9.571681 0.3803082327570948 Product description 5664 2022-02-23 14:03:01.089303 2025-05-02 Closed Customer 5664 690538.0517602180 +5638 t 31 718236 1.7379404 0.8884068935985674 Product description 5638 2023-09-22 14:03:01.089303 2023-11-19 Closed Customer 5638 442789.4434170910 +5619 f 87 288052 37.44088 0.5097620679554353 Product description 5619 2024-07-03 14:03:01.089303 2023-02-11 Processing Customer 5619 27643.1131854444 +5666 t 71 648812 64.37096 0.8017484461448134 Product description 5666 2024-02-25 14:03:01.089303 2024-04-04 Closed Customer 5666 217599.8560488170 +5641 t 1 684768 92.00572 0.9206227169612085 Product description 5641 2021-08-21 14:03:01.089303 2023-07-04 Cancelled Customer 5641 686655.8299506420 +5627 f 19 715528 0.59546745 0.744370176152664 Product description 5627 2023-06-25 14:03:01.089303 2023-11-26 Closed Customer 5627 330792.9122089950 +5667 f 36 314392 72.58589 0.1669475010406316 Product description 5667 2021-10-27 14:03:01.089303 2025-08-14 Closed Customer 5667 347930.5861076550 +5645 t 76 444090 37.38993 0.8553668420356786 Product description 5645 2022-06-09 14:03:01.089303 2024-02-01 Processing Customer 5645 324058.0181763560 +5629 f 4 142854 47.516876 0.3701020601428979 Product description 5629 2021-08-18 14:03:01.089303 2023-04-07 Closed Customer 5629 580277.8976829720 +5668 t 37 487966 49.72614 0.4095705304936388 Product description 5668 2022-09-11 14:03:01.089303 2023-05-02 Closed Customer 5668 831434.6369109660 +5646 f 40 232603 87.836464 0.3535492812867673 Product description 5646 2022-11-17 14:03:01.089303 2024-11-19 Closed Customer 5646 148210.2459051940 +5639 t 13 312173 25.811647 0.5691155834765382 Product description 5639 2024-07-03 14:03:01.089303 2025-02-24 Processing Customer 5639 216369.8090246880 +5672 f 5 298084 48.074577 0.9331235285112811 Product description 5672 2024-04-11 14:03:01.089303 2024-11-13 Processing Customer 5672 572512.4297929830 +5649 t 12 120254 97.63273 0.7426732565337204 Product description 5649 2023-12-02 14:03:01.089303 2023-05-13 Processing Customer 5649 513573.2304492780 +5640 t 16 734079 57.04484 0.831212254335739 Product description 5640 2022-06-19 14:03:01.089303 2023-07-26 Closed Customer 5640 493344.0617001960 +5675 f 86 37971 73.85973 0.9549481414751142 Product description 5675 2024-07-20 14:03:01.089303 2024-09-25 Closed Customer 5675 716807.7026943500 +5653 t 60 421076 3.9145362 0.05371586579358478 Product description 5653 2022-03-06 14:03:01.089303 2024-11-02 Closed Customer 5653 605149.7880443470 +5642 f 53 122669 74.16382 0.3542419465963391 Product description 5642 2022-03-13 14:03:01.089303 2024-11-29 Processing Customer 5642 777393.4209364660 +5682 t 99 94078 9.414853 0.6550847201878938 Product description 5682 2024-06-28 14:03:01.089303 2023-02-08 Cancelled Customer 5682 971465.6602478650 +5659 f 80 51414 55.58445 0.1929235387071202 Product description 5659 2022-02-08 14:03:01.089303 2025-03-06 Closed Customer 5659 292283.9107461460 +5643 f 70 198697 85.14531 0.2414165212643411 Product description 5643 2022-08-14 14:03:01.089303 2024-07-27 Processing Customer 5643 308672.4339742620 +5683 f 62 672478 7.1961703 0.47614147663934503 Product description 5683 2023-07-06 14:03:01.089303 2025-05-19 Closed Customer 5683 493561.4983967870 +5663 f 76 920760 78.28832 0.9455847456209128 Product description 5663 2023-12-14 14:03:01.089303 2025-04-05 Closed Customer 5663 516628.6429674360 +5644 t 52 244404 55.14003 0.0870576961903069 Product description 5644 2022-07-27 14:03:01.089303 2023-12-06 Closed Customer 5644 134267.6222642220 +5684 t 68 263324 98.05641 0.6324057750874168 Product description 5684 2023-06-08 14:03:01.089303 2025-03-13 Closed Customer 5684 418310.8855637060 +5665 t 16 79249 57.56563 0.027672940557295078 Product description 5665 2023-10-30 14:03:01.089303 2023-08-29 Closed Customer 5665 190679.0296145540 +5647 f 94 439294 44.217148 0.6139497867233814 Product description 5647 2024-04-23 14:03:01.089303 2024-03-16 Processing Customer 5647 634709.1796423110 +5686 f 61 248157 86.419395 0.2873689310759211 Product description 5686 2022-02-27 14:03:01.089303 2024-05-01 Closed Customer 5686 419635.5289190170 +5669 f 16 600968 21.903782 0.3637879428022259 Product description 5669 2021-10-29 14:03:01.089303 2024-08-12 Closed Customer 5669 704583.1536597440 +5648 f 3 124535 30.36651 0.7635314094958048 Product description 5648 2024-06-11 14:03:01.089303 2025-08-27 Processing Customer 5648 541392.4231740910 +5687 f 93 680410 46.56833 0.43546689991906007 Product description 5687 2023-02-10 14:03:01.089303 2024-12-17 Processing Customer 5687 770429.4785742360 +5671 t 11 722097 33.7253 0.08103413222950451 Product description 5671 2024-02-04 14:03:01.089303 2024-08-14 Closed Customer 5671 686973.6590420070 +5650 f 58 304187 99.06182 0.2257952032530568 Product description 5650 2021-10-02 14:03:01.089303 2025-10-22 Closed Customer 5650 235687.6429134010 +5691 t 68 932277 51.956566 0.5507569226382891 Product description 5691 2021-09-30 14:03:01.089303 2024-08-01 Closed Customer 5691 974459.6195025390 +5677 t 12 651558 85.04361 0.5550139418027911 Product description 5677 2024-02-17 14:03:01.089303 2024-09-29 Closed Customer 5677 726139.6218731200 +5651 t 95 848413 41.936607 0.2441407904455346 Product description 5651 2023-09-04 14:03:01.089303 2023-01-24 Closed Customer 5651 242312.9640423020 +5694 f 36 827553 0.8828619 0.6859857891878072 Product description 5694 2022-03-13 14:03:01.089303 2024-05-22 Processing Customer 5694 121275.8487465420 +5679 f 19 270155 18.389074 0.25882304469169526 Product description 5679 2023-05-15 14:03:01.089303 2025-01-10 Cancelled Customer 5679 982663.9880724740 +5652 t 37 598396 87.20481 0.5818063756695295 Product description 5652 2022-03-05 14:03:01.089303 2023-02-24 Processing Customer 5652 895131.8339178830 +5695 f 19 770071 2.7310605 0.9276864957551574 Product description 5695 2022-11-23 14:03:01.089303 2023-07-29 Closed Customer 5695 920046.3759246280 +5680 f 23 695008 66.09932 0.322111518426464 Product description 5680 2022-07-17 14:03:01.089303 2023-10-15 Closed Customer 5680 731397.9230439640 +5655 t 33 682934 40.646538 0.3524968665023991 Product description 5655 2021-11-19 14:03:01.089303 2023-03-22 Closed Customer 5655 655396.9628114550 +5699 t 72 299163 79.29087 0.21098559099742076 Product description 5699 2021-12-22 14:03:01.089303 2023-05-11 Processing Customer 5699 400213.2800096020 +5685 f 65 744942 27.264336 0.43179297339891676 Product description 5685 2023-09-21 14:03:01.089303 2025-06-29 Processing Customer 5685 770464.7221796680 +5656 f 67 892895 77.17252 0.3367195160091683 Product description 5656 2024-02-20 14:03:01.089303 2024-10-28 Processing Customer 5656 245557.7191732880 +5701 f 84 367941 53.332012 0.8155082581610777 Product description 5701 2024-06-07 14:03:01.089303 2023-01-03 Cancelled Customer 5701 697289.3537847860 +5690 t 50 739920 48.28656 0.802979121537188 Product description 5690 2021-11-02 14:03:01.089303 2023-10-04 Closed Customer 5690 544932.1819214750 +5657 t 58 85271 77.56017 0.5416728779773123 Product description 5657 2022-08-30 14:03:01.089303 2023-12-05 Closed Customer 5657 597457.3881816560 +5702 t 27 806456 37.812355 0.5929162828876002 Product description 5702 2022-01-30 14:03:01.089303 2025-06-29 Closed Customer 5702 116135.0664313650 +5693 t 91 135797 25.899645 0.3694372078673247 Product description 5693 2022-05-16 14:03:01.089303 2023-11-22 Closed Customer 5693 123349.4554865760 +5658 f 1 174785 73.67463 0.41732242127342545 Product description 5658 2022-02-17 14:03:01.089303 2025-06-07 Closed Customer 5658 823121.5622640310 +5703 t 6 871858 0.7303273 0.1471142798818832 Product description 5703 2024-06-19 14:03:01.089303 2023-10-15 Processing Customer 5703 624149.3281651640 +5696 t 65 734029 72.72046 0.9654102220281509 Product description 5696 2021-10-20 14:03:01.089303 2023-06-23 Closed Customer 5696 381029.5404566300 +5661 t 51 919034 95.6943 0.2205356522646511 Product description 5661 2024-03-17 14:03:01.089303 2024-11-22 Processing Customer 5661 999704.4471527270 +5705 f 62 73217 28.619978 0.21393596318327468 Product description 5705 2024-06-01 14:03:01.089303 2023-02-11 Closed Customer 5705 523619.3972690120 +5697 t 23 192815 65.48769 0.47402977448074424 Product description 5697 2023-08-08 14:03:01.089303 2025-01-20 Closed Customer 5697 120096.3570419450 +5662 t 76 914217 72.99813 0.3395534234647073 Product description 5662 2023-07-15 14:03:01.089303 2024-03-25 Processing Customer 5662 946346.1836466780 +5707 t 5 14885 93.843124 0.815400515044054 Product description 5707 2022-06-19 14:03:01.089303 2025-10-27 Processing Customer 5707 28498.4146681531 +5698 f 99 348158 94.81281 0.7053097692744608 Product description 5698 2021-08-29 14:03:01.089303 2025-07-07 Closed Customer 5698 559847.1045274560 +5670 f 52 717289 45.370064 0.28315621661167967 Product description 5670 2023-06-30 14:03:01.089303 2024-10-11 Closed Customer 5670 5427.6075138127 +5713 f 28 110239 17.98713 0.768973537924964 Product description 5713 2023-02-09 14:03:01.089303 2025-04-09 Closed Customer 5713 312086.2868127960 +5706 f 11 841628 53.194992 0.4949600280808717 Product description 5706 2022-02-22 14:03:01.089303 2023-06-04 Processing Customer 5706 386498.5579032090 +5673 f 97 756377 71.8969 0.43881801828835876 Product description 5673 2024-01-08 14:03:01.089303 2024-07-09 Processing Customer 5673 589943.9784632070 +5719 f 10 846488 90.60595 0.7178979951397011 Product description 5719 2022-08-17 14:03:01.089303 2024-09-20 Closed Customer 5719 700901.7383013150 +5708 f 31 680022 31.44293 0.6895019488311327 Product description 5708 2023-07-04 14:03:01.089303 2023-01-23 Processing Customer 5708 526640.1596303400 +5674 t 30 894344 50.528687 0.9570425712511721 Product description 5674 2022-11-10 14:03:01.089303 2025-01-03 Closed Customer 5674 208944.6368630270 +5721 f 89 897109 26.383307 0.6799669927385139 Product description 5721 2022-09-09 14:03:01.089303 2024-05-04 Closed Customer 5721 453616.3907824820 +5710 f 70 65400 83.447784 0.3062424115161271 Product description 5710 2022-07-09 14:03:01.089303 2025-08-28 Closed Customer 5710 902908.5660218360 +5676 t 80 998588 83.878624 0.9976227990619009 Product description 5676 2022-04-29 14:03:01.089303 2023-02-08 Processing Customer 5676 76782.6613716771 +5723 f 46 237452 98.094765 0.9142725167085999 Product description 5723 2022-04-22 14:03:01.089303 2024-08-23 Closed Customer 5723 129755.6061725550 +5715 t 17 841688 26.892923 0.1892274543061454 Product description 5715 2022-03-24 14:03:01.089303 2025-05-08 Processing Customer 5715 915661.5510349370 +5678 f 68 438419 91.736374 0.547092482470596 Product description 5678 2023-12-18 14:03:01.089303 2025-02-28 Closed Customer 5678 863305.8421323520 +5727 t 23 258354 80.39692 0.11346968278435554 Product description 5727 2021-11-21 14:03:01.089303 2023-11-08 Closed Customer 5727 461661.8527355850 +5716 f 72 674320 40.0635 0.5088921948957115 Product description 5716 2023-05-15 14:03:01.089303 2023-12-14 Closed Customer 5716 974484.8988267590 +5681 t 51 331231 89.63271 0.587149668319924 Product description 5681 2022-11-01 14:03:01.089303 2023-09-22 Processing Customer 5681 132463.8101869020 +5728 f 82 395260 63.788216 0.813346354302972 Product description 5728 2021-08-13 14:03:01.089303 2023-10-22 Processing Customer 5728 910365.3986387490 +5717 t 73 518008 13.342071 0.26010689819242927 Product description 5717 2024-05-17 14:03:01.089303 2025-08-07 Processing Customer 5717 467977.9623088720 +5688 t 47 870854 1.4420085 0.34653442496661313 Product description 5688 2023-03-11 14:03:01.089303 2023-03-16 Processing Customer 5688 178328.1498918430 +5730 t 30 663675 5.2034655 0.20831221528467836 Product description 5730 2024-03-02 14:03:01.089303 2025-01-06 Processing Customer 5730 236963.0083420840 +5722 f 74 996856 61.484657 0.010659749775800975 Product description 5722 2023-06-18 14:03:01.089303 2025-12-26 Closed Customer 5722 14401.1435431537 +5689 t 25 132929 66.550995 0.0661671338315557 Product description 5689 2024-07-05 14:03:01.089303 2023-12-14 Closed Customer 5689 17688.1680631844 +5731 t 19 866005 31.366255 0.4950712983934764 Product description 5731 2024-06-02 14:03:01.089303 2025-12-02 Closed Customer 5731 619599.5876258880 +5726 f 33 180668 97.94344 0.3524119239299033 Product description 5726 2024-04-18 14:03:01.089303 2025-02-02 Closed Customer 5726 413632.1407504300 +5692 t 45 893193 9.103517 0.08656196714029107 Product description 5692 2023-08-30 14:03:01.089303 2023-11-06 Processing Customer 5692 894700.6904122680 +5732 f 84 265914 51.76379 0.9717186363881041 Product description 5732 2021-12-08 14:03:01.089303 2023-01-04 Closed Customer 5732 56121.0136217305 +5729 t 7 649625 14.040572 0.08101406910856568 Product description 5729 2023-02-05 14:03:01.089303 2025-08-18 Closed Customer 5729 476194.5559185250 +5700 t 48 369133 5.576523 0.7823638807571882 Product description 5700 2023-04-26 14:03:01.089303 2023-12-19 Processing Customer 5700 94073.1495468690 +5737 t 50 496998 87.21528 0.11805797686837849 Product description 5737 2023-06-23 14:03:01.089303 2023-06-28 Closed Customer 5737 305717.2885080670 +5734 t 51 859856 24.467009 0.7139165201893825 Product description 5734 2023-08-02 14:03:01.089303 2023-05-12 Closed Customer 5734 600367.3802303450 +5704 f 6 873230 37.92714 0.05384751432631418 Product description 5704 2021-11-13 14:03:01.089303 2024-05-27 Closed Customer 5704 463721.4500766230 +5738 t 52 609614 2.71033 0.8716624619989375 Product description 5738 2023-07-07 14:03:01.089303 2023-10-12 Processing Customer 5738 440713.0643955350 +5735 t 77 233881 46.821865 0.2957892235210302 Product description 5735 2022-04-16 14:03:01.089303 2025-03-12 Processing Customer 5735 366833.0719441430 +5709 f 46 881380 33.24279 0.48158180996216515 Product description 5709 2023-06-23 14:03:01.089303 2023-01-08 Closed Customer 5709 200499.8915784280 +5743 f 72 525221 11.171906 0.0448419124726982 Product description 5743 2023-03-25 14:03:01.089303 2025-08-23 Closed Customer 5743 43095.6887002232 +5739 f 90 22201 36.766354 0.20460863724713008 Product description 5739 2022-04-07 14:03:01.089303 2025-02-10 Closed Customer 5739 16094.1034379292 +5711 f 9 59925 65.09464 0.9987469658186185 Product description 5711 2023-01-20 14:03:01.089303 2025-06-23 Closed Customer 5711 710888.6497485720 +5745 f 83 535868 24.672699 0.6486132350203349 Product description 5745 2023-08-05 14:03:01.089303 2023-05-23 Closed Customer 5745 299610.5863612220 +5740 f 10 775156 13.499121 0.9861828656333707 Product description 5740 2022-12-23 14:03:01.089303 2024-02-06 Processing Customer 5740 176380.2968570900 +5712 t 0 432186 40.568886 0.08643540657739379 Product description 5712 2021-12-17 14:03:01.089303 2024-03-08 Closed Customer 5712 671157.3089319920 +5746 f 60 896598 67.820694 0.9457632101845306 Product description 5746 2024-06-24 14:03:01.089303 2024-10-22 Closed Customer 5746 289566.6367933710 +5741 t 22 973439 17.914547 0.24238427685203234 Product description 5741 2022-02-22 14:03:01.089303 2024-10-08 Closed Customer 5741 130144.7490521570 +5714 f 94 533199 76.474594 0.34400406445526954 Product description 5714 2023-09-12 14:03:01.089303 2024-12-13 Closed Customer 5714 405901.1036296630 +5748 t 12 266113 98.87666 0.6242836725642462 Product description 5748 2022-08-12 14:03:01.089303 2025-11-29 Closed Customer 5748 196683.0225169040 +5744 f 62 239100 39.786137 0.19414406917507065 Product description 5744 2023-09-04 14:03:01.089303 2024-10-19 Closed Customer 5744 875876.7136867220 +5718 f 2 226422 57.84984 0.897470715250364 Product description 5718 2023-07-06 14:03:01.089303 2025-05-01 Processing Customer 5718 155601.7671446990 +5751 f 52 582863 13.954541 0.860693854707371 Product description 5751 2023-05-24 14:03:01.089303 2025-08-16 Closed Customer 5751 541353.9331411280 +5747 f 39 856894 42.07541 0.796405583676826 Product description 5747 2023-06-21 14:03:01.089303 2023-12-17 Cancelled Customer 5747 711832.6512089470 +5720 f 24 459266 1.9762975 0.9694835849570396 Product description 5720 2022-03-10 14:03:01.089303 2024-08-01 Closed Customer 5720 808064.2264672560 +5752 t 45 610162 59.679592 0.1667051485657538 Product description 5752 2022-12-04 14:03:01.089303 2023-09-13 Processing Customer 5752 318348.4396279080 +5749 t 30 689551 68.20329 0.9658699443906968 Product description 5749 2024-03-14 14:03:01.089303 2024-09-05 Closed Customer 5749 511600.8905638020 +5724 t 23 30627 61.282722 0.3905044116648213 Product description 5724 2023-09-17 14:03:01.089303 2024-02-08 Closed Customer 5724 688370.9872089230 +5755 t 88 946035 7.2229433 0.9443408914701692 Product description 5755 2023-08-24 14:03:01.089303 2023-11-01 Closed Customer 5755 254254.7487926930 +5750 t 23 172214 32.94116 0.7565793706504564 Product description 5750 2022-12-25 14:03:01.089303 2025-03-24 Closed Customer 5750 560057.7827952940 +5725 f 4 259729 25.021963 0.05638258167703469 Product description 5725 2022-11-08 14:03:01.089303 2024-12-05 Closed Customer 5725 876722.8992114330 +5756 t 21 431750 97.30048 0.05122430240544418 Product description 5756 2023-06-26 14:03:01.089303 2025-07-29 Closed Customer 5756 49099.9305586648 +5753 t 58 921500 83.10795 0.47335231552722945 Product description 5753 2021-11-12 14:03:01.089303 2025-11-09 Closed Customer 5753 790250.5815914970 +5733 t 43 301789 11.317548 0.829380536323356 Product description 5733 2024-07-08 14:03:01.089303 2024-03-04 Processing Customer 5733 674612.4576774230 +5757 t 76 207617 48.209026 0.6620868272709757 Product description 5757 2023-07-17 14:03:01.089303 2023-07-09 Processing Customer 5757 452425.4270599820 +5758 t 39 825190 20.57863 0.14985643211839772 Product description 5758 2023-12-17 14:03:01.089303 2024-04-01 Closed Customer 5758 506842.0305743860 +5736 f 7 40814 49.259903 0.5160902604128594 Product description 5736 2022-02-28 14:03:01.089303 2023-10-21 Processing Customer 5736 318844.3868617450 +5760 f 98 466188 57.945343 0.26024003509071747 Product description 5760 2024-01-30 14:03:01.089303 2025-04-19 Processing Customer 5760 497451.5170747620 +5759 t 87 948915 82.82211 0.7060516497595799 Product description 5759 2024-03-16 14:03:01.089303 2023-03-01 Closed Customer 5759 29859.8428826047 +5742 t 39 589501 87.69955 0.5335034587844376 Product description 5742 2022-09-05 14:03:01.089303 2025-12-23 Closed Customer 5742 723067.7638646160 +5764 t 81 366406 79.92925 0.38402698147543646 Product description 5764 2023-04-10 14:03:01.089303 2023-09-07 Closed Customer 5764 406234.0033054750 +5763 t 98 499849 12.730152 0.8485283588406958 Product description 5763 2024-07-14 14:03:01.089303 2025-09-09 Processing Customer 5763 620704.2212587590 +5754 t 72 748346 46.857582 0.3741162149581996 Product description 5754 2021-09-13 14:03:01.089303 2023-04-19 Processing Customer 5754 143574.2397934410 +5765 t 55 945190 74.964066 0.5182271137754526 Product description 5765 2024-06-28 14:03:01.089303 2023-08-28 Processing Customer 5765 729591.7706597060 +5766 f 51 498127 84.83331 0.9553516608807868 Product description 5766 2024-06-03 14:03:01.089303 2024-12-11 Closed Customer 5766 48226.6223485830 +5761 t 14 641100 38.02072 0.18668963102393832 Product description 5761 2022-11-19 14:03:01.089303 2024-11-01 Closed Customer 5761 73477.6630166856 +5767 f 33 733942 75.84084 0.3178788079880306 Product description 5767 2022-08-01 14:03:01.089303 2023-05-25 Processing Customer 5767 272074.4262424010 +5772 f 70 797915 75.19279 0.2650285846185483 Product description 5772 2023-05-06 14:03:01.089303 2024-04-16 Closed Customer 5772 865210.6625581090 +5762 t 12 398308 38.798477 0.9261353396273435 Product description 5762 2022-01-24 14:03:01.089303 2024-02-23 Closed Customer 5762 575430.9138079670 +5768 f 43 197814 38.309704 0.24348411540721315 Product description 5768 2023-08-31 14:03:01.089303 2024-10-21 Processing Customer 5768 383915.4794866710 +5774 t 39 199280 53.677204 0.15548002771742375 Product description 5774 2021-11-13 14:03:01.089303 2023-09-25 Closed Customer 5774 71560.8115456412 +5773 f 73 197478 7.4305215 0.8537917298509541 Product description 5773 2023-08-17 14:03:01.089303 2024-03-18 Closed Customer 5773 877546.2511688770 +5769 f 63 832051 29.734455 0.2777469545518372 Product description 5769 2023-10-18 14:03:01.089303 2024-05-28 Closed Customer 5769 459370.9906502180 +5778 t 64 323721 22.064089 0.2562787781293423 Product description 5778 2023-02-05 14:03:01.089303 2025-01-06 Closed Customer 5778 808775.0149592770 +5775 f 43 718904 90.92477 0.40718225657405327 Product description 5775 2023-12-03 14:03:01.089303 2023-07-07 Processing Customer 5775 478361.0270137790 +5770 f 41 995830 7.6746187 0.9978885635821939 Product description 5770 2022-10-18 14:03:01.089303 2025-03-24 Processing Customer 5770 167656.2104374250 +5779 f 4 125564 7.1696444 0.8569444936067114 Product description 5779 2023-02-07 14:03:01.089303 2023-09-01 Closed Customer 5779 578365.4885832770 +5776 f 62 74919 80.73776 0.89297594284875 Product description 5776 2024-03-20 14:03:01.089303 2025-10-13 Closed Customer 5776 837158.9944103410 +5771 t 41 137745 92.30959 0.9844315918017585 Product description 5771 2024-03-01 14:03:01.089303 2023-09-12 Closed Customer 5771 548431.2094259030 +5780 f 23 351435 12.955626 0.17147432343337243 Product description 5780 2022-10-10 14:03:01.089303 2024-01-19 Closed Customer 5780 622382.0508782400 +5777 t 12 168062 86.44421 0.520470143845337 Product description 5777 2022-05-29 14:03:01.089303 2024-09-30 Closed Customer 5777 312342.0459111550 +5782 f 95 257149 75.08277 0.26765491176037415 Product description 5782 2021-09-26 14:03:01.089303 2023-07-24 Processing Customer 5782 28823.3584688662 +5781 f 53 364483 89.48792 0.3890585174416614 Product description 5781 2023-06-11 14:03:01.089303 2024-07-23 Processing Customer 5781 847458.5410577230 +5783 f 4 271044 84.80038 0.17639048263392 Product description 5783 2023-02-16 14:03:01.089303 2024-08-13 Processing Customer 5783 857346.5469350590 +5785 t 5 935008 92.76518 0.09129289239651683 Product description 5785 2024-05-03 14:03:01.089303 2024-08-30 Processing Customer 5785 918151.5748154430 +5786 t 96 578860 85.00866 0.20277477887506734 Product description 5786 2024-03-18 14:03:01.089303 2024-06-30 Closed Customer 5786 925364.7052521180 +5784 f 11 553334 31.742664 0.24143497926106505 Product description 5784 2023-10-11 14:03:01.089303 2023-05-12 Closed Customer 5784 798413.0712284700 +5795 t 49 250650 14.8178625 0.05171056334685886 Product description 5795 2023-09-25 14:03:01.089303 2023-05-17 Closed Customer 5795 494939.0541920270 +5787 t 36 463788 16.781723 0.375543874431834 Product description 5787 2023-05-04 14:03:01.089303 2024-01-17 Processing Customer 5787 975084.7060128680 +5788 t 56 74024 60.740883 0.6252899828303669 Product description 5788 2023-08-07 14:03:01.089303 2023-06-13 Closed Customer 5788 1906.9630718285 +5800 t 59 912134 16.439482 0.41298303298638217 Product description 5800 2024-04-12 14:03:01.089303 2023-06-29 Closed Customer 5800 461288.6969999330 +5790 t 97 213062 47.36721 0.1656953215350967 Product description 5790 2024-07-29 14:03:01.089303 2025-02-16 Processing Customer 5790 569259.6041098840 +5789 f 38 75635 7.164472 0.4557679888920134 Product description 5789 2023-07-09 14:03:01.089303 2024-12-28 Closed Customer 5789 138382.5886375160 +5804 f 85 426410 28.319647 0.26299545728015516 Product description 5804 2021-10-23 14:03:01.089303 2024-10-26 Closed Customer 5804 357680.9267491220 +5793 t 81 56661 8.36028 0.7783403354401841 Product description 5793 2022-01-15 14:03:01.089303 2023-07-13 Processing Customer 5793 743274.6374175460 +5791 t 58 385415 90.600655 0.14564029853947602 Product description 5791 2024-03-28 14:03:01.089303 2023-05-02 Closed Customer 5791 354650.9429570330 +5807 f 89 651536 47.51438 0.4661052912364809 Product description 5807 2022-05-23 14:03:01.089303 2025-03-05 Processing Customer 5807 239148.4754470700 +5794 t 36 804517 61.401276 0.6730961670557463 Product description 5794 2023-12-15 14:03:01.089303 2024-12-14 Processing Customer 5794 950426.2002874350 +5792 f 60 193402 16.554123 0.8958730696218069 Product description 5792 2023-07-25 14:03:01.089303 2024-02-11 Closed Customer 5792 819074.8729617390 +5808 t 43 771771 6.6060143 0.058040949184146484 Product description 5808 2021-10-19 14:03:01.089303 2025-11-16 Closed Customer 5808 33099.0054511595 +5796 t 42 203439 72.60468 0.8725090540006093 Product description 5796 2023-07-29 14:03:01.089303 2023-07-12 Closed Customer 5796 552254.1265406500 +5799 f 77 157922 21.57463 0.43811046675386933 Product description 5799 2023-11-24 14:03:01.089303 2025-01-22 Processing Customer 5799 487550.9441408180 +5816 t 20 524047 9.235629 0.3026592791196734 Product description 5816 2022-10-25 14:03:01.089303 2024-08-19 Closed Customer 5816 44813.5670813805 +5797 t 99 613013 74.396614 0.5236043631092144 Product description 5797 2023-08-17 14:03:01.089303 2025-09-10 Cancelled Customer 5797 310173.3561189520 +5801 t 6 112321 61.47087 0.5249737055223775 Product description 5801 2022-06-30 14:03:01.089303 2024-11-27 Closed Customer 5801 740529.4993838860 +5818 t 33 338619 26.957382 0.5510078453377929 Product description 5818 2022-06-22 14:03:01.089303 2024-11-21 Closed Customer 5818 154846.8026718520 +5798 t 80 275842 29.638903 0.033312875962533184 Product description 5798 2022-10-22 14:03:01.089303 2024-04-27 Processing Customer 5798 423476.5930142220 +5809 f 67 297975 69.53181 0.626577240609393 Product description 5809 2022-12-15 14:03:01.089303 2025-02-13 Closed Customer 5809 357913.1567005440 +5819 t 24 902170 62.230305 0.19870865471838073 Product description 5819 2023-12-27 14:03:01.089303 2023-02-15 Closed Customer 5819 257744.7778753490 +5802 f 62 473833 22.619476 0.15780396039093958 Product description 5802 2021-08-26 14:03:01.089303 2024-02-17 Processing Customer 5802 714117.3582514710 +5813 f 50 253208 49.830612 0.5767219800479424 Product description 5813 2022-05-25 14:03:01.089303 2024-09-26 Processing Customer 5813 921381.4339583340 +5820 t 22 551776 59.67791 0.7925005621951016 Product description 5820 2021-11-01 14:03:01.089303 2023-01-16 Closed Customer 5820 267730.6646829970 +5803 f 85 919180 76.85131 0.051852249736139555 Product description 5803 2021-08-29 14:03:01.089303 2023-09-20 Closed Customer 5803 856676.6091205910 +5817 t 64 965192 50.271046 0.17936175809850852 Product description 5817 2022-01-28 14:03:01.089303 2025-01-16 Closed Customer 5817 229934.2898748160 +5822 f 50 930428 37.627388 0.34991435033138174 Product description 5822 2022-03-27 14:03:01.089303 2024-10-27 Processing Customer 5822 251700.4334187090 +5805 f 59 916716 36.4505 0.2794255144134077 Product description 5805 2021-11-29 14:03:01.089303 2025-11-21 Closed Customer 5805 682180.4559144770 +5823 t 80 745931 90.09795 0.3134822628591465 Product description 5823 2022-07-23 14:03:01.089303 2025-08-19 Processing Customer 5823 146667.7609385020 +5825 f 58 671571 46.931507 0.7065885504476768 Product description 5825 2023-06-02 14:03:01.089303 2025-03-12 Closed Customer 5825 526345.6189622210 +5806 f 55 602281 28.902412 0.4063474089818975 Product description 5806 2023-05-22 14:03:01.089303 2024-10-04 Processing Customer 5806 960385.1127956280 +5824 f 8 620689 6.5922127 0.6180516033780208 Product description 5824 2021-10-25 14:03:01.089303 2025-01-31 Processing Customer 5824 912160.6663270930 +5827 t 61 172741 58.16914 0.6983890072694905 Product description 5827 2021-08-15 14:03:01.089303 2023-02-05 Processing Customer 5827 896989.5918844660 +5810 t 4 42428 57.65816 0.14608967321871447 Product description 5810 2023-02-28 14:03:01.089303 2025-03-29 Closed Customer 5810 686935.7542264680 +5826 t 8 802156 55.908714 0.719450583926907 Product description 5826 2022-05-08 14:03:01.089303 2024-08-18 Processing Customer 5826 193101.5685410280 +5828 f 46 502654 92.70949 0.8903464021631748 Product description 5828 2023-06-01 14:03:01.089303 2025-08-13 Closed Customer 5828 604762.9985059150 +5811 f 57 482923 78.199486 0.251934919992447 Product description 5811 2021-10-01 14:03:01.089303 2023-04-15 Closed Customer 5811 854434.3583052620 +5829 f 81 716051 98.050224 0.15372382959509423 Product description 5829 2021-08-11 14:03:01.089303 2023-06-18 Closed Customer 5829 382568.0783998530 +5830 f 17 336722 23.766588 0.07584847984316667 Product description 5830 2023-02-06 14:03:01.089303 2025-11-05 Closed Customer 5830 327305.4620778200 +5812 t 61 352787 96.72416 0.013582344836652993 Product description 5812 2024-07-07 14:03:01.089303 2025-08-01 Processing Customer 5812 902703.7217973940 +5833 f 79 899396 81.075294 0.6245291609346353 Product description 5833 2023-08-06 14:03:01.089303 2025-03-24 Processing Customer 5833 269619.1702860100 +5834 f 12 101407 61.252693 0.7507845148552548 Product description 5834 2023-04-01 14:03:01.089303 2023-09-05 Processing Customer 5834 264922.8983384080 +5814 f 46 666324 8.895054 0.7960747368215628 Product description 5814 2022-06-21 14:03:01.089303 2023-08-18 Closed Customer 5814 105795.3550902440 +5835 f 98 684852 51.03523 0.7465894987277721 Product description 5835 2022-01-02 14:03:01.089303 2025-05-23 Processing Customer 5835 38985.0416284609 +5839 t 41 446028 33.48949 0.278490525195501 Product description 5839 2022-10-16 14:03:01.089303 2025-10-23 Processing Customer 5839 336594.8924279570 +5815 t 34 25380 39.453693 0.1964167094429321 Product description 5815 2023-09-12 14:03:01.089303 2024-02-18 Processing Customer 5815 255849.0235360150 +5836 f 73 681329 49.302277 0.5686305813979047 Product description 5836 2023-12-10 14:03:01.089303 2024-05-27 Processing Customer 5836 887563.9984764130 +5841 f 95 899236 62.61882 0.5493218799441308 Product description 5841 2023-09-12 14:03:01.089303 2024-05-16 Closed Customer 5841 280945.8292228690 +5821 f 4 50728 73.20978 0.2995641070254287 Product description 5821 2022-09-15 14:03:01.089303 2024-12-30 Processing Customer 5821 947759.4920073140 +5837 f 2 87542 33.981167 0.44256701878973104 Product description 5837 2022-09-28 14:03:01.089303 2023-03-24 Processing Customer 5837 56772.2968483757 +5846 f 45 490810 73.34088 0.5997706943156587 Product description 5846 2023-05-21 14:03:01.089303 2023-01-06 Closed Customer 5846 264053.6163627910 +5831 t 90 752503 23.957487 0.2852481135004332 Product description 5831 2023-05-02 14:03:01.089303 2023-10-16 Processing Customer 5831 624573.8044775070 +5842 t 97 666112 28.668661 0.2991893208522711 Product description 5842 2023-09-28 14:03:01.089303 2025-05-14 Processing Customer 5842 881664.4822098320 +5853 f 92 720270 27.01248 0.16211555745159956 Product description 5853 2022-10-23 14:03:01.089303 2025-08-24 Closed Customer 5853 382020.5910501320 +5832 f 57 609912 29.690083 0.7004970990135995 Product description 5832 2022-04-18 14:03:01.089303 2023-03-13 Processing Customer 5832 222191.7516363380 +5843 f 31 884703 7.00384 0.942224084383767 Product description 5843 2024-07-12 14:03:01.089303 2024-11-10 Processing Customer 5843 991055.4759500020 +5855 f 41 882182 96.96187 0.9267475452807545 Product description 5855 2022-11-18 14:03:01.089303 2024-09-29 Closed Customer 5855 512465.3879930360 +5838 f 84 743424 98.7594 0.5983649422987902 Product description 5838 2023-06-30 14:03:01.089303 2025-08-24 Processing Customer 5838 46593.7027837668 +5844 t 91 529692 9.128797 0.46058616542284625 Product description 5844 2022-09-05 14:03:01.089303 2023-06-25 Processing Customer 5844 862064.3270521280 +5857 t 13 599311 54.00045 0.06689675644042836 Product description 5857 2024-07-29 14:03:01.089303 2023-09-03 Processing Customer 5857 156482.2060086010 +5840 f 79 901675 91.83563 0.20320146831006625 Product description 5840 2023-11-23 14:03:01.089303 2024-09-29 Closed Customer 5840 717384.0199787020 +5848 f 74 968058 79.62832 0.6501954155045269 Product description 5848 2023-12-05 14:03:01.089303 2024-08-16 Closed Customer 5848 51018.5702124737 +5859 t 19 322108 57.31925 0.2705351750182743 Product description 5859 2023-10-29 14:03:01.089303 2024-07-04 Cancelled Customer 5859 906792.4473439680 +5845 t 83 689171 38.403088 0.21571304573665273 Product description 5845 2021-11-29 14:03:01.089303 2023-06-22 Closed Customer 5845 967952.4074224160 +5851 f 38 372513 87.12296 0.42454526358336153 Product description 5851 2022-07-29 14:03:01.089303 2024-06-22 Closed Customer 5851 126767.1596450310 +5860 t 54 814410 89.69849 0.15400167580610358 Product description 5860 2023-01-24 14:03:01.089303 2025-10-25 Closed Customer 5860 736558.1727904950 +5847 t 89 996669 15.524902 0.2787263585892923 Product description 5847 2021-09-12 14:03:01.089303 2024-04-18 Processing Customer 5847 638585.4893039560 +5852 t 2 185855 3.5656226 0.3359998041882619 Product description 5852 2022-05-18 14:03:01.089303 2025-10-25 Closed Customer 5852 763061.0366808350 +5867 t 93 636304 78.07947 0.43185575092772055 Product description 5867 2022-08-26 14:03:01.089303 2025-02-01 Processing Customer 5867 906647.2773916770 +5849 f 48 457466 84.59709 0.8188693305210712 Product description 5849 2022-08-03 14:03:01.089303 2023-12-05 Closed Customer 5849 126170.9141652290 +5854 f 53 916290 99.10819 0.5450705204378536 Product description 5854 2022-02-06 14:03:01.089303 2023-09-19 Closed Customer 5854 406283.8005686340 +5869 t 66 910652 84.01226 0.8959988886658188 Product description 5869 2023-04-01 14:03:01.089303 2024-11-24 Closed Customer 5869 829742.0002124200 +5850 f 87 437516 80.46787 0.11731495957279137 Product description 5850 2022-08-17 14:03:01.089303 2024-01-08 Processing Customer 5850 861285.3513645220 +5863 t 4 160450 90.385185 0.6126842815858993 Product description 5863 2022-08-28 14:03:01.089303 2023-10-15 Closed Customer 5863 782883.8597405610 +5871 t 28 56439 65.83957 0.30628807533387814 Product description 5871 2023-03-11 14:03:01.089303 2023-12-01 Closed Customer 5871 923569.2437917390 +5856 f 82 635750 44.655926 0.19077029919477084 Product description 5856 2023-05-08 14:03:01.089303 2023-03-04 Closed Customer 5856 302227.8349627640 +5864 f 54 646246 93.72179 0.4479994309147415 Product description 5864 2023-06-07 14:03:01.089303 2025-06-11 Closed Customer 5864 666964.7952347790 +5872 f 14 226637 49.031082 0.8505134497957734 Product description 5872 2022-06-10 14:03:01.089303 2025-09-24 Processing Customer 5872 566921.7971562830 +5858 f 64 292426 53.215244 0.13010853024877278 Product description 5858 2024-07-28 14:03:01.089303 2023-07-12 Closed Customer 5858 270372.4471924790 +5865 f 34 540142 13.609153 0.7635795717954892 Product description 5865 2022-03-03 14:03:01.089303 2023-09-29 Closed Customer 5865 809307.4643890470 +5877 f 29 404143 35.844322 0.616500474887058 Product description 5877 2024-05-27 14:03:01.089303 2023-08-13 Closed Customer 5877 161464.9159012130 +5861 f 74 152388 5.4872613 0.0025189250446580047 Product description 5861 2021-08-31 14:03:01.089303 2024-11-04 Processing Customer 5861 547941.2429492210 +5866 f 1 100537 97.73661 0.40974478835095596 Product description 5866 2022-04-22 14:03:01.089303 2023-12-01 Closed Customer 5866 251033.5779486650 +5879 t 53 417098 4.475711 0.47939534868553224 Product description 5879 2023-07-03 14:03:01.089303 2025-12-04 Processing Customer 5879 781084.5162317290 +5862 t 95 404332 36.056778 0.23134995491058064 Product description 5862 2023-10-09 14:03:01.089303 2023-04-24 Processing Customer 5862 351123.8407177970 +5868 f 10 861737 69.99701 0.7784484658311044 Product description 5868 2023-10-15 14:03:01.089303 2023-08-20 Processing Customer 5868 180969.8672056430 +5882 f 39 110152 8.207051 0.0846918397928782 Product description 5882 2021-10-18 14:03:01.089303 2025-04-19 Closed Customer 5882 321843.5508183220 +5870 f 16 100503 84.17784 0.08455861449373359 Product description 5870 2022-02-23 14:03:01.089303 2025-03-05 Cancelled Customer 5870 753629.0866704040 +5875 t 7 602390 35.38533 0.8963695645629244 Product description 5875 2022-11-09 14:03:01.089303 2024-08-19 Closed Customer 5875 579902.0810435740 +5884 t 28 177013 91.12815 0.4641175587129176 Product description 5884 2024-03-03 14:03:01.089303 2025-03-16 Closed Customer 5884 660245.0595441100 +5873 t 64 175726 86.554504 0.31764351879796493 Product description 5873 2023-07-18 14:03:01.089303 2025-10-06 Closed Customer 5873 357807.3001295760 +5876 f 98 660406 0.92613983 0.5103613919275318 Product description 5876 2023-05-23 14:03:01.089303 2025-10-23 Closed Customer 5876 227764.6631800500 +5886 t 91 267958 78.27972 0.1074728505277811 Product description 5886 2022-05-11 14:03:01.089303 2025-08-10 Processing Customer 5886 591077.7451571580 +5874 f 3 899164 47.672337 0.16690868978792395 Product description 5874 2021-11-05 14:03:01.089303 2025-05-03 Processing Customer 5874 147115.7383368400 +5878 f 46 974971 4.507466 0.9550241991516017 Product description 5878 2024-07-14 14:03:01.089303 2024-01-17 Processing Customer 5878 458771.0416674790 +5887 f 36 257612 86.196075 0.3563338764556683 Product description 5887 2023-12-26 14:03:01.089303 2025-08-09 Closed Customer 5887 768617.4210416400 +5880 f 68 425679 89.425186 0.8320682969728068 Product description 5880 2022-12-08 14:03:01.089303 2025-11-07 Processing Customer 5880 97754.6173659185 +5883 f 64 662513 28.700449 0.5487803394836135 Product description 5883 2022-09-26 14:03:01.089303 2024-10-19 Closed Customer 5883 619338.1938732860 +5889 t 89 984497 72.28296 0.8630252655077975 Product description 5889 2022-06-03 14:03:01.089303 2023-09-19 Processing Customer 5889 186015.8568657580 +5881 t 86 463158 88.012115 0.9846508775214105 Product description 5881 2023-02-11 14:03:01.089303 2023-06-14 Closed Customer 5881 600108.6880563410 +5885 f 66 120541 60.860516 0.235320121970382 Product description 5885 2023-12-06 14:03:01.089303 2024-10-26 Processing Customer 5885 176237.0158803070 +5891 f 36 68496 77.426895 0.6528849680238586 Product description 5891 2022-11-12 14:03:01.089303 2023-10-23 Processing Customer 5891 223530.7540038890 +5888 t 57 947031 24.36506 0.6932500490756439 Product description 5888 2021-11-23 14:03:01.089303 2023-03-07 Processing Customer 5888 560731.4678917520 +5892 t 64 976908 37.791943 0.0907374758318582 Product description 5892 2022-04-11 14:03:01.089303 2024-05-11 Closed Customer 5892 261181.3373562020 +5897 f 31 822171 71.782295 0.047363751753717764 Product description 5897 2022-09-25 14:03:01.089303 2023-11-30 Closed Customer 5897 123238.2216999850 +5890 t 25 54734 73.718864 0.06773608190891167 Product description 5890 2024-06-12 14:03:01.089303 2023-06-29 Processing Customer 5890 676892.7251502990 +5895 t 85 683294 67.44641 0.9068951258976128 Product description 5895 2023-09-05 14:03:01.089303 2024-01-03 Processing Customer 5895 339717.4957070380 +5906 t 81 757583 60.921764 0.2647848737711094 Product description 5906 2022-02-24 14:03:01.089303 2023-07-04 Processing Customer 5906 759401.4465115750 +5893 f 80 919789 14.364177 0.6506014639296893 Product description 5893 2023-11-06 14:03:01.089303 2024-07-30 Processing Customer 5893 66111.3857426265 +5900 t 52 880387 22.45883 0.8519473401879623 Product description 5900 2024-01-15 14:03:01.089303 2023-11-10 Processing Customer 5900 83456.6154974219 +5907 t 10 995661 92.54286 0.830145061790585 Product description 5907 2023-12-04 14:03:01.089303 2024-11-23 Closed Customer 5907 37683.9118660186 +5894 t 11 3586 40.979977 0.09344065661142764 Product description 5894 2023-05-24 14:03:01.089303 2024-07-15 Processing Customer 5894 593801.9124836310 +5901 t 1 452161 96.514206 0.8978467697995782 Product description 5901 2022-07-14 14:03:01.089303 2025-10-03 Processing Customer 5901 988659.8521843300 +5908 f 57 171959 77.584915 0.07373831966645028 Product description 5908 2023-06-02 14:03:01.089303 2025-03-24 Processing Customer 5908 762676.2000911360 +5896 t 82 203988 43.07525 0.5814490509736601 Product description 5896 2021-10-17 14:03:01.089303 2023-12-02 Closed Customer 5896 91532.1645872318 +5902 t 93 621471 51.47035 0.917605470081142 Product description 5902 2022-02-28 14:03:01.089303 2025-12-13 Processing Customer 5902 837953.5419558230 +5909 t 18 562184 35.436447 0.5668080135838771 Product description 5909 2021-11-18 14:03:01.089303 2025-10-16 Processing Customer 5909 290532.6517759260 +5898 t 15 848588 57.845722 0.5955791202431939 Product description 5898 2021-11-17 14:03:01.089303 2025-04-13 Closed Customer 5898 616641.3422927410 +5905 t 9 251252 34.746548 0.5515958863452042 Product description 5905 2023-12-20 14:03:01.089303 2023-03-29 Closed Customer 5905 511039.4087372360 +5910 t 26 350443 39.145733 0.4708690969387739 Product description 5910 2022-03-15 14:03:01.089303 2023-02-06 Closed Customer 5910 818085.8198623330 +5899 t 86 707072 85.21405 0.8606981119784791 Product description 5899 2024-05-06 14:03:01.089303 2023-06-19 Processing Customer 5899 815668.9713134110 +5912 t 69 269384 40.947426 0.6160407747946977 Product description 5912 2023-05-20 14:03:01.089303 2024-01-16 Processing Customer 5912 644347.1471721090 +5916 f 96 523133 27.898922 0.08323523153545054 Product description 5916 2022-07-25 14:03:01.089303 2023-12-11 Closed Customer 5916 337584.0803236580 +5903 f 35 254320 68.68998 0.9094642560166406 Product description 5903 2023-05-16 14:03:01.089303 2023-05-01 Closed Customer 5903 937063.6393327100 +5913 t 10 70462 7.822377 0.6599450586403819 Product description 5913 2024-03-28 14:03:01.089303 2024-06-14 Processing Customer 5913 298522.0969276310 +5923 t 47 672055 99.619965 0.32265181384214614 Product description 5923 2022-07-25 14:03:01.089303 2024-09-29 Processing Customer 5923 63084.0009331450 +5904 f 9 508698 68.73777 0.33223534611148864 Product description 5904 2024-06-28 14:03:01.089303 2023-09-10 Closed Customer 5904 882383.9531873540 +5918 t 10 966106 27.306833 0.6879679803559924 Product description 5918 2022-08-23 14:03:01.089303 2024-07-20 Processing Customer 5918 28754.2272497312 +5927 t 5 66731 52.635014 0.9352367679392692 Product description 5927 2023-11-20 14:03:01.089303 2024-04-04 Closed Customer 5927 769535.3930829540 +5911 f 89 332507 49.12772 0.05906574122686692 Product description 5911 2022-02-15 14:03:01.089303 2025-03-07 Processing Customer 5911 755233.5186099310 +5920 t 64 318888 68.93462 0.6285931759876959 Product description 5920 2023-05-10 14:03:01.089303 2025-11-11 Closed Customer 5920 721438.1732273020 +5931 t 64 363453 42.654984 0.5962288070328192 Product description 5931 2021-12-13 14:03:01.089303 2023-02-24 Closed Customer 5931 853403.8979834830 +5914 f 61 222541 48.621098 0.526744581588531 Product description 5914 2022-12-04 14:03:01.089303 2025-03-04 Closed Customer 5914 629426.1762477300 +5925 f 86 530973 45.243958 0.6036190939060475 Product description 5925 2023-09-01 14:03:01.089303 2025-07-20 Closed Customer 5925 986571.8843673750 +5936 t 86 169263 44.84383 0.052224358330146714 Product description 5936 2023-04-29 14:03:01.089303 2025-08-10 Closed Customer 5936 554245.0738540410 +5915 f 0 279567 2.3080149 0.41606515394196464 Product description 5915 2022-01-05 14:03:01.089303 2023-10-15 Closed Customer 5915 942067.8370465260 +5934 f 2 754181 60.85521 0.3472584449464833 Product description 5934 2022-07-06 14:03:01.089303 2024-08-18 Closed Customer 5934 711580.6934862440 +5938 f 92 273394 2.9675863 0.053681237597619 Product description 5938 2024-01-30 14:03:01.089303 2025-06-07 Closed Customer 5938 250786.7554577670 +5917 t 79 886966 30.621399 0.3613131840390196 Product description 5917 2023-02-14 14:03:01.089303 2023-12-04 Processing Customer 5917 495181.2025671920 +5935 t 48 579813 18.437714 0.1864331343512191 Product description 5935 2022-10-03 14:03:01.089303 2024-11-01 Processing Customer 5935 729501.1697734250 +5941 f 71 246419 4.5101705 0.10735598334818164 Product description 5941 2024-06-20 14:03:01.089303 2025-03-26 Closed Customer 5941 606136.4955426500 +5919 t 88 921156 58.597515 0.33785887247841373 Product description 5919 2024-06-10 14:03:01.089303 2025-07-31 Processing Customer 5919 610412.3394091690 +5939 t 33 719930 75.76853 0.8270750797685409 Product description 5939 2023-01-23 14:03:01.089303 2025-12-20 Closed Customer 5939 99626.1636905054 +5943 f 83 64366 52.378674 0.6613537007284584 Product description 5943 2024-07-11 14:03:01.089303 2025-09-01 Closed Customer 5943 459785.4170461770 +5921 f 13 182757 80.13597 0.06420611187513714 Product description 5921 2022-02-21 14:03:01.089303 2023-01-05 Processing Customer 5921 742434.2441406640 +5940 t 95 592461 92.6053 0.2752904135529377 Product description 5940 2024-07-24 14:03:01.089303 2025-03-14 Closed Customer 5940 185887.9189772690 +5944 t 99 331222 60.901474 0.960691426587271 Product description 5944 2023-09-27 14:03:01.089303 2023-04-17 Processing Customer 5944 755317.1979427520 +5922 f 31 376962 93.93976 0.6324028209849146 Product description 5922 2021-09-01 14:03:01.089303 2025-05-22 Processing Customer 5922 953405.0012275410 +5942 t 0 381976 78.390015 0.31841488871643975 Product description 5942 2022-05-29 14:03:01.089303 2024-10-26 Closed Customer 5942 471120.3239340340 +5947 f 89 802567 21.937675 0.09057536089905582 Product description 5947 2023-08-21 14:03:01.089303 2025-01-19 Processing Customer 5947 72910.1876754044 +5924 f 90 24518 57.68985 0.017895434903564933 Product description 5924 2022-08-26 14:03:01.089303 2023-02-11 Processing Customer 5924 7972.4339430065 +5945 t 22 460389 87.631004 0.9906554904462581 Product description 5945 2023-03-28 14:03:01.089303 2025-06-29 Closed Customer 5945 597060.9949730310 +5950 f 1 441933 82.269905 0.6336434448980377 Product description 5950 2022-05-14 14:03:01.089303 2024-01-10 Closed Customer 5950 692869.1971135730 +5926 f 74 679756 14.358274 0.946850784233412 Product description 5926 2024-01-17 14:03:01.089303 2024-11-07 Closed Customer 5926 838299.8277264630 +5946 f 68 217534 91.96095 0.9962206722342941 Product description 5946 2023-01-15 14:03:01.089303 2023-07-09 Closed Customer 5946 52549.6897652893 +5952 t 71 289796 23.283436 0.36027299866751505 Product description 5952 2023-09-19 14:03:01.089303 2024-08-24 Closed Customer 5952 294179.3515519890 +5928 f 32 688707 61.894737 0.3323944666466616 Product description 5928 2024-06-22 14:03:01.089303 2023-12-04 Processing Customer 5928 880993.1426381150 +5949 t 96 314777 25.262136 0.9597306218939821 Product description 5949 2023-10-23 14:03:01.089303 2024-01-05 Processing Customer 5949 163847.9417082370 +5953 f 1 998624 5.137756 0.6689938172737122 Product description 5953 2022-09-20 14:03:01.089303 2024-11-29 Closed Customer 5953 311329.3101918300 +5929 t 99 560559 85.96743 0.20706267902270525 Product description 5929 2023-07-12 14:03:01.089303 2025-11-02 Closed Customer 5929 419129.4905008400 +5951 t 74 805733 53.741013 0.2889253179349751 Product description 5951 2021-10-31 14:03:01.089303 2023-03-31 Closed Customer 5951 404724.5837119570 +5955 t 94 957459 79.492546 0.005852733402253563 Product description 5955 2023-06-03 14:03:01.089303 2023-05-03 Closed Customer 5955 865400.7184048570 +5930 f 59 79728 32.596775 0.4298215458497765 Product description 5930 2024-05-30 14:03:01.089303 2024-11-09 Processing Customer 5930 752214.2550172180 +5956 t 59 47498 35.387955 0.251233161280382 Product description 5956 2023-03-30 14:03:01.089303 2024-10-28 Closed Customer 5956 261157.3090431530 +5958 t 36 722771 70.00808 0.9783517232619623 Product description 5958 2024-05-05 14:03:01.089303 2023-11-03 Closed Customer 5958 650977.7531617620 +5932 t 86 458723 31.326958 0.29722729093793276 Product description 5932 2023-01-22 14:03:01.089303 2025-05-09 Processing Customer 5932 761340.5852738600 +5957 f 31 175366 45.843582 0.0007952783931486351 Product description 5957 2023-10-11 14:03:01.089303 2024-08-27 Closed Customer 5957 137852.2523359500 +5961 t 77 207550 90.81845 0.38378288080884104 Product description 5961 2022-11-02 14:03:01.089303 2025-10-23 Closed Customer 5961 335407.9394584200 +5933 f 11 528255 72.65157 0.6236980009423974 Product description 5933 2021-08-17 14:03:01.089303 2023-09-09 Closed Customer 5933 470431.7159960820 +5960 t 31 144188 42.839138 0.6242349713270698 Product description 5960 2022-08-29 14:03:01.089303 2024-02-10 Processing Customer 5960 259318.4546359700 +5965 t 63 798076 69.77026 0.5861714343163662 Product description 5965 2024-01-21 14:03:01.089303 2025-08-27 Processing Customer 5965 91664.7498184417 +5937 t 64 46748 87.95086 0.8421571260783551 Product description 5937 2024-05-04 14:03:01.089303 2024-07-30 Closed Customer 5937 481136.8870964860 +5962 f 8 468982 81.977 0.833931313290158 Product description 5962 2021-08-16 14:03:01.089303 2023-02-01 Processing Customer 5962 640224.5931259390 +5967 t 39 352276 89.33527 0.8346107276216408 Product description 5967 2024-05-10 14:03:01.089303 2023-06-16 Closed Customer 5967 411295.0673336400 +5948 t 65 523390 14.162006 0.44968200529309854 Product description 5948 2022-08-01 14:03:01.089303 2025-06-11 Processing Customer 5948 945797.2744090280 +5963 f 16 828935 50.172596 0.3133035838733207 Product description 5963 2023-12-08 14:03:01.089303 2023-09-16 Processing Customer 5963 114271.2700347310 +5968 t 39 836005 14.653732 0.14494999412817933 Product description 5968 2022-06-15 14:03:01.089303 2025-03-27 Processing Customer 5968 513130.1404039800 +5954 t 1 542922 96.24602 0.39649775026625633 Product description 5954 2023-10-12 14:03:01.089303 2025-12-29 Closed Customer 5954 282534.0762701000 +5964 t 75 318940 53.23079 0.13115953004466263 Product description 5964 2021-12-18 14:03:01.089303 2025-07-12 Processing Customer 5964 864954.3233959950 +5969 t 52 777924 81.7918 0.4413862707167233 Product description 5969 2023-05-17 14:03:01.089303 2024-08-07 Processing Customer 5969 186848.9925216890 +5959 t 2 940796 63.481693 0.38829394345177093 Product description 5959 2022-07-10 14:03:01.089303 2024-04-25 Processing Customer 5959 191678.0064021530 +5966 t 93 231307 23.808954 0.962752618904176 Product description 5966 2023-01-23 14:03:01.089303 2025-11-09 Processing Customer 5966 150832.8302588180 +5970 t 75 545182 84.82574 0.9592512292622466 Product description 5970 2024-04-02 14:03:01.089303 2025-01-02 Processing Customer 5970 478836.5606716170 +5971 t 73 891714 79.16221 0.5405018556814198 Product description 5971 2021-09-08 14:03:01.089303 2024-10-04 Processing Customer 5971 132509.3216042350 +5974 f 82 140674 92.9049 0.3387534291820842 Product description 5974 2023-06-13 14:03:01.089303 2023-12-14 Closed Customer 5974 496861.4226264980 +5973 t 31 285119 27.988722 0.3139664867013501 Product description 5973 2023-08-04 14:03:01.089303 2023-11-28 Processing Customer 5973 34411.0358034015 +5972 t 10 909274 64.782135 0.10786362170738073 Product description 5972 2023-02-12 14:03:01.089303 2025-04-03 Processing Customer 5972 482616.7014488010 +5980 f 96 313908 51.499905 0.4480569304319175 Product description 5980 2024-01-11 14:03:01.089303 2025-05-09 Closed Customer 5980 540893.2408110550 +5975 t 13 884432 15.44786 0.14663288186036638 Product description 5975 2024-01-16 14:03:01.089303 2024-11-30 Processing Customer 5975 502094.2389393570 +5977 f 30 546643 10.495865 0.3946258693285287 Product description 5977 2023-09-29 14:03:01.089303 2023-05-11 Closed Customer 5977 521191.1498576750 +5981 t 4 24387 37.011143 0.110569414846303 Product description 5981 2023-01-24 14:03:01.089303 2025-06-26 Closed Customer 5981 540258.6828573030 +5976 t 55 272851 46.56342 0.4963797832404033 Product description 5976 2022-05-06 14:03:01.089303 2023-03-30 Closed Customer 5976 302970.1734974280 +5978 t 66 302982 82.023705 0.6437142327055199 Product description 5978 2022-07-25 14:03:01.089303 2024-10-31 Closed Customer 5978 298271.3553873250 +5983 f 86 705769 10.314176 0.3474551404400188 Product description 5983 2022-08-08 14:03:01.089303 2025-12-15 Closed Customer 5983 938891.7658759190 +5979 t 60 835050 46.3292 0.7518967042711147 Product description 5979 2022-06-22 14:03:01.089303 2024-08-18 Processing Customer 5979 629681.3925326820 +5982 t 8 320605 73.280945 0.28661576173897885 Product description 5982 2023-07-21 14:03:01.089303 2023-09-02 Cancelled Customer 5982 964911.6173032080 +5985 t 73 244939 23.029333 0.25310562953868754 Product description 5985 2022-07-31 14:03:01.089303 2023-02-09 Closed Customer 5985 259456.5213232190 +5984 t 59 214417 7.8618765 0.29391224749146616 Product description 5984 2023-01-04 14:03:01.089303 2024-11-16 Closed Customer 5984 821190.1832110580 +5990 f 38 412470 62.857777 0.9784205178959162 Product description 5990 2024-02-02 14:03:01.089303 2023-12-06 Closed Customer 5990 335689.1124589940 +5992 f 84 765333 84.601425 0.36961271648344507 Product description 5992 2022-09-11 14:03:01.089303 2023-01-25 Closed Customer 5992 288304.4789300410 +5986 t 62 974639 71.683754 0.27846981371709134 Product description 5986 2022-08-09 14:03:01.089303 2024-08-12 Processing Customer 5986 756360.1583850140 +5991 f 60 876093 25.513521 0.5325999801510442 Product description 5991 2022-06-23 14:03:01.089303 2025-12-14 Processing Customer 5991 157358.0935769100 +5995 t 58 760295 63.389854 0.03268357788243037 Product description 5995 2021-09-06 14:03:01.089303 2025-03-26 Processing Customer 5995 964373.1580082040 +5987 t 29 787040 49.068954 0.624030462537835 Product description 5987 2024-01-27 14:03:01.089303 2025-06-12 Closed Customer 5987 646215.4843399190 +5993 t 11 842003 54.697037 0.008064326011496092 Product description 5993 2022-12-25 14:03:01.089303 2023-03-29 Processing Customer 5993 178769.2979301450 +6003 t 59 116252 22.742083 0.4252416062051907 Product description 6003 2021-08-31 14:03:01.089303 2023-10-31 Closed Customer 6003 553768.9946181640 +5988 t 73 504082 67.66908 0.5089172860187539 Product description 5988 2022-08-07 14:03:01.089303 2024-03-09 Closed Customer 5988 670880.5279650040 +5996 f 90 345229 8.646524 0.28357500824050064 Product description 5996 2024-06-12 14:03:01.089303 2023-12-03 Closed Customer 5996 800387.7019147510 +6012 f 2 784061 44.655327 0.24800537945430534 Product description 6012 2022-01-26 14:03:01.089303 2024-10-22 Closed Customer 6012 876392.1506872270 +5989 t 87 771440 97.241646 0.7515003221325749 Product description 5989 2024-02-01 14:03:01.089303 2025-03-11 Closed Customer 5989 817524.6724162830 +5998 t 25 506939 50.707424 0.9193225167452574 Product description 5998 2023-03-11 14:03:01.089303 2025-04-18 Processing Customer 5998 299851.0998139640 +6013 t 71 357571 66.50051 0.5261817254762065 Product description 6013 2022-04-19 14:03:01.089303 2025-05-16 Processing Customer 6013 803138.1310309020 +5994 f 90 767861 24.419405 0.3479636834584561 Product description 5994 2024-07-22 14:03:01.089303 2025-06-26 Closed Customer 5994 65605.4366313370 +5999 t 8 411974 98.95048 0.25739172345322103 Product description 5999 2021-11-17 14:03:01.089303 2024-04-26 Closed Customer 5999 605583.0966653350 +6014 t 75 402984 70.22454 0.008483198001350445 Product description 6014 2023-01-19 14:03:01.089303 2023-10-18 Processing Customer 6014 12875.4238236191 +5997 t 96 31643 86.44274 0.829542749896806 Product description 5997 2022-07-07 14:03:01.089303 2024-08-13 Processing Customer 5997 812970.7720404870 +6000 t 51 197872 63.140415 0.010061227449885024 Product description 6000 2023-04-13 14:03:01.089303 2025-11-16 Cancelled Customer 6000 661422.0644955150 +6015 f 97 523062 25.61292 0.7821843685943861 Product description 6015 2023-02-16 14:03:01.089303 2025-02-28 Closed Customer 6015 792075.4269601070 +6001 t 20 128861 3.5675118 0.06897277558901393 Product description 6001 2023-06-29 14:03:01.089303 2024-06-13 Closed Customer 6001 931255.5444786810 +6002 f 46 346310 26.254837 0.40108498631954603 Product description 6002 2022-10-17 14:03:01.089303 2025-09-16 Closed Customer 6002 292427.3385638930 +6017 f 48 774733 79.38323 0.2738229961666221 Product description 6017 2022-10-08 14:03:01.089303 2024-03-15 Closed Customer 6017 986461.6378947670 +6006 t 59 258110 13.714602 0.15765583385173798 Product description 6006 2023-01-04 14:03:01.089303 2024-07-26 Closed Customer 6006 407752.1220459630 +6004 f 39 266322 68.79815 0.5656735012350751 Product description 6004 2024-06-25 14:03:01.089303 2025-03-29 Closed Customer 6004 397826.7068769730 +6024 t 37 356663 77.56766 0.37416193148804666 Product description 6024 2021-12-24 14:03:01.089303 2025-10-02 Closed Customer 6024 761289.1118033470 +6007 t 49 90165 15.4683075 0.0022329356680721446 Product description 6007 2023-08-15 14:03:01.089303 2023-12-24 Closed Customer 6007 547063.9022324870 +6005 f 76 868984 87.650475 0.8540292151426883 Product description 6005 2024-03-09 14:03:01.089303 2023-10-07 Closed Customer 6005 778227.9147616970 +6037 t 79 146561 23.54144 0.9043488236860568 Product description 6037 2022-07-02 14:03:01.089303 2024-03-27 Processing Customer 6037 887027.3348303680 +6008 t 1 838715 60.88695 0.12052393330654709 Product description 6008 2024-07-08 14:03:01.089303 2025-10-03 Closed Customer 6008 105811.6212456780 +6020 t 85 488650 10.983869 0.05038497853495727 Product description 6020 2022-09-25 14:03:01.089303 2023-11-30 Processing Customer 6020 29697.4623206161 +6042 f 53 364269 24.643112 0.14677127466035245 Product description 6042 2023-07-31 14:03:01.089303 2024-02-25 Closed Customer 6042 204280.2090409700 +6009 t 56 92183 16.49531 0.7348783919327495 Product description 6009 2023-10-19 14:03:01.089303 2025-12-24 Processing Customer 6009 884575.1842757960 +6025 f 71 865424 65.413445 0.5902423163762478 Product description 6025 2024-01-24 14:03:01.089303 2025-03-08 Cancelled Customer 6025 269834.5673380940 +6045 t 43 446771 60.452126 0.5735779253876174 Product description 6045 2022-11-27 14:03:01.089303 2023-06-14 Closed Customer 6045 75157.0757650235 +6010 f 50 982700 63.71467 0.7945481151730185 Product description 6010 2023-01-10 14:03:01.089303 2023-07-21 Closed Customer 6010 849603.8660862550 +6027 f 92 978060 59.672775 0.6404102353329328 Product description 6027 2023-06-10 14:03:01.089303 2024-06-08 Closed Customer 6027 299532.6252726260 +6050 t 14 507068 39.98957 0.9697936641833991 Product description 6050 2022-06-28 14:03:01.089303 2024-03-20 Closed Customer 6050 703312.7601174090 +6011 f 43 513366 65.197586 0.05272649461849355 Product description 6011 2022-07-14 14:03:01.089303 2024-01-01 Closed Customer 6011 718273.0539478040 +6028 t 25 744107 66.94634 0.6221189440399719 Product description 6028 2021-11-06 14:03:01.089303 2024-09-21 Closed Customer 6028 898498.5181441230 +6052 f 85 636330 77.08858 0.3118276157242903 Product description 6052 2024-02-15 14:03:01.089303 2025-10-07 Closed Customer 6052 106979.0717307800 +6016 t 94 723661 92.93791 0.11791414323295513 Product description 6016 2024-05-13 14:03:01.089303 2025-06-07 Processing Customer 6016 373963.5652958530 +6029 f 4 39408 72.484856 0.5322000807680887 Product description 6029 2024-01-11 14:03:01.089303 2023-04-02 Processing Customer 6029 755245.4473015830 +6053 f 58 6450 36.270638 0.056901578904188455 Product description 6053 2022-03-16 14:03:01.089303 2024-06-08 Closed Customer 6053 755582.4966228460 +6018 t 5 141810 16.406376 0.5392362389717782 Product description 6018 2023-11-16 14:03:01.089303 2024-11-22 Closed Customer 6018 204149.0663418630 +6030 t 90 281755 48.574657 0.9272386859614166 Product description 6030 2022-08-30 14:03:01.089303 2023-07-07 Cancelled Customer 6030 997784.8514203240 +6054 f 61 188817 73.71984 0.4175036715041429 Product description 6054 2021-09-03 14:03:01.089303 2024-05-21 Closed Customer 6054 987719.9087453090 +6019 f 8 470548 12.708948 0.0013344892456821356 Product description 6019 2024-04-06 14:03:01.089303 2023-10-17 Processing Customer 6019 111743.5836528670 +6033 t 7 229211 51.89506 0.3258637703491445 Product description 6033 2023-06-08 14:03:01.089303 2023-10-29 Processing Customer 6033 832621.3307530530 +6057 f 38 52055 25.07404 0.2452258226594921 Product description 6057 2023-08-11 14:03:01.089303 2024-10-12 Closed Customer 6057 653272.4773920610 +6021 t 78 104212 39.510002 0.24232627400823148 Product description 6021 2022-07-18 14:03:01.089303 2024-12-18 Closed Customer 6021 602338.8734497030 +6036 t 48 433676 26.19912 0.20234692954779376 Product description 6036 2023-03-31 14:03:01.089303 2025-10-28 Closed Customer 6036 561707.1028023340 +6064 t 88 767598 26.677017 0.8046635064435392 Product description 6064 2023-02-13 14:03:01.089303 2023-07-08 Closed Customer 6064 137386.1984877360 +6022 f 77 553071 47.40957 0.5098547715505539 Product description 6022 2023-10-11 14:03:01.089303 2023-01-08 Closed Customer 6022 694881.1098248060 +6038 f 13 893077 24.550762 0.5562025022503718 Product description 6038 2022-09-04 14:03:01.089303 2023-11-20 Closed Customer 6038 275511.5898622300 +6065 t 66 837369 35.48062 0.7759443942126154 Product description 6065 2024-07-27 14:03:01.089303 2023-04-25 Cancelled Customer 6065 466003.7009993090 +6023 f 54 794270 6.32616 0.5526893389259833 Product description 6023 2021-09-07 14:03:01.089303 2025-06-04 Closed Customer 6023 214272.9381490870 +6039 t 39 64177 70.86219 0.5540410731680581 Product description 6039 2024-07-29 14:03:01.089303 2023-09-24 Closed Customer 6039 640978.6220491930 +6067 f 88 311024 36.715797 0.005248852985072716 Product description 6067 2022-07-06 14:03:01.089303 2025-03-24 Closed Customer 6067 410212.9574846670 +6026 t 57 552755 47.97556 0.23722296749319938 Product description 6026 2023-11-06 14:03:01.089303 2025-10-25 Processing Customer 6026 739634.8243301820 +6043 f 32 526472 14.878815 0.21256815152193553 Product description 6043 2023-04-09 14:03:01.089303 2025-10-16 Processing Customer 6043 58369.1250804712 +6070 t 84 77732 71.430855 0.8492584442027926 Product description 6070 2023-10-07 14:03:01.089303 2024-06-30 Processing Customer 6070 374751.8652837410 +6031 t 60 356765 35.85914 0.22488731639847614 Product description 6031 2024-03-03 14:03:01.089303 2025-04-10 Processing Customer 6031 338771.0497137060 +6044 f 73 549395 79.686966 0.873437370978742 Product description 6044 2022-05-09 14:03:01.089303 2025-08-31 Processing Customer 6044 770772.7889806540 +6074 f 2 656822 31.165298 0.46080811110195086 Product description 6074 2022-10-05 14:03:01.089303 2025-01-18 Processing Customer 6074 625287.3360447000 +6032 t 84 846763 41.047817 0.7047270030843187 Product description 6032 2023-02-17 14:03:01.089303 2025-04-13 Processing Customer 6032 127078.6255610550 +6046 f 49 296142 30.212423 0.7677296109198295 Product description 6046 2022-11-07 14:03:01.089303 2023-02-02 Processing Customer 6046 339204.1058385580 +6075 f 60 137385 86.0446 0.5544488067267288 Product description 6075 2023-01-22 14:03:01.089303 2024-09-15 Processing Customer 6075 282766.9686369490 +6034 t 16 394033 8.61422 0.7729146869416859 Product description 6034 2023-10-09 14:03:01.089303 2024-06-26 Closed Customer 6034 63629.2267370706 +6048 f 83 104326 4.9191837 0.746171860981967 Product description 6048 2023-11-25 14:03:01.089303 2025-02-22 Processing Customer 6048 811009.8504179920 +6079 t 83 559 69.164246 0.0725751048083616 Product description 6079 2023-01-23 14:03:01.089303 2023-07-09 Processing Customer 6079 157224.4980215420 +6035 t 6 582892 38.99356 0.29318320928617325 Product description 6035 2023-11-26 14:03:01.089303 2024-03-11 Processing Customer 6035 460827.5169698570 +6049 t 47 692051 39.10155 0.4382673992455466 Product description 6049 2021-10-19 14:03:01.089303 2023-09-23 Closed Customer 6049 716077.9664535500 +6083 t 59 40210 51.89999 0.1076729182318168 Product description 6083 2022-07-22 14:03:01.089303 2023-03-22 Processing Customer 6083 429738.7013999700 +6040 f 46 671525 68.244606 0.6337109236776506 Product description 6040 2022-07-14 14:03:01.089303 2025-10-28 Closed Customer 6040 266105.6561062270 +6051 t 88 673762 57.865257 0.48669938200408325 Product description 6051 2022-07-02 14:03:01.089303 2024-10-28 Closed Customer 6051 809872.1118954910 +6086 t 14 85304 15.666763 0.6441081346773636 Product description 6086 2024-06-11 14:03:01.089303 2025-05-28 Closed Customer 6086 401869.6668262080 +6041 t 97 505595 14.308493 0.12259996171448861 Product description 6041 2022-01-05 14:03:01.089303 2025-02-02 Closed Customer 6041 827822.7294714070 +6055 f 56 206053 65.73011 0.3646003313326247 Product description 6055 2022-08-12 14:03:01.089303 2025-03-06 Processing Customer 6055 300328.7860502830 +6088 t 89 538625 0.9700538 0.8329006650106727 Product description 6088 2022-08-22 14:03:01.089303 2025-11-01 Closed Customer 6088 748549.6913834170 +6047 f 49 127650 29.630962 0.0045420945994116835 Product description 6047 2021-11-14 14:03:01.089303 2025-09-04 Processing Customer 6047 142035.7114365840 +6056 f 18 280848 56.830414 0.4425509041803579 Product description 6056 2023-09-21 14:03:01.089303 2024-07-27 Closed Customer 6056 901559.5689061120 +6092 t 48 957073 75.67753 0.7617424612791517 Product description 6092 2022-08-19 14:03:01.089303 2025-07-16 Processing Customer 6092 898561.8612296870 +6058 f 3 560067 9.156488 0.957267901842318 Product description 6058 2022-03-30 14:03:01.089303 2023-05-09 Closed Customer 6058 632355.1123395250 +6059 t 34 320831 8.650216 0.24564579649361917 Product description 6059 2023-12-26 14:03:01.089303 2025-05-23 Closed Customer 6059 846421.3939438670 +6093 t 75 885089 55.344864 0.8004018179290036 Product description 6093 2024-05-16 14:03:01.089303 2024-05-21 Closed Customer 6093 420880.9498559560 +6060 t 19 624757 71.85686 0.003141452381921539 Product description 6060 2021-09-05 14:03:01.089303 2023-03-28 Processing Customer 6060 591946.3836857300 +6061 f 20 657034 72.885605 0.5151502844360394 Product description 6061 2021-12-24 14:03:01.089303 2025-03-01 Cancelled Customer 6061 2411.0968308193 +6094 t 6 438980 48.34969 0.9614706305952971 Product description 6094 2023-02-26 14:03:01.089303 2023-02-19 Closed Customer 6094 531669.0727800410 +6062 f 1 800503 78.6756 0.6785857854974928 Product description 6062 2022-04-22 14:03:01.089303 2023-05-26 Closed Customer 6062 799022.3358874430 +6068 f 10 187754 45.37722 0.2509176930349959 Product description 6068 2021-09-24 14:03:01.089303 2023-02-17 Processing Customer 6068 127216.7650967050 +6095 f 2 23522 81.884026 0.7023468109233626 Product description 6095 2022-01-21 14:03:01.089303 2025-05-27 Processing Customer 6095 38111.6792433289 +6063 f 71 812966 44.073822 0.2935059023791773 Product description 6063 2022-11-25 14:03:01.089303 2024-12-31 Closed Customer 6063 614474.2030020250 +6069 f 76 505626 12.091608 0.5405569919558921 Product description 6069 2022-02-05 14:03:01.089303 2025-03-14 Closed Customer 6069 346615.1025360280 +6105 t 70 376454 74.64274 0.4982222231514406 Product description 6105 2024-05-09 14:03:01.089303 2023-09-11 Processing Customer 6105 924533.2119201000 +6066 t 47 746276 6.8375263 0.9433895310566136 Product description 6066 2021-11-25 14:03:01.089303 2023-09-21 Closed Customer 6066 430785.5725122070 +6071 f 31 477421 60.421658 0.9310975483602739 Product description 6071 2023-10-24 14:03:01.089303 2024-10-07 Processing Customer 6071 383354.4533276410 +6106 f 80 875473 62.570118 0.6741436446104849 Product description 6106 2024-04-05 14:03:01.089303 2023-08-15 Processing Customer 6106 185277.0095087520 +6072 f 82 682565 79.3888 0.9764227601997924 Product description 6072 2022-02-28 14:03:01.089303 2023-09-23 Cancelled Customer 6072 40243.0868232493 +6077 f 48 681176 26.632132 0.022947916014697256 Product description 6077 2023-05-16 14:03:01.089303 2024-09-18 Closed Customer 6077 200382.0702896850 +6107 f 54 304708 63.48334 0.6440893620887742 Product description 6107 2024-06-30 14:03:01.089303 2024-10-01 Processing Customer 6107 166245.0212463180 +6073 f 60 206567 28.3457 0.9556532343123862 Product description 6073 2024-02-12 14:03:01.089303 2024-08-05 Processing Customer 6073 786651.6160716980 +6080 t 62 458987 77.88246 0.8166797249398208 Product description 6080 2023-08-19 14:03:01.089303 2025-04-13 Processing Customer 6080 856065.5249578130 +6112 t 30 642207 64.95008 0.5138617698818599 Product description 6112 2024-01-07 14:03:01.089303 2025-05-04 Processing Customer 6112 131329.5605077800 +6076 t 42 287546 83.52574 0.4440829126207575 Product description 6076 2021-11-06 14:03:01.089303 2024-12-13 Closed Customer 6076 857886.8337019930 +6084 t 28 574498 43.542027 0.3428445596772711 Product description 6084 2022-05-28 14:03:01.089303 2023-11-01 Processing Customer 6084 133297.4550512420 +6116 f 88 783364 5.719282 0.6739664650528532 Product description 6116 2022-10-29 14:03:01.089303 2023-11-18 Closed Customer 6116 846420.2834997180 +6078 t 7 533614 45.67811 0.03775612467385514 Product description 6078 2021-10-20 14:03:01.089303 2025-03-28 Processing Customer 6078 526912.3448426890 +6085 t 81 517123 38.198814 0.15321161914096493 Product description 6085 2022-10-07 14:03:01.089303 2024-01-27 Closed Customer 6085 204537.2451824360 +6120 f 1 106499 30.87441 0.6094126845310264 Product description 6120 2023-11-02 14:03:01.089303 2024-12-14 Closed Customer 6120 792902.2962142370 +6081 f 24 539569 95.668526 0.4300414568453874 Product description 6081 2022-07-16 14:03:01.089303 2023-03-28 Processing Customer 6081 241442.2928050430 +6087 f 94 786779 88.68796 0.1620829564305204 Product description 6087 2021-08-27 14:03:01.089303 2025-02-06 Closed Customer 6087 347488.8633304470 +6124 f 29 492277 78.08931 0.65561840959273 Product description 6124 2024-04-18 14:03:01.089303 2023-01-17 Closed Customer 6124 531935.4255615070 +6082 f 67 464982 88.74398 0.031153129353121756 Product description 6082 2023-07-13 14:03:01.089303 2024-01-12 Closed Customer 6082 732800.8845235170 +6096 t 49 556576 54.800064 0.8390446828732543 Product description 6096 2022-06-07 14:03:01.089303 2023-04-06 Closed Customer 6096 681330.7366934960 +6125 f 92 443511 41.115322 0.5066501705411532 Product description 6125 2022-05-30 14:03:01.089303 2025-10-12 Processing Customer 6125 359355.0060985960 +6089 f 17 954751 18.515198 0.056043653201015786 Product description 6089 2022-09-22 14:03:01.089303 2025-11-07 Closed Customer 6089 399094.8734190700 +6100 t 77 997369 67.16428 0.5283440817690312 Product description 6100 2021-10-28 14:03:01.089303 2024-12-26 Closed Customer 6100 939668.0810854790 +6126 f 84 674854 76.82827 0.05436831423410737 Product description 6126 2022-12-18 14:03:01.089303 2025-03-13 Closed Customer 6126 990879.6004388520 +6090 t 39 912172 7.432112 0.5431827578325468 Product description 6090 2024-03-25 14:03:01.089303 2024-05-14 Processing Customer 6090 350496.4987608080 +6104 t 95 406591 32.873978 0.8858960501792446 Product description 6104 2022-06-07 14:03:01.089303 2024-06-09 Processing Customer 6104 512513.6148037800 +6127 t 48 652853 3.7742715 0.4382909231467984 Product description 6127 2022-01-26 14:03:01.089303 2024-04-29 Closed Customer 6127 745393.9816061850 +6091 t 4 193454 7.2584066 0.885498695212064 Product description 6091 2023-05-21 14:03:01.089303 2025-09-24 Processing Customer 6091 537827.7189241310 +6108 t 49 42264 35.22677 0.7515227940029483 Product description 6108 2023-12-06 14:03:01.089303 2025-10-12 Closed Customer 6108 594606.5557769980 +6129 f 16 303907 73.57902 0.08903733001715963 Product description 6129 2023-05-13 14:03:01.089303 2025-01-31 Processing Customer 6129 669393.0794704170 +6097 f 55 789112 87.02776 0.8303747106069963 Product description 6097 2024-05-27 14:03:01.089303 2025-04-23 Processing Customer 6097 954260.1932350190 +6109 t 28 398310 3.279284 0.3040286017115257 Product description 6109 2024-01-23 14:03:01.089303 2024-11-29 Closed Customer 6109 717359.1305064240 +6130 f 79 408847 58.89952 0.2962340876763143 Product description 6130 2022-06-30 14:03:01.089303 2025-08-28 Closed Customer 6130 148398.1141298760 +6098 t 48 661008 16.746431 0.6079915469972264 Product description 6098 2021-12-09 14:03:01.089303 2024-05-28 Closed Customer 6098 744030.8773273860 +6111 f 86 799877 15.15862 0.9020033685078168 Product description 6111 2022-05-21 14:03:01.089303 2024-07-19 Closed Customer 6111 524239.2502569620 +6131 t 43 599159 46.494232 0.9747320025728747 Product description 6131 2022-06-28 14:03:01.089303 2023-10-14 Closed Customer 6131 751314.8692566670 +6099 t 28 77279 99.12893 0.2024836713889968 Product description 6099 2022-01-31 14:03:01.089303 2024-12-28 Processing Customer 6099 541833.8087295670 +6113 f 23 309847 21.523554 0.8396581955047999 Product description 6113 2022-04-07 14:03:01.089303 2025-08-22 Processing Customer 6113 916588.0044076150 +6133 f 43 538421 76.4608 0.746796238980199 Product description 6133 2023-03-15 14:03:01.089303 2023-01-26 Processing Customer 6133 408303.7876004310 +6101 t 39 997600 22.532364 0.9182315023227119 Product description 6101 2022-09-13 14:03:01.089303 2024-12-11 Processing Customer 6101 785200.1955030620 +6114 f 65 708978 90.15509 0.7738575346113343 Product description 6114 2022-07-29 14:03:01.089303 2024-07-17 Closed Customer 6114 759961.0793839060 +6146 t 49 179618 43.598484 0.2894427152512229 Product description 6146 2022-12-25 14:03:01.089303 2025-01-03 Closed Customer 6146 1507.4446265899 +6102 t 19 817376 42.607574 0.5121661672698608 Product description 6102 2023-11-05 14:03:01.089303 2023-07-15 Processing Customer 6102 403431.4938891900 +6115 t 92 571276 54.576607 0.825223678438153 Product description 6115 2022-01-13 14:03:01.089303 2024-03-07 Processing Customer 6115 680269.1796360710 +6148 t 95 12319 43.61814 0.25352192345576796 Product description 6148 2022-03-21 14:03:01.089303 2023-12-09 Closed Customer 6148 29159.6363274351 +6103 f 68 211581 99.557106 0.6954152015727004 Product description 6103 2024-05-10 14:03:01.089303 2024-10-03 Closed Customer 6103 724955.2557574330 +6117 t 15 9964 24.54113 0.7240236794389112 Product description 6117 2022-07-14 14:03:01.089303 2023-12-25 Processing Customer 6117 243788.2030005840 +6149 t 16 138236 90.77334 0.9756972719101604 Product description 6149 2023-09-16 14:03:01.089303 2025-02-09 Processing Customer 6149 12339.9227903676 +6110 t 48 425591 11.858481 0.027382682582022255 Product description 6110 2023-09-14 14:03:01.089303 2023-02-18 Cancelled Customer 6110 90798.8249671448 +6119 f 58 229449 31.88167 0.9652471201752384 Product description 6119 2023-06-14 14:03:01.089303 2025-10-30 Closed Customer 6119 441597.1927802080 +6153 f 38 951929 16.735888 0.24514934778985165 Product description 6153 2022-01-30 14:03:01.089303 2024-10-08 Closed Customer 6153 757049.5495147610 +6118 t 22 464995 8.381531 0.03480407783802164 Product description 6118 2022-10-09 14:03:01.089303 2024-06-28 Cancelled Customer 6118 440496.1648722330 +6121 f 55 985363 9.086163 0.21721561082314267 Product description 6121 2024-01-21 14:03:01.089303 2023-07-25 Closed Customer 6121 391629.8436851880 +6154 t 60 896513 65.56619 0.09683963622643077 Product description 6154 2022-03-03 14:03:01.089303 2024-03-09 Processing Customer 6154 268194.4571966780 +6134 t 55 419672 6.3909492 0.15938865140900305 Product description 6134 2022-05-17 14:03:01.089303 2024-11-19 Closed Customer 6134 934242.6136959540 +6122 f 13 586030 82.29759 0.6999887926689219 Product description 6122 2024-03-20 14:03:01.089303 2024-11-24 Processing Customer 6122 178365.8211324170 +6157 t 78 778670 38.303406 0.1222014540587999 Product description 6157 2022-10-04 14:03:01.089303 2024-03-22 Closed Customer 6157 605912.2904467960 +6136 f 66 691621 19.55649 0.27993306464292544 Product description 6136 2024-02-06 14:03:01.089303 2025-08-09 Closed Customer 6136 485116.1813645780 +6123 f 61 763378 93.66843 0.05552878432174779 Product description 6123 2023-09-08 14:03:01.089303 2024-01-04 Processing Customer 6123 591806.5869940750 +6163 f 20 564317 43.162155 0.7116330252973277 Product description 6163 2024-06-24 14:03:01.089303 2024-08-17 Processing Customer 6163 22240.6650136904 +6137 f 33 462515 65.434006 0.10896147476347551 Product description 6137 2022-02-21 14:03:01.089303 2023-10-06 Processing Customer 6137 305889.5975123580 +6128 f 24 427415 34.70235 0.9099090660220135 Product description 6128 2021-09-25 14:03:01.089303 2024-11-14 Closed Customer 6128 620724.1745296270 +6173 t 19 973252 56.116066 0.07535478024890452 Product description 6173 2022-08-08 14:03:01.089303 2025-12-03 Closed Customer 6173 470897.8231951450 +6138 t 60 862041 0.7919401 0.04336744611357091 Product description 6138 2021-12-14 14:03:01.089303 2025-09-14 Closed Customer 6138 674845.4694832480 +6132 f 72 839373 72.19658 0.6719690099842346 Product description 6132 2021-09-23 14:03:01.089303 2023-02-12 Closed Customer 6132 205134.8682517680 +6178 f 58 192322 50.362854 0.8032017713670392 Product description 6178 2021-08-21 14:03:01.089303 2025-12-26 Closed Customer 6178 578451.0820844630 +6139 f 43 969942 33.030098 0.852954474971412 Product description 6139 2021-08-26 14:03:01.089303 2024-05-16 Processing Customer 6139 295405.9554284180 +6135 f 62 289115 78.27163 0.9556579181070397 Product description 6135 2022-10-27 14:03:01.089303 2023-10-19 Processing Customer 6135 65521.5233703643 +6181 t 58 567126 6.8416767 0.14865748109042798 Product description 6181 2023-11-15 14:03:01.089303 2024-01-11 Closed Customer 6181 711457.9653303250 +6141 f 38 942072 71.78226 0.812046087408838 Product description 6141 2024-01-08 14:03:01.089303 2023-04-12 Closed Customer 6141 834613.6071706280 +6140 t 79 830496 54.96042 0.9295561752595027 Product description 6140 2022-09-21 14:03:01.089303 2025-09-29 Processing Customer 6140 128476.1158131640 +6184 f 77 273791 75.66636 0.4318354292318922 Product description 6184 2024-06-21 14:03:01.089303 2023-01-14 Closed Customer 6184 503383.5261703460 +6142 f 45 76343 1.4345465 0.18078703780108185 Product description 6142 2022-10-23 14:03:01.089303 2025-06-01 Closed Customer 6142 931223.7900597570 +6143 f 13 557124 68.48874 0.21611747336558906 Product description 6143 2022-06-30 14:03:01.089303 2023-09-28 Processing Customer 6143 301134.9534607600 +6185 f 22 197151 46.358513 0.742893988834755 Product description 6185 2021-08-20 14:03:01.089303 2025-05-27 Processing Customer 6185 769661.3740389470 +6144 f 44 912095 63.34834 0.8409713764044469 Product description 6144 2021-08-20 14:03:01.089303 2024-02-09 Closed Customer 6144 443897.1450243270 +6147 f 55 89394 49.209114 0.14401126384479923 Product description 6147 2022-02-25 14:03:01.089303 2024-10-20 Closed Customer 6147 528849.3686232630 +6186 t 62 907265 12.2291565 0.3995143307557747 Product description 6186 2023-03-05 14:03:01.089303 2023-12-15 Closed Customer 6186 198235.4057901220 +6145 f 46 952362 40.985207 0.792095863106212 Product description 6145 2023-10-05 14:03:01.089303 2023-06-01 Closed Customer 6145 547127.2723535600 +6150 t 95 362664 19.028831 0.481744208131591 Product description 6150 2022-10-05 14:03:01.089303 2024-01-14 Cancelled Customer 6150 528472.1715409010 +6188 f 28 446888 90.724174 0.9566223397467617 Product description 6188 2022-11-17 14:03:01.089303 2024-02-27 Closed Customer 6188 412664.1877441700 +6151 f 24 516260 67.1998 0.23509732543896433 Product description 6151 2024-04-29 14:03:01.089303 2025-05-22 Closed Customer 6151 914349.5563809730 +6155 t 88 929659 41.142605 0.6281098679421433 Product description 6155 2023-02-23 14:03:01.089303 2024-05-17 Processing Customer 6155 986438.9275608510 +6191 f 38 465971 9.618816 0.08143598446021016 Product description 6191 2022-12-09 14:03:01.089303 2025-01-29 Cancelled Customer 6191 925091.2699149830 +6152 f 79 58503 19.747723 0.08273259864824922 Product description 6152 2022-06-07 14:03:01.089303 2025-07-13 Processing Customer 6152 862919.7061137540 +6158 t 54 53046 2.3308969 0.37888800353299956 Product description 6158 2023-06-04 14:03:01.089303 2025-05-15 Processing Customer 6158 736868.2331090390 +6192 t 80 327943 4.44879 0.2285514532665971 Product description 6192 2023-12-19 14:03:01.089303 2024-09-24 Processing Customer 6192 490461.9691934080 +6156 f 35 84392 91.96656 0.34351599074864936 Product description 6156 2022-07-20 14:03:01.089303 2023-06-29 Closed Customer 6156 768397.3101464720 +6159 t 99 611681 93.84937 0.11712148230941466 Product description 6159 2024-06-10 14:03:01.089303 2025-09-29 Closed Customer 6159 382001.5629153740 +6194 t 61 343454 49.313046 0.7915056928293751 Product description 6194 2023-03-27 14:03:01.089303 2024-07-10 Closed Customer 6194 949420.1599585320 +6161 t 70 757988 29.023077 0.4158180083281451 Product description 6161 2021-09-25 14:03:01.089303 2024-12-23 Processing Customer 6161 747045.0508821040 +6160 t 78 914478 21.190317 0.814149889029359 Product description 6160 2021-11-08 14:03:01.089303 2024-02-26 Processing Customer 6160 256835.5140267930 +6202 t 47 58941 94.8969 0.7731212797620444 Product description 6202 2023-06-05 14:03:01.089303 2024-07-24 Processing Customer 6202 619789.2564777770 +6162 f 40 458372 63.28013 0.4567232734874196 Product description 6162 2022-08-29 14:03:01.089303 2025-07-30 Processing Customer 6162 240980.9546936580 +6165 f 57 751444 51.99678 0.08274149932380226 Product description 6165 2023-05-24 14:03:01.089303 2023-08-20 Cancelled Customer 6165 871494.5166515520 +6204 f 51 893391 92.98123 0.058717071933756415 Product description 6204 2024-04-18 14:03:01.089303 2023-01-19 Processing Customer 6204 859882.3437699780 +6164 t 81 807383 10.227985 0.25810861240395866 Product description 6164 2021-11-03 14:03:01.089303 2025-07-30 Closed Customer 6164 24744.8453291348 +6168 f 85 747671 29.790552 0.47495439980459864 Product description 6168 2024-07-01 14:03:01.089303 2023-06-28 Processing Customer 6168 607516.7820116930 +6209 t 59 311211 23.557993 0.28157106834203915 Product description 6209 2024-06-07 14:03:01.089303 2025-06-06 Processing Customer 6209 270283.1710094850 +6166 t 35 274772 33.593513 0.23149532372170967 Product description 6166 2021-12-15 14:03:01.089303 2025-10-26 Closed Customer 6166 212564.4676033320 +6171 t 1 531189 63.98259 0.7811667480459654 Product description 6171 2024-03-08 14:03:01.089303 2024-01-13 Closed Customer 6171 333600.9162062370 +6215 t 30 885196 2.4606123 0.32855721876849486 Product description 6215 2023-02-19 14:03:01.089303 2024-09-09 Closed Customer 6215 906022.9728662640 +6167 f 21 743995 51.463215 0.29203809103033507 Product description 6167 2023-04-15 14:03:01.089303 2024-06-04 Processing Customer 6167 669319.0526545260 +6174 f 2 702359 38.95351 0.19468359746796793 Product description 6174 2023-06-24 14:03:01.089303 2023-01-17 Processing Customer 6174 958760.5204156870 +6217 t 63 469656 17.928057 0.196461398419693 Product description 6217 2022-12-07 14:03:01.089303 2025-08-25 Closed Customer 6217 401239.6691518810 +6169 f 20 448011 61.00046 0.36864910887788227 Product description 6169 2023-04-05 14:03:01.089303 2025-02-19 Closed Customer 6169 464318.8713860300 +6175 f 13 324901 84.7914 0.2819146816958842 Product description 6175 2022-05-01 14:03:01.089303 2023-03-29 Closed Customer 6175 327135.7995798210 +6220 t 51 579020 22.841314 0.8564746259740161 Product description 6220 2023-09-27 14:03:01.089303 2023-07-31 Closed Customer 6220 57031.0838594672 +6170 f 32 379737 90.452415 0.851043209496936 Product description 6170 2022-07-19 14:03:01.089303 2024-03-16 Closed Customer 6170 623654.8389985580 +6180 t 48 97332 74.17194 0.5048705977854375 Product description 6180 2022-07-22 14:03:01.089303 2024-08-25 Processing Customer 6180 97306.2714006758 +6231 f 32 570379 86.61376 0.26333393414464723 Product description 6231 2022-12-17 14:03:01.089303 2023-09-26 Processing Customer 6231 343875.6061160610 +6172 f 36 698395 98.857666 0.24178556773899373 Product description 6172 2024-06-02 14:03:01.089303 2025-05-14 Closed Customer 6172 726202.5520894080 +6182 f 69 622309 29.876696 0.7471655876011347 Product description 6182 2023-03-27 14:03:01.089303 2023-02-28 Closed Customer 6182 874852.3943799140 +6234 f 69 308840 66.52876 0.2702761409887984 Product description 6234 2024-04-26 14:03:01.089303 2023-04-23 Closed Customer 6234 620275.3862552690 +6176 t 51 227456 89.79612 0.48208666636516284 Product description 6176 2024-05-24 14:03:01.089303 2024-01-03 Closed Customer 6176 771148.5080244070 +6183 f 88 44152 32.53437 0.08174914957869461 Product description 6183 2021-10-27 14:03:01.089303 2025-12-24 Processing Customer 6183 559106.7757993860 +6235 f 60 974359 75.929054 0.45583722913283253 Product description 6235 2023-06-18 14:03:01.089303 2025-05-03 Closed Customer 6235 345010.5149058980 +6177 f 59 620148 10.015498 0.4522477127381066 Product description 6177 2023-06-20 14:03:01.089303 2023-04-16 Processing Customer 6177 831331.1583699950 +6195 t 34 121180 53.22134 0.009288544356355288 Product description 6195 2023-03-02 14:03:01.089303 2024-12-22 Processing Customer 6195 672387.4630763190 +6236 f 64 34572 2.9123347 0.7561845979070654 Product description 6236 2022-05-13 14:03:01.089303 2025-11-12 Closed Customer 6236 150435.8946394260 +6179 f 26 541119 57.537132 0.029686146806028546 Product description 6179 2023-06-13 14:03:01.089303 2025-07-30 Closed Customer 6179 26855.5621455242 +6198 t 53 969772 48.283417 0.579889386014738 Product description 6198 2022-01-15 14:03:01.089303 2024-07-01 Closed Customer 6198 703145.4423479100 +6237 t 91 718654 77.33255 0.819337710739724 Product description 6237 2021-12-16 14:03:01.089303 2025-10-17 Closed Customer 6237 858803.3217912740 +6187 t 31 32299 45.47498 0.5273206294769821 Product description 6187 2022-06-13 14:03:01.089303 2025-02-18 Processing Customer 6187 976999.7156881270 +6205 t 59 70527 51.557037 0.12383296586228099 Product description 6205 2021-08-31 14:03:01.089303 2025-11-06 Processing Customer 6205 536888.4070524440 +6242 f 86 229830 88.94243 0.824245624432038 Product description 6242 2024-05-27 14:03:01.089303 2025-12-29 Closed Customer 6242 526816.1010682880 +6189 t 26 887309 64.33118 0.7284140453268009 Product description 6189 2022-06-19 14:03:01.089303 2025-11-18 Processing Customer 6189 609169.9558430540 +6206 f 79 906155 65.20732 0.8522567137341461 Product description 6206 2023-04-25 14:03:01.089303 2023-09-18 Processing Customer 6206 467166.6460334830 +6245 t 15 983884 82.33009 0.07427603865553323 Product description 6245 2024-06-26 14:03:01.089303 2023-07-30 Closed Customer 6245 727634.6297945120 +6190 f 54 99418 60.923843 0.12363211561187626 Product description 6190 2023-12-18 14:03:01.089303 2024-12-30 Processing Customer 6190 871058.9762711900 +6207 f 25 630188 57.042046 0.9794985534694725 Product description 6207 2022-11-14 14:03:01.089303 2024-12-09 Closed Customer 6207 907.2760836943 +6246 f 91 162511 81.635765 0.53695589450885 Product description 6246 2022-06-20 14:03:01.089303 2023-01-10 Closed Customer 6246 33012.9432938655 +6193 f 14 501910 53.080574 0.45703486724005415 Product description 6193 2024-01-22 14:03:01.089303 2024-12-05 Closed Customer 6193 628188.8616451820 +6211 t 86 354580 52.521103 0.9570890424000673 Product description 6211 2024-03-12 14:03:01.089303 2023-12-22 Processing Customer 6211 577088.4639813470 +6248 t 95 748327 40.779293 0.8601751812824219 Product description 6248 2022-02-12 14:03:01.089303 2023-01-20 Closed Customer 6248 749140.2712550470 +6196 t 72 52295 53.539207 0.41238326399230374 Product description 6196 2022-12-15 14:03:01.089303 2024-03-19 Closed Customer 6196 674752.3528829080 +6218 f 11 889187 73.683945 0.5063179223821841 Product description 6218 2023-08-16 14:03:01.089303 2023-03-30 Processing Customer 6218 735890.9545593660 +6250 t 46 940527 64.033646 0.9833043416060008 Product description 6250 2022-04-19 14:03:01.089303 2023-05-07 Closed Customer 6250 508095.7319246230 +6197 f 59 670623 69.300064 0.5716112891760332 Product description 6197 2023-04-02 14:03:01.089303 2024-01-10 Processing Customer 6197 678421.4971235190 +6219 f 32 525024 10.134884 0.42614665497616144 Product description 6219 2022-04-07 14:03:01.089303 2025-04-26 Processing Customer 6219 716503.9176826080 +6253 t 95 779978 34.53191 0.5221149090667083 Product description 6253 2022-05-04 14:03:01.089303 2023-01-22 Processing Customer 6253 339311.5290237640 +6199 t 58 836326 92.415886 0.6521741897140245 Product description 6199 2022-03-25 14:03:01.089303 2025-05-11 Closed Customer 6199 667909.3657352160 +6223 f 84 914519 41.7072 0.44704084923704457 Product description 6223 2023-02-17 14:03:01.089303 2023-12-01 Closed Customer 6223 196937.0362430990 +6255 t 64 688740 74.47102 0.9554094552802326 Product description 6255 2023-09-26 14:03:01.089303 2025-08-19 Processing Customer 6255 750433.2672501700 +6200 t 62 630867 33.88804 0.8245743181677483 Product description 6200 2024-07-06 14:03:01.089303 2025-04-30 Closed Customer 6200 30532.5742010858 +6225 f 69 783450 63.15034 0.8541436882311721 Product description 6225 2024-05-28 14:03:01.089303 2024-02-09 Closed Customer 6225 550711.6109215890 +6256 f 28 1080 23.709724 0.8602595292031836 Product description 6256 2022-12-18 14:03:01.089303 2025-05-05 Processing Customer 6256 584177.0657309300 +6201 f 47 926453 59.789387 0.9716428900541487 Product description 6201 2023-07-15 14:03:01.089303 2024-01-03 Processing Customer 6201 503511.6795843390 +6228 t 29 971480 74.40788 0.2643331417263006 Product description 6228 2022-06-20 14:03:01.089303 2025-07-30 Closed Customer 6228 133052.1906266850 +6265 f 70 693154 1.7578317 0.5110138171069849 Product description 6265 2022-10-02 14:03:01.089303 2023-01-22 Closed Customer 6265 83568.4167411834 +6203 f 41 979903 84.0799 0.4725819988479856 Product description 6203 2022-01-08 14:03:01.089303 2025-04-17 Closed Customer 6203 799880.5426621340 +6232 f 38 170962 18.44279 0.7132749598135142 Product description 6232 2024-04-15 14:03:01.089303 2025-09-01 Closed Customer 6232 677607.4303490920 +6266 f 51 750461 89.36986 0.37438814340404036 Product description 6266 2022-10-19 14:03:01.089303 2024-05-07 Processing Customer 6266 703191.4943705610 +6208 t 23 83886 76.733955 0.8388814725941458 Product description 6208 2023-12-13 14:03:01.089303 2024-01-05 Processing Customer 6208 595668.8346640430 +6238 f 47 602548 44.82344 0.5452405639967033 Product description 6238 2022-02-08 14:03:01.089303 2025-11-29 Processing Customer 6238 913733.2284730630 +6271 f 1 170917 94.172775 0.8598005537870961 Product description 6271 2023-01-06 14:03:01.089303 2024-06-21 Processing Customer 6271 467954.2496753830 +6210 t 76 821866 74.43267 0.1617737415884335 Product description 6210 2023-04-02 14:03:01.089303 2023-06-06 Closed Customer 6210 539850.8205060430 +6239 f 53 979262 88.21818 0.43583955524121265 Product description 6239 2022-09-07 14:03:01.089303 2025-04-20 Processing Customer 6239 749617.2727671320 +6276 t 18 76374 79.67604 0.1621810622315607 Product description 6276 2023-08-12 14:03:01.089303 2025-01-18 Processing Customer 6276 120020.9836490590 +6212 f 16 406548 30.15447 0.6667352527056849 Product description 6212 2024-06-08 14:03:01.089303 2023-07-01 Closed Customer 6212 423157.9931265830 +6240 t 45 516506 26.746069 0.6846143758226937 Product description 6240 2022-11-22 14:03:01.089303 2025-09-19 Closed Customer 6240 445204.6544665930 +6279 f 58 703488 2.7298808 0.7254894577501858 Product description 6279 2021-09-08 14:03:01.089303 2023-12-24 Closed Customer 6279 533443.2484360540 +6213 t 32 255133 35.563534 0.8916776434833906 Product description 6213 2023-06-24 14:03:01.089303 2023-06-05 Closed Customer 6213 617152.4471956890 +6241 f 3 183219 36.734623 0.4187909878107341 Product description 6241 2021-09-24 14:03:01.089303 2023-06-27 Cancelled Customer 6241 806607.7415923270 +6281 t 64 378357 51.816963 0.773238818331599 Product description 6281 2024-03-18 14:03:01.089303 2023-09-01 Closed Customer 6281 10507.6306573615 +6214 t 39 510448 60.645 0.14985306947462362 Product description 6214 2023-03-07 14:03:01.089303 2023-12-12 Processing Customer 6214 420715.7445857100 +6249 f 76 938043 80.60362 0.2100931001694235 Product description 6249 2023-05-26 14:03:01.089303 2025-06-17 Processing Customer 6249 221296.8238872040 +6285 t 40 87957 15.27054 0.6427422113661692 Product description 6285 2021-08-06 14:03:01.089303 2023-05-09 Processing Customer 6285 76293.9492815882 +6216 t 35 729574 63.43395 0.8385852114340366 Product description 6216 2023-01-04 14:03:01.089303 2024-09-28 Processing Customer 6216 416725.8744151600 +6252 t 68 675772 41.565323 0.8251375207195082 Product description 6252 2023-10-29 14:03:01.089303 2024-04-24 Closed Customer 6252 849117.3674462220 +6290 f 80 145858 87.7271 0.3095530492740366 Product description 6290 2022-08-12 14:03:01.089303 2024-01-09 Closed Customer 6290 448406.8639433510 +6221 t 12 644172 90.20711 0.7360931615701034 Product description 6221 2021-09-26 14:03:01.089303 2024-10-04 Closed Customer 6221 278665.5526861670 +6259 t 1 863930 35.396038 0.36176876505168565 Product description 6259 2021-09-27 14:03:01.089303 2024-02-22 Closed Customer 6259 558278.2096869500 +6292 t 63 28049 40.388973 0.1349705124486178 Product description 6292 2024-07-11 14:03:01.089303 2025-10-14 Processing Customer 6292 712885.4212927070 +6222 f 46 57394 62.19277 0.05883573472401338 Product description 6222 2021-09-25 14:03:01.089303 2025-08-12 Closed Customer 6222 478707.7351723890 +6260 t 26 357598 50.936607 0.6521699844867612 Product description 6260 2023-06-08 14:03:01.089303 2025-05-15 Closed Customer 6260 654439.1950353050 +6293 f 98 332303 86.15763 0.8046379311067753 Product description 6293 2022-02-05 14:03:01.089303 2024-08-01 Processing Customer 6293 437846.1744851630 +6224 f 22 507963 31.020718 0.6650746440286 Product description 6224 2022-02-23 14:03:01.089303 2023-12-04 Closed Customer 6224 250292.0918604620 +6261 t 14 924523 1.999763 0.8817003920825712 Product description 6261 2021-10-05 14:03:01.089303 2024-05-12 Processing Customer 6261 741362.9342690090 +6298 t 7 390499 23.412792 0.17623699858719988 Product description 6298 2021-08-07 14:03:01.089303 2025-01-03 Processing Customer 6298 702692.0832684840 +6226 t 18 786065 96.48532 0.7884402558930788 Product description 6226 2022-09-03 14:03:01.089303 2024-10-26 Closed Customer 6226 562648.2184592270 +6263 t 95 139664 8.031676 0.35117003482470466 Product description 6263 2022-09-08 14:03:01.089303 2023-10-05 Closed Customer 6263 84802.9947910156 +6301 f 78 877072 98.86634 0.14311839866147835 Product description 6301 2024-07-29 14:03:01.089303 2024-10-01 Cancelled Customer 6301 394760.8346567150 +6227 f 4 249845 1.6154957 0.1519015959169181 Product description 6227 2021-12-08 14:03:01.089303 2024-08-13 Processing Customer 6227 863328.8320762380 +6264 f 17 631715 32.616997 0.3920841853092938 Product description 6264 2021-09-28 14:03:01.089303 2024-06-04 Closed Customer 6264 908426.1785031240 +6302 t 27 910101 71.06769 0.5158894265799923 Product description 6302 2024-07-22 14:03:01.089303 2023-08-17 Processing Customer 6302 410881.4783265300 +6229 f 22 410303 58.78355 0.8572367159128618 Product description 6229 2021-12-27 14:03:01.089303 2023-08-28 Closed Customer 6229 979135.9357146910 +6267 f 60 758736 35.26062 0.3525922906602261 Product description 6267 2021-12-21 14:03:01.089303 2024-02-11 Closed Customer 6267 529350.8219851580 +6304 t 12 933628 81.90362 0.7575794098677839 Product description 6304 2023-08-25 14:03:01.089303 2025-02-22 Closed Customer 6304 311575.5726926820 +6230 f 21 724627 4.1394315 0.024101569863510974 Product description 6230 2023-07-08 14:03:01.089303 2025-01-13 Closed Customer 6230 900328.0919264290 +6269 f 67 244357 52.536194 0.9874341734431269 Product description 6269 2022-05-25 14:03:01.089303 2023-05-20 Closed Customer 6269 382630.8412798800 +6306 t 34 312927 83.8425 0.6478860555649 Product description 6306 2023-11-21 14:03:01.089303 2025-06-09 Closed Customer 6306 917362.9721539240 +6233 f 51 762942 9.338676 0.4958424651472626 Product description 6233 2022-08-14 14:03:01.089303 2025-05-13 Closed Customer 6233 331036.7095265540 +6270 f 51 379428 36.516487 0.58799239449597 Product description 6270 2024-02-28 14:03:01.089303 2023-01-31 Closed Customer 6270 884075.8525668480 +6308 f 56 562347 31.131184 0.17887756358738827 Product description 6308 2022-04-20 14:03:01.089303 2024-03-31 Processing Customer 6308 220565.7315187390 +6243 f 8 511279 69.26432 0.7324645300041439 Product description 6243 2022-08-05 14:03:01.089303 2024-11-04 Closed Customer 6243 821478.7093694480 +6272 f 14 716797 68.01413 0.5168173824366065 Product description 6272 2022-04-07 14:03:01.089303 2023-09-07 Closed Customer 6272 2710.4446497397 +6310 f 34 533523 49.382668 0.9052455845184575 Product description 6310 2021-10-29 14:03:01.089303 2024-08-18 Closed Customer 6310 70743.2248866269 +6244 f 14 461206 63.010387 0.8377219978398074 Product description 6244 2022-07-11 14:03:01.089303 2023-07-13 Closed Customer 6244 711204.3568521750 +6274 t 32 933295 80.19227 0.8374642796020453 Product description 6274 2024-05-01 14:03:01.089303 2025-02-13 Closed Customer 6274 206478.9582238940 +6312 t 58 844549 7.8479843 0.5257826024399854 Product description 6312 2022-04-29 14:03:01.089303 2024-06-19 Closed Customer 6312 181167.9938229890 +6247 t 14 226858 25.968708 0.5277183774758143 Product description 6247 2023-09-22 14:03:01.089303 2024-04-09 Closed Customer 6247 887195.7872879830 +6275 t 53 676184 37.45431 0.8878847726262009 Product description 6275 2024-03-05 14:03:01.089303 2025-05-23 Cancelled Customer 6275 638290.5784002090 +6314 t 93 979034 55.404305 0.7851563962263448 Product description 6314 2022-08-05 14:03:01.089303 2023-03-13 Processing Customer 6314 181491.4664521860 +6251 t 29 652302 42.253815 0.7155055474112828 Product description 6251 2024-06-02 14:03:01.089303 2025-01-18 Processing Customer 6251 946906.0910413950 +6289 t 33 210056 16.936863 0.1676060998320743 Product description 6289 2024-01-31 14:03:01.089303 2025-01-12 Closed Customer 6289 885490.0366526120 +6319 t 32 788072 58.840454 0.4979197945711853 Product description 6319 2023-02-19 14:03:01.089303 2023-08-31 Closed Customer 6319 773105.8254620890 +6254 t 89 391070 88.42294 0.4289348947119791 Product description 6254 2022-02-26 14:03:01.089303 2023-05-16 Closed Customer 6254 46724.9703025665 +6294 f 7 959481 96.92101 0.9974867125626723 Product description 6294 2022-05-02 14:03:01.089303 2024-12-27 Closed Customer 6294 836486.8026368200 +6321 f 51 742371 94.555664 0.07642261788665294 Product description 6321 2024-04-18 14:03:01.089303 2025-04-17 Closed Customer 6321 790702.5748878600 +6257 f 45 485957 79.280655 0.8821921351732414 Product description 6257 2022-05-30 14:03:01.089303 2025-07-31 Processing Customer 6257 340080.4416025490 +6295 t 86 702117 7.971496 0.6215985647615447 Product description 6295 2023-05-14 14:03:01.089303 2024-04-16 Processing Customer 6295 297165.2771833960 +6323 f 8 88328 52.7938 0.9071835189296245 Product description 6323 2021-11-25 14:03:01.089303 2023-09-17 Processing Customer 6323 880522.5940385600 +6258 t 56 977763 96.95709 0.6884516939425325 Product description 6258 2023-10-26 14:03:01.089303 2023-09-11 Processing Customer 6258 408900.7124498960 +6296 f 15 633116 76.12695 0.8808431721904348 Product description 6296 2022-05-29 14:03:01.089303 2023-12-17 Closed Customer 6296 561191.0255084280 +6326 t 50 564876 47.83533 0.656840091629963 Product description 6326 2023-09-28 14:03:01.089303 2025-09-17 Processing Customer 6326 440631.2536513750 +6262 t 19 804944 74.74718 0.7190878586664837 Product description 6262 2024-02-13 14:03:01.089303 2025-06-23 Closed Customer 6262 594294.4004670740 +6297 t 60 396202 63.212193 0.9795834433280852 Product description 6297 2023-12-26 14:03:01.089303 2025-11-01 Closed Customer 6297 505220.9082675750 +6330 f 71 211943 36.521484 0.8969205919658059 Product description 6330 2022-10-19 14:03:01.089303 2025-01-30 Processing Customer 6330 524673.6528034360 +6268 t 37 34437 94.17073 0.8922731539836164 Product description 6268 2023-05-06 14:03:01.089303 2025-12-06 Closed Customer 6268 533519.3149159670 +6299 f 28 33236 73.864845 0.546535842825957 Product description 6299 2024-06-05 14:03:01.089303 2023-03-11 Closed Customer 6299 561161.8710499970 +6331 t 63 936328 6.511134 0.7504719642611128 Product description 6331 2023-11-07 14:03:01.089303 2024-11-17 Cancelled Customer 6331 686206.0871943110 +6273 t 64 879269 23.717575 0.44143070021839037 Product description 6273 2024-07-11 14:03:01.089303 2025-03-28 Closed Customer 6273 951896.6609789280 +6303 t 56 476391 27.111313 0.709664991037446 Product description 6303 2023-10-14 14:03:01.089303 2024-06-01 Closed Customer 6303 461168.8800099070 +6332 f 8 281379 47.465122 0.5941140079853966 Product description 6332 2024-04-20 14:03:01.089303 2024-10-15 Closed Customer 6332 935106.9768527900 +6277 t 41 507735 39.257977 0.812852935115238 Product description 6277 2022-11-04 14:03:01.089303 2023-08-05 Processing Customer 6277 373603.4615004260 +6305 f 74 243112 7.2346234 0.6546894628534226 Product description 6305 2023-08-17 14:03:01.089303 2024-06-07 Processing Customer 6305 683346.3948225570 +6334 t 28 285834 36.156857 0.8328346476493422 Product description 6334 2023-11-28 14:03:01.089303 2024-05-15 Cancelled Customer 6334 812092.9406896450 +6278 f 82 585476 22.124609 0.10092599397898994 Product description 6278 2021-11-12 14:03:01.089303 2024-04-30 Closed Customer 6278 587008.1334619460 +6307 t 99 486352 79.84773 0.9646465212878077 Product description 6307 2024-03-02 14:03:01.089303 2023-02-20 Processing Customer 6307 431277.4968904310 +6338 t 81 211498 49.942017 0.9085574654000403 Product description 6338 2024-03-08 14:03:01.089303 2023-05-22 Processing Customer 6338 409505.1006542150 +6280 f 35 34237 56.246883 0.16946403708880808 Product description 6280 2022-11-05 14:03:01.089303 2023-02-21 Closed Customer 6280 972840.8693810910 +6311 f 44 409473 31.859417 0.07863458670660961 Product description 6311 2023-07-05 14:03:01.089303 2024-05-09 Closed Customer 6311 843031.5800330060 +6346 f 38 92507 81.09688 0.2986444081280517 Product description 6346 2023-09-11 14:03:01.089303 2025-10-14 Processing Customer 6346 812593.6237104480 +6282 f 17 47068 15.084134 0.5862759731429179 Product description 6282 2022-08-28 14:03:01.089303 2024-06-10 Closed Customer 6282 750907.2115015090 +6316 f 88 123356 45.38916 0.0990859997321003 Product description 6316 2022-04-18 14:03:01.089303 2023-10-28 Closed Customer 6316 393636.8682018240 +6349 t 65 714819 60.052753 0.20153337266076576 Product description 6349 2022-06-17 14:03:01.089303 2024-11-03 Processing Customer 6349 282188.6032122340 +6283 f 63 747554 6.8280745 0.6447560725821049 Product description 6283 2024-05-29 14:03:01.089303 2023-02-22 Closed Customer 6283 756995.8165464530 +6317 f 97 96624 92.743225 0.633025916040463 Product description 6317 2021-10-18 14:03:01.089303 2025-08-04 Closed Customer 6317 623739.6630234500 +6351 t 62 110490 59.915546 0.8427053696974234 Product description 6351 2023-10-22 14:03:01.089303 2024-04-20 Closed Customer 6351 511716.4824602940 +6284 f 33 281544 40.35888 0.8157715907929344 Product description 6284 2024-05-27 14:03:01.089303 2024-05-20 Processing Customer 6284 175938.3385163140 +6318 t 27 208317 5.1588697 0.7782154645575652 Product description 6318 2022-12-17 14:03:01.089303 2024-12-24 Closed Customer 6318 365822.0363136590 +6354 f 30 616230 40.580612 0.5500966466134436 Product description 6354 2023-04-29 14:03:01.089303 2023-11-06 Closed Customer 6354 699413.4895783620 +6286 t 77 623323 71.57363 0.77743503022581 Product description 6286 2022-01-11 14:03:01.089303 2023-04-09 Closed Customer 6286 747064.0174690320 +6325 t 4 491952 3.1189125 0.009581087717432268 Product description 6325 2023-12-11 14:03:01.089303 2024-09-02 Closed Customer 6325 452859.9963362650 +6355 f 83 780716 83.34105 0.47613433963247687 Product description 6355 2023-05-04 14:03:01.089303 2025-04-28 Closed Customer 6355 125796.5282542770 +6287 t 98 47912 30.718256 0.33078913031043555 Product description 6287 2022-11-22 14:03:01.089303 2024-09-05 Cancelled Customer 6287 191474.1151294950 +6327 t 4 967927 23.510796 0.770998223259344 Product description 6327 2022-08-09 14:03:01.089303 2025-08-12 Closed Customer 6327 881708.5179472460 +6358 t 38 379916 26.736967 0.2685859120301366 Product description 6358 2023-09-09 14:03:01.089303 2025-08-03 Processing Customer 6358 985922.6909740070 +6288 f 45 480968 99.53221 0.9948757761392208 Product description 6288 2022-06-27 14:03:01.089303 2024-01-25 Closed Customer 6288 736635.0840941390 +6329 f 25 254902 41.695698 0.23274751481524092 Product description 6329 2021-08-18 14:03:01.089303 2024-02-20 Processing Customer 6329 212374.5679614540 +6360 t 9 582996 92.47994 0.6020227125994744 Product description 6360 2024-06-12 14:03:01.089303 2025-04-05 Closed Customer 6360 210607.1480169550 +6291 t 65 417176 63.818863 0.44173412767438336 Product description 6291 2024-01-30 14:03:01.089303 2023-11-17 Processing Customer 6291 268747.0507431300 +6336 f 73 556544 46.182568 0.17232681090870372 Product description 6336 2023-06-07 14:03:01.089303 2025-08-30 Closed Customer 6336 839966.0934983050 +6362 t 5 750818 87.63709 0.8295638830451004 Product description 6362 2021-08-08 14:03:01.089303 2025-09-16 Closed Customer 6362 610227.3980029200 +6300 t 93 791908 29.342367 0.43909240141875827 Product description 6300 2023-03-19 14:03:01.089303 2024-12-23 Processing Customer 6300 18667.2460035524 +6340 t 75 274112 23.180712 0.6273419679272045 Product description 6340 2023-06-07 14:03:01.089303 2024-10-26 Processing Customer 6340 295496.8503044950 +6366 t 80 464546 62.556484 0.7394780111905099 Product description 6366 2021-11-18 14:03:01.089303 2024-07-07 Processing Customer 6366 529821.1739332930 +6309 t 33 546914 41.747253 0.9391302801612831 Product description 6309 2022-02-25 14:03:01.089303 2024-07-22 Closed Customer 6309 138542.1357521470 +6343 t 95 445398 47.315952 0.9760805457465871 Product description 6343 2023-10-30 14:03:01.089303 2025-09-22 Closed Customer 6343 913923.5800794690 +6367 f 61 635944 86.69972 0.32643858354230204 Product description 6367 2022-02-16 14:03:01.089303 2023-01-20 Closed Customer 6367 330755.7767507490 +6313 t 8 693510 89.58262 0.8079851072903033 Product description 6313 2022-07-07 14:03:01.089303 2023-06-13 Processing Customer 6313 417086.0938301430 +6350 t 76 721085 91.035576 0.7248885227469195 Product description 6350 2022-10-16 14:03:01.089303 2024-05-25 Processing Customer 6350 323080.9143757870 +6375 f 43 739085 74.667076 0.1902061881138728 Product description 6375 2022-06-17 14:03:01.089303 2025-12-04 Cancelled Customer 6375 151106.8329806270 +6315 t 63 333520 17.836355 0.04619421996494921 Product description 6315 2021-10-12 14:03:01.089303 2025-06-10 Closed Customer 6315 254416.2607450600 +6356 t 53 154051 32.41864 0.2435344976695042 Product description 6356 2023-12-15 14:03:01.089303 2023-04-10 Processing Customer 6356 589149.0878706240 +6377 f 92 321324 99.897354 0.7508445934451444 Product description 6377 2023-08-20 14:03:01.089303 2025-07-03 Closed Customer 6377 431599.4801301780 +6320 f 25 68698 7.5077076 0.0541884800407324 Product description 6320 2022-09-07 14:03:01.089303 2025-07-27 Processing Customer 6320 387066.5872060430 +6357 t 31 841576 88.82654 0.4486380988060965 Product description 6357 2021-11-20 14:03:01.089303 2023-12-08 Closed Customer 6357 129871.2761969300 +6379 t 87 725641 93.52539 0.33736658411760345 Product description 6379 2023-08-05 14:03:01.089303 2023-11-26 Closed Customer 6379 230679.5453965800 +6322 f 12 695958 85.323166 0.5966395112376581 Product description 6322 2021-10-04 14:03:01.089303 2024-01-24 Processing Customer 6322 18907.2736382627 +6361 f 97 423880 69.51291 0.21813710631736072 Product description 6361 2023-01-06 14:03:01.089303 2023-03-26 Processing Customer 6361 580640.9490623560 +6387 f 60 848911 35.127438 0.06932930334881604 Product description 6387 2022-11-14 14:03:01.089303 2023-04-19 Closed Customer 6387 365803.4212843160 +6324 t 94 479228 12.434871 0.16512431734946276 Product description 6324 2023-08-11 14:03:01.089303 2024-05-12 Closed Customer 6324 235306.2586258330 +6363 f 50 702023 91.24042 0.1733448857675164 Product description 6363 2024-03-12 14:03:01.089303 2024-06-28 Processing Customer 6363 939780.3059444740 +6388 t 4 305242 3.4468858 0.9832080459872969 Product description 6388 2021-08-13 14:03:01.089303 2023-10-27 Closed Customer 6388 566510.6091963810 +6328 t 54 794874 41.6946 0.5698450157074468 Product description 6328 2022-08-28 14:03:01.089303 2023-12-29 Closed Customer 6328 980850.7054143690 +6364 t 25 606052 17.210598 0.5312718605216453 Product description 6364 2022-01-05 14:03:01.089303 2023-08-25 Processing Customer 6364 978513.1866563290 +6394 f 10 120119 40.784294 0.48044223468772174 Product description 6394 2023-08-18 14:03:01.089303 2024-08-22 Processing Customer 6394 645661.3040161190 +6333 f 22 949053 85.473885 0.28408447156978056 Product description 6333 2021-10-04 14:03:01.089303 2023-05-27 Closed Customer 6333 926595.6213810330 +6370 t 54 167159 67.184 0.10968431036453907 Product description 6370 2024-06-15 14:03:01.089303 2024-02-25 Processing Customer 6370 419250.7884083980 +6395 f 63 392096 9.10399 0.6517403924824805 Product description 6395 2023-10-08 14:03:01.089303 2024-07-19 Closed Customer 6395 366153.3188418640 +6335 t 16 621803 33.59612 0.1931848108614993 Product description 6335 2024-04-19 14:03:01.089303 2023-06-04 Processing Customer 6335 321141.8642697200 +6373 f 76 918225 52.917686 0.5432346923274771 Product description 6373 2023-05-02 14:03:01.089303 2025-07-20 Closed Customer 6373 535150.1191461100 +6397 t 94 958129 92.017166 0.3480545216573674 Product description 6397 2023-03-09 14:03:01.089303 2023-09-29 Closed Customer 6397 335181.8702016120 +6337 t 17 797741 18.672144 0.45358077534373464 Product description 6337 2021-12-01 14:03:01.089303 2025-05-22 Closed Customer 6337 501756.7717170340 +6376 t 61 301782 24.991407 0.8102316514242993 Product description 6376 2024-01-23 14:03:01.089303 2025-05-10 Processing Customer 6376 154362.9384304880 +6399 f 82 715187 25.425884 0.8174226035006171 Product description 6399 2022-01-13 14:03:01.089303 2025-04-11 Processing Customer 6399 759926.2636414710 +6339 f 42 766288 17.811508 0.17546444007399842 Product description 6339 2023-08-22 14:03:01.089303 2025-02-23 Closed Customer 6339 432419.7252492890 +6381 f 18 616789 15.965877 0.053863359164342484 Product description 6381 2021-08-30 14:03:01.089303 2025-11-06 Cancelled Customer 6381 112475.5892638840 +6402 f 49 772373 57.320087 0.9031151739281924 Product description 6402 2022-11-02 14:03:01.089303 2024-01-21 Cancelled Customer 6402 114818.1488478100 +6341 f 47 931643 65.30524 0.9704928513236659 Product description 6341 2023-10-21 14:03:01.089303 2023-06-16 Closed Customer 6341 651922.8433698390 +6385 t 35 7653 0.53053886 0.6857254233502346 Product description 6385 2023-12-05 14:03:01.089303 2023-05-29 Processing Customer 6385 96496.0369075349 +6408 t 75 249985 43.443996 0.6009014146380629 Product description 6408 2022-07-11 14:03:01.089303 2025-03-11 Closed Customer 6408 48691.1060435915 +6342 f 89 830328 82.021965 0.5140143922767102 Product description 6342 2023-12-14 14:03:01.089303 2025-07-13 Closed Customer 6342 740621.1188632600 +6386 f 85 533940 72.719696 0.6616521737388084 Product description 6386 2023-09-11 14:03:01.089303 2024-05-31 Closed Customer 6386 676581.8277026380 +6409 f 33 303374 29.7929 0.2546509988016048 Product description 6409 2024-02-20 14:03:01.089303 2025-03-10 Closed Customer 6409 200363.5509591600 +6344 t 0 366846 37.33608 0.6708412691503973 Product description 6344 2024-01-12 14:03:01.089303 2023-09-20 Closed Customer 6344 707727.3166340840 +6389 f 3 459675 35.852665 0.08601390517563345 Product description 6389 2023-01-01 14:03:01.089303 2023-03-02 Closed Customer 6389 885575.9837785190 +6415 f 40 879110 83.972885 0.0905476563766463 Product description 6415 2023-04-01 14:03:01.089303 2024-08-16 Processing Customer 6415 378062.3195998770 +6345 t 4 30625 48.47506 0.7848686924131449 Product description 6345 2022-08-12 14:03:01.089303 2024-12-09 Closed Customer 6345 583349.7243767880 +6390 t 41 679660 10.6893835 0.9785669009884614 Product description 6390 2022-04-01 14:03:01.089303 2025-05-03 Closed Customer 6390 239923.2044559800 +6418 t 36 747551 45.924484 0.47700318817501497 Product description 6418 2021-10-13 14:03:01.089303 2023-03-30 Processing Customer 6418 451053.3428752200 +6347 t 56 175634 74.23602 0.5862696468713118 Product description 6347 2023-08-25 14:03:01.089303 2023-01-23 Closed Customer 6347 569096.3601392340 +6400 f 79 371005 1.0243309 0.051306286063763196 Product description 6400 2023-04-13 14:03:01.089303 2024-02-27 Processing Customer 6400 263498.8422491170 +6423 t 91 435012 69.71047 0.044213820905159906 Product description 6423 2021-10-22 14:03:01.089303 2023-07-17 Closed Customer 6423 608619.4353612060 +6348 t 28 601272 83.801216 0.05753122146596823 Product description 6348 2023-02-11 14:03:01.089303 2025-05-23 Closed Customer 6348 304063.3639430150 +6401 f 15 843006 50.711662 0.30613899737567607 Product description 6401 2024-05-13 14:03:01.089303 2025-04-14 Processing Customer 6401 650154.1046123020 +6426 f 78 191852 41.170845 0.40071963976462754 Product description 6426 2023-08-18 14:03:01.089303 2023-12-03 Closed Customer 6426 819271.5866091410 +6352 f 17 326770 43.7266 0.8394177131709988 Product description 6352 2022-02-01 14:03:01.089303 2024-10-01 Closed Customer 6352 719840.9540674570 +6405 t 54 789619 9.450762 0.1820875589050388 Product description 6405 2023-10-10 14:03:01.089303 2023-12-18 Processing Customer 6405 118443.3935508730 +6428 t 51 729321 15.883007 0.2535959515048667 Product description 6428 2021-10-13 14:03:01.089303 2023-09-25 Processing Customer 6428 26692.7952019955 +6353 t 16 93800 90.355225 0.2420501888024127 Product description 6353 2022-05-10 14:03:01.089303 2024-08-30 Processing Customer 6353 547869.1350091220 +6406 f 97 278883 31.57051 0.4070915404146902 Product description 6406 2021-08-25 14:03:01.089303 2025-05-18 Closed Customer 6406 430034.0848291490 +6429 t 64 374553 6.850251 0.8081015751699248 Product description 6429 2024-04-30 14:03:01.089303 2024-03-01 Closed Customer 6429 120135.5150880730 +6359 t 55 854572 84.18918 0.5168158636328535 Product description 6359 2023-09-27 14:03:01.089303 2025-10-04 Closed Customer 6359 317105.0711346130 +6407 t 36 38958 5.0791044 0.5735850179408004 Product description 6407 2022-10-07 14:03:01.089303 2025-01-31 Processing Customer 6407 958930.7748935420 +6436 f 98 449979 32.816307 0.6039399561147185 Product description 6436 2024-05-18 14:03:01.089303 2023-01-02 Closed Customer 6436 992192.2582480110 +6365 t 54 119740 22.792383 0.21105236244376968 Product description 6365 2023-03-01 14:03:01.089303 2023-11-14 Processing Customer 6365 563018.0729662580 +6417 f 64 725549 55.787964 0.8054367101689408 Product description 6417 2024-03-08 14:03:01.089303 2023-05-12 Processing Customer 6417 638811.6178487060 +6437 f 11 175303 55.42807 0.6872299293942881 Product description 6437 2022-11-24 14:03:01.089303 2025-04-04 Closed Customer 6437 500128.7042554380 +6368 t 97 533386 0.44322288 0.6118631712519651 Product description 6368 2023-03-08 14:03:01.089303 2024-04-09 Processing Customer 6368 623043.2387748760 +6419 t 27 448081 23.809452 0.15654813416844604 Product description 6419 2023-04-05 14:03:01.089303 2025-06-25 Processing Customer 6419 530055.9367953740 +6438 f 10 698175 92.36856 0.6539970147496668 Product description 6438 2021-11-02 14:03:01.089303 2023-08-23 Closed Customer 6438 159133.5133542490 +6369 f 5 435399 80.086525 0.8932285371326181 Product description 6369 2022-06-05 14:03:01.089303 2024-12-09 Processing Customer 6369 583923.3663364350 +6420 f 2 623104 90.12477 0.17479720104697805 Product description 6420 2023-07-05 14:03:01.089303 2024-02-18 Processing Customer 6420 500183.6056032440 +6443 t 85 48410 9.714968 0.3721044696132729 Product description 6443 2023-06-08 14:03:01.089303 2024-12-27 Closed Customer 6443 205664.8325841270 +6371 t 38 358972 39.566216 0.1436229610778348 Product description 6371 2022-01-12 14:03:01.089303 2024-04-25 Closed Customer 6371 537101.9351199710 +6422 t 75 883502 7.4632506 0.6143358616099448 Product description 6422 2023-10-20 14:03:01.089303 2023-02-23 Processing Customer 6422 310790.7424546110 +6445 f 52 889654 14.730566 0.19314130336050894 Product description 6445 2022-09-02 14:03:01.089303 2025-06-10 Closed Customer 6445 868251.2413915190 +6372 f 7 112414 72.64528 0.4233305982452755 Product description 6372 2021-12-12 14:03:01.089303 2024-07-26 Closed Customer 6372 761727.7153929930 +6425 t 69 818001 14.120618 0.7775177199869674 Product description 6425 2023-11-18 14:03:01.089303 2023-02-24 Closed Customer 6425 759065.3963994390 +6448 f 82 321516 63.50337 0.6563991116481525 Product description 6448 2023-05-09 14:03:01.089303 2025-04-05 Processing Customer 6448 797659.4224860990 +6374 f 0 18754 6.985894 0.796965743679916 Product description 6374 2024-07-01 14:03:01.089303 2023-06-02 Closed Customer 6374 302316.0450455650 +6430 f 67 493531 29.734869 0.22497398926611822 Product description 6430 2024-01-30 14:03:01.089303 2024-11-22 Closed Customer 6430 953746.9633278270 +6450 t 81 320963 27.898367 0.38558984774916283 Product description 6450 2023-06-29 14:03:01.089303 2024-04-14 Closed Customer 6450 570371.5077891050 +6378 t 71 344445 69.17383 0.5884837341770357 Product description 6378 2021-08-13 14:03:01.089303 2024-05-06 Closed Customer 6378 735280.2944960070 +6431 t 29 488117 36.018173 0.07034382513439397 Product description 6431 2021-11-01 14:03:01.089303 2025-10-21 Processing Customer 6431 466302.5565630260 +6451 f 37 55971 58.364452 0.052817391435379335 Product description 6451 2024-01-08 14:03:01.089303 2024-09-08 Processing Customer 6451 674224.7083479990 +6380 f 48 556377 11.096858 0.10401633459967385 Product description 6380 2022-05-27 14:03:01.089303 2024-06-05 Closed Customer 6380 286580.5832703290 +6432 f 50 473752 78.60036 0.11503256202634304 Product description 6432 2022-02-16 14:03:01.089303 2023-03-02 Cancelled Customer 6432 248658.9563551150 +6452 t 78 714269 73.196075 0.7274670860458379 Product description 6452 2023-04-24 14:03:01.089303 2025-07-22 Closed Customer 6452 890684.4242281550 +6382 f 11 824414 33.89302 0.22860517331408303 Product description 6382 2024-06-16 14:03:01.089303 2025-08-31 Closed Customer 6382 620141.0110900270 +6434 f 78 969967 61.342255 0.4761724845625075 Product description 6434 2024-02-06 14:03:01.089303 2024-03-26 Processing Customer 6434 865008.4884485310 +6453 t 29 372446 70.60207 0.6471202140658185 Product description 6453 2023-05-03 14:03:01.089303 2024-01-04 Processing Customer 6453 353480.8581977910 +6383 f 43 255974 18.330978 0.3945531795798125 Product description 6383 2023-11-01 14:03:01.089303 2024-01-04 Closed Customer 6383 96520.6417372499 +6439 f 30 120148 13.115562 0.716357227872269 Product description 6439 2024-06-11 14:03:01.089303 2023-05-06 Processing Customer 6439 825636.2049088890 +6454 f 10 44901 16.515354 0.9625197370534018 Product description 6454 2024-07-14 14:03:01.089303 2024-08-18 Closed Customer 6454 255402.2651089840 +6384 t 25 592782 74.85278 0.9426485865985548 Product description 6384 2022-11-08 14:03:01.089303 2023-10-23 Closed Customer 6384 710323.4127587970 +6441 t 8 540697 49.29976 0.6808338689145153 Product description 6441 2024-03-25 14:03:01.089303 2025-11-12 Processing Customer 6441 54633.8616293767 +6456 f 79 2543 20.609833 0.42539095340705657 Product description 6456 2023-08-18 14:03:01.089303 2025-12-04 Closed Customer 6456 855046.7528140540 +6391 f 23 556933 51.44744 0.7232210706445237 Product description 6391 2024-06-07 14:03:01.089303 2024-02-26 Closed Customer 6391 762085.6007822210 +6446 f 63 861203 76.85946 0.843120982749344 Product description 6446 2023-04-18 14:03:01.089303 2025-10-23 Processing Customer 6446 918544.1327058470 +6465 f 97 460139 70.29078 0.1205561569693181 Product description 6465 2022-11-02 14:03:01.089303 2025-09-11 Closed Customer 6465 304171.9219252030 +6392 t 79 451102 24.43315 0.7005813154920482 Product description 6392 2024-01-21 14:03:01.089303 2023-01-25 Processing Customer 6392 514456.7404601330 +6447 f 94 172863 53.203087 0.6635189245100683 Product description 6447 2022-09-10 14:03:01.089303 2025-10-20 Closed Customer 6447 656146.7915432860 +6471 f 53 284478 11.232164 0.8055085234177959 Product description 6471 2023-09-04 14:03:01.089303 2024-12-31 Processing Customer 6471 203011.9599274870 +6393 t 47 495244 8.620722 0.3640363885440614 Product description 6393 2023-04-19 14:03:01.089303 2025-02-14 Closed Customer 6393 757188.6204015430 +6458 t 63 753890 21.273355 0.728570825109248 Product description 6458 2022-01-05 14:03:01.089303 2025-06-08 Processing Customer 6458 541132.7898355720 +6472 f 15 792551 62.306496 0.5187288311068592 Product description 6472 2023-07-30 14:03:01.089303 2025-02-28 Closed Customer 6472 737822.8894686460 +6396 t 7 992499 57.54039 0.5573951703479487 Product description 6396 2024-03-20 14:03:01.089303 2023-09-30 Closed Customer 6396 315556.3235738870 +6461 t 21 294318 95.75926 0.014497704627967067 Product description 6461 2023-12-15 14:03:01.089303 2025-05-06 Processing Customer 6461 156252.7073619650 +6473 f 3 94291 74.63117 0.5402500005152966 Product description 6473 2024-02-18 14:03:01.089303 2025-08-18 Processing Customer 6473 384199.9945332830 +6398 t 62 703003 26.821928 0.5181945551726521 Product description 6398 2021-08-13 14:03:01.089303 2024-02-14 Closed Customer 6398 696575.8617678760 +6462 f 10 436403 27.803463 0.2553149259841696 Product description 6462 2023-10-15 14:03:01.089303 2023-02-18 Closed Customer 6462 204954.9068041470 +6474 t 44 123904 88.70284 0.47479430275487644 Product description 6474 2023-09-05 14:03:01.089303 2025-07-03 Processing Customer 6474 888486.9643612920 +6403 t 95 698698 48.1445 0.16962100831428373 Product description 6403 2021-09-28 14:03:01.089303 2023-11-16 Processing Customer 6403 385428.8231869420 +6467 t 7 50448 88.74532 0.677925482736125 Product description 6467 2024-05-10 14:03:01.089303 2024-04-08 Processing Customer 6467 157505.0715386300 +6482 f 16 24758 81.36156 0.4816985572650303 Product description 6482 2023-05-28 14:03:01.089303 2023-08-02 Closed Customer 6482 440537.9917334570 +6404 f 56 599115 62.45214 0.770765337820702 Product description 6404 2022-06-25 14:03:01.089303 2025-04-05 Closed Customer 6404 500743.3425133240 +6477 t 34 728321 28.489634 0.83564219306027 Product description 6477 2024-07-27 14:03:01.089303 2025-11-18 Closed Customer 6477 362706.2454079210 +6483 t 15 774191 27.305954 0.4642920007392384 Product description 6483 2024-05-16 14:03:01.089303 2025-11-07 Closed Customer 6483 437862.5612639270 +6410 f 91 459007 55.13985 0.8019579554063831 Product description 6410 2024-06-13 14:03:01.089303 2023-07-06 Processing Customer 6410 387818.8166114710 +6478 t 97 642199 59.341183 0.3035112602836243 Product description 6478 2022-04-02 14:03:01.089303 2023-09-10 Closed Customer 6478 862417.7291468340 +6488 t 64 989456 8.923535 0.5970726837261644 Product description 6488 2022-09-23 14:03:01.089303 2023-07-11 Closed Customer 6488 988701.0984598210 +6411 t 11 803107 37.949814 0.8572408280304664 Product description 6411 2023-01-14 14:03:01.089303 2023-03-13 Processing Customer 6411 56349.3646987112 +6480 f 44 586073 44.853035 0.16471139577597071 Product description 6480 2023-01-04 14:03:01.089303 2025-03-01 Processing Customer 6480 165246.9709400180 +6491 t 29 573453 38.737633 0.866627403079125 Product description 6491 2023-02-25 14:03:01.089303 2025-01-29 Processing Customer 6491 92579.0777460378 +6412 f 45 988371 81.32799 0.8225602968124583 Product description 6412 2024-05-23 14:03:01.089303 2024-07-10 Processing Customer 6412 658764.9409861740 +6481 f 75 943429 14.385908 0.23639068516495954 Product description 6481 2023-08-31 14:03:01.089303 2025-04-08 Closed Customer 6481 211434.9800977560 +6493 t 20 851875 18.375988 0.43772673650719796 Product description 6493 2021-10-18 14:03:01.089303 2024-01-25 Processing Customer 6493 657377.7773912110 +6413 f 56 497343 73.22397 0.15446613388879982 Product description 6413 2023-04-12 14:03:01.089303 2024-01-30 Cancelled Customer 6413 51735.5643094497 +6484 f 10 819017 62.120865 0.985770370381065 Product description 6484 2023-06-09 14:03:01.089303 2025-09-06 Closed Customer 6484 681705.9488820550 +6494 t 95 60886 54.586056 0.410396078867695 Product description 6494 2022-11-26 14:03:01.089303 2023-12-08 Closed Customer 6494 99534.1277174475 +6414 t 88 45308 55.781612 0.3971797194882285 Product description 6414 2022-07-24 14:03:01.089303 2025-10-19 Cancelled Customer 6414 252115.3951884190 +6486 f 78 860484 35.719254 0.2391882231568836 Product description 6486 2021-08-27 14:03:01.089303 2023-09-07 Closed Customer 6486 216428.5045612570 +6505 f 52 437404 80.34176 0.20953357946302376 Product description 6505 2022-12-14 14:03:01.089303 2025-10-16 Closed Customer 6505 354106.3728727140 +6416 f 70 517392 62.54862 0.9635170601961569 Product description 6416 2023-11-18 14:03:01.089303 2023-12-23 Closed Customer 6416 208243.5451796560 +6489 t 26 679785 42.70059 0.23344100480101204 Product description 6489 2023-07-21 14:03:01.089303 2025-05-26 Closed Customer 6489 688189.4065870430 +6506 t 43 476263 9.953724 0.08363869664922063 Product description 6506 2022-05-01 14:03:01.089303 2023-06-21 Processing Customer 6506 648142.7780194760 +6421 t 8 669464 17.715206 0.9405676333742683 Product description 6421 2021-09-03 14:03:01.089303 2023-05-14 Closed Customer 6421 1074.0236077353 +6490 f 82 708416 7.8881006 0.8010452031927251 Product description 6490 2022-07-22 14:03:01.089303 2023-10-14 Closed Customer 6490 127188.7643476720 +6510 t 66 673460 79.92688 0.038405276497893936 Product description 6510 2022-03-10 14:03:01.089303 2025-10-15 Closed Customer 6510 139390.2771700010 +6424 t 82 635692 43.34718 0.6053599593875454 Product description 6424 2024-02-14 14:03:01.089303 2025-11-01 Processing Customer 6424 801339.5322851980 +6496 t 68 67210 27.60719 0.7023137414808538 Product description 6496 2024-07-02 14:03:01.089303 2024-07-31 Processing Customer 6496 971805.7385942270 +6511 f 42 833333 70.48192 0.02339338761361276 Product description 6511 2021-09-05 14:03:01.089303 2023-08-13 Processing Customer 6511 63192.2257519193 +6427 t 27 790292 18.142813 0.6507868451192529 Product description 6427 2024-03-14 14:03:01.089303 2023-09-22 Closed Customer 6427 321287.0743224490 +6499 f 96 200143 84.42357 0.6385009835597479 Product description 6499 2023-06-25 14:03:01.089303 2024-01-17 Processing Customer 6499 512626.7024701790 +6513 f 79 679429 13.022813 0.7242202786282199 Product description 6513 2023-07-12 14:03:01.089303 2025-11-27 Closed Customer 6513 843560.4184485680 +6433 f 77 323729 40.906525 0.7350367339734056 Product description 6433 2022-10-10 14:03:01.089303 2023-04-11 Closed Customer 6433 698305.2415018700 +6501 t 80 586771 41.389977 0.4247355036195195 Product description 6501 2021-11-16 14:03:01.089303 2023-06-30 Closed Customer 6501 519268.4356326250 +6515 t 76 654884 87.82889 0.6598562183843377 Product description 6515 2022-10-20 14:03:01.089303 2025-06-30 Closed Customer 6515 297101.7076718990 +6435 t 25 293518 81.41913 0.1796412061239998 Product description 6435 2021-09-27 14:03:01.089303 2025-06-28 Processing Customer 6435 374895.4256174030 +6504 f 32 505322 59.319588 0.20617677248207755 Product description 6504 2024-06-06 14:03:01.089303 2024-04-05 Closed Customer 6504 22701.0321017431 +6516 f 72 468772 33.79386 0.6254131268048404 Product description 6516 2022-02-23 14:03:01.089303 2025-01-25 Processing Customer 6516 537596.1319555170 +6440 f 7 602054 22.889605 0.30527683455433774 Product description 6440 2023-06-20 14:03:01.089303 2024-07-20 Processing Customer 6440 951433.3606953760 +6507 t 85 481791 95.72319 0.621442558847864 Product description 6507 2023-09-27 14:03:01.089303 2024-02-25 Closed Customer 6507 612663.2445672870 +6521 t 49 906112 81.71214 0.8482432735370544 Product description 6521 2023-02-26 14:03:01.089303 2023-01-25 Cancelled Customer 6521 945424.2035509170 +6442 t 56 886656 44.06791 0.676529513671138 Product description 6442 2023-11-22 14:03:01.089303 2023-03-31 Closed Customer 6442 242031.1101971680 +6508 t 25 778789 5.2722282 0.32548339558492145 Product description 6508 2023-10-31 14:03:01.089303 2024-04-18 Closed Customer 6508 991163.7071660020 +6525 t 16 678870 87.133675 0.8981242993883853 Product description 6525 2022-10-14 14:03:01.089303 2023-02-08 Closed Customer 6525 299870.0343220090 +6444 f 77 490874 24.624348 0.6880526249254082 Product description 6444 2023-08-03 14:03:01.089303 2024-10-24 Closed Customer 6444 806191.3916636880 +6509 t 37 499333 52.752106 0.06490519695261199 Product description 6509 2021-12-19 14:03:01.089303 2023-05-09 Closed Customer 6509 591602.7820208280 +6536 t 97 681895 47.943882 0.3798599719080684 Product description 6536 2022-11-10 14:03:01.089303 2025-08-08 Closed Customer 6536 353957.7704082040 +6449 f 61 477582 18.731968 0.18342286817125952 Product description 6449 2024-03-25 14:03:01.089303 2025-05-29 Closed Customer 6449 108789.5003879780 +6514 f 73 893643 93.98687 0.41193834692526465 Product description 6514 2023-03-31 14:03:01.089303 2023-07-30 Closed Customer 6514 440922.8623581280 +6538 f 95 100967 19.108917 0.7254675915005748 Product description 6538 2022-11-02 14:03:01.089303 2025-08-29 Closed Customer 6538 882188.4158207030 +6455 t 61 317302 17.767624 0.8744489635743555 Product description 6455 2022-01-17 14:03:01.089303 2023-01-08 Closed Customer 6455 890809.4564885400 +6518 t 73 998771 42.871372 0.13685952720345895 Product description 6518 2022-11-27 14:03:01.089303 2025-11-23 Closed Customer 6518 166605.9906625460 +6543 f 53 746420 9.281292 0.6059927715905715 Product description 6543 2024-06-06 14:03:01.089303 2024-01-24 Processing Customer 6543 711454.3592589410 +6457 f 35 778090 10.204038 0.29986429322056196 Product description 6457 2022-07-03 14:03:01.089303 2023-11-26 Processing Customer 6457 190955.5213023640 +6519 f 65 166630 21.0569 0.8816416021199238 Product description 6519 2022-07-16 14:03:01.089303 2023-05-19 Processing Customer 6519 839135.1629795660 +6544 t 27 933149 60.524418 0.47295145063581856 Product description 6544 2024-01-10 14:03:01.089303 2023-05-25 Processing Customer 6544 473818.0310368240 +6459 t 18 397957 12.843935 0.9556749752785585 Product description 6459 2022-12-31 14:03:01.089303 2023-10-04 Closed Customer 6459 964477.2467864160 +6522 f 36 100258 47.014896 0.7030735087019089 Product description 6522 2023-01-26 14:03:01.089303 2025-04-04 Processing Customer 6522 691920.1066984330 +6548 f 80 262466 38.848103 0.5826267584204672 Product description 6548 2024-06-14 14:03:01.089303 2024-03-25 Closed Customer 6548 895409.6683301210 +6460 f 50 125953 32.200546 0.8681944319037989 Product description 6460 2022-05-28 14:03:01.089303 2024-11-24 Closed Customer 6460 540690.4368425600 +6523 f 32 224192 8.503737 0.681156724103797 Product description 6523 2022-07-03 14:03:01.089303 2025-09-03 Closed Customer 6523 822159.6770897080 +6551 t 98 276626 2.2747378 0.09076939887376057 Product description 6551 2023-12-21 14:03:01.089303 2024-02-23 Closed Customer 6551 87852.0335417612 +6463 f 74 258148 95.9771 0.06403600024278333 Product description 6463 2023-07-15 14:03:01.089303 2024-02-02 Closed Customer 6463 284391.0998220740 +6527 t 62 847149 22.729467 0.12012482643800482 Product description 6527 2022-07-19 14:03:01.089303 2024-10-28 Closed Customer 6527 689063.2624176900 +6554 f 98 462294 22.456165 0.5466013222518953 Product description 6554 2023-02-17 14:03:01.089303 2024-06-01 Closed Customer 6554 964393.8831851850 +6464 f 25 611961 27.11104 0.6466720910863124 Product description 6464 2022-12-13 14:03:01.089303 2024-10-03 Processing Customer 6464 635068.0349129400 +6529 f 9 932942 62.29832 0.18923156670934915 Product description 6529 2022-09-02 14:03:01.089303 2024-03-12 Closed Customer 6529 353459.6366279390 +6566 f 22 155689 95.66389 0.3562472401995507 Product description 6566 2023-08-09 14:03:01.089303 2024-12-17 Closed Customer 6566 197479.5904645350 +6466 t 70 513518 69.30164 0.7428028793623049 Product description 6466 2023-06-01 14:03:01.089303 2023-08-13 Processing Customer 6466 36661.6251448733 +6530 t 25 303776 31.07261 0.4466777289149384 Product description 6530 2023-03-24 14:03:01.089303 2023-10-13 Closed Customer 6530 320145.5412548460 +6570 t 28 993481 89.22561 0.12287353658293654 Product description 6570 2021-12-12 14:03:01.089303 2025-05-11 Processing Customer 6570 263193.1460014590 +6468 t 15 933093 4.341258 0.846594226972126 Product description 6468 2022-03-22 14:03:01.089303 2024-12-16 Closed Customer 6468 747434.1517371030 +6532 t 32 380297 75.62433 0.05085419107282618 Product description 6532 2022-07-22 14:03:01.089303 2024-06-17 Cancelled Customer 6532 662991.9148028130 +6571 t 78 218106 34.491104 0.9197816463887136 Product description 6571 2023-08-27 14:03:01.089303 2024-05-07 Closed Customer 6571 359086.1790860020 +6469 t 100 740089 9.08151 0.8786076592448246 Product description 6469 2022-10-17 14:03:01.089303 2023-07-20 Cancelled Customer 6469 517926.7043609490 +6533 f 60 82300 20.15832 0.7031670266660441 Product description 6533 2021-08-18 14:03:01.089303 2023-07-05 Closed Customer 6533 69150.9987029981 +6572 f 42 594054 16.279583 0.6552762654504036 Product description 6572 2023-04-28 14:03:01.089303 2024-07-17 Processing Customer 6572 469094.9697071040 +6470 f 26 153889 69.79281 0.8663546324035423 Product description 6470 2024-04-12 14:03:01.089303 2024-12-04 Closed Customer 6470 521063.7686485420 +6534 t 97 25911 12.746773 0.1717295196041846 Product description 6534 2022-12-29 14:03:01.089303 2023-01-04 Closed Customer 6534 779709.8240836780 +6581 t 45 966864 36.26462 0.45074492619680484 Product description 6581 2024-03-16 14:03:01.089303 2023-04-06 Processing Customer 6581 34609.4244000419 +6475 t 96 230137 25.526812 0.8182422672797927 Product description 6475 2023-09-22 14:03:01.089303 2025-02-14 Processing Customer 6475 906479.6496772550 +6535 t 68 155749 29.664457 0.3796586437392264 Product description 6535 2024-02-28 14:03:01.089303 2024-01-14 Processing Customer 6535 614531.4083227370 +6583 f 55 40231 45.633434 0.8722841911858765 Product description 6583 2024-05-18 14:03:01.089303 2023-09-14 Processing Customer 6583 79272.0590289555 +6476 t 18 483342 76.08193 0.07541943404123685 Product description 6476 2022-02-12 14:03:01.089303 2024-03-02 Closed Customer 6476 198423.0896858850 +6537 f 1 429762 52.10678 0.48568957215299235 Product description 6537 2023-08-11 14:03:01.089303 2023-02-26 Closed Customer 6537 584121.7433594000 +6585 f 6 886322 30.467669 0.03292191298874059 Product description 6585 2022-04-07 14:03:01.089303 2024-02-27 Closed Customer 6585 529641.2708698850 +6479 t 25 652274 2.7248564 0.05819817596046306 Product description 6479 2021-08-17 14:03:01.089303 2025-07-03 Processing Customer 6479 381550.7239301930 +6539 f 5 294524 51.497517 0.7792291667812137 Product description 6539 2022-06-15 14:03:01.089303 2025-02-22 Closed Customer 6539 239869.8310551490 +6588 t 65 499894 95.67179 0.16481989995009627 Product description 6588 2022-01-13 14:03:01.089303 2024-11-07 Processing Customer 6588 874943.6403952340 +6485 t 50 516082 39.807568 0.5191657972520289 Product description 6485 2022-06-25 14:03:01.089303 2025-04-15 Processing Customer 6485 305213.9189650340 +6542 f 36 75727 41.03758 0.17622133718086275 Product description 6542 2024-03-01 14:03:01.089303 2025-06-05 Closed Customer 6542 903012.3748552480 +6590 t 37 311601 4.857191 0.32574793938995583 Product description 6590 2021-12-15 14:03:01.089303 2023-02-23 Processing Customer 6590 770152.3218909290 +6487 f 59 622246 61.588997 0.10527241805183252 Product description 6487 2023-09-23 14:03:01.089303 2023-11-13 Closed Customer 6487 70877.7323124998 +6547 f 40 957105 38.42811 0.6081519499926813 Product description 6547 2024-08-01 14:03:01.089303 2023-03-03 Cancelled Customer 6547 597800.2256344940 +6592 f 37 56382 48.879578 0.6301196192382221 Product description 6592 2023-08-31 14:03:01.089303 2023-10-06 Processing Customer 6592 331728.2964359160 +6492 t 76 944743 11.88383 0.10296447569092493 Product description 6492 2023-05-11 14:03:01.089303 2023-11-10 Closed Customer 6492 829021.6427218660 +6549 f 63 136236 61.30583 0.6092362577378658 Product description 6549 2022-10-01 14:03:01.089303 2025-11-22 Closed Customer 6549 153543.1704136840 +6596 t 79 978004 41.386658 0.6529453892700587 Product description 6596 2023-02-10 14:03:01.089303 2025-09-21 Processing Customer 6596 443254.0059108550 +6495 t 20 199071 45.740345 0.08862807655217608 Product description 6495 2022-10-03 14:03:01.089303 2023-12-25 Closed Customer 6495 154673.6794113070 +6550 t 90 140372 73.658 0.21799637363113433 Product description 6550 2023-07-01 14:03:01.089303 2025-04-15 Processing Customer 6550 692494.2177876760 +6597 f 88 165209 38.66611 0.6781075533550975 Product description 6597 2023-11-13 14:03:01.089303 2024-12-15 Closed Customer 6597 71292.7610286478 +6497 f 63 775100 74.76011 0.0768530049063969 Product description 6497 2023-03-31 14:03:01.089303 2024-07-24 Closed Customer 6497 374687.0916560670 +6552 f 78 938145 60.37212 0.3149632519304397 Product description 6552 2022-02-25 14:03:01.089303 2024-05-31 Processing Customer 6552 200506.6806687100 +6598 t 84 81845 66.21743 0.03477438987941639 Product description 6598 2022-11-04 14:03:01.089303 2025-04-01 Closed Customer 6598 596616.6512535370 +6498 t 17 782933 16.181295 0.45312203345860524 Product description 6498 2023-08-02 14:03:01.089303 2023-08-04 Closed Customer 6498 973411.1978418870 +6555 f 87 177222 45.83943 0.20641550004593157 Product description 6555 2022-09-04 14:03:01.089303 2023-01-05 Closed Customer 6555 875898.1994600600 +6599 f 60 632695 26.058622 0.4055755716975611 Product description 6599 2023-04-13 14:03:01.089303 2023-02-06 Processing Customer 6599 326617.4699494010 +6500 t 47 707818 26.208294 0.1865424652100387 Product description 6500 2022-06-15 14:03:01.089303 2025-12-04 Processing Customer 6500 771272.6648473410 +6557 t 10 429707 90.98547 0.16720492557310607 Product description 6557 2022-04-07 14:03:01.089303 2023-05-23 Closed Customer 6557 621318.3055395750 +6601 t 11 167173 19.687635 0.8778098927501219 Product description 6601 2024-04-30 14:03:01.089303 2025-05-07 Closed Customer 6601 788159.3849452280 +6502 f 49 130377 16.035486 0.3630074495542388 Product description 6502 2022-08-05 14:03:01.089303 2025-11-07 Processing Customer 6502 8577.9900697709 +6558 t 75 769320 68.36604 0.5478039578303786 Product description 6558 2024-06-14 14:03:01.089303 2023-12-06 Closed Customer 6558 434642.6265982260 +6604 f 36 25423 50.668198 0.44783283304997923 Product description 6604 2023-11-21 14:03:01.089303 2025-01-18 Processing Customer 6604 97137.1927046540 +6503 t 4 254712 12.274138 0.3986540959113114 Product description 6503 2023-01-09 14:03:01.089303 2023-07-02 Cancelled Customer 6503 414894.4693918400 +6564 f 77 2714 88.26348 0.929005657855388 Product description 6564 2024-01-26 14:03:01.089303 2023-08-04 Closed Customer 6564 897848.5414281040 +6605 f 56 835177 24.875458 0.16384675354505873 Product description 6605 2022-05-03 14:03:01.089303 2023-05-23 Cancelled Customer 6605 735929.2122304450 +6512 t 56 395220 43.990604 0.7746487772018575 Product description 6512 2022-11-21 14:03:01.089303 2024-08-01 Closed Customer 6512 127462.4884143020 +6565 t 66 1138 58.96374 0.22757890629143773 Product description 6565 2022-07-26 14:03:01.089303 2025-03-21 Processing Customer 6565 155949.1359599220 +6606 t 68 407664 35.09347 0.9763602017506194 Product description 6606 2023-01-06 14:03:01.089303 2025-10-07 Processing Customer 6606 430901.2766142710 +6517 t 48 415906 23.813498 0.4075690773232772 Product description 6517 2023-11-06 14:03:01.089303 2024-04-22 Closed Customer 6517 240782.6088514040 +6567 t 68 338312 4.185657 0.8973194145160797 Product description 6567 2021-12-11 14:03:01.089303 2025-09-21 Closed Customer 6567 589778.6453817840 +6607 f 96 116743 84.273926 0.5191993296671207 Product description 6607 2023-08-10 14:03:01.089303 2024-10-26 Processing Customer 6607 542781.6140431650 +6520 t 67 218906 29.17929 0.9761165995356968 Product description 6520 2024-05-05 14:03:01.089303 2024-04-04 Closed Customer 6520 18866.5943073758 +6568 f 95 705788 32.72026 0.12462375366976275 Product description 6568 2022-11-29 14:03:01.089303 2024-07-11 Processing Customer 6568 61706.3717068120 +6609 t 0 885518 21.45207 0.45301205250443033 Product description 6609 2024-02-29 14:03:01.089303 2025-07-25 Processing Customer 6609 522146.7899060530 +6524 f 87 866874 98.29605 0.6525024145719449 Product description 6524 2024-06-17 14:03:01.089303 2025-03-18 Processing Customer 6524 124830.3981580530 +6569 f 8 87745 25.955038 0.11368778230528065 Product description 6569 2023-06-30 14:03:01.089303 2025-07-08 Closed Customer 6569 791170.0878638190 +6610 t 98 483747 63.047874 0.7050341500938835 Product description 6610 2022-02-15 14:03:01.089303 2023-07-20 Processing Customer 6610 328124.8267356320 +6526 t 12 888264 66.830185 0.04887805149217783 Product description 6526 2024-07-06 14:03:01.089303 2025-12-27 Closed Customer 6526 860062.3120677890 +6574 t 71 305147 96.73954 0.029795161855201258 Product description 6574 2023-06-24 14:03:01.089303 2023-05-12 Processing Customer 6574 21390.8033235484 +6611 f 79 108237 22.876802 0.3820720330889422 Product description 6611 2022-06-16 14:03:01.089303 2025-05-07 Processing Customer 6611 664715.2379069400 +6528 t 78 335385 0.62731826 0.5939951870676943 Product description 6528 2024-05-15 14:03:01.089303 2025-10-05 Processing Customer 6528 54836.9393921035 +6575 f 96 653837 49.96212 0.5260152087276886 Product description 6575 2021-09-28 14:03:01.089303 2023-06-08 Processing Customer 6575 438680.3245548950 +6612 f 8 790360 29.33164 0.8737570182743504 Product description 6612 2022-10-24 14:03:01.089303 2025-05-18 Processing Customer 6612 113777.7229545380 +6531 f 52 36436 93.12232 0.48896870373205203 Product description 6531 2024-07-08 14:03:01.089303 2025-10-26 Closed Customer 6531 642125.7339494770 +6577 f 15 185314 41.36457 0.5325801214119359 Product description 6577 2023-01-26 14:03:01.089303 2023-04-20 Processing Customer 6577 303343.0042998260 +6615 t 22 422202 20.91496 0.7195702318973183 Product description 6615 2022-02-12 14:03:01.089303 2024-05-04 Processing Customer 6615 6447.5987471937 +6540 t 55 985091 63.8152 0.9818862836339584 Product description 6540 2023-11-02 14:03:01.089303 2025-02-28 Closed Customer 6540 518765.2046243730 +6578 t 22 623183 85.730484 0.24329883270252495 Product description 6578 2022-06-14 14:03:01.089303 2023-10-03 Processing Customer 6578 339569.1609446060 +6618 f 6 290511 90.097115 0.3859224176402911 Product description 6618 2023-12-10 14:03:01.089303 2023-07-16 Closed Customer 6618 197865.4711722070 +6541 t 19 783227 79.82949 0.5845923994006306 Product description 6541 2023-02-07 14:03:01.089303 2025-03-20 Closed Customer 6541 156526.9606663620 +6579 t 13 779834 24.437819 0.8381725461472733 Product description 6579 2021-09-05 14:03:01.089303 2025-04-12 Closed Customer 6579 296429.5448499500 +6621 t 6 189785 6.1162944 0.24577091543786977 Product description 6621 2023-07-06 14:03:01.089303 2024-10-03 Closed Customer 6621 381652.8134204660 +6545 f 97 830492 14.379945 0.7590667101666817 Product description 6545 2023-04-02 14:03:01.089303 2024-02-26 Closed Customer 6545 681455.9691530770 +6584 f 44 472714 25.378208 0.4863710058867987 Product description 6584 2023-03-28 14:03:01.089303 2024-11-29 Closed Customer 6584 108383.5442614710 +6623 t 31 166861 39.284805 0.5789245344909126 Product description 6623 2023-06-11 14:03:01.089303 2025-12-29 Closed Customer 6623 96292.1750163304 +6546 f 13 277543 4.752951 0.6842423485706881 Product description 6546 2024-02-18 14:03:01.089303 2023-05-01 Processing Customer 6546 403358.0489329370 +6586 f 64 716626 38.672085 0.580096044710043 Product description 6586 2021-08-08 14:03:01.089303 2023-03-10 Cancelled Customer 6586 693679.4692960680 +6624 f 39 551586 38.603737 0.3175590694398629 Product description 6624 2021-11-23 14:03:01.089303 2025-01-07 Processing Customer 6624 132574.8547614510 +6553 f 91 780022 26.685661 0.4366967675394626 Product description 6553 2023-06-22 14:03:01.089303 2023-12-03 Processing Customer 6553 394930.7174284510 +6587 t 68 372 81.84218 0.5173010967355012 Product description 6587 2023-07-22 14:03:01.089303 2023-11-16 Closed Customer 6587 46876.0058014261 +6625 f 56 446942 84.06019 0.6056602185594393 Product description 6625 2023-08-12 14:03:01.089303 2023-11-10 Closed Customer 6625 430658.3965422990 +6556 f 78 398883 85.058876 0.5205366660113633 Product description 6556 2022-05-02 14:03:01.089303 2025-08-14 Closed Customer 6556 12155.6737656263 +6589 t 90 944171 92.79753 0.03358806683073112 Product description 6589 2021-11-27 14:03:01.089303 2024-10-11 Processing Customer 6589 245928.1622177760 +6629 f 2 682825 78.980064 0.7795019698331735 Product description 6629 2023-03-23 14:03:01.089303 2024-07-06 Processing Customer 6629 567800.2906032660 +6559 t 68 233438 95.82601 0.6925348142912959 Product description 6559 2022-12-28 14:03:01.089303 2025-11-24 Processing Customer 6559 563374.2675909870 +6591 f 87 638614 39.648018 0.39548804063125687 Product description 6591 2022-01-26 14:03:01.089303 2023-01-22 Closed Customer 6591 755910.4773863550 +6630 f 9 904036 9.947614 0.5501460729179577 Product description 6630 2021-10-07 14:03:01.089303 2025-03-09 Processing Customer 6630 549003.6160146730 +6560 f 90 215804 45.818813 0.606772603763158 Product description 6560 2023-07-10 14:03:01.089303 2023-04-07 Processing Customer 6560 771171.5958311840 +6594 t 28 862728 2.3332024 0.9841097207745264 Product description 6594 2024-03-29 14:03:01.089303 2023-07-12 Closed Customer 6594 677796.9338989290 +6631 f 69 315463 96.45444 0.7332377401600176 Product description 6631 2023-03-25 14:03:01.089303 2025-01-09 Closed Customer 6631 294969.4411664370 +6561 t 94 388859 50.479954 0.6136348715584639 Product description 6561 2023-03-10 14:03:01.089303 2024-01-02 Closed Customer 6561 586833.5697777240 +6608 t 35 191881 76.64918 0.045145102324674724 Product description 6608 2023-04-09 14:03:01.089303 2024-06-19 Closed Customer 6608 235088.3071748240 +6633 t 57 117654 99.1684 0.3734575263851987 Product description 6633 2021-12-09 14:03:01.089303 2025-11-07 Processing Customer 6633 162156.4212428270 +6562 t 57 36388 5.024154 0.5403919929385914 Product description 6562 2023-03-15 14:03:01.089303 2023-03-18 Processing Customer 6562 896928.0634350200 +6616 t 68 968521 99.47874 0.9950378481055964 Product description 6616 2022-04-22 14:03:01.089303 2025-04-22 Closed Customer 6616 112550.5404841610 +6635 t 26 150388 56.422165 0.5829100211664375 Product description 6635 2021-09-07 14:03:01.089303 2025-02-19 Processing Customer 6635 154751.5512880080 +6563 f 57 463008 51.509743 0.6371967254172013 Product description 6563 2022-09-22 14:03:01.089303 2024-09-21 Closed Customer 6563 379279.3933607610 +6617 t 93 44976 14.236407 0.8148529271730425 Product description 6617 2024-02-15 14:03:01.089303 2024-05-22 Processing Customer 6617 601879.6770668220 +6640 f 40 20784 49.508694 0.046294295557007814 Product description 6640 2023-06-19 14:03:01.089303 2025-08-28 Cancelled Customer 6640 961455.3452690480 +6573 t 69 363602 24.235277 0.5532762697637672 Product description 6573 2022-08-22 14:03:01.089303 2025-01-24 Closed Customer 6573 212672.7750802430 +6619 f 89 631742 24.319092 0.11528607865501783 Product description 6619 2023-10-29 14:03:01.089303 2023-05-15 Closed Customer 6619 365206.5340048230 +6647 t 68 911865 26.044445 0.1665427609876815 Product description 6647 2023-06-17 14:03:01.089303 2025-05-02 Processing Customer 6647 63466.7152472694 +6576 t 38 32656 77.46642 0.9242794584150893 Product description 6576 2023-05-30 14:03:01.089303 2024-08-13 Closed Customer 6576 180741.4915732010 +6620 f 76 502471 91.821434 0.3293315740641205 Product description 6620 2022-01-03 14:03:01.089303 2023-09-14 Processing Customer 6620 603734.7252171690 +6650 f 1 138673 81.47482 0.5898440712600248 Product description 6650 2022-02-02 14:03:01.089303 2024-10-26 Closed Customer 6650 454631.0529729890 +6580 f 2 252898 28.274454 0.25418573162806624 Product description 6580 2024-05-13 14:03:01.089303 2025-01-26 Processing Customer 6580 21020.5443973521 +6622 f 9 319599 27.29445 0.8771899584541814 Product description 6622 2023-06-14 14:03:01.089303 2023-12-15 Closed Customer 6622 650964.0187128660 +6651 t 54 962779 77.58731 0.5969103315851072 Product description 6651 2021-08-22 14:03:01.089303 2023-04-03 Processing Customer 6651 253711.5870139920 +6582 t 87 983091 94.06971 0.4556128100867092 Product description 6582 2022-07-08 14:03:01.089303 2024-02-21 Closed Customer 6582 396659.3810499860 +6626 t 46 208467 13.529194 0.48812529143172156 Product description 6626 2021-11-12 14:03:01.089303 2023-01-01 Closed Customer 6626 644223.9015405600 +6656 t 14 831829 3.0026755 0.6642753736717495 Product description 6656 2022-11-26 14:03:01.089303 2023-02-03 Processing Customer 6656 821097.6366756210 +6593 f 62 441919 85.73268 0.7654821623173795 Product description 6593 2024-07-22 14:03:01.089303 2023-10-12 Closed Customer 6593 809862.9071448830 +6627 t 72 117703 26.509771 0.6295787673787316 Product description 6627 2022-09-04 14:03:01.089303 2023-06-26 Closed Customer 6627 201702.5693533970 +6664 t 83 545319 65.5402 0.19240480956185024 Product description 6664 2023-10-11 14:03:01.089303 2025-06-05 Closed Customer 6664 541679.8999584920 +6595 f 29 58870 33.425392 0.6576807381729175 Product description 6595 2024-04-24 14:03:01.089303 2024-08-27 Closed Customer 6595 540429.1611646100 +6632 t 68 366821 99.22755 0.5682370934049956 Product description 6632 2023-09-28 14:03:01.089303 2025-08-18 Closed Customer 6632 561981.3657476310 +6666 t 89 201552 33.575 0.7467543952387032 Product description 6666 2022-12-19 14:03:01.089303 2023-05-08 Closed Customer 6666 444086.8230884720 +6600 f 67 929831 57.600403 0.30690949417074975 Product description 6600 2022-05-26 14:03:01.089303 2025-11-06 Processing Customer 6600 506894.1524129760 +6642 t 80 406232 17.668333 0.9156122280593308 Product description 6642 2022-05-08 14:03:01.089303 2023-08-07 Closed Customer 6642 163676.6260884280 +6670 f 21 569404 55.08588 0.25924862673433324 Product description 6670 2022-06-06 14:03:01.089303 2024-02-06 Cancelled Customer 6670 338954.5695409880 +6602 t 86 601605 70.33119 0.4570533405931805 Product description 6602 2024-08-01 14:03:01.089303 2025-06-10 Closed Customer 6602 20535.8861774556 +6646 t 11 639580 33.72286 0.06245108355540907 Product description 6646 2023-07-03 14:03:01.089303 2024-10-13 Closed Customer 6646 835184.9732153800 +6673 t 64 979400 74.59052 0.9253192582149232 Product description 6673 2023-04-10 14:03:01.089303 2025-07-11 Processing Customer 6673 61204.6278669212 +6603 f 89 189222 27.430038 0.30666155112099247 Product description 6603 2022-12-05 14:03:01.089303 2023-12-18 Closed Customer 6603 360319.2096247130 +6648 f 1 190237 37.00846 0.27197211956327294 Product description 6648 2021-12-01 14:03:01.089303 2024-07-15 Closed Customer 6648 478864.9398175370 +6681 f 74 793729 99.37744 0.05839300215584231 Product description 6681 2022-03-27 14:03:01.089303 2023-03-31 Closed Customer 6681 439508.9702881730 +6613 t 32 718480 10.411929 0.6936772154567343 Product description 6613 2024-02-16 14:03:01.089303 2023-03-28 Processing Customer 6613 697929.9546275120 +6652 f 32 386602 8.736151 0.6619702747307983 Product description 6652 2023-11-06 14:03:01.089303 2024-03-19 Closed Customer 6652 212084.2565441200 +6685 t 21 859215 47.42698 0.5451229314209165 Product description 6685 2022-05-24 14:03:01.089303 2025-09-09 Closed Customer 6685 554935.0311135510 +6614 f 2 925116 81.78509 0.7978719529568217 Product description 6614 2021-12-18 14:03:01.089303 2023-07-10 Processing Customer 6614 563077.0419242100 +6654 t 40 993331 90.60675 0.007948424829493206 Product description 6654 2023-06-27 14:03:01.089303 2023-09-30 Closed Customer 6654 988861.1858306400 +6688 f 94 916591 57.581306 0.6685887946909936 Product description 6688 2024-03-28 14:03:01.089303 2025-05-11 Processing Customer 6688 687895.5316492750 +6628 f 5 233387 88.73947 0.18719569504091638 Product description 6628 2024-03-10 14:03:01.089303 2023-11-25 Processing Customer 6628 491848.8575965090 +6655 f 65 240883 53.554966 0.20151684902251787 Product description 6655 2022-04-24 14:03:01.089303 2023-02-04 Processing Customer 6655 686258.7396082100 +6690 t 58 823102 14.098585 0.49239091395261525 Product description 6690 2021-10-31 14:03:01.089303 2025-06-14 Processing Customer 6690 954476.7816205780 +6634 f 36 797322 93.33105 0.801276770177207 Product description 6634 2021-10-06 14:03:01.089303 2024-04-06 Closed Customer 6634 924959.2475658450 +6658 t 55 57431 16.000809 0.7188863070992824 Product description 6658 2022-04-28 14:03:01.089303 2023-04-08 Closed Customer 6658 389218.5055737340 +6691 f 72 266556 9.585837 0.6498244403256912 Product description 6691 2022-05-25 14:03:01.089303 2023-07-27 Closed Customer 6691 440900.8003764110 +6636 f 46 350569 91.56728 0.0976795022138397 Product description 6636 2021-08-23 14:03:01.089303 2023-07-23 Processing Customer 6636 685641.4929530100 +6659 f 8 728659 24.394468 0.803166954499595 Product description 6659 2024-07-15 14:03:01.089303 2025-07-18 Closed Customer 6659 178423.2287691520 +6700 t 89 660057 15.201936 0.8324147062602769 Product description 6700 2023-03-28 14:03:01.089303 2025-05-15 Closed Customer 6700 166597.7821855830 +6637 t 96 103633 95.092995 0.6070083129981434 Product description 6637 2024-05-20 14:03:01.089303 2023-04-22 Closed Customer 6637 529179.0164756450 +6661 f 90 5582 98.04976 0.5071529901260305 Product description 6661 2023-11-06 14:03:01.089303 2024-10-03 Processing Customer 6661 439920.2883104710 +6704 f 56 24969 92.51005 0.8587749674570837 Product description 6704 2022-04-29 14:03:01.089303 2025-07-28 Processing Customer 6704 150019.7436161560 +6638 t 100 919561 39.19121 0.7223505567336623 Product description 6638 2023-04-19 14:03:01.089303 2024-08-29 Closed Customer 6638 283985.1689437720 +6665 f 56 781156 55.922966 0.586024807462941 Product description 6665 2024-02-13 14:03:01.089303 2023-05-10 Closed Customer 6665 204889.7251872040 +6705 f 20 810959 75.908905 0.21077619693545202 Product description 6705 2022-06-08 14:03:01.089303 2023-06-06 Processing Customer 6705 249086.0010800090 +6639 f 80 407573 17.773163 0.995786329917717 Product description 6639 2022-05-18 14:03:01.089303 2024-02-03 Closed Customer 6639 763226.9917437430 +6667 t 18 105452 10.622832 0.08715657226959195 Product description 6667 2023-01-19 14:03:01.089303 2024-01-25 Processing Customer 6667 680899.7791205900 +6715 t 10 711855 40.04406 0.019154118541482745 Product description 6715 2022-09-04 14:03:01.089303 2024-04-27 Closed Customer 6715 990431.8155063410 +6641 f 22 581820 18.897697 0.4575472167180301 Product description 6641 2024-06-24 14:03:01.089303 2023-10-18 Cancelled Customer 6641 281869.7066307760 +6671 f 86 38908 96.60044 0.434607623123064 Product description 6671 2022-08-29 14:03:01.089303 2023-10-26 Processing Customer 6671 422067.6053415000 +6717 t 4 486990 81.90956 0.6396346733583407 Product description 6717 2022-06-15 14:03:01.089303 2025-03-25 Processing Customer 6717 167820.9643113390 +6643 f 21 185649 7.621806 0.8252979561420517 Product description 6643 2024-07-13 14:03:01.089303 2024-10-14 Cancelled Customer 6643 114991.5528496590 +6672 t 80 881352 40.980675 0.3040409981843766 Product description 6672 2024-06-11 14:03:01.089303 2023-02-22 Closed Customer 6672 877654.9094906980 +6718 t 24 548849 33.7217 0.5604697872673121 Product description 6718 2023-08-11 14:03:01.089303 2023-07-29 Closed Customer 6718 376141.5846869060 +6644 t 9 95870 8.76286 0.34607929876628063 Product description 6644 2024-06-04 14:03:01.089303 2023-11-04 Closed Customer 6644 855674.4858126210 +6674 t 4 16287 41.994682 0.549865296286363 Product description 6674 2024-02-17 14:03:01.089303 2023-01-30 Processing Customer 6674 968080.0364487290 +6723 t 91 433485 83.968895 0.5859016574765654 Product description 6723 2024-05-04 14:03:01.089303 2025-09-08 Processing Customer 6723 965828.7527766800 +6645 f 25 718622 44.042194 0.7775527169420151 Product description 6645 2024-04-20 14:03:01.089303 2024-12-21 Closed Customer 6645 38476.9159675642 +6676 t 15 454206 93.04695 0.7166569061950412 Product description 6676 2024-02-07 14:03:01.089303 2024-05-24 Closed Customer 6676 239009.9042236040 +6730 f 35 835243 77.745735 0.3941697384781868 Product description 6730 2022-06-10 14:03:01.089303 2024-01-26 Closed Customer 6730 846112.1564436520 +6649 t 73 208473 87.90273 0.3641872055630806 Product description 6649 2024-05-14 14:03:01.089303 2025-12-13 Processing Customer 6649 880741.4603779120 +6689 t 11 622570 25.691338 0.031573359347980556 Product description 6689 2023-09-13 14:03:01.089303 2025-01-21 Processing Customer 6689 473765.5419567840 +6731 f 34 865828 51.31964 0.29129457356655664 Product description 6731 2024-07-07 14:03:01.089303 2024-12-29 Closed Customer 6731 757365.6722307120 +6653 t 68 880389 32.52044 0.04495135489965563 Product description 6653 2022-05-22 14:03:01.089303 2024-10-25 Closed Customer 6653 738083.2343211520 +6692 f 16 611463 79.179016 0.1055559271196671 Product description 6692 2024-01-05 14:03:01.089303 2023-08-17 Closed Customer 6692 705594.5360193580 +6732 t 74 333934 69.1411 0.5221516041475134 Product description 6732 2022-07-12 14:03:01.089303 2023-02-06 Processing Customer 6732 567148.7308698030 +6657 t 6 292987 88.21067 0.8356017475333566 Product description 6657 2021-10-18 14:03:01.089303 2023-10-16 Processing Customer 6657 792013.1230365610 +6693 t 28 579166 18.477459 0.0760161201333247 Product description 6693 2023-09-04 14:03:01.089303 2023-11-23 Processing Customer 6693 998714.5221823290 +6735 f 85 711094 67.283104 0.10843582245570005 Product description 6735 2023-06-12 14:03:01.089303 2025-10-16 Closed Customer 6735 752285.3892351190 +6660 t 96 304535 1.3140974 0.9363798230238878 Product description 6660 2023-06-30 14:03:01.089303 2023-07-11 Closed Customer 6660 925573.5977714750 +6694 t 69 20467 44.118294 0.3404902937475782 Product description 6694 2023-01-15 14:03:01.089303 2023-09-30 Processing Customer 6694 42903.1893643348 +6739 f 87 464131 35.576073 0.6348982885985812 Product description 6739 2024-05-06 14:03:01.089303 2023-04-14 Processing Customer 6739 886305.1718775100 +6662 f 50 328465 24.899961 0.17111051094901697 Product description 6662 2022-04-14 14:03:01.089303 2023-04-10 Closed Customer 6662 497812.9384890830 +6696 f 66 736137 54.891354 0.613145589405768 Product description 6696 2021-08-05 14:03:01.089303 2024-10-20 Closed Customer 6696 741881.6789601020 +6741 t 91 330341 0.21326537 0.4826113769665987 Product description 6741 2023-03-14 14:03:01.089303 2024-10-10 Closed Customer 6741 775744.2835320130 +6663 f 9 589745 59.41242 0.7511063595065828 Product description 6663 2023-05-16 14:03:01.089303 2025-02-09 Processing Customer 6663 729318.7276082160 +6697 f 45 75060 17.677652 0.45675939190746817 Product description 6697 2024-03-09 14:03:01.089303 2024-04-05 Processing Customer 6697 216741.9708041760 +6744 t 36 344133 88.34774 0.6417973099629428 Product description 6744 2021-11-16 14:03:01.089303 2024-10-26 Processing Customer 6744 456227.4836199830 +6668 f 83 910109 10.949151 0.29955374369879095 Product description 6668 2023-07-24 14:03:01.089303 2023-07-12 Closed Customer 6668 177517.5427451710 +6699 f 72 683637 47.79527 0.27561240966466727 Product description 6699 2024-07-03 14:03:01.089303 2024-07-06 Closed Customer 6699 474662.0033768100 +6745 f 91 806379 75.9144 0.17540533878425535 Product description 6745 2021-09-01 14:03:01.089303 2024-01-09 Processing Customer 6745 398541.6190904870 +6669 f 3 45483 81.91616 0.3860572260688322 Product description 6669 2022-03-22 14:03:01.089303 2023-12-22 Processing Customer 6669 993742.7742389530 +6701 t 97 810545 39.111626 0.9763942065712712 Product description 6701 2022-02-27 14:03:01.089303 2023-10-03 Processing Customer 6701 351980.7757721020 +6746 t 31 456454 31.62243 0.6784555650749589 Product description 6746 2023-08-19 14:03:01.089303 2023-06-22 Processing Customer 6746 381778.6633946840 +6675 f 41 754903 84.13577 0.4509094938252183 Product description 6675 2024-05-22 14:03:01.089303 2024-02-28 Closed Customer 6675 830130.4429035030 +6702 f 54 837391 51.205257 0.4891940556957408 Product description 6702 2024-03-07 14:03:01.089303 2025-01-23 Closed Customer 6702 306690.5747738420 +6748 t 83 110714 81.21647 0.18469182004268347 Product description 6748 2022-09-10 14:03:01.089303 2025-02-01 Processing Customer 6748 835051.4449133400 +6677 t 43 118306 0.38881412 0.6520075849589553 Product description 6677 2021-11-26 14:03:01.089303 2025-10-04 Closed Customer 6677 861873.4302785360 +6707 t 52 918566 12.285476 0.10239855223022687 Product description 6707 2022-06-01 14:03:01.089303 2025-06-28 Processing Customer 6707 138931.3053960530 +6750 t 91 95684 57.71583 0.6145998441117122 Product description 6750 2022-07-20 14:03:01.089303 2024-05-21 Closed Customer 6750 229298.5858890120 +6678 t 7 985396 7.4643316 0.9311540968441783 Product description 6678 2022-01-18 14:03:01.089303 2023-09-14 Processing Customer 6678 388290.6645414510 +6708 f 10 16698 88.12984 0.5292946557049802 Product description 6708 2023-06-10 14:03:01.089303 2025-08-16 Closed Customer 6708 696220.1997205600 +6755 t 14 726905 94.8482 0.22652584617940974 Product description 6755 2024-03-12 14:03:01.089303 2024-05-28 Processing Customer 6755 527883.4650601500 +6679 t 44 123098 84.03673 0.17676316452949337 Product description 6679 2022-07-24 14:03:01.089303 2023-05-08 Processing Customer 6679 987328.1938316870 +6710 t 54 751475 39.542778 0.9989865883518547 Product description 6710 2022-08-07 14:03:01.089303 2025-02-09 Closed Customer 6710 657129.3326163180 +6763 f 25 374327 76.4623 0.5166534518050732 Product description 6763 2022-08-20 14:03:01.089303 2025-09-18 Closed Customer 6763 187854.4352022260 +6680 t 41 455094 4.5249386 0.4956086842254983 Product description 6680 2024-01-22 14:03:01.089303 2025-05-04 Processing Customer 6680 715661.1118056370 +6720 f 29 547061 11.614624 0.5085864422676636 Product description 6720 2023-10-14 14:03:01.089303 2023-07-31 Processing Customer 6720 898566.2040837960 +6764 t 58 837321 43.878136 0.41008853251453203 Product description 6764 2022-02-19 14:03:01.089303 2023-07-18 Processing Customer 6764 728337.0277432580 +6682 t 32 305013 37.642887 0.11418213394067678 Product description 6682 2023-07-14 14:03:01.089303 2023-03-22 Processing Customer 6682 2895.1853654178 +6721 t 69 13780 97.96288 0.7380084705800698 Product description 6721 2022-10-06 14:03:01.089303 2024-07-03 Closed Customer 6721 426192.8580097810 +6766 f 55 611244 91.844986 0.24212082647652622 Product description 6766 2021-11-10 14:03:01.089303 2024-09-06 Processing Customer 6766 964870.8009308110 +6683 f 20 462426 38.93882 0.49540307022763486 Product description 6683 2021-08-29 14:03:01.089303 2025-08-16 Closed Customer 6683 136303.1789759150 +6722 f 14 928463 15.614062 0.18185664725567818 Product description 6722 2023-12-06 14:03:01.089303 2024-06-04 Processing Customer 6722 164229.7921492320 +6767 f 42 973289 39.866005 0.0493913780754518 Product description 6767 2023-02-01 14:03:01.089303 2025-10-08 Closed Customer 6767 134737.4382848800 +6684 t 83 892849 73.73779 0.9857548021179277 Product description 6684 2024-03-19 14:03:01.089303 2023-10-03 Closed Customer 6684 640326.7909526420 +6725 t 64 612902 95.456375 0.8847041389754366 Product description 6725 2023-11-16 14:03:01.089303 2023-08-30 Processing Customer 6725 900764.9844375970 +6768 t 70 510056 76.13435 0.2149403989754468 Product description 6768 2024-06-11 14:03:01.089303 2023-08-30 Processing Customer 6768 379757.9552392990 +6686 t 14 676897 14.131304 0.22424040675012336 Product description 6686 2023-01-18 14:03:01.089303 2025-01-03 Closed Customer 6686 237818.1329882450 +6727 t 0 889158 48.827778 0.9891921668692518 Product description 6727 2024-06-01 14:03:01.089303 2024-01-04 Closed Customer 6727 574990.6164866910 +6771 t 74 97522 46.85902 0.24793795890910175 Product description 6771 2023-10-12 14:03:01.089303 2024-10-26 Closed Customer 6771 580343.5626864300 +6687 t 86 266722 74.0077 0.6025715795772904 Product description 6687 2024-02-13 14:03:01.089303 2024-11-22 Processing Customer 6687 971346.6373343640 +6728 f 12 477426 8.388084 0.06085825850857418 Product description 6728 2022-01-15 14:03:01.089303 2024-11-14 Closed Customer 6728 324964.1885100760 +6774 f 51 890031 58.7236 0.07405141333784471 Product description 6774 2023-11-23 14:03:01.089303 2025-03-30 Processing Customer 6774 34871.0917545532 +6695 t 98 624129 27.412281 0.9284621884944464 Product description 6695 2023-03-23 14:03:01.089303 2025-05-09 Processing Customer 6695 562323.5366460970 +6733 f 69 171026 14.422921 0.049379104393331374 Product description 6733 2022-03-27 14:03:01.089303 2024-12-14 Closed Customer 6733 79190.8733939160 +6776 t 10 710947 57.17186 0.6886114020004435 Product description 6776 2022-10-24 14:03:01.089303 2023-05-07 Processing Customer 6776 10291.7200553136 +6698 f 17 657154 41.638226 0.16256240662525911 Product description 6698 2022-11-15 14:03:01.089303 2025-04-10 Processing Customer 6698 397589.0626951040 +6734 f 61 471210 16.225306 0.05976126671698978 Product description 6734 2023-11-28 14:03:01.089303 2023-02-24 Closed Customer 6734 715512.9883957550 +6778 t 37 489647 59.377117 0.9392583521251687 Product description 6778 2024-05-11 14:03:01.089303 2023-10-16 Processing Customer 6778 792746.4968187930 +6703 t 39 814993 52.243397 0.0017513560071726886 Product description 6703 2023-04-03 14:03:01.089303 2023-01-18 Closed Customer 6703 45461.0645253624 +6736 f 16 96760 5.8540597 0.5815419118242389 Product description 6736 2023-07-09 14:03:01.089303 2025-09-14 Closed Customer 6736 959937.6638022830 +6779 f 84 547392 4.508785 0.8249605924492123 Product description 6779 2021-11-01 14:03:01.089303 2024-12-11 Closed Customer 6779 272719.7256598050 +6706 f 32 564511 48.205276 0.5692038702383009 Product description 6706 2023-11-10 14:03:01.089303 2023-08-14 Cancelled Customer 6706 12653.0145934716 +6737 t 100 337042 22.728008 0.29765141141413665 Product description 6737 2022-11-21 14:03:01.089303 2023-10-30 Closed Customer 6737 6681.6141910771 +6780 f 20 793501 52.258392 0.40238728445159566 Product description 6780 2021-12-24 14:03:01.089303 2024-04-11 Closed Customer 6780 174611.8016151570 +6709 t 24 861887 49.243073 0.8144597967613407 Product description 6709 2022-10-19 14:03:01.089303 2024-10-11 Processing Customer 6709 416168.2009437120 +6738 f 26 985207 42.08919 0.022448859568875434 Product description 6738 2024-05-12 14:03:01.089303 2024-08-24 Processing Customer 6738 60972.8509829246 +6781 f 88 298813 76.738266 0.6566799232463403 Product description 6781 2021-12-14 14:03:01.089303 2025-09-28 Closed Customer 6781 120648.2044392840 +6711 t 6 629720 87.33233 0.8970265393443739 Product description 6711 2022-11-20 14:03:01.089303 2024-12-16 Processing Customer 6711 631534.8239621310 +6743 t 5 723137 74.635414 0.1261846400992539 Product description 6743 2021-11-17 14:03:01.089303 2025-08-31 Closed Customer 6743 959873.9914128310 +6787 f 32 97870 54.22392 0.44665719616330435 Product description 6787 2024-04-21 14:03:01.089303 2023-06-19 Closed Customer 6787 773320.6924393560 +6712 t 23 11334 95.82435 0.4908340612860229 Product description 6712 2023-01-13 14:03:01.089303 2025-12-08 Closed Customer 6712 461246.8241368750 +6753 f 84 896010 21.817583 0.5455435285066343 Product description 6753 2022-01-30 14:03:01.089303 2024-11-11 Cancelled Customer 6753 375758.2619381380 +6788 f 80 175847 22.143272 0.37692435133719115 Product description 6788 2021-10-03 14:03:01.089303 2023-09-10 Closed Customer 6788 904360.5098850020 +6713 f 61 798595 11.206715 0.1299720023041644 Product description 6713 2021-08-04 14:03:01.089303 2025-04-07 Closed Customer 6713 342319.9172129650 +6754 f 67 655758 18.685997 0.46428393669848234 Product description 6754 2024-05-30 14:03:01.089303 2023-07-12 Processing Customer 6754 231791.7383044940 +6789 t 93 430542 27.61987 0.507706481994564 Product description 6789 2022-12-30 14:03:01.089303 2023-03-09 Processing Customer 6789 602906.7984320020 +6714 t 83 817568 74.66422 0.6227741133844376 Product description 6714 2021-08-22 14:03:01.089303 2025-03-30 Closed Customer 6714 993908.4752836710 +6756 t 16 38863 28.824415 0.270782297811035 Product description 6756 2022-05-26 14:03:01.089303 2025-09-01 Closed Customer 6756 628273.1372903850 +6795 t 38 794427 88.18561 0.18830638816069367 Product description 6795 2023-04-21 14:03:01.089303 2023-05-19 Closed Customer 6795 683019.3178256610 +6716 f 17 741791 54.292156 0.4090037551549912 Product description 6716 2021-10-24 14:03:01.089303 2024-08-24 Processing Customer 6716 375584.2874828550 +6758 t 62 976723 86.80262 0.6889223246962395 Product description 6758 2023-02-11 14:03:01.089303 2025-05-11 Closed Customer 6758 624294.8661020190 +6797 t 4 169159 71.17133 0.016015591293044196 Product description 6797 2022-09-15 14:03:01.089303 2024-08-02 Processing Customer 6797 198800.9939084490 +6719 f 17 654140 26.340519 0.39043574991765695 Product description 6719 2021-10-13 14:03:01.089303 2025-11-05 Closed Customer 6719 739616.4716001540 +6760 f 21 713007 71.328354 0.22695179423012846 Product description 6760 2023-09-05 14:03:01.089303 2025-07-02 Closed Customer 6760 678321.4971278890 +6801 t 50 245352 25.994257 0.42474224001166405 Product description 6801 2023-06-07 14:03:01.089303 2024-07-16 Closed Customer 6801 431313.7813025140 +6724 f 27 729080 46.5844 0.7842466907053804 Product description 6724 2023-07-04 14:03:01.089303 2023-12-25 Processing Customer 6724 500100.5589756500 +6770 f 66 646696 59.23721 0.06763425865358741 Product description 6770 2023-03-31 14:03:01.089303 2025-12-04 Cancelled Customer 6770 603599.8865624670 +6808 f 24 592042 22.294998 0.4683716345805813 Product description 6808 2023-05-25 14:03:01.089303 2025-09-20 Closed Customer 6808 652450.1085264940 +6726 t 48 954339 40.597435 0.32423579572967753 Product description 6726 2022-04-06 14:03:01.089303 2023-02-11 Closed Customer 6726 354140.3440356530 +6772 f 30 677478 52.139835 0.0759004143991433 Product description 6772 2023-08-02 14:03:01.089303 2024-09-08 Processing Customer 6772 91365.7942584187 +6810 t 53 372200 17.481829 0.10513343588806023 Product description 6810 2023-06-12 14:03:01.089303 2024-12-15 Closed Customer 6810 22397.5939003154 +6729 f 25 496139 88.56295 0.997523652762645 Product description 6729 2023-07-22 14:03:01.089303 2024-07-03 Closed Customer 6729 655495.0762328140 +6773 f 78 418507 46.07172 0.14601781969589211 Product description 6773 2022-03-09 14:03:01.089303 2023-04-07 Closed Customer 6773 706537.0022872660 +6815 t 34 370053 97.89256 0.3469748902957157 Product description 6815 2023-05-03 14:03:01.089303 2024-02-26 Processing Customer 6815 479777.0954170770 +6740 t 65 152387 63.351913 0.6312942903680892 Product description 6740 2021-08-23 14:03:01.089303 2024-09-05 Processing Customer 6740 382473.4411007820 +6777 t 39 26862 22.64797 0.6889982961897232 Product description 6777 2023-05-22 14:03:01.089303 2025-01-06 Closed Customer 6777 953290.6359749060 +6818 f 79 391422 86.089134 0.1401957504556144 Product description 6818 2023-08-29 14:03:01.089303 2023-09-19 Closed Customer 6818 170731.9771133410 +6742 t 46 402288 25.872698 0.028926315540111602 Product description 6742 2024-07-15 14:03:01.089303 2024-03-30 Closed Customer 6742 751491.3477789700 +6783 t 87 3229 11.115571 0.5735737562520953 Product description 6783 2023-12-17 14:03:01.089303 2025-07-09 Processing Customer 6783 40072.0185436860 +6823 t 83 531735 78.80469 0.7858609120506408 Product description 6823 2023-02-21 14:03:01.089303 2025-01-24 Processing Customer 6823 855922.1275691020 +6747 f 54 696882 74.52009 0.16289233854776342 Product description 6747 2023-09-12 14:03:01.089303 2025-12-18 Closed Customer 6747 553836.8803946230 +6785 t 77 912584 23.559189 0.9189841441241526 Product description 6785 2023-07-30 14:03:01.089303 2024-01-28 Closed Customer 6785 550849.8011130560 +6825 t 48 440287 82.846756 0.4642118598892431 Product description 6825 2023-11-15 14:03:01.089303 2024-02-06 Processing Customer 6825 284290.0450698450 +6749 f 66 687283 53.834312 0.426635694588434 Product description 6749 2022-10-05 14:03:01.089303 2023-04-29 Closed Customer 6749 446308.7471116760 +6786 f 71 588133 86.12382 0.6439053828933439 Product description 6786 2023-09-15 14:03:01.089303 2024-04-07 Processing Customer 6786 963049.2614459210 +6826 f 76 461597 73.845894 0.5382006391277834 Product description 6826 2022-07-25 14:03:01.089303 2024-01-01 Closed Customer 6826 823414.9387067900 +6751 f 84 824990 54.352833 0.36699245548854265 Product description 6751 2023-05-14 14:03:01.089303 2023-04-10 Closed Customer 6751 817595.2968209370 +6790 f 7 703878 75.37302 0.7262336215502359 Product description 6790 2022-07-15 14:03:01.089303 2025-08-16 Closed Customer 6790 712988.3096865050 +6827 t 62 352392 63.228146 0.3583457711338376 Product description 6827 2023-12-24 14:03:01.089303 2024-06-17 Processing Customer 6827 549636.7697137080 +6752 t 89 28517 94.228584 0.6104384276329498 Product description 6752 2024-07-23 14:03:01.089303 2023-03-27 Closed Customer 6752 783149.6623348960 +6793 f 56 537698 8.365761 0.2244071366035243 Product description 6793 2022-05-08 14:03:01.089303 2024-12-02 Closed Customer 6793 723834.6347947020 +6829 f 98 418530 43.73515 0.5530648692400639 Product description 6829 2022-04-27 14:03:01.089303 2023-12-07 Closed Customer 6829 324890.0591264890 +6757 t 57 192346 66.73824 0.8055898263926764 Product description 6757 2024-07-29 14:03:01.089303 2024-04-07 Closed Customer 6757 341426.7127039740 +6796 t 57 270195 2.702723 0.6071947876159243 Product description 6796 2022-09-03 14:03:01.089303 2025-01-10 Processing Customer 6796 837817.8977224560 +6832 t 79 621376 98.96815 0.5512984530664902 Product description 6832 2022-08-08 14:03:01.089303 2025-10-23 Closed Customer 6832 728523.4338486720 +6759 f 23 440379 43.921642 0.8344144131619302 Product description 6759 2022-01-28 14:03:01.089303 2023-12-23 Processing Customer 6759 698004.7029719180 +6803 t 12 477515 96.09711 0.6610530356742359 Product description 6803 2022-11-21 14:03:01.089303 2025-01-11 Closed Customer 6803 791277.6754400600 +6833 f 50 174047 92.13246 0.8703439752839621 Product description 6833 2023-01-06 14:03:01.089303 2024-02-27 Closed Customer 6833 505332.4819696030 +6761 t 76 718320 25.119165 0.19624435074376834 Product description 6761 2023-10-25 14:03:01.089303 2023-04-18 Closed Customer 6761 285057.3913914300 +6806 f 70 858154 83.81209 0.05332188748367628 Product description 6806 2022-11-13 14:03:01.089303 2023-11-08 Processing Customer 6806 622731.4185798140 +6834 t 0 821412 84.76189 0.34701308363791483 Product description 6834 2021-12-22 14:03:01.089303 2023-02-06 Processing Customer 6834 331803.5807884530 +6762 f 40 817058 68.72485 0.29185211360471186 Product description 6762 2023-01-15 14:03:01.089303 2024-07-31 Closed Customer 6762 1929.4311360660 +6807 f 66 392373 34.497 0.409720252884334 Product description 6807 2023-08-10 14:03:01.089303 2024-10-31 Closed Customer 6807 370500.1764131350 +6838 f 13 95149 42.048622 0.897269149425842 Product description 6838 2023-03-17 14:03:01.089303 2024-09-30 Closed Customer 6838 556420.7936993740 +6765 f 40 302028 4.3689613 0.1099987193062617 Product description 6765 2023-09-09 14:03:01.089303 2025-01-16 Processing Customer 6765 144550.5449652380 +6809 t 39 469412 80.92951 0.5722715733319035 Product description 6809 2021-08-10 14:03:01.089303 2025-10-17 Closed Customer 6809 650875.1316545980 +6845 f 54 673843 79.98417 0.9489877228227748 Product description 6845 2023-06-04 14:03:01.089303 2023-04-07 Processing Customer 6845 634790.6102251460 +6769 t 36 279606 25.653816 0.4153063809640898 Product description 6769 2024-03-17 14:03:01.089303 2025-08-03 Closed Customer 6769 139817.6967863840 +6811 f 42 293543 45.030018 0.9646699911782903 Product description 6811 2024-01-25 14:03:01.089303 2025-11-16 Closed Customer 6811 664176.7468608500 +6849 t 61 151436 70.58623 0.764583050879569 Product description 6849 2023-02-07 14:03:01.089303 2024-12-09 Closed Customer 6849 273731.9766214480 +6775 t 93 642296 5.8120346 0.2765561371830074 Product description 6775 2022-05-30 14:03:01.089303 2025-04-15 Processing Customer 6775 838408.0608704170 +6816 t 81 821711 11.398061 0.9367928172061255 Product description 6816 2021-08-16 14:03:01.089303 2025-07-24 Closed Customer 6816 780754.5532925640 +6851 f 52 964423 68.03206 0.37828083961683134 Product description 6851 2022-11-06 14:03:01.089303 2023-04-06 Closed Customer 6851 564861.8928287520 +6782 t 80 831276 25.76591 0.0647016083239933 Product description 6782 2024-02-04 14:03:01.089303 2024-09-20 Processing Customer 6782 4461.3357505376 +6817 t 80 144202 24.942778 0.5210955758600946 Product description 6817 2021-12-06 14:03:01.089303 2023-04-18 Closed Customer 6817 230030.8138035980 +6852 t 84 368670 15.580231 0.965675830657279 Product description 6852 2021-08-12 14:03:01.089303 2025-06-30 Processing Customer 6852 506426.0036417350 +6784 t 77 833696 34.77476 0.2177367225482243 Product description 6784 2023-10-27 14:03:01.089303 2023-09-22 Closed Customer 6784 123114.8041178290 +6824 t 82 432873 84.205734 0.707788071948471 Product description 6824 2022-04-02 14:03:01.089303 2024-10-02 Closed Customer 6824 967073.5498559640 +6855 f 18 872105 63.659634 0.3598837748832828 Product description 6855 2021-09-06 14:03:01.089303 2023-02-11 Cancelled Customer 6855 473324.3474216060 +6791 f 7 488963 70.37834 0.382476913241355 Product description 6791 2022-01-13 14:03:01.089303 2025-05-01 Processing Customer 6791 273914.0470585150 +6830 t 70 664791 81.83647 0.05691199006356129 Product description 6830 2024-01-21 14:03:01.089303 2023-03-07 Closed Customer 6830 866892.6481286440 +6857 f 35 781134 53.000122 0.4433317918545683 Product description 6857 2021-09-12 14:03:01.089303 2023-06-19 Processing Customer 6857 694139.4736583280 +6792 t 74 868091 74.377 0.6606431402141766 Product description 6792 2021-10-24 14:03:01.089303 2025-08-22 Closed Customer 6792 918358.3537186980 +6836 f 64 160853 72.52342 0.2445309573814285 Product description 6836 2024-04-10 14:03:01.089303 2024-02-16 Processing Customer 6836 735377.3306745200 +6858 t 64 953432 23.082165 0.651234883203017 Product description 6858 2023-07-02 14:03:01.089303 2023-05-20 Closed Customer 6858 621412.6927166570 +6794 t 38 83067 92.124916 0.3310714811502251 Product description 6794 2022-01-02 14:03:01.089303 2025-06-21 Processing Customer 6794 92064.0153982824 +6837 f 81 915203 52.274822 0.4691907250352969 Product description 6837 2023-01-19 14:03:01.089303 2024-08-27 Closed Customer 6837 363174.3285308070 +6859 f 8 130644 93.06661 0.7019435856289604 Product description 6859 2022-03-23 14:03:01.089303 2024-08-29 Processing Customer 6859 770488.2507912640 +6798 t 76 632158 26.055984 0.8345577345121598 Product description 6798 2021-11-06 14:03:01.089303 2025-07-18 Processing Customer 6798 367751.0566669290 +6842 t 25 287995 93.704124 0.5945339581502651 Product description 6842 2024-02-17 14:03:01.089303 2023-08-28 Processing Customer 6842 920570.7615501770 +6862 f 95 360157 33.86288 0.41781061090991045 Product description 6862 2022-10-19 14:03:01.089303 2023-09-12 Processing Customer 6862 274434.4334249260 +6799 t 58 796389 34.48735 0.5967837010565731 Product description 6799 2023-06-21 14:03:01.089303 2024-11-09 Closed Customer 6799 642685.5976783830 +6843 t 2 426554 53.994125 0.7256903560732226 Product description 6843 2021-12-13 14:03:01.089303 2023-11-24 Closed Customer 6843 206955.4548170380 +6863 t 40 225475 60.214558 0.5793561539549259 Product description 6863 2022-07-02 14:03:01.089303 2025-02-01 Processing Customer 6863 968047.3664131350 +6800 t 98 519604 78.4479 0.4954043695719008 Product description 6800 2022-02-19 14:03:01.089303 2024-09-09 Closed Customer 6800 26848.8425997155 +6846 t 99 908489 73.472305 0.5287323796382992 Product description 6846 2023-06-06 14:03:01.089303 2025-12-20 Closed Customer 6846 980421.7800808990 +6864 t 89 237533 19.78457 0.97985625051885 Product description 6864 2023-09-04 14:03:01.089303 2023-10-25 Closed Customer 6864 446049.9908830930 +6802 t 8 441084 98.68743 0.7555588744838602 Product description 6802 2022-05-07 14:03:01.089303 2023-04-13 Closed Customer 6802 7530.4622625403 +6853 f 67 344064 38.3399 0.4427732513014391 Product description 6853 2022-11-03 14:03:01.089303 2023-11-23 Processing Customer 6853 795613.1986028550 +6866 t 23 481911 15.795229 0.9726511821613499 Product description 6866 2021-09-22 14:03:01.089303 2024-08-23 Processing Customer 6866 65393.6993583706 +6804 t 51 763794 80.1948 0.9668024294682454 Product description 6804 2022-04-19 14:03:01.089303 2024-10-20 Processing Customer 6804 164610.1497376370 +6854 f 88 496989 32.026516 0.9382771816602258 Product description 6854 2024-05-11 14:03:01.089303 2024-11-05 Closed Customer 6854 620868.4648207130 +6868 t 45 505047 32.493763 0.35018272354822955 Product description 6868 2022-08-09 14:03:01.089303 2025-05-07 Closed Customer 6868 724977.2099267880 +6805 t 69 600615 53.76242 0.5390436343423559 Product description 6805 2024-07-19 14:03:01.089303 2024-05-23 Closed Customer 6805 146303.2679276530 +6861 f 72 959107 56.990295 0.9567338363313596 Product description 6861 2023-11-16 14:03:01.089303 2023-04-30 Processing Customer 6861 620266.2474461570 +6870 t 68 734139 68.65897 0.7674120827506883 Product description 6870 2023-09-05 14:03:01.089303 2023-12-26 Closed Customer 6870 102767.0040545740 +6812 f 28 12106 49.015247 0.9586070383700189 Product description 6812 2022-08-11 14:03:01.089303 2025-10-31 Processing Customer 6812 385801.3803323920 +6873 t 36 463654 24.323843 0.17422335871096095 Product description 6873 2021-08-10 14:03:01.089303 2025-09-13 Processing Customer 6873 172085.3037014190 +6872 t 33 210237 33.515728 0.8901699610277092 Product description 6872 2024-03-31 14:03:01.089303 2023-09-29 Closed Customer 6872 655918.0135646980 +6813 t 65 443693 36.943607 0.22989233563931322 Product description 6813 2023-05-23 14:03:01.089303 2023-03-05 Cancelled Customer 6813 955674.3361673840 +6877 t 15 21089 47.8271 0.4734204357594294 Product description 6877 2024-07-13 14:03:01.089303 2024-03-06 Processing Customer 6877 427054.6703877930 +6875 t 29 353332 47.95135 0.21962041391828535 Product description 6875 2024-02-08 14:03:01.089303 2023-12-28 Processing Customer 6875 795350.9275056130 +6814 t 100 188720 30.524258 0.9555807455388283 Product description 6814 2022-07-02 14:03:01.089303 2024-11-28 Closed Customer 6814 924120.1963755830 +6880 t 62 675145 24.305668 0.23080132290098732 Product description 6880 2021-12-29 14:03:01.089303 2025-07-26 Closed Customer 6880 75212.2357058305 +6878 t 3 296278 47.51064 0.9434776650527539 Product description 6878 2024-03-01 14:03:01.089303 2024-02-15 Closed Customer 6878 483607.1185476490 +6819 t 59 516548 5.483269 0.9885576684646047 Product description 6819 2022-05-06 14:03:01.089303 2023-12-11 Processing Customer 6819 247055.9099061590 +6881 f 28 899671 56.032394 0.7463624548833891 Product description 6881 2024-03-01 14:03:01.089303 2023-01-13 Closed Customer 6881 79892.0211983081 +6882 f 50 28177 77.5533 0.941855434539626 Product description 6882 2022-09-23 14:03:01.089303 2025-06-17 Closed Customer 6882 494348.0851936680 +6820 t 48 264770 36.903637 0.7429485413117085 Product description 6820 2023-03-29 14:03:01.089303 2025-05-20 Cancelled Customer 6820 297111.6043613800 +6889 t 6 108801 69.21771 0.9399303338439466 Product description 6889 2022-12-11 14:03:01.089303 2025-06-19 Closed Customer 6889 562416.9160031270 +6884 f 94 199451 75.290276 0.6886604612703024 Product description 6884 2023-06-27 14:03:01.089303 2023-04-11 Closed Customer 6884 261503.2071115840 +6821 f 60 321553 80.2659 0.030485882722530278 Product description 6821 2022-07-27 14:03:01.089303 2025-05-17 Closed Customer 6821 896477.2548401320 +6894 t 75 539467 4.2355185 0.5098941144819307 Product description 6894 2023-01-27 14:03:01.089303 2025-05-01 Closed Customer 6894 139872.4128666410 +6885 t 83 175651 71.10121 0.8326346576402912 Product description 6885 2023-07-01 14:03:01.089303 2024-06-26 Closed Customer 6885 376677.5288012280 +6822 f 92 157605 93.582436 0.1770499271935435 Product description 6822 2022-07-01 14:03:01.089303 2025-05-25 Processing Customer 6822 440363.7113906920 +6902 t 81 353144 82.99295 0.255464471178243 Product description 6902 2021-09-09 14:03:01.089303 2023-03-24 Closed Customer 6902 611179.1911338250 +6886 t 51 405094 67.259094 0.45605949925662514 Product description 6886 2024-01-06 14:03:01.089303 2025-01-24 Cancelled Customer 6886 33486.4856387185 +6828 t 34 681498 3.9356086 0.3223043637108418 Product description 6828 2021-08-05 14:03:01.089303 2024-05-11 Closed Customer 6828 589539.1952132730 +6903 f 26 940134 89.987 0.4725966704967348 Product description 6903 2024-05-19 14:03:01.089303 2024-09-08 Closed Customer 6903 422689.1555091220 +6887 f 48 816062 71.91472 0.7611047509448063 Product description 6887 2022-01-20 14:03:01.089303 2023-06-18 Closed Customer 6887 828804.2381322000 +6831 f 96 193594 87.68885 0.8816873632271367 Product description 6831 2022-10-10 14:03:01.089303 2024-10-20 Closed Customer 6831 176707.3281026120 +6904 f 40 744899 10.98582 0.9097670226016845 Product description 6904 2022-04-27 14:03:01.089303 2024-08-10 Closed Customer 6904 141614.7798651190 +6891 f 27 164116 36.339466 0.20451411599978897 Product description 6891 2022-10-10 14:03:01.089303 2025-11-27 Processing Customer 6891 892148.7340218870 +6835 f 28 476488 73.81386 0.5352756149730737 Product description 6835 2022-08-12 14:03:01.089303 2024-03-14 Closed Customer 6835 756853.1620501880 +6908 f 56 785585 39.231712 0.5274896014812711 Product description 6908 2022-11-21 14:03:01.089303 2024-11-12 Processing Customer 6908 650543.1624259370 +6892 t 57 786661 20.941133 0.7553434779835122 Product description 6892 2022-07-12 14:03:01.089303 2024-05-04 Closed Customer 6892 924153.9054752010 +6839 t 11 672594 48.274258 0.05003034248952787 Product description 6839 2022-03-02 14:03:01.089303 2023-05-22 Processing Customer 6839 872743.4853087210 +6909 t 48 791712 7.814522 0.07512752577670767 Product description 6909 2021-08-24 14:03:01.089303 2025-03-03 Processing Customer 6909 208175.4495267450 +6895 t 74 651786 42.720093 0.16989356676866763 Product description 6895 2024-01-09 14:03:01.089303 2023-11-15 Closed Customer 6895 906253.6473016110 +6840 t 54 133658 29.70759 0.22622148732527592 Product description 6840 2021-12-26 14:03:01.089303 2025-08-17 Closed Customer 6840 693600.8675192900 +6910 f 35 720454 64.09345 0.25663919223737963 Product description 6910 2022-10-13 14:03:01.089303 2024-12-03 Processing Customer 6910 948034.0079873070 +6896 t 26 730926 21.528234 0.056076856887695925 Product description 6896 2023-06-02 14:03:01.089303 2025-11-22 Closed Customer 6896 235830.2742332300 +6841 t 25 794542 87.15107 0.36658617550579464 Product description 6841 2022-07-21 14:03:01.089303 2023-05-18 Closed Customer 6841 660377.1508985860 +6911 t 43 749976 87.89247 0.4639311187234938 Product description 6911 2022-06-07 14:03:01.089303 2025-06-30 Closed Customer 6911 259683.3694832800 +6898 f 24 76840 53.646385 0.8547814870090669 Product description 6898 2021-09-12 14:03:01.089303 2023-09-24 Closed Customer 6898 198015.6559444450 +6844 f 23 642182 75.71787 0.018853411980899182 Product description 6844 2022-10-09 14:03:01.089303 2023-06-29 Processing Customer 6844 237667.9650787960 +6912 t 73 467055 34.53079 0.17519684464854635 Product description 6912 2023-06-19 14:03:01.089303 2025-11-12 Closed Customer 6912 277004.5788929740 +6901 f 14 95164 52.22649 0.3460278610945515 Product description 6901 2024-04-10 14:03:01.089303 2023-02-20 Closed Customer 6901 840085.6501882500 +6847 f 0 852999 50.034363 0.5952393514276153 Product description 6847 2021-12-30 14:03:01.089303 2025-03-16 Closed Customer 6847 657288.5458569750 +6913 t 55 965708 38.179317 0.5631513828593029 Product description 6913 2023-01-08 14:03:01.089303 2023-05-10 Cancelled Customer 6913 606617.6332969490 +6905 f 35 332545 37.948418 0.33043908482160944 Product description 6905 2023-12-29 14:03:01.089303 2024-07-28 Processing Customer 6905 746980.1460401300 +6848 f 96 237123 95.65184 0.3296070281865724 Product description 6848 2024-04-23 14:03:01.089303 2024-11-07 Processing Customer 6848 197701.7210013050 +6929 f 40 903409 53.177044 0.6270512238405779 Product description 6929 2024-01-21 14:03:01.089303 2024-12-21 Closed Customer 6929 808248.6233141350 +6906 t 26 665261 84.68813 0.21775481363505023 Product description 6906 2023-10-10 14:03:01.089303 2023-02-04 Processing Customer 6906 450224.1156976150 +6850 t 35 764051 91.70311 0.22163803130634818 Product description 6850 2022-05-12 14:03:01.089303 2024-02-20 Processing Customer 6850 785489.5806013820 +6932 f 74 4962 82.87167 0.9508862816335188 Product description 6932 2023-06-11 14:03:01.089303 2025-08-19 Processing Customer 6932 774447.6141704410 +6916 t 17 491911 42.965214 0.5942334720595319 Product description 6916 2023-11-07 14:03:01.089303 2025-11-08 Closed Customer 6916 938577.1244701720 +6856 f 37 170143 71.55128 0.1613859472724073 Product description 6856 2024-07-03 14:03:01.089303 2023-01-25 Processing Customer 6856 591350.6165595910 +6938 t 21 43264 15.9394 0.4170465566798178 Product description 6938 2022-10-18 14:03:01.089303 2023-12-28 Processing Customer 6938 151445.9182365400 +6917 t 33 229229 60.611732 0.06979691065971494 Product description 6917 2021-08-16 14:03:01.089303 2024-04-20 Closed Customer 6917 828167.3075397510 +6860 f 31 6770 31.160442 0.24787948357440115 Product description 6860 2023-08-14 14:03:01.089303 2024-10-30 Closed Customer 6860 483387.2504002590 +6939 f 89 759846 99.978195 0.44247941408355373 Product description 6939 2023-06-27 14:03:01.089303 2024-03-03 Closed Customer 6939 992730.8172462830 +6918 f 73 914357 13.560095 0.4731695220948957 Product description 6918 2024-05-12 14:03:01.089303 2024-11-05 Processing Customer 6918 608748.5026076540 +6865 f 63 780852 42.21694 0.20079056749976587 Product description 6865 2021-10-01 14:03:01.089303 2024-09-27 Processing Customer 6865 169285.4082325930 +6940 t 46 773001 65.357574 0.6614339621593608 Product description 6940 2023-09-21 14:03:01.089303 2024-01-11 Cancelled Customer 6940 643573.8791959660 +6931 f 29 75604 32.974064 0.7591600847442486 Product description 6931 2023-03-31 14:03:01.089303 2025-03-13 Closed Customer 6931 579607.0932059150 +6867 t 67 646883 72.11271 0.5846593806344274 Product description 6867 2021-12-24 14:03:01.089303 2025-05-18 Closed Customer 6867 915632.7927436400 +6942 t 35 963232 76.79137 0.33884455012947257 Product description 6942 2023-08-25 14:03:01.089303 2024-10-20 Closed Customer 6942 25844.0430403404 +6935 f 70 397596 25.867704 0.9826190171708653 Product description 6935 2021-08-25 14:03:01.089303 2025-07-25 Processing Customer 6935 295795.5916421470 +6869 t 75 692723 3.8010628 0.48218266488044037 Product description 6869 2023-05-19 14:03:01.089303 2025-07-31 Processing Customer 6869 832364.6315425850 +6943 t 88 300192 34.007744 0.34072213330564693 Product description 6943 2022-07-01 14:03:01.089303 2024-01-25 Processing Customer 6943 798357.4461478720 +6941 t 97 567926 82.76286 0.7455541367012124 Product description 6941 2022-01-22 14:03:01.089303 2023-05-29 Closed Customer 6941 876405.5479360240 +6871 t 3 827769 46.81531 0.21112082882502392 Product description 6871 2022-06-28 14:03:01.089303 2025-06-03 Closed Customer 6871 451863.5650554510 +6947 t 54 707455 33.397644 0.6590234663454666 Product description 6947 2021-09-28 14:03:01.089303 2024-04-17 Processing Customer 6947 124839.4142967190 +6944 f 81 762848 85.8437 0.0027503755164453025 Product description 6944 2023-06-10 14:03:01.089303 2023-05-05 Closed Customer 6944 964491.2602896060 +6874 t 15 422934 64.22278 0.24595397171346178 Product description 6874 2022-04-24 14:03:01.089303 2023-06-09 Closed Customer 6874 191874.2150426840 +6951 f 60 382482 41.0535 0.6659436646532697 Product description 6951 2023-06-28 14:03:01.089303 2023-05-26 Closed Customer 6951 446649.9703472910 +6946 f 76 169968 43.640324 0.6880613822509041 Product description 6946 2023-03-24 14:03:01.089303 2023-03-06 Closed Customer 6946 78831.0100406377 +6876 t 49 343249 55.86484 0.15670653943200108 Product description 6876 2021-10-04 14:03:01.089303 2025-12-05 Processing Customer 6876 51064.2605606115 +6959 f 98 229468 29.419804 0.8544641054691411 Product description 6959 2021-10-19 14:03:01.089303 2024-05-07 Processing Customer 6959 296935.5505734970 +6948 f 43 307723 25.675026 0.23729313829264598 Product description 6948 2023-12-14 14:03:01.089303 2025-11-08 Closed Customer 6948 884985.4890944040 +6879 f 5 204666 21.726164 0.6086661794392683 Product description 6879 2024-04-27 14:03:01.089303 2025-04-07 Processing Customer 6879 368523.5870383070 +6967 t 95 679906 51.85952 0.9786173741668875 Product description 6967 2024-03-19 14:03:01.089303 2025-06-26 Processing Customer 6967 555978.4844239570 +6949 t 49 52429 98.467766 0.35895835018778754 Product description 6949 2024-01-08 14:03:01.089303 2023-10-30 Closed Customer 6949 64237.6993266325 +6883 t 64 976158 84.901924 0.6377332283459296 Product description 6883 2023-04-30 14:03:01.089303 2024-04-14 Closed Customer 6883 109130.5559501200 +6969 f 61 497821 33.1605 0.9755711203554185 Product description 6969 2021-09-14 14:03:01.089303 2025-07-11 Closed Customer 6969 204075.7474374180 +6952 t 45 741119 82.43667 0.23191254023787522 Product description 6952 2023-11-08 14:03:01.089303 2023-05-15 Cancelled Customer 6952 767650.0767888150 +6888 f 88 889973 26.305939 0.022474828045730533 Product description 6888 2022-06-02 14:03:01.089303 2024-12-29 Closed Customer 6888 507827.2213469110 +6970 t 54 954975 18.365742 0.0006198603227289823 Product description 6970 2023-02-24 14:03:01.089303 2025-07-07 Closed Customer 6970 855261.7611252880 +6953 t 69 948861 22.40749 0.40223336871865456 Product description 6953 2023-03-26 14:03:01.089303 2023-02-09 Closed Customer 6953 697589.8086754850 +6890 f 19 469797 22.54145 0.6676477189295653 Product description 6890 2023-12-13 14:03:01.089303 2024-03-23 Closed Customer 6890 425381.8892236330 +6976 f 30 959517 37.34059 0.6571821686431534 Product description 6976 2023-09-06 14:03:01.089303 2024-04-14 Cancelled Customer 6976 562172.6011343850 +6954 t 27 86167 56.453724 0.06897115601832837 Product description 6954 2024-06-13 14:03:01.089303 2024-07-06 Closed Customer 6954 21129.0085720357 +6893 f 97 525944 83.49063 0.676729433176547 Product description 6893 2023-07-14 14:03:01.089303 2024-01-30 Closed Customer 6893 631273.7922772800 +6978 t 27 55436 51.683388 0.8167282488968688 Product description 6978 2023-11-20 14:03:01.089303 2024-06-26 Closed Customer 6978 501480.7214613770 +6955 t 99 18253 44.90237 0.7267584789724424 Product description 6955 2024-02-15 14:03:01.089303 2024-01-29 Closed Customer 6955 756569.7312363650 +6897 f 44 773607 37.34172 0.7955908791528898 Product description 6897 2024-05-05 14:03:01.089303 2024-11-21 Closed Customer 6897 356936.1122316400 +6980 f 5 840875 23.976316 0.48863424831133884 Product description 6980 2022-05-31 14:03:01.089303 2024-07-18 Processing Customer 6980 56988.2005227456 +6956 f 67 698997 56.095913 0.027406308837505833 Product description 6956 2024-06-01 14:03:01.089303 2024-01-26 Closed Customer 6956 243436.9423931210 +6899 t 63 499496 82.17958 0.3852710167897868 Product description 6899 2023-07-06 14:03:01.089303 2025-09-28 Closed Customer 6899 708542.8055428440 +6982 f 22 411743 64.41031 0.7250413936734539 Product description 6982 2023-08-14 14:03:01.089303 2025-01-21 Processing Customer 6982 178910.1355555970 +6958 t 58 938111 75.274536 0.15680223886245415 Product description 6958 2021-12-05 14:03:01.089303 2023-08-29 Processing Customer 6958 88034.5960540687 +6900 f 28 500408 89.50016 0.5327150125788975 Product description 6900 2023-08-18 14:03:01.089303 2023-03-31 Closed Customer 6900 361347.5624881520 +6983 f 53 438389 89.43785 0.385646655939734 Product description 6983 2023-04-17 14:03:01.089303 2023-12-04 Closed Customer 6983 829123.7967982780 +6961 f 62 220169 66.33309 0.7216115620062382 Product description 6961 2023-06-09 14:03:01.089303 2023-01-15 Closed Customer 6961 90875.9069987930 +6907 f 12 27628 32.52283 0.711265010192875 Product description 6907 2022-12-23 14:03:01.089303 2024-05-15 Closed Customer 6907 980853.5535129540 +6984 f 56 503963 4.0837135 0.46968967653971916 Product description 6984 2022-04-28 14:03:01.089303 2025-09-24 Closed Customer 6984 310680.5770791540 +6962 t 89 213910 31.396471 0.4888728264344593 Product description 6962 2024-01-22 14:03:01.089303 2025-04-07 Processing Customer 6962 985859.7206580520 +6914 t 50 984178 13.52113 0.547524205839899 Product description 6914 2023-02-19 14:03:01.089303 2024-02-10 Processing Customer 6914 896666.9652799090 +6987 f 30 174194 29.942125 0.7881340352784569 Product description 6987 2023-10-19 14:03:01.089303 2024-09-24 Closed Customer 6987 480268.7560790630 +6965 t 68 212332 20.772331 0.6007654583099011 Product description 6965 2021-10-12 14:03:01.089303 2024-01-19 Closed Customer 6965 455710.6576025980 +6915 t 90 559479 23.418726 0.1630763520400791 Product description 6915 2022-02-11 14:03:01.089303 2025-05-21 Closed Customer 6915 984831.3225517520 +6988 f 33 611783 23.129 0.23668912519852725 Product description 6988 2024-05-07 14:03:01.089303 2025-05-01 Processing Customer 6988 365748.9129048060 +6966 t 69 306408 98.49716 0.940795485858402 Product description 6966 2023-03-10 14:03:01.089303 2025-06-13 Closed Customer 6966 955422.3066773310 +6919 f 34 521423 58.70456 0.9763119753320026 Product description 6919 2024-07-19 14:03:01.089303 2024-03-07 Closed Customer 6919 738676.8224594280 +6995 f 19 645727 83.523476 0.07229662495224076 Product description 6995 2022-07-04 14:03:01.089303 2025-10-09 Closed Customer 6995 993545.8695469140 +6971 t 79 768941 53.0012 0.7120983526261782 Product description 6971 2021-10-27 14:03:01.089303 2023-09-13 Closed Customer 6971 647141.2902104880 +6920 t 88 261327 90.852875 0.008503570919572212 Product description 6920 2022-07-11 14:03:01.089303 2023-12-22 Closed Customer 6920 706183.7696962210 +6996 f 81 869078 22.43338 0.7128464036989506 Product description 6996 2022-01-17 14:03:01.089303 2024-09-17 Closed Customer 6996 736379.9819923710 +6975 t 92 160241 59.161785 0.8863392424999006 Product description 6975 2023-01-31 14:03:01.089303 2024-05-13 Closed Customer 6975 188962.7730691320 +6921 f 7 105823 76.37801 0.6566579154745753 Product description 6921 2024-07-02 14:03:01.089303 2023-03-13 Processing Customer 6921 887684.8810768120 +7000 t 88 923388 85.86227 0.3940744139603929 Product description 7000 2024-02-10 14:03:01.089303 2023-05-28 Processing Customer 7000 116988.3381345260 +6981 f 81 791381 27.873615 0.39896828477100854 Product description 6981 2023-04-18 14:03:01.089303 2023-04-10 Closed Customer 6981 987038.7850283220 +6922 f 52 911017 93.345375 0.3125537849794142 Product description 6922 2024-02-20 14:03:01.089303 2024-06-28 Closed Customer 6922 259754.0980832030 +7001 t 69 881749 46.212227 0.6955520219070799 Product description 7001 2022-08-09 14:03:01.089303 2025-06-09 Closed Customer 7001 465058.1299439840 +6985 f 61 232527 81.481346 0.24463033886367214 Product description 6985 2022-09-12 14:03:01.089303 2023-10-27 Closed Customer 6985 592066.9219099860 +6923 t 72 468160 96.82832 0.7831414925318754 Product description 6923 2022-10-08 14:03:01.089303 2025-06-30 Closed Customer 6923 337741.2156790350 +7003 t 18 893588 56.61994 0.5818219165396208 Product description 7003 2023-07-15 14:03:01.089303 2023-02-11 Processing Customer 7003 682042.2256812930 +6990 t 28 856692 32.050266 0.7742900605287772 Product description 6990 2024-03-23 14:03:01.089303 2024-03-10 Closed Customer 6990 278153.9834831400 +6924 t 57 47754 36.105995 0.12089993214530637 Product description 6924 2022-09-28 14:03:01.089303 2025-09-10 Closed Customer 6924 264539.9078496350 +7013 f 57 964072 71.404915 0.5572423559404633 Product description 7013 2023-01-09 14:03:01.089303 2025-03-07 Closed Customer 7013 11225.5092158193 +6992 f 13 105637 64.157036 0.222036917852364 Product description 6992 2022-07-26 14:03:01.089303 2024-05-11 Closed Customer 6992 337993.7998016340 +6925 f 98 457841 9.431897 0.2652882141756905 Product description 6925 2022-05-01 14:03:01.089303 2025-03-23 Closed Customer 6925 550926.7151855430 +7020 t 74 277390 69.595505 0.6652027614466043 Product description 7020 2023-12-28 14:03:01.089303 2025-08-01 Processing Customer 7020 345491.2635686540 +6993 f 90 16058 97.842865 0.04562793706120516 Product description 6993 2021-10-20 14:03:01.089303 2025-10-16 Closed Customer 6993 61452.9167201603 +6926 f 47 248323 64.57606 0.6553792263677423 Product description 6926 2024-05-28 14:03:01.089303 2023-09-29 Processing Customer 6926 117045.1942009370 +7022 t 2 976685 46.84431 0.9934590932288963 Product description 7022 2023-11-17 14:03:01.089303 2023-08-28 Processing Customer 7022 62336.3284122007 +6994 f 21 231331 65.51554 0.28719669291903926 Product description 6994 2023-11-21 14:03:01.089303 2025-11-06 Closed Customer 6994 526294.1191648270 +6927 f 49 648045 0.14978622 0.8767576981807039 Product description 6927 2024-03-28 14:03:01.089303 2025-04-12 Processing Customer 6927 765512.6512352870 +7030 t 62 417779 25.779217 0.5446130346404168 Product description 7030 2023-05-18 14:03:01.089303 2024-09-09 Processing Customer 7030 576243.0346212210 +6997 f 34 464356 72.97836 0.03868238335228824 Product description 6997 2023-01-24 14:03:01.089303 2024-01-26 Closed Customer 6997 12355.9456737503 +6928 t 29 651305 55.88067 0.030656880502192507 Product description 6928 2023-10-25 14:03:01.089303 2024-12-09 Processing Customer 6928 12500.7194694682 +7035 f 81 252550 62.111874 0.7365055471631088 Product description 7035 2024-06-03 14:03:01.089303 2024-02-18 Processing Customer 7035 18536.9433164908 +7002 f 34 706106 38.590027 0.8679564211075785 Product description 7002 2023-06-23 14:03:01.089303 2025-10-18 Processing Customer 7002 53585.7650710305 +6930 t 32 616159 79.0188 0.38851622638845384 Product description 6930 2022-11-06 14:03:01.089303 2024-07-05 Closed Customer 6930 532007.8322929230 +7036 f 58 525092 74.53911 0.857005577284351 Product description 7036 2022-11-30 14:03:01.089303 2024-08-12 Processing Customer 7036 41274.6033665954 +7006 f 47 321632 69.79658 0.3701227303407748 Product description 7006 2024-06-19 14:03:01.089303 2024-03-03 Closed Customer 7006 120660.1564532300 +6933 t 70 874659 94.90776 0.3669056073732264 Product description 6933 2023-01-06 14:03:01.089303 2023-03-02 Closed Customer 6933 310302.7137681340 +7039 t 93 379932 5.034228 0.1586006839979781 Product description 7039 2024-01-19 14:03:01.089303 2023-09-04 Processing Customer 7039 723766.9423229680 +7008 f 42 892417 40.74885 0.4416129971725269 Product description 7008 2023-12-23 14:03:01.089303 2023-08-13 Closed Customer 7008 381734.0472952640 +6934 f 10 200409 53.273354 0.12193476485114019 Product description 6934 2021-12-31 14:03:01.089303 2024-12-26 Closed Customer 6934 643711.9291007210 +7044 f 79 657351 88.25354 0.08408830158240832 Product description 7044 2021-10-04 14:03:01.089303 2025-03-04 Closed Customer 7044 628688.1560846430 +7009 t 63 449166 99.860695 0.6284667014170608 Product description 7009 2023-10-17 14:03:01.089303 2023-01-24 Processing Customer 7009 609124.1923331730 +6936 f 48 895027 3.4157612 0.48957836980198977 Product description 6936 2023-05-24 14:03:01.089303 2025-02-26 Processing Customer 6936 567364.3717837220 +7045 t 18 600149 51.857445 0.7287339812882188 Product description 7045 2023-11-19 14:03:01.089303 2025-05-04 Closed Customer 7045 662015.2522248760 +7010 t 14 928685 19.455706 0.7995299774484295 Product description 7010 2024-03-20 14:03:01.089303 2025-01-28 Processing Customer 7010 16907.7764627694 +6937 t 28 421246 40.073647 0.41326872037317486 Product description 6937 2024-04-03 14:03:01.089303 2024-01-27 Closed Customer 6937 952326.2047678180 +7046 t 57 756093 17.138597 0.7886408577176631 Product description 7046 2023-06-23 14:03:01.089303 2023-05-03 Processing Customer 7046 259374.7299461670 +7011 f 36 669485 57.295193 0.43083638451802386 Product description 7011 2022-11-18 14:03:01.089303 2023-01-31 Processing Customer 7011 540037.5075929600 +6945 f 52 233459 45.456276 0.3547433603862231 Product description 6945 2023-08-05 14:03:01.089303 2023-03-01 Processing Customer 6945 791456.7238501990 +7047 t 43 590141 34.724598 0.9513227051520836 Product description 7047 2023-03-07 14:03:01.089303 2025-07-23 Processing Customer 7047 522771.8393861240 +7014 f 57 791534 7.826536 0.10961438339846552 Product description 7014 2023-08-25 14:03:01.089303 2023-03-15 Processing Customer 7014 337555.7600078700 +6950 t 95 893988 26.358404 0.09978445000626124 Product description 6950 2023-08-20 14:03:01.089303 2025-04-25 Processing Customer 6950 244006.4093997480 +7049 f 88 540196 81.56791 0.10589347856791775 Product description 7049 2023-01-03 14:03:01.089303 2024-05-16 Closed Customer 7049 39453.2084412944 +7016 t 47 308292 78.733894 0.2099047346412064 Product description 7016 2022-06-26 14:03:01.089303 2023-02-17 Processing Customer 7016 172152.2113116580 +6957 t 96 454184 11.751979 0.30079531511302093 Product description 6957 2023-10-24 14:03:01.089303 2023-07-18 Processing Customer 6957 607167.9801942160 +7051 t 67 393621 39.46578 0.7930881655824358 Product description 7051 2021-12-23 14:03:01.089303 2023-06-27 Closed Customer 7051 304428.8686776040 +7018 t 70 243919 8.481037 0.4840657893132061 Product description 7018 2024-06-21 14:03:01.089303 2023-10-14 Closed Customer 7018 966404.7406653790 +6960 t 90 862481 46.01013 0.3990013059229298 Product description 6960 2022-10-11 14:03:01.089303 2024-08-05 Closed Customer 6960 222172.3171888110 +7055 t 82 727178 91.90965 0.20192235743851583 Product description 7055 2023-01-26 14:03:01.089303 2023-03-25 Closed Customer 7055 678794.0027295250 +7019 f 85 166741 15.987019 0.253288742718901 Product description 7019 2021-11-05 14:03:01.089303 2024-06-28 Processing Customer 7019 812320.5434918960 +6963 f 75 890819 67.32465 0.5415700639567973 Product description 6963 2021-08-10 14:03:01.089303 2024-11-22 Processing Customer 6963 631591.1906531930 +7056 t 26 88542 2.9851031 0.3037442973546298 Product description 7056 2024-03-09 14:03:01.089303 2025-01-09 Closed Customer 7056 961669.2706938890 +7023 f 7 207993 42.10091 0.5471670289525861 Product description 7023 2022-10-27 14:03:01.089303 2025-10-30 Closed Customer 7023 347876.9498730790 +6964 t 4 320384 69.30613 0.11334334599384732 Product description 6964 2021-12-28 14:03:01.089303 2025-09-11 Closed Customer 6964 791234.6058096100 +7058 t 62 666319 84.190994 0.9228452902728854 Product description 7058 2023-02-16 14:03:01.089303 2024-09-19 Closed Customer 7058 10028.7880063021 +7024 f 26 858105 84.90948 0.649271535943079 Product description 7024 2022-01-17 14:03:01.089303 2024-07-04 Closed Customer 7024 872874.9040602000 +6968 t 18 106638 60.018578 0.5220087589684397 Product description 6968 2023-12-04 14:03:01.089303 2023-04-18 Processing Customer 6968 367641.8407308940 +7059 f 60 421832 36.606705 0.528200831316969 Product description 7059 2022-12-24 14:03:01.089303 2023-03-12 Processing Customer 7059 709024.6191820600 +7028 t 92 405158 79.99842 0.6537124245276971 Product description 7028 2022-02-22 14:03:01.089303 2023-11-09 Closed Customer 7028 135246.1332782830 +6972 f 17 628223 63.579964 0.43829333282585736 Product description 6972 2022-08-05 14:03:01.089303 2024-03-04 Closed Customer 6972 866607.8162942230 +7063 t 75 58870 82.43467 0.7708823501783364 Product description 7063 2024-05-31 14:03:01.089303 2024-12-08 Processing Customer 7063 779090.8829750900 +7029 f 2 599747 40.023056 0.9983974483137459 Product description 7029 2023-12-18 14:03:01.089303 2025-09-15 Processing Customer 7029 328655.5498713750 +6973 f 83 638706 38.567314 0.8487085584963978 Product description 6973 2024-07-09 14:03:01.089303 2023-04-22 Closed Customer 6973 923017.6310760320 +7065 f 46 485007 90.34371 0.28071967949208343 Product description 7065 2024-07-29 14:03:01.089303 2025-11-30 Processing Customer 7065 117202.0978116990 +7032 f 14 399433 36.323997 0.051129310803773365 Product description 7032 2023-10-23 14:03:01.089303 2024-07-09 Closed Customer 7032 619402.9380121540 +6974 t 73 105216 53.24905 0.3463898434806012 Product description 6974 2024-01-10 14:03:01.089303 2024-11-04 Closed Customer 6974 223018.2987977580 +7070 t 55 551683 24.300152 0.27033687113783955 Product description 7070 2021-09-13 14:03:01.089303 2024-06-27 Closed Customer 7070 112251.9115393390 +7033 f 3 689059 97.82676 0.7186580808961978 Product description 7033 2021-09-02 14:03:01.089303 2025-06-13 Closed Customer 7033 763703.8983308070 +6977 f 75 414563 25.027094 0.1802467475964704 Product description 6977 2021-08-07 14:03:01.089303 2025-05-21 Closed Customer 6977 325874.9738464490 +7071 f 82 566571 66.71612 0.5581472699664012 Product description 7071 2022-05-17 14:03:01.089303 2024-12-07 Processing Customer 7071 934011.2008935930 +7034 t 88 933734 35.319958 0.22873085977175833 Product description 7034 2021-08-06 14:03:01.089303 2024-06-16 Closed Customer 7034 841916.7440224520 +6979 t 62 2379 62.05057 0.45370778108770793 Product description 6979 2023-01-09 14:03:01.089303 2023-01-13 Processing Customer 6979 822883.6583076350 +7075 f 29 931290 40.01921 0.7331348119679681 Product description 7075 2021-08-25 14:03:01.089303 2023-01-28 Closed Customer 7075 493670.8313853510 +7038 f 46 863010 35.097374 0.5192751215167917 Product description 7038 2022-12-26 14:03:01.089303 2024-10-22 Closed Customer 7038 719692.1411411700 +6986 t 68 37636 61.828938 0.365489401884318 Product description 6986 2024-01-02 14:03:01.089303 2024-06-26 Processing Customer 6986 748568.4984545850 +7084 t 30 510444 72.81292 0.4789227464999648 Product description 7084 2022-08-08 14:03:01.089303 2024-06-04 Processing Customer 7084 433428.7289144500 +7040 f 100 959725 88.84164 0.7302568697831049 Product description 7040 2023-08-29 14:03:01.089303 2025-07-29 Processing Customer 7040 468419.1870385450 +6989 f 56 228428 79.70764 0.9195398805919339 Product description 6989 2021-08-31 14:03:01.089303 2025-01-17 Cancelled Customer 6989 155743.1437858910 +7086 t 53 740980 50.17145 0.04524346342888563 Product description 7086 2023-11-23 14:03:01.089303 2023-06-09 Closed Customer 7086 87627.8167149778 +7041 t 8 850945 3.5753813 0.7392137759022361 Product description 7041 2023-02-05 14:03:01.089303 2025-09-27 Processing Customer 7041 384472.8904788220 +6991 t 67 185444 16.455906 0.9402966657001492 Product description 6991 2024-04-10 14:03:01.089303 2025-06-10 Closed Customer 6991 939507.9513906670 +7087 f 77 285610 79.93052 0.5816025056501708 Product description 7087 2022-01-09 14:03:01.089303 2025-08-08 Closed Customer 7087 53314.6692959576 +7048 t 19 406592 67.36075 0.7984533297709788 Product description 7048 2023-06-09 14:03:01.089303 2025-07-25 Processing Customer 7048 584077.5711820040 +6998 f 40 715951 8.614771 0.4262221317581911 Product description 6998 2022-11-05 14:03:01.089303 2025-01-06 Closed Customer 6998 807917.5960362410 +7092 f 13 984648 35.541092 0.9082062633942165 Product description 7092 2023-09-06 14:03:01.089303 2025-11-03 Closed Customer 7092 514979.4045061710 +7052 t 4 688041 75.04965 0.16438063907404654 Product description 7052 2024-05-21 14:03:01.089303 2024-08-16 Closed Customer 7052 583651.1651102720 +6999 f 45 355810 2.3234825 0.14775443555318546 Product description 6999 2022-03-28 14:03:01.089303 2025-03-09 Closed Customer 6999 233427.3323807570 +7094 f 56 473198 13.297229 0.051340793470590285 Product description 7094 2023-06-10 14:03:01.089303 2025-07-05 Closed Customer 7094 86445.7581087805 +7053 t 33 216491 48.5469 0.8035752666907996 Product description 7053 2022-07-13 14:03:01.089303 2023-05-25 Closed Customer 7053 581581.9173317710 +7004 f 79 93699 92.11875 0.25923022011431485 Product description 7004 2022-11-23 14:03:01.089303 2025-03-11 Closed Customer 7004 135906.7848449130 +7101 f 14 274489 42.385746 0.6609370096468403 Product description 7101 2023-04-15 14:03:01.089303 2025-03-04 Processing Customer 7101 26169.3178298614 +7060 t 59 724240 95.86186 0.1529482696477018 Product description 7060 2023-04-11 14:03:01.089303 2023-01-24 Closed Customer 7060 120375.4880704260 +7005 f 25 69025 90.200226 0.6030021797408587 Product description 7005 2021-11-13 14:03:01.089303 2025-07-20 Closed Customer 7005 646853.0088340710 +7102 f 8 86300 74.895744 0.1809443370198558 Product description 7102 2023-09-30 14:03:01.089303 2025-11-07 Closed Customer 7102 405906.9620755910 +7062 f 10 776760 7.560214 0.6151596951040688 Product description 7062 2022-08-11 14:03:01.089303 2025-04-20 Closed Customer 7062 404770.3516048920 +7007 t 61 770159 2.77066 0.9871256253308154 Product description 7007 2022-06-01 14:03:01.089303 2023-06-27 Closed Customer 7007 795663.1533660000 +7107 f 64 197130 74.4977 0.443196819681102 Product description 7107 2022-11-08 14:03:01.089303 2024-08-25 Closed Customer 7107 513713.0284332230 +7066 t 57 905655 36.173603 0.24050718305517904 Product description 7066 2024-05-02 14:03:01.089303 2023-02-28 Processing Customer 7066 323810.5230418890 +7012 t 5 825438 16.30327 0.8029762371622731 Product description 7012 2022-07-19 14:03:01.089303 2024-03-10 Processing Customer 7012 246235.1625643180 +7108 f 70 528651 72.82186 0.8462215554956778 Product description 7108 2023-08-21 14:03:01.089303 2023-04-25 Closed Customer 7108 252637.8645820130 +7067 f 40 711567 25.214132 0.9951204744017019 Product description 7067 2021-12-15 14:03:01.089303 2025-09-28 Processing Customer 7067 889521.7192219430 +7015 t 49 760050 88.9042 0.21144004761336177 Product description 7015 2022-04-05 14:03:01.089303 2024-07-10 Cancelled Customer 7015 438663.9598786640 +7109 t 3 702152 15.326973 0.7518385943626349 Product description 7109 2021-10-01 14:03:01.089303 2023-02-25 Processing Customer 7109 163919.9765123110 +7068 t 55 440480 54.964325 0.2730010151099336 Product description 7068 2023-11-13 14:03:01.089303 2023-03-27 Closed Customer 7068 55810.8359984324 +7017 t 76 338353 82.903435 0.060517651613672285 Product description 7017 2022-06-05 14:03:01.089303 2025-11-27 Closed Customer 7017 664341.1430026910 +7112 f 88 685028 86.37628 0.4804440942953825 Product description 7112 2024-02-22 14:03:01.089303 2024-11-20 Closed Customer 7112 311360.0470803700 +7073 t 17 247081 38.576107 0.010203604016595591 Product description 7073 2021-12-07 14:03:01.089303 2024-03-14 Processing Customer 7073 500234.5250908000 +7021 f 38 887118 39.33118 0.052962997753297714 Product description 7021 2023-01-27 14:03:01.089303 2025-10-28 Processing Customer 7021 990056.7454859550 +7113 f 24 111534 40.354652 0.9825793099239455 Product description 7113 2022-11-23 14:03:01.089303 2024-09-23 Processing Customer 7113 277326.9908411820 +7076 t 28 710623 18.706945 0.7610037872650324 Product description 7076 2023-07-04 14:03:01.089303 2025-06-04 Closed Customer 7076 744609.3445058220 +7025 f 16 309176 11.172523 0.7679719703654726 Product description 7025 2022-06-12 14:03:01.089303 2024-11-22 Closed Customer 7025 79290.3311581519 +7116 f 88 623824 90.40169 0.4825255651969407 Product description 7116 2021-10-12 14:03:01.089303 2025-12-23 Processing Customer 7116 925627.0907183790 +7077 t 84 550972 24.323032 0.126274012609926 Product description 7077 2024-01-26 14:03:01.089303 2023-10-05 Closed Customer 7077 728095.3661630570 +7026 f 79 69047 69.11386 0.7994741323975205 Product description 7026 2022-12-31 14:03:01.089303 2024-09-24 Closed Customer 7026 900031.6083548900 +7119 t 49 577281 63.35907 0.0830080030571132 Product description 7119 2023-04-23 14:03:01.089303 2023-11-15 Closed Customer 7119 984616.4097000030 +7079 t 13 528106 51.113987 0.8773260918780394 Product description 7079 2022-11-04 14:03:01.089303 2025-07-04 Closed Customer 7079 385935.1218095130 +7027 f 47 51044 2.6173084 0.5087525566151143 Product description 7027 2022-11-08 14:03:01.089303 2024-07-30 Closed Customer 7027 624096.0892528060 +7122 f 68 326222 31.282944 0.9663197696532855 Product description 7122 2021-11-15 14:03:01.089303 2025-05-13 Processing Customer 7122 830879.8447534680 +7082 f 26 663888 70.776794 0.5020722861316926 Product description 7082 2023-12-28 14:03:01.089303 2023-06-12 Processing Customer 7082 20050.7444943661 +7031 t 93 920642 15.8487625 0.6070924128116815 Product description 7031 2022-03-26 14:03:01.089303 2023-04-03 Processing Customer 7031 833246.8434506630 +7127 t 98 911906 97.02152 0.09663963930441 Product description 7127 2022-09-08 14:03:01.089303 2025-07-26 Closed Customer 7127 172534.2548512930 +7083 f 94 39195 8.435699 0.9727911722903926 Product description 7083 2022-10-07 14:03:01.089303 2023-09-29 Closed Customer 7083 13578.7689813220 +7037 f 45 172407 60.091408 0.33755439850532554 Product description 7037 2024-05-15 14:03:01.089303 2024-05-20 Closed Customer 7037 5570.4677166695 +7129 t 48 272805 34.373325 0.5481936423977949 Product description 7129 2021-09-05 14:03:01.089303 2024-05-13 Closed Customer 7129 146820.1808231560 +7089 t 40 810308 69.09558 0.44539609435328487 Product description 7089 2024-03-18 14:03:01.089303 2024-09-17 Processing Customer 7089 709191.3464731870 +7042 t 35 534013 60.63393 0.06671992486654688 Product description 7042 2022-01-04 14:03:01.089303 2024-07-02 Closed Customer 7042 504968.8394141580 +7131 f 35 132798 55.602966 0.9235899780433492 Product description 7131 2024-05-21 14:03:01.089303 2025-09-01 Closed Customer 7131 913484.1196513360 +7090 t 6 679901 63.76148 0.8820288610544011 Product description 7090 2023-01-25 14:03:01.089303 2023-09-22 Processing Customer 7090 296349.8684459760 +7043 f 77 954420 30.734608 0.814160697602567 Product description 7043 2024-06-13 14:03:01.089303 2024-10-12 Processing Customer 7043 691695.9874265740 +7133 f 25 794116 5.053113 0.5363089916701433 Product description 7133 2022-03-26 14:03:01.089303 2025-04-14 Closed Customer 7133 200925.6379329260 +7091 f 8 999903 98.23303 0.6326653784483653 Product description 7091 2024-01-10 14:03:01.089303 2025-03-21 Closed Customer 7091 773020.3553718660 +7050 f 81 693140 25.669598 0.8394389992349147 Product description 7050 2021-12-01 14:03:01.089303 2024-06-25 Cancelled Customer 7050 733326.2896349450 +7135 f 62 512565 37.628273 0.7220068806146251 Product description 7135 2024-04-03 14:03:01.089303 2023-01-06 Closed Customer 7135 392152.7607529430 +7093 f 66 217840 2.9275458 0.6801467226976357 Product description 7093 2023-09-27 14:03:01.089303 2024-03-24 Closed Customer 7093 585565.3986635650 +7054 f 81 138849 94.45106 0.09308309757888011 Product description 7054 2022-05-06 14:03:01.089303 2025-09-07 Processing Customer 7054 954542.4153905840 +7141 t 85 393982 97.64206 0.5030471428893044 Product description 7141 2022-07-25 14:03:01.089303 2023-04-15 Closed Customer 7141 640429.2245953370 +7096 t 15 237202 29.206905 0.5791867159581301 Product description 7096 2021-12-05 14:03:01.089303 2024-06-08 Cancelled Customer 7096 962275.3631193750 +7057 f 35 383902 36.521103 0.8663679456751545 Product description 7057 2021-09-08 14:03:01.089303 2023-12-30 Closed Customer 7057 610724.1779712070 +7146 f 67 644684 72.395355 0.8275070640496089 Product description 7146 2022-08-22 14:03:01.089303 2025-05-26 Closed Customer 7146 649950.2932561190 +7097 f 30 850866 66.41657 0.3133074417440831 Product description 7097 2024-05-31 14:03:01.089303 2023-03-06 Closed Customer 7097 579148.7069976780 +7061 t 92 145955 24.275808 0.8450613398844347 Product description 7061 2024-02-12 14:03:01.089303 2023-10-30 Processing Customer 7061 66455.3712374882 +7149 t 27 991343 85.25918 0.13255212702431507 Product description 7149 2021-11-08 14:03:01.089303 2023-06-14 Processing Customer 7149 20622.2444075763 +7103 f 66 991006 25.435543 0.7071139628543257 Product description 7103 2022-05-14 14:03:01.089303 2025-02-04 Processing Customer 7103 291575.0737062840 +7064 f 35 736439 10.461466 0.8509124617575061 Product description 7064 2021-08-11 14:03:01.089303 2025-06-22 Closed Customer 7064 708961.2591274630 +7150 t 47 14285 13.748308 0.06791689391851818 Product description 7150 2023-02-06 14:03:01.089303 2023-12-03 Cancelled Customer 7150 745167.4922897770 +7104 t 51 424252 49.565296 0.26616075812365736 Product description 7104 2022-11-24 14:03:01.089303 2023-10-25 Closed Customer 7104 223325.1638095550 +7069 f 23 946704 50.78314 0.15414525032398885 Product description 7069 2024-01-17 14:03:01.089303 2025-05-12 Closed Customer 7069 844578.9226393500 +7156 t 19 558085 29.65043 0.9454937593960651 Product description 7156 2023-09-15 14:03:01.089303 2023-11-15 Closed Customer 7156 780570.6428493020 +7105 f 19 546667 20.431812 0.8549435414547482 Product description 7105 2023-11-12 14:03:01.089303 2025-09-08 Closed Customer 7105 438705.7187464340 +7072 f 58 58855 58.408302 0.08224805971328308 Product description 7072 2024-07-01 14:03:01.089303 2024-12-12 Closed Customer 7072 462746.8665000260 +7158 f 13 89179 82.03156 0.06296050181100554 Product description 7158 2022-05-25 14:03:01.089303 2025-07-03 Processing Customer 7158 361613.7556230650 +7106 t 61 661075 43.397587 0.4733265006254008 Product description 7106 2022-09-02 14:03:01.089303 2024-03-01 Processing Customer 7106 158345.7609231470 +7074 f 41 684256 52.269344 0.6469521651685533 Product description 7074 2022-09-23 14:03:01.089303 2023-10-10 Processing Customer 7074 242368.8394787360 +7160 t 95 906382 58.047123 0.2988717128542433 Product description 7160 2024-03-14 14:03:01.089303 2024-01-27 Processing Customer 7160 36507.5686254706 +7110 t 75 9224 1.3423469 0.42097112455406105 Product description 7110 2023-03-16 14:03:01.089303 2024-06-27 Closed Customer 7110 511726.6351258960 +7078 f 15 349498 80.297134 0.8726594632852631 Product description 7078 2021-08-05 14:03:01.089303 2024-11-03 Processing Customer 7078 823030.3761777260 +7161 t 43 426823 60.602734 0.1681211181243185 Product description 7161 2021-10-26 14:03:01.089303 2024-10-02 Processing Customer 7161 350857.9923423660 +7111 t 5 704964 93.32594 0.8678975006832097 Product description 7111 2022-12-29 14:03:01.089303 2025-01-13 Processing Customer 7111 676688.6927005020 +7080 t 21 951180 86.95798 0.6569504828793917 Product description 7080 2024-06-30 14:03:01.089303 2024-12-31 Processing Customer 7080 535536.6199970820 +7163 t 97 148678 54.111 0.1794567275390122 Product description 7163 2024-02-14 14:03:01.089303 2025-11-24 Processing Customer 7163 899502.1704694640 +7115 t 59 244856 23.461802 0.2297747212942518 Product description 7115 2021-08-14 14:03:01.089303 2023-02-17 Processing Customer 7115 818301.5294889060 +7081 t 80 754326 17.827314 0.6099528460656991 Product description 7081 2023-04-01 14:03:01.089303 2024-06-19 Closed Customer 7081 981437.8225356390 +7165 f 90 96395 41.361507 0.2092091132246594 Product description 7165 2023-01-10 14:03:01.089303 2024-06-26 Closed Customer 7165 15938.8747334468 +7117 t 5 206134 42.735123 0.9810505140584915 Product description 7117 2022-06-19 14:03:01.089303 2023-08-30 Cancelled Customer 7117 843590.5470468120 +7085 f 14 290118 17.452705 0.44297102294282453 Product description 7085 2023-01-13 14:03:01.089303 2025-08-27 Closed Customer 7085 601788.6443661170 +7167 f 85 586757 8.793644 0.5391900515562398 Product description 7167 2021-08-11 14:03:01.089303 2025-12-30 Cancelled Customer 7167 31773.0012555941 +7118 t 99 514354 64.96414 0.9853376512799841 Product description 7118 2022-02-09 14:03:01.089303 2025-03-06 Closed Customer 7118 60972.9180693996 +7088 t 67 633772 7.5688233 0.054866342908045596 Product description 7088 2022-06-24 14:03:01.089303 2023-03-08 Processing Customer 7088 994963.8511863410 +7168 f 42 942458 82.03431 0.2455096133022785 Product description 7168 2024-03-28 14:03:01.089303 2024-09-07 Closed Customer 7168 51063.8479227623 +7121 f 56 82949 38.840843 0.38760357342451357 Product description 7121 2022-03-27 14:03:01.089303 2024-11-17 Closed Customer 7121 572121.2827642400 +7095 f 37 440374 50.27664 0.9871123228888159 Product description 7095 2021-10-21 14:03:01.089303 2025-12-08 Processing Customer 7095 36515.4793451481 +7170 t 63 24767 0.06124058 0.8193954452622698 Product description 7170 2023-08-23 14:03:01.089303 2024-08-05 Processing Customer 7170 187720.6583965930 +7123 f 4 482541 36.81294 0.44497249113218373 Product description 7123 2022-10-09 14:03:01.089303 2024-03-06 Closed Customer 7123 811462.4222183730 +7098 t 23 112381 8.998568 0.6995550119507534 Product description 7098 2021-08-10 14:03:01.089303 2023-07-11 Processing Customer 7098 291234.4561423200 +7171 f 8 691793 31.746466 0.16446695309130988 Product description 7171 2022-06-07 14:03:01.089303 2025-04-16 Cancelled Customer 7171 355627.3255938900 +7124 t 10 66271 22.06439 0.8958894400037565 Product description 7124 2021-09-28 14:03:01.089303 2024-05-03 Closed Customer 7124 937184.5439092500 +7099 f 52 606622 77.95103 0.9642508815652455 Product description 7099 2022-12-09 14:03:01.089303 2025-05-28 Closed Customer 7099 600396.5764100560 +7172 t 28 112343 47.047905 0.6849706191586904 Product description 7172 2024-06-04 14:03:01.089303 2023-11-21 Closed Customer 7172 783311.6453466820 +7126 t 86 795610 29.233961 0.05206189466570521 Product description 7126 2022-05-23 14:03:01.089303 2024-04-05 Closed Customer 7126 129421.1302331580 +7100 t 4 214186 81.82669 0.07774878279085229 Product description 7100 2022-05-21 14:03:01.089303 2025-02-07 Closed Customer 7100 220694.9189904460 +7173 t 74 352483 46.15654 0.03655162939632106 Product description 7173 2023-11-16 14:03:01.089303 2024-03-26 Closed Customer 7173 721835.0059401960 +7130 f 31 366726 89.63947 0.004899317669867287 Product description 7130 2023-09-04 14:03:01.089303 2023-07-16 Closed Customer 7130 960338.0299960770 +7114 t 45 890400 74.109955 0.2612445845229665 Product description 7114 2022-11-03 14:03:01.089303 2025-12-18 Closed Customer 7114 120896.5005152650 +7178 f 46 795984 1.6255721 0.3958411439143532 Product description 7178 2024-01-01 14:03:01.089303 2023-02-23 Closed Customer 7178 663576.6049874230 +7139 t 32 712916 87.06683 0.9348893657715465 Product description 7139 2021-09-22 14:03:01.089303 2025-10-09 Closed Customer 7139 583025.6868552260 +7120 t 65 217408 9.6878395 0.041346507643869046 Product description 7120 2022-12-16 14:03:01.089303 2023-11-01 Processing Customer 7120 583616.8271079320 +7179 t 90 324530 1.3343177 0.8003640812004207 Product description 7179 2024-04-30 14:03:01.089303 2024-05-18 Closed Customer 7179 391848.7816043990 +7140 t 34 28281 48.745556 0.8503986989787933 Product description 7140 2021-11-30 14:03:01.089303 2025-01-12 Processing Customer 7140 848778.3123395720 +7125 f 29 367609 50.72963 0.31532456030620537 Product description 7125 2022-03-20 14:03:01.089303 2023-03-07 Closed Customer 7125 32956.6159565857 +7181 t 61 747553 91.28346 0.4282668162380219 Product description 7181 2023-09-30 14:03:01.089303 2025-07-06 Closed Customer 7181 835319.8470666110 +7147 t 89 88422 4.8479257 0.7632341166819501 Product description 7147 2023-08-27 14:03:01.089303 2025-01-14 Closed Customer 7147 993812.1843504640 +7128 f 3 359551 88.11327 0.8187043800317078 Product description 7128 2021-10-23 14:03:01.089303 2025-11-30 Processing Customer 7128 77522.0579589444 +7182 f 22 332011 56.831043 0.5959112688515873 Product description 7182 2024-02-20 14:03:01.089303 2023-11-24 Processing Customer 7182 6202.4904291640 +7148 f 19 571359 10.7805195 0.7130999366941921 Product description 7148 2021-09-13 14:03:01.089303 2025-01-02 Processing Customer 7148 320839.6692388900 +7132 f 17 316067 72.79984 0.05861532703856298 Product description 7132 2023-07-26 14:03:01.089303 2023-12-18 Closed Customer 7132 995807.4021407060 +7184 t 21 438823 91.30177 0.052070157370408765 Product description 7184 2024-06-22 14:03:01.089303 2024-05-12 Closed Customer 7184 744579.9128846140 +7151 f 42 635286 77.57848 0.4840337788233242 Product description 7151 2022-10-02 14:03:01.089303 2025-05-16 Closed Customer 7151 256361.1680920450 +7134 f 51 415076 65.32682 0.9562730121514456 Product description 7134 2022-02-18 14:03:01.089303 2023-12-04 Processing Customer 7134 268279.2398020980 +7186 f 7 606485 76.922066 0.030489006803939844 Product description 7186 2024-04-30 14:03:01.089303 2024-12-29 Closed Customer 7186 157487.3796484330 +7152 t 58 464045 63.910145 0.8692858411783817 Product description 7152 2022-06-05 14:03:01.089303 2025-01-01 Processing Customer 7152 584167.1938176030 +7136 f 91 262090 67.123184 0.8103381094468283 Product description 7136 2021-08-20 14:03:01.089303 2023-12-07 Closed Customer 7136 541842.8379362650 +7189 f 59 972577 66.276146 0.7424155585756296 Product description 7189 2021-09-05 14:03:01.089303 2024-09-13 Closed Customer 7189 861608.1416708670 +7153 f 91 770139 48.854465 0.7380976675870485 Product description 7153 2022-11-18 14:03:01.089303 2025-11-30 Processing Customer 7153 645181.6655092730 +7137 f 21 269925 54.29404 0.8427296800955766 Product description 7137 2022-09-30 14:03:01.089303 2024-01-13 Closed Customer 7137 322653.4982112670 +7190 t 43 177662 47.001118 0.8538810997740498 Product description 7190 2023-07-22 14:03:01.089303 2023-06-21 Closed Customer 7190 929133.4144564340 +7155 f 55 476477 47.7401 0.6906029999827297 Product description 7155 2023-07-09 14:03:01.089303 2023-10-21 Closed Customer 7155 845030.0654046680 +7138 f 82 805588 6.147762 0.6017954498730198 Product description 7138 2023-11-18 14:03:01.089303 2023-03-28 Closed Customer 7138 157136.1411818300 +7193 f 0 39473 66.71465 0.04960423568699923 Product description 7193 2022-06-02 14:03:01.089303 2024-06-01 Processing Customer 7193 240603.9398696120 +7159 t 68 350144 97.54681 0.915383694966529 Product description 7159 2022-04-13 14:03:01.089303 2025-01-16 Processing Customer 7159 653811.7192526190 +7142 f 44 388288 15.884322 0.5141609680180643 Product description 7142 2023-04-01 14:03:01.089303 2025-12-07 Closed Customer 7142 891522.3351657180 +7195 f 24 21567 3.9174957 0.9890363306944252 Product description 7195 2021-12-11 14:03:01.089303 2024-05-22 Closed Customer 7195 113064.7960998950 +7164 f 97 519924 57.903603 0.5789349015008867 Product description 7164 2022-12-17 14:03:01.089303 2025-04-16 Closed Customer 7164 319758.7281238260 +7143 t 41 346227 87.88872 0.09408951538952337 Product description 7143 2024-02-27 14:03:01.089303 2023-03-12 Closed Customer 7143 46787.1423577222 +7197 t 8 195429 57.65793 0.25397526144308813 Product description 7197 2022-11-04 14:03:01.089303 2024-06-29 Closed Customer 7197 771457.9050065100 +7166 t 13 37485 64.918976 0.13744104378425703 Product description 7166 2023-10-09 14:03:01.089303 2025-04-05 Processing Customer 7166 545083.1117240010 +7144 t 20 855731 46.07786 0.44662158067064084 Product description 7144 2021-12-25 14:03:01.089303 2023-12-21 Closed Customer 7144 194473.3256002990 +7200 f 89 165813 58.56327 0.6079882499756266 Product description 7200 2022-03-10 14:03:01.089303 2023-10-30 Processing Customer 7200 985750.3441718090 +7174 f 70 395522 54.30103 0.6795075287767816 Product description 7174 2021-08-20 14:03:01.089303 2023-04-27 Closed Customer 7174 948587.3582985070 +7145 t 55 631678 32.45068 0.037699629352896835 Product description 7145 2022-01-26 14:03:01.089303 2024-07-08 Closed Customer 7145 665352.2708915530 +7203 t 17 137390 37.489708 0.796516360993067 Product description 7203 2022-04-25 14:03:01.089303 2024-07-20 Processing Customer 7203 280796.3622568760 +7177 t 45 267064 65.73037 0.13027663153926738 Product description 7177 2021-11-29 14:03:01.089303 2023-04-23 Closed Customer 7177 883008.7408264300 +7154 t 28 478466 17.773941 0.4305977609701195 Product description 7154 2022-05-19 14:03:01.089303 2024-09-26 Processing Customer 7154 224362.0177224560 +7210 f 56 489934 34.79301 0.40651856144139487 Product description 7210 2023-12-04 14:03:01.089303 2024-04-15 Closed Customer 7210 80416.0103339093 +7180 f 36 585543 56.495125 0.0850372245690636 Product description 7180 2021-12-16 14:03:01.089303 2023-12-28 Processing Customer 7180 398768.2378749860 +7157 t 74 510974 33.120056 0.6001693421088667 Product description 7157 2023-12-23 14:03:01.089303 2023-12-19 Closed Customer 7157 784720.1015614540 +7211 f 64 780001 9.885925 0.7163315214288843 Product description 7211 2022-12-12 14:03:01.089303 2023-03-29 Closed Customer 7211 750266.1660256780 +7183 t 68 565890 59.36166 0.2201027632432826 Product description 7183 2024-06-14 14:03:01.089303 2024-06-25 Processing Customer 7183 675412.7583984830 +7162 f 72 600958 20.65568 0.7782338579000658 Product description 7162 2021-11-14 14:03:01.089303 2024-04-30 Closed Customer 7162 714045.0506000920 +7216 f 2 223832 26.210804 0.6679278458578111 Product description 7216 2022-03-18 14:03:01.089303 2023-05-10 Processing Customer 7216 979326.4696501220 +7185 t 95 844932 84.62716 0.30959137706469164 Product description 7185 2023-12-08 14:03:01.089303 2023-04-29 Closed Customer 7185 398830.2968185130 +7169 t 35 945684 14.455452 0.46748761459424415 Product description 7169 2023-06-12 14:03:01.089303 2024-01-31 Closed Customer 7169 898685.2094863810 +7219 f 40 671521 59.98743 0.26813288246158606 Product description 7219 2023-10-26 14:03:01.089303 2023-06-12 Closed Customer 7219 820744.0106952330 +7187 t 19 191974 4.238668 0.1272677634829691 Product description 7187 2021-09-22 14:03:01.089303 2024-09-22 Closed Customer 7187 707431.4258166260 +7175 f 19 893775 84.27524 0.6919584525989997 Product description 7175 2022-01-26 14:03:01.089303 2025-07-29 Processing Customer 7175 939453.1180028310 +7226 t 80 483049 16.419626 0.33924626556540005 Product description 7226 2023-04-17 14:03:01.089303 2025-07-22 Processing Customer 7226 698645.7935745600 +7188 f 1 752742 72.00682 0.009810899706636178 Product description 7188 2023-04-06 14:03:01.089303 2024-02-12 Processing Customer 7188 21037.9558453262 +7176 f 13 518358 85.58379 0.41117523277094037 Product description 7176 2023-06-25 14:03:01.089303 2025-03-09 Closed Customer 7176 422992.2777495080 +7228 f 85 791507 21.143078 0.5452109049001024 Product description 7228 2022-12-02 14:03:01.089303 2025-05-07 Processing Customer 7228 978132.7966983860 +7194 t 69 94563 43.811424 0.007387350846123297 Product description 7194 2022-03-26 14:03:01.089303 2023-11-05 Processing Customer 7194 780186.9881722500 +7191 t 34 271707 41.389774 0.7913173794423791 Product description 7191 2023-02-11 14:03:01.089303 2023-05-02 Processing Customer 7191 879095.0737389810 +7229 f 87 625974 5.4216504 0.876393315842229 Product description 7229 2023-03-15 14:03:01.089303 2025-04-13 Closed Customer 7229 699648.9579052290 +7199 t 7 500720 15.636806 0.30327864095417567 Product description 7199 2022-05-18 14:03:01.089303 2025-01-01 Closed Customer 7199 666851.3044179140 +7192 t 39 706860 28.63739 0.6521142126729664 Product description 7192 2023-03-19 14:03:01.089303 2025-09-06 Closed Customer 7192 817747.5542886370 +7231 t 79 30701 91.289246 0.25780351891309294 Product description 7231 2022-01-06 14:03:01.089303 2025-05-31 Closed Customer 7231 46376.6227332592 +7204 f 58 117709 2.1173074 0.2786336352812455 Product description 7204 2022-08-10 14:03:01.089303 2024-05-10 Processing Customer 7204 992723.0317603670 +7196 f 88 380518 4.76214 0.48795528678694566 Product description 7196 2024-03-19 14:03:01.089303 2024-05-14 Processing Customer 7196 718777.2532715260 +7232 t 41 268227 60.473335 0.3304061927764437 Product description 7232 2023-04-09 14:03:01.089303 2025-10-24 Processing Customer 7232 149796.6921884210 +7205 t 26 296117 99.31869 0.07227382292903428 Product description 7205 2021-12-24 14:03:01.089303 2024-03-21 Closed Customer 7205 293502.4001516060 +7198 f 56 655483 19.884714 0.37991750784925316 Product description 7198 2022-03-05 14:03:01.089303 2023-11-09 Closed Customer 7198 139927.4268066580 +7237 f 41 728645 10.102842 0.9784708976579566 Product description 7237 2024-07-05 14:03:01.089303 2024-02-15 Closed Customer 7237 913668.5347500270 +7207 t 45 199673 17.633219 0.24377744342285013 Product description 7207 2024-06-21 14:03:01.089303 2023-03-04 Closed Customer 7207 790758.0818532160 +7201 t 1 181529 63.114624 0.06698038131358786 Product description 7201 2024-02-24 14:03:01.089303 2025-12-09 Closed Customer 7201 143695.0417187430 +7238 f 11 639772 53.387077 0.15525249610832503 Product description 7238 2023-11-07 14:03:01.089303 2025-09-10 Closed Customer 7238 506851.2466388630 +7209 f 69 682569 78.16957 0.5422184343166236 Product description 7209 2023-08-18 14:03:01.089303 2024-07-24 Cancelled Customer 7209 394408.3546999910 +7202 t 89 175675 54.8691 0.8798866056433319 Product description 7202 2024-02-18 14:03:01.089303 2024-09-23 Closed Customer 7202 909480.6386055080 +7241 t 94 928500 57.94459 0.7831517462458777 Product description 7241 2024-07-11 14:03:01.089303 2025-09-17 Closed Customer 7241 496549.0698109360 +7212 f 91 842557 28.930544 0.45878513877489624 Product description 7212 2022-04-27 14:03:01.089303 2025-05-05 Processing Customer 7212 438267.6418881810 +7206 f 9 149695 5.473448 0.19221900307870854 Product description 7206 2022-08-20 14:03:01.089303 2024-01-10 Closed Customer 7206 463145.9119485440 +7244 t 87 770125 36.6447 0.7074013412148403 Product description 7244 2023-02-14 14:03:01.089303 2023-07-02 Closed Customer 7244 305870.3511270160 +7213 t 58 184506 50.953365 0.37440905265446034 Product description 7213 2023-07-30 14:03:01.089303 2025-05-23 Closed Customer 7213 422556.0754416340 +7208 t 51 122762 94.34107 0.945728408565369 Product description 7208 2022-12-06 14:03:01.089303 2024-06-18 Closed Customer 7208 653573.0669287220 +7246 f 15 470915 5.317799 0.610318603677797 Product description 7246 2023-02-09 14:03:01.089303 2023-02-24 Closed Customer 7246 402331.7005517090 +7217 f 62 18648 48.771923 0.8330570181154506 Product description 7217 2024-02-05 14:03:01.089303 2024-06-30 Closed Customer 7217 318696.2949562040 +7214 t 69 456468 20.364538 0.8345629979641593 Product description 7214 2023-07-17 14:03:01.089303 2025-04-29 Closed Customer 7214 984088.6508604140 +7254 t 50 88862 40.423317 0.8948490796538024 Product description 7254 2022-07-13 14:03:01.089303 2023-10-15 Processing Customer 7254 705266.2806774810 +7221 t 54 251089 95.81455 0.6811651443538871 Product description 7221 2023-02-10 14:03:01.089303 2024-12-01 Processing Customer 7221 376811.2564726350 +7215 t 42 8069 90.830765 0.32320795448275064 Product description 7215 2023-02-10 14:03:01.089303 2024-07-09 Closed Customer 7215 268338.5911105280 +7256 t 47 487685 73.68615 0.10547768883346009 Product description 7256 2023-08-15 14:03:01.089303 2025-12-15 Closed Customer 7256 322301.3262556940 +7222 f 37 876081 91.33029 0.4071055390123597 Product description 7222 2023-10-06 14:03:01.089303 2023-03-12 Cancelled Customer 7222 626389.9468247550 +7218 t 93 347838 82.62692 0.8238038027021339 Product description 7218 2022-10-23 14:03:01.089303 2025-09-23 Processing Customer 7218 509921.3496148420 +7258 f 39 238277 73.46913 0.01340828496014268 Product description 7258 2021-09-14 14:03:01.089303 2023-12-22 Closed Customer 7258 672476.8357213300 +7224 f 16 936266 76.47201 0.03866211153133037 Product description 7224 2023-02-12 14:03:01.089303 2024-01-22 Closed Customer 7224 289319.5660526860 +7220 f 61 871478 17.547987 0.43643284698236684 Product description 7220 2021-12-09 14:03:01.089303 2025-04-30 Closed Customer 7220 922677.9530736240 +7267 t 98 147044 63.167854 0.6917123433242125 Product description 7267 2024-03-21 14:03:01.089303 2024-04-23 Processing Customer 7267 6296.7819915478 +7233 t 67 348149 80.86207 0.31715136586616666 Product description 7233 2023-03-17 14:03:01.089303 2023-02-25 Closed Customer 7233 847548.1729902410 +7223 t 36 255394 89.22198 0.8577280475439899 Product description 7223 2022-05-18 14:03:01.089303 2025-09-17 Processing Customer 7223 664585.0170173870 +7268 f 62 721099 78.490326 0.4036230121934423 Product description 7268 2024-02-23 14:03:01.089303 2025-06-01 Closed Customer 7268 956110.5055502170 +7234 f 88 407559 23.3095 0.9690922707252625 Product description 7234 2024-06-14 14:03:01.089303 2024-03-24 Closed Customer 7234 884982.6937634370 +7225 f 47 726778 43.42328 0.3337565575409478 Product description 7225 2024-05-25 14:03:01.089303 2025-04-07 Closed Customer 7225 718916.2199931260 +7271 t 97 850111 34.5588 0.03971219652997604 Product description 7271 2022-01-30 14:03:01.089303 2023-07-13 Closed Customer 7271 504115.7603609850 +7235 t 17 111874 94.667694 0.08446992311448298 Product description 7235 2023-12-19 14:03:01.089303 2023-09-27 Closed Customer 7235 534813.5122327130 +7227 t 60 139529 72.36967 0.6461406254407969 Product description 7227 2023-07-05 14:03:01.089303 2024-02-23 Processing Customer 7227 406959.4469930560 +7276 f 49 910786 12.239956 0.17364614857375926 Product description 7276 2022-01-21 14:03:01.089303 2024-08-25 Closed Customer 7276 259269.4225314920 +7240 t 81 762846 15.48019 0.31148570299567524 Product description 7240 2022-12-04 14:03:01.089303 2024-03-15 Closed Customer 7240 520941.6156176910 +7230 t 67 735696 67.32961 0.7842338365792578 Product description 7230 2022-03-04 14:03:01.089303 2023-02-27 Closed Customer 7230 643340.0607508370 +7277 f 88 264287 78.60448 0.6365518639318566 Product description 7277 2023-11-26 14:03:01.089303 2023-02-11 Closed Customer 7277 871803.3736550370 +7243 t 4 15051 38.03471 0.9385347834420799 Product description 7243 2023-10-29 14:03:01.089303 2023-08-22 Closed Customer 7243 110388.4637026160 +7236 f 50 195186 47.484447 0.21582788680848708 Product description 7236 2023-02-18 14:03:01.089303 2025-12-24 Closed Customer 7236 537167.2935964260 +7285 t 7 599864 90.64882 0.19090750091192632 Product description 7285 2023-01-01 14:03:01.089303 2023-11-11 Processing Customer 7285 373316.2451610820 +7253 f 39 891728 44.4679 0.24520738541598774 Product description 7253 2024-07-30 14:03:01.089303 2023-03-19 Processing Customer 7253 932388.2582702540 +7239 t 36 116427 97.980644 0.5286701435716559 Product description 7239 2021-10-02 14:03:01.089303 2025-03-11 Processing Customer 7239 486765.1066418760 +7286 t 63 214798 67.27089 0.358297351424099 Product description 7286 2021-12-19 14:03:01.089303 2025-11-30 Processing Customer 7286 533061.6401254920 +7257 f 60 557972 41.23739 0.11368912104273932 Product description 7257 2023-02-01 14:03:01.089303 2023-02-03 Processing Customer 7257 953457.7590060240 +7242 t 6 528588 21.374104 0.3148462080618124 Product description 7242 2021-11-10 14:03:01.089303 2025-09-11 Closed Customer 7242 838630.2427939540 +7291 f 99 771479 98.23577 0.7556406759408887 Product description 7291 2022-09-17 14:03:01.089303 2025-08-18 Closed Customer 7291 793455.1424547640 +7259 t 100 885239 52.43163 0.7869137113642708 Product description 7259 2024-07-12 14:03:01.089303 2025-12-10 Processing Customer 7259 776305.3701447440 +7245 f 93 364639 96.12873 0.5027110896344844 Product description 7245 2024-02-27 14:03:01.089303 2023-03-15 Closed Customer 7245 720432.7451648350 +7294 t 4 228371 14.353228 0.6273644381426209 Product description 7294 2022-06-18 14:03:01.089303 2025-06-07 Closed Customer 7294 150129.2691426350 +7263 t 42 460895 9.603367 0.6320212962961733 Product description 7263 2022-10-09 14:03:01.089303 2025-05-07 Closed Customer 7263 892596.0426937640 +7247 f 42 305478 27.476763 0.40611496261889 Product description 7247 2022-07-07 14:03:01.089303 2024-05-23 Closed Customer 7247 334441.7818272090 +7295 f 6 471860 10.618782 0.5676743645862885 Product description 7295 2024-01-10 14:03:01.089303 2023-08-06 Closed Customer 7295 373587.9030085170 +7266 t 27 460017 81.60862 0.5946176556331793 Product description 7266 2024-02-29 14:03:01.089303 2024-07-20 Processing Customer 7266 728437.5648191490 +7248 f 35 890776 55.23841 0.20487519192495185 Product description 7248 2023-06-30 14:03:01.089303 2023-02-27 Closed Customer 7248 682931.3561270500 +7296 f 80 450086 7.064897 0.12459521098212178 Product description 7296 2023-04-17 14:03:01.089303 2023-08-13 Closed Customer 7296 27537.0587311095 +7269 t 7 355994 10.296403 0.4573527747484434 Product description 7269 2023-03-23 14:03:01.089303 2023-08-27 Processing Customer 7269 413041.5501842000 +7249 f 27 385730 86.83004 0.27192820750194713 Product description 7249 2023-02-20 14:03:01.089303 2023-10-27 Closed Customer 7249 753873.4168192320 +7297 t 32 311330 10.388231 0.5978059031773952 Product description 7297 2022-09-09 14:03:01.089303 2024-01-07 Closed Customer 7297 510054.1717949520 +7274 f 55 719598 83.32974 0.5160309548682918 Product description 7274 2023-12-26 14:03:01.089303 2024-06-12 Closed Customer 7274 365681.7838192450 +7250 f 77 654054 3.8546884 0.47232658024662655 Product description 7250 2023-07-01 14:03:01.089303 2024-06-15 Closed Customer 7250 604830.8042281650 +7300 t 6 330185 38.787525 0.07454568788978122 Product description 7300 2022-11-20 14:03:01.089303 2024-06-25 Processing Customer 7300 469776.8178526720 +7281 t 78 565721 96.44955 0.015621176845897367 Product description 7281 2023-11-14 14:03:01.089303 2025-01-29 Closed Customer 7281 18516.1210255664 +7251 f 91 694173 41.08935 0.6191214994899532 Product description 7251 2022-10-28 14:03:01.089303 2024-10-28 Closed Customer 7251 947779.3399210410 +7303 f 44 206256 95.05974 0.418163516093621 Product description 7303 2021-11-26 14:03:01.089303 2023-04-11 Closed Customer 7303 809765.2389054450 +7282 f 63 141837 55.435585 0.6352776655937689 Product description 7282 2022-11-25 14:03:01.089303 2024-05-01 Processing Customer 7282 782872.0266134220 +7252 f 86 813570 55.79988 0.5845214849783638 Product description 7252 2024-02-18 14:03:01.089303 2023-12-22 Processing Customer 7252 782787.5142481200 +7309 t 61 325192 35.017742 0.7299031567208232 Product description 7309 2023-04-19 14:03:01.089303 2023-05-24 Closed Customer 7309 4388.7973378212 +7283 t 52 650221 57.485767 0.8714679238309486 Product description 7283 2024-02-26 14:03:01.089303 2025-03-31 Processing Customer 7283 968937.6874056810 +7255 t 20 772565 25.149967 0.9013094845151564 Product description 7255 2022-12-31 14:03:01.089303 2024-12-03 Closed Customer 7255 606597.5612112880 +7310 t 71 924671 25.535885 0.1519550078672509 Product description 7310 2024-05-07 14:03:01.089303 2025-02-06 Closed Customer 7310 101213.9794963680 +7284 t 23 526287 16.943903 0.9411873842033813 Product description 7284 2022-11-05 14:03:01.089303 2025-01-27 Closed Customer 7284 346382.4448701050 +7260 t 83 98727 96.80859 0.5632761843204399 Product description 7260 2023-06-20 14:03:01.089303 2024-05-28 Closed Customer 7260 755622.2364597790 +7315 t 13 377825 30.362541 0.9498155344197414 Product description 7315 2023-10-14 14:03:01.089303 2025-01-30 Closed Customer 7315 220156.9700577260 +7287 f 31 250333 43.901085 0.19874415053028827 Product description 7287 2022-07-12 14:03:01.089303 2023-12-08 Closed Customer 7287 775027.9024750850 +7261 f 92 742591 57.50219 0.4975415751381185 Product description 7261 2022-02-16 14:03:01.089303 2023-08-03 Closed Customer 7261 120977.4602593400 +7317 f 45 947932 52.774994 0.019746430819658656 Product description 7317 2022-02-15 14:03:01.089303 2024-05-16 Processing Customer 7317 405834.7856529320 +7289 f 8 958963 84.903244 0.16692441744535103 Product description 7289 2023-09-25 14:03:01.089303 2024-03-03 Closed Customer 7289 943901.1512127310 +7262 f 50 318667 82.25211 0.6415524103848718 Product description 7262 2022-11-13 14:03:01.089303 2024-11-25 Processing Customer 7262 351020.2234118300 +7318 t 43 962153 11.419291 0.2528807800507451 Product description 7318 2023-04-14 14:03:01.089303 2025-03-19 Processing Customer 7318 51510.9552735957 +7290 f 13 288703 91.0749 0.24277199936963711 Product description 7290 2022-01-22 14:03:01.089303 2023-11-05 Processing Customer 7290 435847.6328640930 +7264 t 85 555145 24.895897 0.30922745598467216 Product description 7264 2024-02-18 14:03:01.089303 2024-04-04 Processing Customer 7264 885333.6402405890 +7319 f 88 196695 86.55422 0.11289096939616883 Product description 7319 2023-04-29 14:03:01.089303 2023-10-03 Closed Customer 7319 286766.9512454720 +7293 t 84 850637 80.02401 0.9450428406110873 Product description 7293 2023-03-21 14:03:01.089303 2024-04-26 Closed Customer 7293 281579.6622873600 +7265 t 96 743158 79.52717 0.3872218203463511 Product description 7265 2022-10-17 14:03:01.089303 2025-03-11 Closed Customer 7265 510905.5472842460 +7324 t 71 411398 77.29873 0.6874012372419998 Product description 7324 2023-02-20 14:03:01.089303 2025-12-11 Processing Customer 7324 451000.7466025710 +7298 f 81 211429 78.27097 0.8627051543339093 Product description 7298 2023-11-24 14:03:01.089303 2024-03-31 Closed Customer 7298 163704.4472449640 +7270 t 21 68079 30.557913 0.17820664848330026 Product description 7270 2021-12-16 14:03:01.089303 2024-07-29 Closed Customer 7270 334497.9462525400 +7326 t 30 581635 44.74919 0.4690375169838674 Product description 7326 2023-12-09 14:03:01.089303 2023-09-26 Processing Customer 7326 32438.2826205785 +7299 t 39 928070 33.52066 0.37265323635079284 Product description 7299 2021-10-03 14:03:01.089303 2025-08-20 Cancelled Customer 7299 641321.5750071190 +7272 t 98 570634 40.118847 0.7877618432159288 Product description 7272 2024-01-31 14:03:01.089303 2024-09-23 Processing Customer 7272 492174.2521064450 +7327 f 33 321041 1.7408996 0.5111697994305047 Product description 7327 2021-11-07 14:03:01.089303 2025-04-04 Processing Customer 7327 458593.4901974260 +7301 f 44 341385 62.5984 0.259192882046964 Product description 7301 2022-03-27 14:03:01.089303 2023-07-23 Processing Customer 7301 732471.7280560120 +7273 t 91 484810 1.2526532 0.47294723660276716 Product description 7273 2022-05-05 14:03:01.089303 2025-06-07 Processing Customer 7273 781904.6015212620 +7330 t 15 870975 94.9216 0.29201673764705305 Product description 7330 2021-10-23 14:03:01.089303 2025-10-04 Processing Customer 7330 879353.0236433080 +7302 f 89 119146 5.788365 0.9030272075537589 Product description 7302 2021-11-16 14:03:01.089303 2023-06-11 Closed Customer 7302 215690.1677309620 +7275 f 66 193582 45.234303 0.513383827301535 Product description 7275 2021-09-27 14:03:01.089303 2023-05-04 Closed Customer 7275 331436.5197474630 +7332 t 28 353047 75.13034 0.42556104739796297 Product description 7332 2021-09-19 14:03:01.089303 2025-12-20 Processing Customer 7332 16923.1820518370 +7304 t 87 415998 21.59666 0.03106522659145483 Product description 7304 2022-08-07 14:03:01.089303 2023-05-26 Processing Customer 7304 231993.4179718930 +7278 t 60 692101 4.876442 0.9372534170574092 Product description 7278 2021-08-23 14:03:01.089303 2025-12-18 Closed Customer 7278 906311.6830100310 +7333 t 13 464248 86.7605 0.6091813663966619 Product description 7333 2022-06-08 14:03:01.089303 2023-01-25 Processing Customer 7333 913484.8156867900 +7305 f 23 505096 76.580956 0.34955936264119813 Product description 7305 2023-09-25 14:03:01.089303 2025-06-29 Processing Customer 7305 64587.0708309317 +7279 f 37 833774 70.497635 0.5062587505776257 Product description 7279 2021-09-21 14:03:01.089303 2023-05-22 Cancelled Customer 7279 429226.8013201940 +7335 t 85 399533 4.6941533 0.8322150654727665 Product description 7335 2024-01-23 14:03:01.089303 2023-12-07 Closed Customer 7335 453512.1233136400 +7307 t 2 194476 6.529658 0.8609500492797828 Product description 7307 2021-10-23 14:03:01.089303 2024-09-10 Closed Customer 7307 617380.5670247670 +7280 f 57 402861 38.99279 0.9681381512405451 Product description 7280 2021-11-07 14:03:01.089303 2025-09-21 Closed Customer 7280 275589.6782633760 +7338 f 13 724198 77.67535 0.23194366982288983 Product description 7338 2022-05-15 14:03:01.089303 2023-05-28 Processing Customer 7338 159811.6741518720 +7312 f 36 188629 78.86216 0.026594503755159593 Product description 7312 2021-11-14 14:03:01.089303 2025-10-30 Processing Customer 7312 909711.6368177960 +7288 f 32 421381 47.187042 0.4006208556876203 Product description 7288 2023-08-29 14:03:01.089303 2025-04-05 Processing Customer 7288 915171.4396643160 +7340 f 93 15917 1.785124 0.8464135629392331 Product description 7340 2022-11-30 14:03:01.089303 2025-12-24 Closed Customer 7340 203010.1026155040 +7313 f 78 714971 70.80642 0.5234445402614547 Product description 7313 2022-11-16 14:03:01.089303 2024-03-22 Processing Customer 7313 279207.4933859110 +7292 f 52 531080 83.32691 0.7755748897827672 Product description 7292 2023-08-29 14:03:01.089303 2024-03-21 Closed Customer 7292 706045.2619448550 +7341 f 91 148946 92.26579 0.3464079266643765 Product description 7341 2021-10-20 14:03:01.089303 2024-08-05 Processing Customer 7341 437481.1654920200 +7314 f 81 283148 42.401836 0.6215314639764493 Product description 7314 2022-11-30 14:03:01.089303 2024-08-25 Closed Customer 7314 408753.8987353200 +7306 f 81 325254 97.55271 0.3951363098153138 Product description 7306 2024-04-03 14:03:01.089303 2025-06-19 Closed Customer 7306 221669.9607992570 +7345 t 40 352282 57.99315 0.13377127314250004 Product description 7345 2024-02-28 14:03:01.089303 2025-11-07 Closed Customer 7345 63921.3772156033 +7316 t 48 774358 11.748426 0.8919638996962682 Product description 7316 2023-10-07 14:03:01.089303 2025-07-22 Closed Customer 7316 733148.4732054180 +7308 f 41 926615 86.91794 0.2651294357094187 Product description 7308 2021-08-24 14:03:01.089303 2025-04-03 Cancelled Customer 7308 926499.6732111610 +7348 f 54 920059 86.231674 0.7553660576627053 Product description 7348 2024-03-15 14:03:01.089303 2024-07-24 Closed Customer 7348 852180.4250175260 +7321 f 37 206797 49.019 0.7102737015093332 Product description 7321 2023-08-07 14:03:01.089303 2024-11-10 Closed Customer 7321 135649.5155054840 +7311 t 61 440513 86.23339 0.3405055821360641 Product description 7311 2022-04-20 14:03:01.089303 2023-07-12 Closed Customer 7311 537666.8977098970 +7349 f 94 623349 30.037071 0.7636394370059918 Product description 7349 2023-07-29 14:03:01.089303 2024-09-22 Closed Customer 7349 454993.4126803490 +7322 f 67 648129 6.86946 0.44930460049259935 Product description 7322 2021-12-05 14:03:01.089303 2024-11-10 Processing Customer 7322 630044.1651086710 +7320 t 10 133727 25.42727 0.5074806113351791 Product description 7320 2022-12-02 14:03:01.089303 2023-06-06 Processing Customer 7320 62463.1374364881 +7354 f 1 997883 27.339254 0.8933616983576158 Product description 7354 2023-12-11 14:03:01.089303 2023-04-21 Closed Customer 7354 861452.6784581390 +7323 f 42 994983 48.988167 0.42943243908350937 Product description 7323 2023-08-03 14:03:01.089303 2025-03-18 Processing Customer 7323 382197.2275972380 +7336 f 74 626873 19.559036 0.9194754791905133 Product description 7336 2022-02-10 14:03:01.089303 2023-07-21 Closed Customer 7336 409952.5313507540 +7356 t 41 916256 16.672056 0.37430656268814744 Product description 7356 2022-07-15 14:03:01.089303 2024-02-15 Closed Customer 7356 776932.8264369440 +7325 t 95 546980 54.39365 0.0670922651556829 Product description 7325 2023-03-02 14:03:01.089303 2024-08-03 Closed Customer 7325 279990.0422773900 +7346 f 36 206350 75.56922 0.9053640777207583 Product description 7346 2022-09-10 14:03:01.089303 2024-01-19 Closed Customer 7346 654312.4690538140 +7362 f 93 665201 70.18783 0.4940086298162143 Product description 7362 2021-08-20 14:03:01.089303 2024-06-04 Processing Customer 7362 992519.8318745920 +7328 f 5 932020 91.47738 0.3395656253899624 Product description 7328 2022-06-02 14:03:01.089303 2024-02-24 Processing Customer 7328 590156.3786370540 +7350 f 79 480519 62.584843 0.10767733827357873 Product description 7350 2022-10-08 14:03:01.089303 2023-12-22 Processing Customer 7350 461387.5645124490 +7364 t 40 873362 20.474922 0.9054736513961075 Product description 7364 2023-08-09 14:03:01.089303 2025-03-15 Closed Customer 7364 6525.8762754716 +7329 t 64 824090 11.15691 0.8595037994613399 Product description 7329 2022-06-13 14:03:01.089303 2023-08-24 Closed Customer 7329 221558.7877579420 +7351 f 63 655627 93.90324 0.6612620341990656 Product description 7351 2023-09-21 14:03:01.089303 2024-11-30 Closed Customer 7351 998039.8538504640 +7366 t 61 159142 11.651761 0.7823751231586087 Product description 7366 2023-02-07 14:03:01.089303 2025-11-11 Closed Customer 7366 840834.7875270330 +7331 t 74 237909 29.934477 0.42025076275541196 Product description 7331 2021-10-26 14:03:01.089303 2024-08-10 Closed Customer 7331 923598.9494487240 +7352 t 27 459125 5.203748 0.88366266347467 Product description 7352 2022-12-05 14:03:01.089303 2025-09-02 Processing Customer 7352 349464.9939596140 +7370 f 65 365075 71.172874 0.809490753446326 Product description 7370 2022-01-16 14:03:01.089303 2024-04-10 Processing Customer 7370 104330.9532884220 +7334 t 27 426160 9.7121525 0.5942237686881846 Product description 7334 2022-07-31 14:03:01.089303 2024-10-18 Processing Customer 7334 886559.5327119000 +7353 t 40 105977 98.10078 0.1282749318615508 Product description 7353 2022-01-16 14:03:01.089303 2023-10-03 Closed Customer 7353 715654.6762904770 +7374 f 71 147349 32.99415 0.45224297664278623 Product description 7374 2024-01-12 14:03:01.089303 2023-06-12 Processing Customer 7374 521917.7402322440 +7337 t 46 979300 61.65983 0.25203601366827044 Product description 7337 2023-10-13 14:03:01.089303 2025-04-17 Closed Customer 7337 147819.0239102090 +7355 t 49 701520 84.92535 0.8327119106209473 Product description 7355 2022-01-16 14:03:01.089303 2024-04-15 Processing Customer 7355 783238.6524279120 +7375 f 70 623530 24.55494 0.044508131015589925 Product description 7375 2024-05-03 14:03:01.089303 2023-10-03 Processing Customer 7375 146261.6923000400 +7339 t 68 385547 29.803165 0.1293318490651707 Product description 7339 2022-10-31 14:03:01.089303 2025-01-20 Closed Customer 7339 728184.4796773100 +7357 t 13 881118 23.099167 0.8896207940965404 Product description 7357 2022-06-18 14:03:01.089303 2023-05-16 Processing Customer 7357 911264.4928492060 +7376 t 12 369042 89.81056 0.4537703915031912 Product description 7376 2024-03-10 14:03:01.089303 2025-12-03 Processing Customer 7376 395473.1220715680 +7342 f 15 585644 33.17993 0.24212140233347768 Product description 7342 2024-04-28 14:03:01.089303 2025-06-18 Closed Customer 7342 578854.2234470030 +7358 t 70 414573 18.069414 0.29172100424324654 Product description 7358 2022-11-24 14:03:01.089303 2023-12-19 Closed Customer 7358 672176.5003814400 +7379 f 84 708582 97.90668 0.7731825171606914 Product description 7379 2023-01-21 14:03:01.089303 2025-07-26 Processing Customer 7379 376599.3140585630 +7343 t 37 629078 47.48346 0.7451668504214162 Product description 7343 2023-01-23 14:03:01.089303 2023-07-25 Processing Customer 7343 789161.9160439380 +7360 t 93 818192 37.091156 0.04600718078311772 Product description 7360 2021-10-10 14:03:01.089303 2024-10-28 Closed Customer 7360 597356.0343634790 +7385 t 84 799243 18.278557 0.8250079072003516 Product description 7385 2022-02-14 14:03:01.089303 2023-05-26 Closed Customer 7385 501408.4055478240 +7344 t 54 605034 2.8446794 0.3229981786542844 Product description 7344 2024-03-09 14:03:01.089303 2023-06-25 Closed Customer 7344 470124.9714443560 +7361 f 87 263954 39.816902 0.2944048588650112 Product description 7361 2021-08-26 14:03:01.089303 2024-04-13 Closed Customer 7361 499380.4783484850 +7387 t 53 467640 16.85717 0.7361760371010178 Product description 7387 2023-02-02 14:03:01.089303 2023-07-20 Processing Customer 7387 598894.4748413550 +7347 f 40 520441 70.94466 0.9272435982615725 Product description 7347 2022-02-18 14:03:01.089303 2024-04-14 Closed Customer 7347 782912.9493617300 +7363 f 48 627921 55.8348 0.8961504571391252 Product description 7363 2021-10-10 14:03:01.089303 2025-09-27 Closed Customer 7363 217075.4641581500 +7389 f 36 432496 15.83574 0.8424379607330437 Product description 7389 2021-11-02 14:03:01.089303 2025-08-09 Closed Customer 7389 629877.9589320450 +7359 f 58 157594 8.004356 0.8698523234160085 Product description 7359 2021-11-06 14:03:01.089303 2024-03-18 Closed Customer 7359 201450.0428548520 +7365 t 38 321681 44.44661 0.32728948702694893 Product description 7365 2023-04-21 14:03:01.089303 2023-08-09 Closed Customer 7365 397783.1970115200 +7390 f 27 3256 13.604872 0.8898063599555854 Product description 7390 2024-07-16 14:03:01.089303 2025-04-05 Closed Customer 7390 586100.0331561960 +7367 f 69 237429 36.307003 0.01770719713258373 Product description 7367 2023-07-30 14:03:01.089303 2024-11-07 Closed Customer 7367 494111.5482990450 +7368 t 33 209768 42.8653 0.43613802495339016 Product description 7368 2022-05-04 14:03:01.089303 2023-08-24 Closed Customer 7368 288536.7634853180 +7391 f 68 901709 95.625145 0.6109578106898752 Product description 7391 2021-12-06 14:03:01.089303 2024-05-05 Closed Customer 7391 445174.8850897170 +7369 f 81 981538 65.18348 0.7575755574799921 Product description 7369 2022-05-31 14:03:01.089303 2024-01-29 Processing Customer 7369 477.2803032083 +7371 f 51 587598 15.972169 0.05847260775896146 Product description 7371 2023-05-02 14:03:01.089303 2024-05-13 Closed Customer 7371 837439.9514558780 +7411 f 4 828072 68.34028 0.4443906396045634 Product description 7411 2023-11-10 14:03:01.089303 2023-05-23 Closed Customer 7411 6999.5624113766 +7373 f 77 833240 2.7475405 0.34191518469650717 Product description 7373 2021-12-07 14:03:01.089303 2024-08-22 Closed Customer 7373 28012.7135456780 +7372 t 6 575990 77.319084 0.7408299368717302 Product description 7372 2024-05-31 14:03:01.089303 2024-02-26 Closed Customer 7372 772233.6551191020 +7412 f 35 31958 40.131947 0.6603541372738064 Product description 7412 2022-12-07 14:03:01.089303 2023-01-25 Closed Customer 7412 265136.5790312670 +7377 f 14 827573 12.174335 0.016606886985439218 Product description 7377 2022-06-30 14:03:01.089303 2025-07-30 Processing Customer 7377 455228.1785468400 +7382 t 12 220477 30.156689 0.21647156691597402 Product description 7382 2022-12-11 14:03:01.089303 2025-06-20 Processing Customer 7382 955207.3059912660 +7413 t 58 444797 36.5152 0.7197368446050945 Product description 7413 2023-11-11 14:03:01.089303 2025-10-08 Closed Customer 7413 878069.9552730020 +7378 t 2 53622 85.746475 0.6024871398791483 Product description 7378 2023-09-30 14:03:01.089303 2025-06-27 Closed Customer 7378 956105.8942154970 +7394 t 22 149099 36.6266 0.2415346750019971 Product description 7394 2022-03-11 14:03:01.089303 2025-04-01 Cancelled Customer 7394 982621.7970935400 +7419 f 12 415169 12.753484 0.03930215712102125 Product description 7419 2022-12-23 14:03:01.089303 2025-12-30 Closed Customer 7419 398285.9222928890 +7380 t 13 66588 25.552382 0.5940574834025192 Product description 7380 2024-01-30 14:03:01.089303 2025-01-12 Closed Customer 7380 644970.8167385710 +7395 t 8 584027 31.417406 0.43181576607731387 Product description 7395 2023-02-18 14:03:01.089303 2025-08-02 Processing Customer 7395 887149.2765704010 +7422 t 16 696615 68.19076 0.7556632316322407 Product description 7422 2023-12-09 14:03:01.089303 2023-11-21 Processing Customer 7422 794472.8924298340 +7381 t 28 230626 64.08052 0.9501237413255872 Product description 7381 2022-03-27 14:03:01.089303 2025-10-11 Closed Customer 7381 227859.1698445210 +7397 f 52 683625 63.958588 0.05734855275871098 Product description 7397 2022-10-27 14:03:01.089303 2024-11-17 Processing Customer 7397 390237.3669559540 +7424 t 7 719606 63.02098 0.003364138854699661 Product description 7424 2021-08-20 14:03:01.089303 2024-07-07 Closed Customer 7424 810394.9065213420 +7383 t 24 824171 55.70976 0.31878437428207107 Product description 7383 2022-04-20 14:03:01.089303 2025-10-01 Processing Customer 7383 529108.9150570730 +7400 f 15 896830 65.2436 0.6955405064083706 Product description 7400 2023-03-08 14:03:01.089303 2023-01-03 Closed Customer 7400 733215.6411108490 +7429 f 94 376050 42.360725 0.8402840472381428 Product description 7429 2024-04-18 14:03:01.089303 2023-06-18 Closed Customer 7429 347667.0981442100 +7384 f 19 791618 12.454999 0.6388683966612554 Product description 7384 2023-04-29 14:03:01.089303 2024-05-01 Cancelled Customer 7384 679289.4928605510 +7402 t 61 847582 46.60464 0.3553798888644053 Product description 7402 2022-05-04 14:03:01.089303 2023-05-08 Processing Customer 7402 483929.5928689150 +7433 f 42 711147 57.31443 0.462588334464634 Product description 7433 2022-08-21 14:03:01.089303 2025-05-09 Closed Customer 7433 46351.3568102378 +7386 t 79 898883 34.997524 0.7436606365111231 Product description 7386 2023-02-21 14:03:01.089303 2024-01-01 Cancelled Customer 7386 411918.9642049580 +7404 f 82 122546 33.065514 0.8444026560497733 Product description 7404 2022-12-04 14:03:01.089303 2024-03-16 Closed Customer 7404 726871.7657154900 +7434 t 7 821485 0.78810287 0.7121261113260005 Product description 7434 2021-12-22 14:03:01.089303 2024-04-23 Closed Customer 7434 767553.9897820410 +7388 t 7 878915 50.991215 0.6917699783801758 Product description 7388 2023-01-10 14:03:01.089303 2023-10-22 Processing Customer 7388 129672.5886599500 +7405 t 80 717121 49.53124 0.23890419416078146 Product description 7405 2024-03-11 14:03:01.089303 2024-11-28 Processing Customer 7405 552646.2557145740 +7438 t 85 557758 21.73279 0.497471115285272 Product description 7438 2023-05-21 14:03:01.089303 2025-08-16 Closed Customer 7438 3577.6199153510 +7392 f 1 95938 8.733159 0.04240584508439227 Product description 7392 2023-08-16 14:03:01.089303 2023-03-03 Processing Customer 7392 519426.7228326910 +7414 f 74 854981 29.272438 0.6360508193596317 Product description 7414 2023-02-21 14:03:01.089303 2023-11-11 Processing Customer 7414 932218.7820790940 +7439 t 73 461678 40.968002 0.27210080512024604 Product description 7439 2022-01-20 14:03:01.089303 2023-01-31 Closed Customer 7439 142121.3609855660 +7393 t 6 960146 18.600607 0.8734147982235037 Product description 7393 2021-11-30 14:03:01.089303 2024-08-20 Closed Customer 7393 792075.7667374190 +7415 f 65 527954 51.8462 0.4633105313828878 Product description 7415 2022-12-05 14:03:01.089303 2024-02-09 Processing Customer 7415 109518.5354307060 +7441 f 13 563777 25.91302 0.1577190820576604 Product description 7441 2021-09-15 14:03:01.089303 2024-08-18 Closed Customer 7441 336862.9059628640 +7396 t 7 303047 54.104156 0.9671246036788013 Product description 7396 2023-01-03 14:03:01.089303 2024-12-10 Processing Customer 7396 696635.5252167920 +7416 t 74 232564 68.53693 0.3043568241312826 Product description 7416 2021-09-23 14:03:01.089303 2024-09-02 Closed Customer 7416 29288.1950365746 +7444 t 23 959582 86.3584 0.029238219080298222 Product description 7444 2022-02-23 14:03:01.089303 2024-06-03 Processing Customer 7444 665865.9307795420 +7398 f 36 887231 21.361351 0.2903866470320615 Product description 7398 2022-07-05 14:03:01.089303 2023-09-09 Closed Customer 7398 442107.6025351670 +7420 f 7 255036 36.797 0.7915040838844476 Product description 7420 2024-05-29 14:03:01.089303 2023-04-25 Processing Customer 7420 35850.8729535281 +7446 t 60 889121 8.709518 0.4430356688049031 Product description 7446 2022-06-07 14:03:01.089303 2024-03-20 Processing Customer 7446 984023.7371570060 +7399 f 50 162676 22.34499 0.48487625030746884 Product description 7399 2024-03-04 14:03:01.089303 2023-01-30 Closed Customer 7399 264518.2632782340 +7427 f 23 984870 86.08531 0.04847051787921686 Product description 7427 2024-03-11 14:03:01.089303 2024-03-25 Closed Customer 7427 442450.7401842450 +7448 t 81 55349 90.58425 0.9743088746525501 Product description 7448 2022-01-21 14:03:01.089303 2025-08-15 Closed Customer 7448 489113.7561846900 +7401 f 51 225174 65.03941 0.11491760503136206 Product description 7401 2023-11-16 14:03:01.089303 2024-08-20 Cancelled Customer 7401 367715.2619062380 +7430 f 44 504464 46.574596 0.13688980549520124 Product description 7430 2022-04-03 14:03:01.089303 2025-02-06 Processing Customer 7430 465767.0441327720 +7452 f 38 356049 30.488367 0.423784842526139 Product description 7452 2022-04-04 14:03:01.089303 2024-04-02 Closed Customer 7452 815619.9757923910 +7403 f 24 641021 99.720406 0.22639148214482674 Product description 7403 2021-11-11 14:03:01.089303 2025-06-11 Closed Customer 7403 504508.2130447620 +7435 f 46 409089 88.22578 0.1674796663064413 Product description 7435 2021-09-07 14:03:01.089303 2024-10-20 Closed Customer 7435 250882.9589435810 +7453 t 17 790594 99.06441 0.10555258048376004 Product description 7453 2024-04-27 14:03:01.089303 2025-12-02 Processing Customer 7453 513600.4563517210 +7406 t 88 634928 77.80123 0.14755211692897774 Product description 7406 2024-03-31 14:03:01.089303 2025-11-12 Cancelled Customer 7406 924971.8798649980 +7436 t 76 81556 18.093487 0.8208123812465118 Product description 7436 2024-07-17 14:03:01.089303 2024-03-24 Processing Customer 7436 597759.5559858000 +7454 f 41 141313 78.15922 0.3147044775206851 Product description 7454 2021-10-15 14:03:01.089303 2023-12-31 Processing Customer 7454 523972.4890814190 +7407 f 69 922549 38.455032 0.9471879811058663 Product description 7407 2021-10-28 14:03:01.089303 2025-08-22 Cancelled Customer 7407 832234.1643713820 +7442 f 40 28429 41.47627 0.38534243632937404 Product description 7442 2024-01-10 14:03:01.089303 2024-02-10 Processing Customer 7442 305026.6660095140 +7465 t 63 215895 11.14132 0.8513676812287798 Product description 7465 2023-12-03 14:03:01.089303 2024-07-10 Closed Customer 7465 175828.7443249560 +7408 t 63 87347 90.65563 0.09923171695860589 Product description 7408 2022-09-12 14:03:01.089303 2023-02-12 Closed Customer 7408 368090.4249747560 +7450 f 91 494966 99.53341 0.9568419204282463 Product description 7450 2023-07-10 14:03:01.089303 2024-10-03 Closed Customer 7450 481865.8245345620 +7466 t 30 956532 82.82518 0.4678304169918803 Product description 7466 2021-11-21 14:03:01.089303 2024-05-12 Closed Customer 7466 136522.9724184650 +7409 f 37 838820 3.1485982 0.445056114837584 Product description 7409 2023-09-06 14:03:01.089303 2025-01-30 Closed Customer 7409 709628.5761177050 +7451 f 73 905935 97.325226 0.20931722753051218 Product description 7451 2023-07-11 14:03:01.089303 2025-03-13 Closed Customer 7451 122470.6552678510 +7468 f 22 223306 84.58119 0.27977626787657073 Product description 7468 2022-04-18 14:03:01.089303 2024-12-02 Processing Customer 7468 39921.7207964817 +7410 f 34 800041 57.695976 0.5424222654718207 Product description 7410 2023-08-25 14:03:01.089303 2025-08-22 Closed Customer 7410 973657.9017786830 +7455 t 86 234661 71.39215 0.28093924313721175 Product description 7455 2023-12-06 14:03:01.089303 2024-07-20 Closed Customer 7455 974005.4150023630 +7469 t 59 399223 85.00296 0.530550687949308 Product description 7469 2022-05-15 14:03:01.089303 2024-08-25 Closed Customer 7469 541342.1082201100 +7417 t 46 30991 50.871384 0.22628390909000018 Product description 7417 2022-08-03 14:03:01.089303 2024-06-29 Closed Customer 7417 245963.4400889250 +7458 f 62 611755 8.3540745 0.5640747294345019 Product description 7458 2022-06-29 14:03:01.089303 2023-03-03 Closed Customer 7458 410750.9153152370 +7475 f 97 915817 55.087757 0.34068590509072294 Product description 7475 2022-05-17 14:03:01.089303 2024-12-15 Processing Customer 7475 187694.5651200220 +7418 f 55 577737 58.675686 0.09478756458140225 Product description 7418 2023-04-02 14:03:01.089303 2023-06-08 Processing Customer 7418 3888.3357790702 +7459 t 73 349746 92.47452 0.6521170494559385 Product description 7459 2022-08-01 14:03:01.089303 2024-05-22 Processing Customer 7459 727040.7318368620 +7477 t 90 129493 86.74089 0.8284643708284634 Product description 7477 2024-04-18 14:03:01.089303 2024-05-24 Closed Customer 7477 989149.3969045550 +7421 t 57 526846 50.671253 0.9658784223862682 Product description 7421 2021-09-02 14:03:01.089303 2024-03-08 Closed Customer 7421 244881.8189121300 +7460 t 54 803243 8.453963 0.9908915900598814 Product description 7460 2023-01-08 14:03:01.089303 2025-01-15 Processing Customer 7460 882150.6171701720 +7482 f 75 114539 10.631922 0.7444551559142099 Product description 7482 2021-11-30 14:03:01.089303 2025-03-06 Closed Customer 7482 637857.4749181460 +7423 f 20 351344 60.4087 0.47493880486674556 Product description 7423 2024-01-30 14:03:01.089303 2025-02-08 Closed Customer 7423 735425.0047657620 +7461 t 91 479516 47.836334 0.5083977391603725 Product description 7461 2022-12-11 14:03:01.089303 2024-03-22 Processing Customer 7461 196876.7503714550 +7488 f 83 714099 15.690943 0.6158228051785741 Product description 7488 2023-03-01 14:03:01.089303 2025-10-26 Cancelled Customer 7488 921342.0100078270 +7425 t 20 560390 88.93095 0.13883721165845486 Product description 7425 2024-05-16 14:03:01.089303 2023-06-30 Closed Customer 7425 548675.5647883360 +7463 t 47 362416 2.542532 0.02277054628665809 Product description 7463 2022-04-28 14:03:01.089303 2025-11-23 Closed Customer 7463 571254.5071248950 +7494 t 39 937302 72.86445 0.44898450739482954 Product description 7494 2024-01-16 14:03:01.089303 2024-10-19 Closed Customer 7494 584678.8328129260 +7426 f 70 324642 48.153336 0.19239292313111633 Product description 7426 2024-05-27 14:03:01.089303 2023-04-19 Closed Customer 7426 326391.2212603980 +7464 t 6 465037 80.98355 0.036444241896049334 Product description 7464 2022-05-19 14:03:01.089303 2023-04-09 Closed Customer 7464 967526.4964391170 +7495 f 17 509071 65.48622 0.34387051551112435 Product description 7495 2023-01-31 14:03:01.089303 2023-09-03 Processing Customer 7495 357518.2063623930 +7428 t 51 921654 71.79642 0.19106537209476926 Product description 7428 2023-11-19 14:03:01.089303 2024-06-05 Processing Customer 7428 291271.9601618900 +7470 f 16 334156 50.955814 0.8961098511990215 Product description 7470 2024-05-28 14:03:01.089303 2024-01-11 Closed Customer 7470 339969.3994555580 +7496 t 61 906487 86.74276 0.9850943972124107 Product description 7496 2021-12-06 14:03:01.089303 2025-03-30 Closed Customer 7496 710319.8697194700 +7431 t 34 400497 78.062 0.10486449475882154 Product description 7431 2022-08-23 14:03:01.089303 2025-02-24 Processing Customer 7431 692711.2692335020 +7471 f 56 224331 61.927975 0.9121209855845933 Product description 7471 2024-01-02 14:03:01.089303 2024-03-24 Processing Customer 7471 168295.8174109890 +7498 t 38 523390 75.988144 0.13820499150922316 Product description 7498 2022-04-29 14:03:01.089303 2024-07-26 Closed Customer 7498 886233.0106496970 +7432 f 60 617309 54.076218 0.01739835559317271 Product description 7432 2022-10-20 14:03:01.089303 2024-03-25 Closed Customer 7432 676812.0447578630 +7473 f 43 264393 91.044075 0.06988190021288432 Product description 7473 2023-05-17 14:03:01.089303 2025-12-01 Closed Customer 7473 122783.5293819230 +7507 f 25 968361 68.111786 0.8998460991601185 Product description 7507 2023-05-12 14:03:01.089303 2023-12-01 Processing Customer 7507 337717.5914390310 +7437 t 25 845216 14.852347 0.9319141663946837 Product description 7437 2022-12-28 14:03:01.089303 2025-03-10 Processing Customer 7437 333264.2848571120 +7476 f 85 25288 42.916553 0.6084671369258956 Product description 7476 2023-11-15 14:03:01.089303 2024-01-02 Processing Customer 7476 686466.3604464700 +7510 t 40 620294 55.416576 0.4812311605251942 Product description 7510 2023-01-23 14:03:01.089303 2025-07-14 Processing Customer 7510 212814.1777863920 +7440 f 19 320061 67.486275 0.5945574222573242 Product description 7440 2023-07-08 14:03:01.089303 2025-02-27 Processing Customer 7440 52625.4175769161 +7479 f 33 396598 27.988892 0.45452866897958444 Product description 7479 2022-01-23 14:03:01.089303 2025-08-30 Processing Customer 7479 708647.9087478810 +7512 t 16 746140 97.8272 0.012848587512113596 Product description 7512 2022-10-30 14:03:01.089303 2023-11-02 Processing Customer 7512 251973.6270558470 +7443 f 46 800001 13.664005 0.18063948290394904 Product description 7443 2024-06-20 14:03:01.089303 2025-03-11 Cancelled Customer 7443 554298.6884654300 +7484 t 60 278482 28.238062 0.31529755474609544 Product description 7484 2024-01-10 14:03:01.089303 2024-11-21 Closed Customer 7484 228087.3937122400 +7513 f 75 116704 49.511776 0.7507060591845907 Product description 7513 2023-11-04 14:03:01.089303 2023-01-07 Closed Customer 7513 41903.6661400511 +7445 f 96 543136 52.206097 0.05591126998030305 Product description 7445 2023-04-19 14:03:01.089303 2025-01-29 Closed Customer 7445 507039.8545993130 +7485 t 3 946599 52.09579 0.24341649426997236 Product description 7485 2022-02-05 14:03:01.089303 2024-08-28 Cancelled Customer 7485 701863.3235913470 +7517 t 47 842761 1.1783624 0.524651561929165 Product description 7517 2021-09-30 14:03:01.089303 2024-11-25 Closed Customer 7517 905432.0619399050 +7447 f 96 536913 11.809966 0.21481974597950781 Product description 7447 2023-07-19 14:03:01.089303 2025-05-01 Closed Customer 7447 81139.5940076451 +7486 t 81 573398 71.66929 0.7848876404283693 Product description 7486 2024-06-17 14:03:01.089303 2023-03-16 Processing Customer 7486 119278.8350808910 +7519 t 12 421136 94.45757 0.325652227404472 Product description 7519 2023-07-04 14:03:01.089303 2023-01-26 Closed Customer 7519 188979.9963713660 +7449 f 40 627082 35.883827 0.9911347135138904 Product description 7449 2024-06-02 14:03:01.089303 2023-07-05 Closed Customer 7449 269928.4130841310 +7487 f 69 113227 94.26824 0.18477537816097467 Product description 7487 2022-12-02 14:03:01.089303 2025-03-21 Processing Customer 7487 569821.8398933010 +7520 f 36 956031 36.00045 0.15205257413717632 Product description 7520 2023-12-26 14:03:01.089303 2023-02-11 Processing Customer 7520 200451.6407229890 +7456 t 46 125087 5.5749097 0.4872066608617125 Product description 7456 2023-07-16 14:03:01.089303 2025-11-14 Processing Customer 7456 692903.3486161490 +7501 f 64 385572 37.71331 0.5462923579780643 Product description 7501 2024-07-24 14:03:01.089303 2025-11-24 Closed Customer 7501 828214.7099815520 +7521 f 39 700089 94.293915 0.856748100674519 Product description 7521 2022-11-06 14:03:01.089303 2025-05-02 Closed Customer 7521 122618.8358555970 +7457 t 59 103516 87.42536 0.6841644192337277 Product description 7457 2023-05-13 14:03:01.089303 2024-08-17 Closed Customer 7457 67398.7427896492 +7502 f 43 350795 94.56785 0.1386672115270038 Product description 7502 2024-04-24 14:03:01.089303 2023-12-17 Processing Customer 7502 622549.9771142960 +7523 f 38 532098 28.953142 0.4112386493156812 Product description 7523 2023-03-27 14:03:01.089303 2025-05-20 Processing Customer 7523 531048.9444578080 +7462 f 53 904740 36.46446 0.5699568391643304 Product description 7462 2023-06-29 14:03:01.089303 2024-09-19 Closed Customer 7462 188029.4696935250 +7503 t 37 618759 28.200184 0.062326431298689755 Product description 7503 2022-07-13 14:03:01.089303 2025-05-30 Processing Customer 7503 417983.5843378190 +7525 f 94 441730 7.541136 0.026822436881186462 Product description 7525 2022-04-03 14:03:01.089303 2025-04-20 Closed Customer 7525 40550.8621043182 +7467 f 31 757739 78.9039 0.35241107257978754 Product description 7467 2023-06-07 14:03:01.089303 2025-10-22 Closed Customer 7467 419368.0248741030 +7506 f 71 70354 11.11449 0.5508252993758838 Product description 7506 2022-02-21 14:03:01.089303 2023-08-25 Closed Customer 7506 325032.0033389970 +7537 f 40 483284 18.534008 0.34708341087855743 Product description 7537 2023-02-16 14:03:01.089303 2024-07-14 Closed Customer 7537 995837.8215775240 +7472 t 38 870343 56.6449 0.252532422554534 Product description 7472 2022-09-02 14:03:01.089303 2025-05-18 Closed Customer 7472 297388.4633438860 +7508 t 15 377500 57.724495 0.21217283316453361 Product description 7508 2024-06-18 14:03:01.089303 2025-08-30 Closed Customer 7508 525454.4060810530 +7541 f 19 947913 6.1889954 0.06486358433077655 Product description 7541 2022-10-02 14:03:01.089303 2024-05-04 Cancelled Customer 7541 146916.7801184280 +7474 t 28 154988 42.91708 0.30098633720456647 Product description 7474 2021-10-05 14:03:01.089303 2025-10-01 Processing Customer 7474 360188.8240451530 +7514 t 81 83164 23.472187 0.24289615870838688 Product description 7514 2022-09-01 14:03:01.089303 2025-12-01 Closed Customer 7514 500858.0525650430 +7550 t 82 127334 48.940746 0.7137576247365658 Product description 7550 2022-04-25 14:03:01.089303 2023-07-16 Processing Customer 7550 378734.0118436510 +7478 t 39 355884 58.212753 0.5782974169268691 Product description 7478 2023-10-22 14:03:01.089303 2023-10-03 Closed Customer 7478 29441.0839976464 +7522 t 69 495839 17.041824 0.8234272139140764 Product description 7522 2023-02-17 14:03:01.089303 2024-04-18 Closed Customer 7522 12040.7237844375 +7558 f 94 75589 18.14987 0.03992886665942308 Product description 7558 2023-08-05 14:03:01.089303 2023-02-27 Closed Customer 7558 587055.2911582190 +7480 t 84 38283 50.715214 0.38530038251430554 Product description 7480 2023-09-29 14:03:01.089303 2024-11-18 Processing Customer 7480 787942.3847852540 +7527 t 88 530110 54.72784 0.7155193684668681 Product description 7527 2022-08-28 14:03:01.089303 2025-09-22 Closed Customer 7527 295937.8274487890 +7561 f 11 187773 39.49764 0.06397361930051915 Product description 7561 2021-12-07 14:03:01.089303 2025-04-30 Closed Customer 7561 640216.9280306570 +7481 t 46 17627 34.007572 0.38289985101794954 Product description 7481 2023-11-01 14:03:01.089303 2023-12-05 Cancelled Customer 7481 555537.4129916220 +7528 f 44 821116 46.676453 0.4666141156195529 Product description 7528 2022-08-08 14:03:01.089303 2023-03-01 Processing Customer 7528 165990.8984671860 +7563 t 38 703073 1.8913418 0.9470295342869406 Product description 7563 2022-10-08 14:03:01.089303 2025-11-24 Closed Customer 7563 716846.1921404760 +7483 f 92 605052 42.324123 0.6490243516971859 Product description 7483 2022-01-28 14:03:01.089303 2023-01-12 Closed Customer 7483 167721.9539540040 +7530 f 10 788734 46.67874 0.6829004847093323 Product description 7530 2022-02-18 14:03:01.089303 2024-08-17 Processing Customer 7530 924518.1270718280 +7566 t 86 131480 29.09077 0.442254815942114 Product description 7566 2022-02-27 14:03:01.089303 2025-04-06 Processing Customer 7566 813987.0100534420 +7489 f 95 890503 37.605904 0.5996194020633823 Product description 7489 2022-03-14 14:03:01.089303 2025-12-09 Processing Customer 7489 2477.7407183159 +7534 f 77 856231 57.644905 0.5735079968997105 Product description 7534 2023-03-21 14:03:01.089303 2025-10-22 Processing Customer 7534 456332.3115087170 +7576 t 13 185190 68.00965 0.4999522881315528 Product description 7576 2023-08-17 14:03:01.089303 2024-11-03 Processing Customer 7576 438079.4312093420 +7490 t 16 339825 71.01824 0.4704233244240541 Product description 7490 2022-08-02 14:03:01.089303 2024-10-14 Cancelled Customer 7490 878445.5730973870 +7536 f 76 233433 34.02226 0.03147107786621106 Product description 7536 2022-11-27 14:03:01.089303 2025-01-10 Closed Customer 7536 449309.7436278430 +7588 f 4 945828 0.2398506 0.5957240117468174 Product description 7588 2023-11-07 14:03:01.089303 2023-02-13 Closed Customer 7588 919292.5204872790 +7491 f 54 491539 53.3424 0.30562713353670645 Product description 7491 2022-12-02 14:03:01.089303 2025-06-19 Closed Customer 7491 413358.7832490090 +7542 f 60 213419 62.1975 0.6886159962474672 Product description 7542 2024-04-27 14:03:01.089303 2023-03-29 Processing Customer 7542 611585.9188467420 +7589 f 18 645726 81.70409 0.27356501985394743 Product description 7589 2022-07-31 14:03:01.089303 2025-03-18 Closed Customer 7589 762829.3108720600 +7492 f 85 227351 24.801764 0.3645194551407904 Product description 7492 2023-10-31 14:03:01.089303 2024-07-06 Processing Customer 7492 931911.7499625310 +7544 f 32 200132 44.55916 0.9057020026908127 Product description 7544 2023-09-27 14:03:01.089303 2023-12-09 Closed Customer 7544 603850.2252984660 +7600 f 87 295688 0.8537073 0.4735915556793273 Product description 7600 2023-07-09 14:03:01.089303 2024-12-09 Closed Customer 7600 965105.4660693350 +7493 t 48 405720 8.183965 0.94882972260584 Product description 7493 2024-04-15 14:03:01.089303 2024-08-01 Closed Customer 7493 785723.2896123630 +7545 t 70 886802 35.784325 0.7362575172617518 Product description 7545 2021-10-26 14:03:01.089303 2025-07-13 Processing Customer 7545 441634.9882054790 +7607 f 2 909132 59.139084 0.5118768662475901 Product description 7607 2022-04-14 14:03:01.089303 2025-05-05 Processing Customer 7607 904475.0134321010 +7497 f 63 568568 56.749317 0.9305133679682847 Product description 7497 2022-03-06 14:03:01.089303 2023-12-14 Closed Customer 7497 508182.7642689730 +7548 f 68 741539 39.90406 0.4229526924226086 Product description 7548 2021-12-21 14:03:01.089303 2024-04-06 Closed Customer 7548 80546.5379871961 +7609 t 91 208701 79.90158 0.7253149927775198 Product description 7609 2023-04-04 14:03:01.089303 2023-12-13 Closed Customer 7609 288223.0527091460 +7499 t 17 929743 87.35548 0.07189530783306353 Product description 7499 2024-04-22 14:03:01.089303 2023-11-27 Processing Customer 7499 695220.1808444730 +7549 t 65 996127 89.73793 0.45754537859663813 Product description 7549 2021-08-24 14:03:01.089303 2024-06-23 Closed Customer 7549 592681.0809537240 +7610 f 43 23166 72.99731 0.9743796748385591 Product description 7610 2022-05-24 14:03:01.089303 2024-08-19 Closed Customer 7610 705845.3101962780 +7500 t 15 551702 81.21887 0.8459148625621786 Product description 7500 2023-03-09 14:03:01.089303 2024-06-02 Processing Customer 7500 799959.9113441390 +7554 f 60 163417 30.54501 0.021241984746975362 Product description 7554 2023-05-21 14:03:01.089303 2024-03-28 Closed Customer 7554 17507.3385121109 +7611 f 43 278149 47.444836 0.9476600904350576 Product description 7611 2023-09-14 14:03:01.089303 2023-03-18 Closed Customer 7611 818249.9322824160 +7504 f 29 749172 52.87249 0.541597826352362 Product description 7504 2024-03-12 14:03:01.089303 2024-12-12 Closed Customer 7504 726632.6864456540 +7555 t 57 988733 67.530304 0.998679747270959 Product description 7555 2023-09-19 14:03:01.089303 2025-02-08 Closed Customer 7555 66215.3658272899 +7614 f 12 563284 44.92504 0.19980331514368288 Product description 7614 2022-08-26 14:03:01.089303 2023-04-09 Processing Customer 7614 68426.2152133037 +7505 f 11 319457 38.601406 0.8613094249034638 Product description 7505 2022-05-07 14:03:01.089303 2025-05-27 Closed Customer 7505 444220.8226885140 +7557 t 96 418818 88.688065 0.9820225508557137 Product description 7557 2024-02-16 14:03:01.089303 2024-05-19 Closed Customer 7557 934764.9588209420 +7615 t 13 253853 5.541199 0.8645214029768837 Product description 7615 2023-10-31 14:03:01.089303 2023-07-05 Closed Customer 7615 184027.5196658080 +7509 t 59 433214 52.928955 0.8212790484535795 Product description 7509 2022-03-08 14:03:01.089303 2024-03-04 Cancelled Customer 7509 373448.0927522310 +7560 f 21 50204 93.81646 0.136379678717919 Product description 7560 2024-04-11 14:03:01.089303 2023-10-22 Closed Customer 7560 289663.2406663000 +7616 t 1 689094 73.57177 0.6281715715031169 Product description 7616 2022-01-24 14:03:01.089303 2024-01-31 Processing Customer 7616 69691.2244281940 +7511 f 2 214602 5.6105094 0.22206037985729665 Product description 7511 2021-12-19 14:03:01.089303 2023-09-21 Cancelled Customer 7511 605962.8910531670 +7568 f 66 984223 75.8535 0.4680642227896179 Product description 7568 2022-09-18 14:03:01.089303 2024-09-05 Closed Customer 7568 737403.8572862740 +7620 f 71 689687 65.81945 0.7212342184759635 Product description 7620 2023-01-07 14:03:01.089303 2025-05-01 Closed Customer 7620 483871.6108629090 +7515 t 39 314397 15.759651 0.7200767347418058 Product description 7515 2023-06-12 14:03:01.089303 2024-10-28 Closed Customer 7515 322054.2117612480 +7571 t 31 796266 70.54379 0.9456931330967997 Product description 7571 2024-07-31 14:03:01.089303 2024-05-24 Closed Customer 7571 198239.0530151430 +7622 t 37 253629 47.501553 0.5850374493507644 Product description 7622 2023-11-29 14:03:01.089303 2024-01-25 Closed Customer 7622 235631.6339201040 +7516 f 16 422119 16.779793 0.35698154118296443 Product description 7516 2024-05-17 14:03:01.089303 2025-07-10 Closed Customer 7516 189086.1482086590 +7573 t 18 143028 53.661484 0.8386592107775748 Product description 7573 2021-12-31 14:03:01.089303 2023-05-12 Closed Customer 7573 839181.7816639890 +7623 t 45 175295 98.97096 0.443698751535031 Product description 7623 2024-06-10 14:03:01.089303 2024-05-09 Closed Customer 7623 863409.7393704570 +7518 t 16 632817 4.110451 0.09828724934173394 Product description 7518 2023-05-03 14:03:01.089303 2025-01-23 Processing Customer 7518 304144.9994465710 +7577 f 73 969662 76.72072 0.25316513743768 Product description 7577 2022-09-18 14:03:01.089303 2024-10-19 Closed Customer 7577 777114.5134113620 +7624 t 32 27101 56.946705 0.9265193110144594 Product description 7624 2023-03-02 14:03:01.089303 2025-01-13 Closed Customer 7624 352362.0688306690 +7524 f 65 251447 33.065163 0.203153619344409 Product description 7524 2024-02-09 14:03:01.089303 2025-02-03 Processing Customer 7524 997427.9267900100 +7580 t 22 717289 54.97353 0.805437183976121 Product description 7580 2024-03-06 14:03:01.089303 2025-03-27 Closed Customer 7580 13303.7713547210 +7625 f 44 358275 71.81592 0.7247933600637353 Product description 7625 2022-07-13 14:03:01.089303 2025-10-27 Closed Customer 7625 323820.4806389180 +7526 t 20 716127 77.26446 0.8425038157441769 Product description 7526 2022-07-03 14:03:01.089303 2025-11-20 Processing Customer 7526 898475.5103241540 +7581 t 54 507339 44.347206 0.8933506296451732 Product description 7581 2022-07-04 14:03:01.089303 2023-08-21 Processing Customer 7581 875923.2489495470 +7626 f 13 742243 46.891922 0.35091639214759596 Product description 7626 2021-11-19 14:03:01.089303 2024-02-07 Closed Customer 7626 274761.5901856020 +7529 f 67 412753 60.51624 0.6888505330854038 Product description 7529 2021-10-27 14:03:01.089303 2023-04-29 Closed Customer 7529 826428.8078314200 +7584 f 1 293373 28.170383 0.567628267359094 Product description 7584 2024-06-28 14:03:01.089303 2025-03-01 Processing Customer 7584 373063.9666960020 +7630 f 36 173290 28.839739 0.4072529354194714 Product description 7630 2023-01-13 14:03:01.089303 2025-01-03 Processing Customer 7630 729438.5660928990 +7531 f 3 140169 94.44093 0.13620646029870542 Product description 7531 2023-09-02 14:03:01.089303 2024-06-24 Closed Customer 7531 417902.2432850490 +7585 t 79 776795 41.67409 0.28350376574850955 Product description 7585 2023-03-22 14:03:01.089303 2024-03-30 Processing Customer 7585 602683.9117473060 +7631 t 7 230695 47.58851 0.8860429981849052 Product description 7631 2022-11-25 14:03:01.089303 2024-01-27 Processing Customer 7631 332616.3925642580 +7532 t 0 62762 34.27891 0.7778011628611132 Product description 7532 2024-05-14 14:03:01.089303 2024-05-24 Closed Customer 7532 101237.6457615860 +7592 t 7 221924 94.78888 0.701769997008963 Product description 7592 2023-05-07 14:03:01.089303 2023-02-28 Processing Customer 7592 378207.5526318710 +7634 f 57 351361 91.08563 0.9125330061493244 Product description 7634 2024-02-24 14:03:01.089303 2025-08-01 Cancelled Customer 7634 388422.6898250840 +7533 f 83 342677 45.812996 0.15711781213954268 Product description 7533 2022-05-07 14:03:01.089303 2023-07-25 Closed Customer 7533 594018.9360172000 +7593 t 90 198510 43.350395 0.8501544085528714 Product description 7593 2023-10-07 14:03:01.089303 2023-09-27 Processing Customer 7593 943339.3997626500 +7638 t 66 633223 25.92692 0.05135924150100735 Product description 7638 2022-06-30 14:03:01.089303 2024-02-05 Closed Customer 7638 542551.4788090880 +7535 f 70 726034 65.73187 0.14607756065663935 Product description 7535 2023-06-06 14:03:01.089303 2023-06-25 Processing Customer 7535 422229.6584208460 +7598 t 9 993781 65.2633 0.7043779882196297 Product description 7598 2023-12-19 14:03:01.089303 2023-05-25 Closed Customer 7598 985311.6057571680 +7639 t 78 309804 75.417786 0.3901935065294104 Product description 7639 2024-01-22 14:03:01.089303 2025-06-29 Closed Customer 7639 846800.4619036620 +7538 f 28 528841 58.179188 0.6597605737232861 Product description 7538 2022-08-14 14:03:01.089303 2025-06-09 Closed Customer 7538 26355.0168299318 +7601 t 49 706799 34.922577 0.3480154565207165 Product description 7601 2022-03-10 14:03:01.089303 2023-11-22 Closed Customer 7601 351319.1285156550 +7641 f 38 431285 73.00885 0.9362592788727433 Product description 7641 2024-01-23 14:03:01.089303 2024-08-21 Processing Customer 7641 479498.9279632630 +7539 t 10 919414 95.79689 0.5379582017103708 Product description 7539 2023-02-14 14:03:01.089303 2023-10-04 Processing Customer 7539 762883.8983964100 +7602 f 25 623317 69.68757 0.5143723181349422 Product description 7602 2023-07-30 14:03:01.089303 2024-03-22 Closed Customer 7602 872590.6999153280 +7644 f 34 97193 43.586105 0.4450436886659581 Product description 7644 2022-11-07 14:03:01.089303 2025-08-26 Processing Customer 7644 172891.5588317860 +7540 f 46 932367 30.083242 0.1993493611452628 Product description 7540 2024-01-04 14:03:01.089303 2023-06-15 Closed Customer 7540 445109.2848500550 +7603 t 58 278007 24.165617 0.5876969287919032 Product description 7603 2022-03-06 14:03:01.089303 2024-08-04 Closed Customer 7603 276998.9741520220 +7645 t 42 940191 94.5862 0.7748032902697055 Product description 7645 2022-05-30 14:03:01.089303 2023-01-28 Closed Customer 7645 164829.5406885720 +7543 t 98 667246 40.731277 0.9678991512811628 Product description 7543 2021-11-21 14:03:01.089303 2025-04-02 Processing Customer 7543 728241.5889062720 +7604 t 28 46706 81.212105 0.5330802196178688 Product description 7604 2022-06-08 14:03:01.089303 2024-09-28 Closed Customer 7604 9777.4187414004 +7648 t 59 44857 60.267223 0.36451843564514874 Product description 7648 2022-04-15 14:03:01.089303 2024-05-21 Closed Customer 7648 586891.2972790170 +7546 f 87 272526 78.755775 0.3789961413005578 Product description 7546 2022-03-02 14:03:01.089303 2025-03-20 Closed Customer 7546 396745.4196180360 +7605 t 12 936804 84.26195 0.781104608237758 Product description 7605 2022-01-25 14:03:01.089303 2024-04-29 Closed Customer 7605 30948.5534521627 +7649 f 43 314466 50.588966 0.6554619008045712 Product description 7649 2024-06-18 14:03:01.089303 2025-06-06 Closed Customer 7649 581319.0657978710 +7547 t 15 48242 92.30143 0.7617545591943333 Product description 7547 2023-04-29 14:03:01.089303 2025-02-10 Closed Customer 7547 732915.2510659180 +7618 f 29 168249 35.104454 0.9620534381722301 Product description 7618 2022-12-29 14:03:01.089303 2025-03-16 Closed Customer 7618 978710.9862861670 +7650 t 64 868578 4.725728 0.5521646208633904 Product description 7650 2023-04-12 14:03:01.089303 2025-09-28 Processing Customer 7650 363152.2114719910 +7551 f 55 87049 67.73882 0.4353635527702089 Product description 7551 2024-05-24 14:03:01.089303 2024-08-25 Closed Customer 7551 571734.5697943090 +7619 f 13 493446 62.124302 0.884867871836807 Product description 7619 2022-10-10 14:03:01.089303 2025-02-01 Closed Customer 7619 21831.9773367313 +7651 f 79 54500 76.24809 0.413242440592672 Product description 7651 2021-09-04 14:03:01.089303 2024-09-29 Closed Customer 7651 410839.7325466910 +7552 t 58 102584 90.59965 0.5753654644815391 Product description 7552 2024-05-27 14:03:01.089303 2025-02-04 Processing Customer 7552 988750.2937566950 +7621 f 1 482067 93.14021 0.18200333152209325 Product description 7621 2021-11-17 14:03:01.089303 2024-07-20 Closed Customer 7621 224715.6216326050 +7652 t 76 770849 85.87285 0.4163454168468341 Product description 7652 2024-05-11 14:03:01.089303 2023-11-30 Processing Customer 7652 291236.6022660320 +7553 f 65 821968 49.380524 0.8144368047837638 Product description 7553 2024-04-25 14:03:01.089303 2025-05-28 Closed Customer 7553 209951.1263987140 +7627 t 9 662686 60.216637 0.5009934189587177 Product description 7627 2024-04-22 14:03:01.089303 2025-12-09 Processing Customer 7627 507305.1736480070 +7655 t 72 18937 38.2378 0.02041970667488968 Product description 7655 2022-02-16 14:03:01.089303 2025-01-28 Processing Customer 7655 376978.1097658300 +7556 t 99 161446 4.4631114 0.6556080909159228 Product description 7556 2022-08-19 14:03:01.089303 2025-03-10 Processing Customer 7556 125044.8449807210 +7628 t 45 343660 32.666546 0.2797513043933826 Product description 7628 2021-10-14 14:03:01.089303 2025-03-25 Closed Customer 7628 505615.5127225920 +7657 f 64 204191 63.7086 0.5104539943314244 Product description 7657 2024-03-29 14:03:01.089303 2023-08-24 Processing Customer 7657 150933.9925516360 +7559 f 16 275964 21.743948 0.7276354162363496 Product description 7559 2024-07-27 14:03:01.089303 2024-01-21 Processing Customer 7559 358312.4112501610 +7633 t 3 954683 60.912174 0.12412425584807707 Product description 7633 2021-08-27 14:03:01.089303 2023-11-07 Processing Customer 7633 224894.3849963180 +7659 f 12 958886 50.257458 0.053491245743050087 Product description 7659 2022-02-26 14:03:01.089303 2024-08-10 Closed Customer 7659 923628.0308213050 +7562 f 81 445633 84.706024 0.23065495413650083 Product description 7562 2022-12-29 14:03:01.089303 2023-06-08 Closed Customer 7562 373124.1370345090 +7635 t 54 166404 84.52326 0.21472428163796664 Product description 7635 2024-02-22 14:03:01.089303 2025-08-13 Closed Customer 7635 955292.0509496450 +7662 t 51 199998 40.703556 0.03064334618749953 Product description 7662 2022-02-24 14:03:01.089303 2023-11-20 Closed Customer 7662 641025.8700535750 +7564 t 52 897375 6.365442 0.7583085970216068 Product description 7564 2023-08-02 14:03:01.089303 2025-06-14 Closed Customer 7564 311927.9685490350 +7637 t 5 736552 60.39832 0.615866821210961 Product description 7637 2023-01-30 14:03:01.089303 2024-08-10 Processing Customer 7637 13435.5707517102 +7663 f 89 476532 90.18354 0.19980115218990946 Product description 7663 2021-08-31 14:03:01.089303 2024-01-11 Closed Customer 7663 339486.0002494650 +7565 f 71 760809 35.219936 0.8108744948545912 Product description 7565 2023-01-28 14:03:01.089303 2024-12-17 Cancelled Customer 7565 984058.8796882380 +7653 f 3 537625 31.458221 0.9133274435924328 Product description 7653 2021-10-06 14:03:01.089303 2023-09-09 Closed Customer 7653 471142.7339426070 +7667 t 31 909054 47.222103 0.10711335290342205 Product description 7667 2022-07-12 14:03:01.089303 2023-05-02 Processing Customer 7667 918899.5871057490 +7567 t 1 861781 95.13149 0.8853988601355667 Product description 7567 2022-12-21 14:03:01.089303 2024-10-31 Closed Customer 7567 337063.6259112240 +7665 f 9 457485 23.868298 0.563828855824827 Product description 7665 2023-10-28 14:03:01.089303 2025-02-20 Processing Customer 7665 131117.2413333140 +7677 t 61 868276 1.3618777 0.4612651760546562 Product description 7677 2023-02-28 14:03:01.089303 2025-11-29 Processing Customer 7677 959193.3008935310 +7569 t 94 31305 33.01349 0.20278993707352555 Product description 7569 2022-08-29 14:03:01.089303 2023-10-13 Closed Customer 7569 450151.4412453000 +7666 t 57 469114 56.487816 0.3402571909719647 Product description 7666 2023-04-24 14:03:01.089303 2023-09-30 Processing Customer 7666 226876.4918656170 +7679 f 52 271572 56.942623 0.5323211880321672 Product description 7679 2023-12-12 14:03:01.089303 2024-01-29 Cancelled Customer 7679 77159.0259731561 +7570 t 64 32231 16.258146 0.825320724346966 Product description 7570 2024-03-27 14:03:01.089303 2024-10-19 Closed Customer 7570 936787.3928374560 +7672 t 32 168667 57.51364 0.7371068410160895 Product description 7672 2022-03-28 14:03:01.089303 2023-08-05 Processing Customer 7672 963538.7903024080 +7682 t 51 941284 36.024864 0.04644278018661652 Product description 7682 2024-06-15 14:03:01.089303 2025-08-20 Closed Customer 7682 872812.9616083220 +7572 t 49 731860 42.76665 0.6976838761932029 Product description 7572 2022-08-20 14:03:01.089303 2024-08-14 Cancelled Customer 7572 579976.7555739880 +7674 f 65 464702 91.896286 0.262859085164191 Product description 7674 2024-03-18 14:03:01.089303 2024-12-11 Closed Customer 7674 489128.6849913070 +7685 t 81 510047 39.563137 0.569692736777256 Product description 7685 2024-06-07 14:03:01.089303 2024-03-11 Processing Customer 7685 652296.5076695720 +7574 f 14 109832 93.03204 0.8129568954100712 Product description 7574 2023-04-22 14:03:01.089303 2024-07-10 Processing Customer 7574 941546.2476007120 +7681 t 32 141 15.747466 0.7874198691798178 Product description 7681 2022-06-22 14:03:01.089303 2024-07-15 Closed Customer 7681 187636.7278999140 +7686 t 3 879560 58.39363 0.845630650180631 Product description 7686 2022-11-12 14:03:01.089303 2023-10-20 Closed Customer 7686 541256.8786806310 +7575 f 12 357049 49.405075 0.07502336031685886 Product description 7575 2021-10-30 14:03:01.089303 2025-12-10 Processing Customer 7575 639141.6173308710 +7683 t 19 565635 27.61867 0.5809961360085758 Product description 7683 2022-10-11 14:03:01.089303 2023-06-30 Closed Customer 7683 141877.2197670750 +7688 t 66 320572 61.384506 0.2789697519981047 Product description 7688 2023-06-12 14:03:01.089303 2024-04-22 Closed Customer 7688 759963.1262934390 +7578 t 61 926585 27.329844 0.6606479844201125 Product description 7578 2024-04-01 14:03:01.089303 2025-11-14 Closed Customer 7578 753356.5380262390 +7684 t 12 169618 57.056747 0.037976976752322145 Product description 7684 2021-12-26 14:03:01.089303 2023-04-01 Processing Customer 7684 911131.4210850880 +7691 f 95 183253 96.386826 0.8955419379068061 Product description 7691 2021-09-12 14:03:01.089303 2024-02-04 Processing Customer 7691 386250.6778127570 +7579 f 64 364862 68.36161 0.847666328299038 Product description 7579 2022-05-19 14:03:01.089303 2023-04-23 Processing Customer 7579 503107.3261021040 +7689 t 25 51242 51.30234 0.21420509552387657 Product description 7689 2024-02-02 14:03:01.089303 2024-04-04 Closed Customer 7689 288190.6995884340 +7694 f 57 90303 16.562798 0.46739196980300335 Product description 7694 2024-02-09 14:03:01.089303 2023-01-31 Closed Customer 7694 176948.6476242970 +7582 f 30 128896 56.96486 0.45195218095667045 Product description 7582 2021-11-20 14:03:01.089303 2025-02-17 Closed Customer 7582 823833.0539518300 +7693 f 43 772821 19.624304 0.03818257868997321 Product description 7693 2021-09-04 14:03:01.089303 2024-12-30 Closed Customer 7693 491721.0723294400 +7695 t 24 827250 83.10726 0.32169579454242836 Product description 7695 2021-12-02 14:03:01.089303 2024-05-14 Processing Customer 7695 13951.3994646485 +7583 t 39 26821 73.61794 0.9041654081520356 Product description 7583 2022-09-14 14:03:01.089303 2023-07-01 Closed Customer 7583 68425.7262787540 +7696 f 10 571692 90.395325 0.23444017507939563 Product description 7696 2021-11-08 14:03:01.089303 2025-04-01 Processing Customer 7696 474166.8275188080 +7697 t 41 490931 63.846336 0.4092396081228884 Product description 7697 2022-01-15 14:03:01.089303 2024-06-19 Closed Customer 7697 27943.6702702860 +7586 f 23 745182 24.177567 0.22355232091988242 Product description 7586 2023-05-04 14:03:01.089303 2024-08-01 Processing Customer 7586 32501.6085242424 +7698 f 64 61858 81.91384 0.19475000605642734 Product description 7698 2022-12-11 14:03:01.089303 2024-12-05 Processing Customer 7698 508136.7848984260 +7704 f 17 499144 25.876942 0.28359964176592456 Product description 7704 2024-07-08 14:03:01.089303 2023-05-24 Closed Customer 7704 91211.1300149441 +7587 t 83 491829 54.212082 0.9414389818687248 Product description 7587 2022-12-22 14:03:01.089303 2024-07-28 Closed Customer 7587 31284.0144112769 +7700 f 42 481123 33.482693 0.211317647695207 Product description 7700 2022-10-14 14:03:01.089303 2023-12-24 Closed Customer 7700 762875.9737517970 +7705 t 17 970841 33.38871 0.9538589522252892 Product description 7705 2022-05-25 14:03:01.089303 2023-08-31 Processing Customer 7705 827558.1444512990 +7590 f 49 679943 80.02445 0.3264010504845949 Product description 7590 2023-06-17 14:03:01.089303 2024-05-01 Closed Customer 7590 297284.4833344940 +7702 f 8 68451 85.1213 0.38765157727550914 Product description 7702 2023-10-06 14:03:01.089303 2024-10-19 Closed Customer 7702 12036.7286132108 +7707 t 86 485378 70.49042 0.45571023842757796 Product description 7707 2021-10-03 14:03:01.089303 2025-12-30 Processing Customer 7707 921918.7434793280 +7591 t 45 602632 16.119621 0.520935549449657 Product description 7591 2023-08-15 14:03:01.089303 2025-05-29 Processing Customer 7591 952909.7028891230 +7703 t 66 348248 18.413698 0.24298893900224172 Product description 7703 2022-01-31 14:03:01.089303 2025-10-15 Closed Customer 7703 452687.4731998230 +7708 t 98 248181 50.57821 0.43322576261972756 Product description 7708 2022-02-11 14:03:01.089303 2025-01-14 Closed Customer 7708 885436.2024705540 +7594 f 54 499132 48.304325 0.9329254416113635 Product description 7594 2021-09-21 14:03:01.089303 2023-12-06 Cancelled Customer 7594 89818.4776268245 +7706 t 30 324314 37.923367 0.9771554414683301 Product description 7706 2022-10-18 14:03:01.089303 2024-03-04 Closed Customer 7706 744347.6996258480 +7712 f 78 47186 79.44624 0.6580021820890565 Product description 7712 2022-12-07 14:03:01.089303 2025-02-07 Processing Customer 7712 194072.9046014450 +7595 t 42 372080 98.1851 0.7024406028544945 Product description 7595 2023-06-18 14:03:01.089303 2023-02-13 Processing Customer 7595 21347.7341651433 +7709 f 10 638518 78.47356 0.4157168623950689 Product description 7709 2021-09-07 14:03:01.089303 2023-08-10 Closed Customer 7709 388626.3907122110 +7713 t 28 7511 36.89743 0.7094574235646576 Product description 7713 2023-06-08 14:03:01.089303 2024-12-11 Closed Customer 7713 494093.7752550920 +7596 f 39 707933 62.576508 0.1466074744701089 Product description 7596 2023-10-03 14:03:01.089303 2023-07-30 Closed Customer 7596 644564.4312725310 +7710 t 69 514059 71.27196 0.9561799315608006 Product description 7710 2022-08-01 14:03:01.089303 2023-07-18 Closed Customer 7710 413972.8230634460 +7714 t 28 822950 87.8573 0.22945253264183663 Product description 7714 2024-05-11 14:03:01.089303 2025-08-21 Closed Customer 7714 851135.0031314500 +7597 f 87 628657 17.585438 0.4964035241719813 Product description 7597 2024-06-01 14:03:01.089303 2023-06-04 Closed Customer 7597 848687.9007173340 +7715 f 87 493533 45.209026 0.1456674285684123 Product description 7715 2024-01-09 14:03:01.089303 2024-05-21 Processing Customer 7715 839612.7455761400 +7721 t 95 306644 7.9608088 0.9935864408948163 Product description 7721 2023-05-26 14:03:01.089303 2025-04-21 Closed Customer 7721 765016.8768163720 +7599 t 82 853438 71.817505 0.2705717426115015 Product description 7599 2022-10-11 14:03:01.089303 2023-03-24 Processing Customer 7599 417089.8435198640 +7716 t 96 249614 16.87673 0.4161556680215206 Product description 7716 2022-07-23 14:03:01.089303 2023-08-17 Closed Customer 7716 575813.8410004390 +7722 f 18 54342 15.332966 0.6258461009274967 Product description 7722 2022-06-11 14:03:01.089303 2024-09-09 Processing Customer 7722 152557.8875935770 +7606 t 35 880068 51.629982 0.9912728857579225 Product description 7606 2021-11-06 14:03:01.089303 2023-07-05 Closed Customer 7606 929651.1554012130 +7717 f 59 251673 73.08217 0.07474096944289599 Product description 7717 2024-02-03 14:03:01.089303 2023-01-08 Processing Customer 7717 918925.0856355570 +7725 t 78 811181 74.554726 0.046587005553874405 Product description 7725 2022-02-15 14:03:01.089303 2023-05-06 Closed Customer 7725 176484.0061091450 +7608 f 34 396600 23.437382 0.38826127780649955 Product description 7608 2022-11-04 14:03:01.089303 2023-12-11 Processing Customer 7608 291524.8865711000 +7719 t 26 752990 10.084109 0.7059694736701125 Product description 7719 2021-10-22 14:03:01.089303 2023-12-31 Processing Customer 7719 726969.4226028350 +7726 f 3 871419 3.580234 0.48426557052699337 Product description 7726 2024-02-21 14:03:01.089303 2024-02-06 Closed Customer 7726 344423.4067366980 +7612 t 47 842303 3.6962337 0.8026157841104435 Product description 7612 2022-10-02 14:03:01.089303 2025-01-30 Closed Customer 7612 62904.0688179820 +7720 f 19 746556 2.7811322 0.6264589739562147 Product description 7720 2023-11-05 14:03:01.089303 2025-10-19 Processing Customer 7720 698482.4070760210 +7727 f 64 436477 40.092255 0.2794118726645394 Product description 7727 2023-01-27 14:03:01.089303 2024-06-09 Processing Customer 7727 585773.6560499340 +7613 t 55 443225 98.1598 0.8307769363765303 Product description 7613 2024-01-03 14:03:01.089303 2024-04-20 Processing Customer 7613 379528.8870786810 +7724 t 97 190486 61.511063 0.16944260848238812 Product description 7724 2023-08-08 14:03:01.089303 2024-10-04 Closed Customer 7724 286056.2909543210 +7728 t 52 292389 49.524433 0.12518057816142658 Product description 7728 2022-09-29 14:03:01.089303 2024-05-25 Closed Customer 7728 740169.1606606740 +7617 t 52 49620 1.8384557 0.42209151129674183 Product description 7617 2023-01-02 14:03:01.089303 2025-03-27 Closed Customer 7617 372502.3619243150 +7733 t 67 640329 37.951817 0.5766298508228793 Product description 7733 2024-01-26 14:03:01.089303 2023-12-06 Cancelled Customer 7733 272809.5864917570 +7729 t 68 166391 75.536865 0.5781878276967802 Product description 7729 2023-07-13 14:03:01.089303 2024-08-29 Closed Customer 7729 768770.2448959290 +7629 f 45 12933 54.944218 0.4532612054945915 Product description 7629 2022-01-15 14:03:01.089303 2024-06-04 Closed Customer 7629 655936.6628571620 +7740 t 81 215386 22.108849 0.5524735923846933 Product description 7740 2022-08-11 14:03:01.089303 2024-08-13 Processing Customer 7740 24866.0841805766 +7732 t 26 505816 8.204874 0.08204172995343839 Product description 7732 2021-09-16 14:03:01.089303 2025-12-18 Processing Customer 7732 707387.8238163650 +7632 f 82 608476 30.33494 0.5804858824675563 Product description 7632 2022-10-22 14:03:01.089303 2025-08-01 Closed Customer 7632 608059.9576572010 +7744 t 38 925054 76.57517 0.15833467293541048 Product description 7744 2022-03-15 14:03:01.089303 2024-12-22 Closed Customer 7744 509547.0821933890 +7734 f 6 939235 15.253693 0.3243985838046086 Product description 7734 2023-04-04 14:03:01.089303 2024-09-24 Closed Customer 7734 251996.7082808240 +7636 t 56 394880 5.8004084 0.6547898200735958 Product description 7636 2021-08-19 14:03:01.089303 2025-05-26 Closed Customer 7636 706494.6872518940 +7745 f 61 101325 15.027442 0.5073670275738564 Product description 7745 2021-10-21 14:03:01.089303 2023-09-04 Processing Customer 7745 811161.6463378970 +7735 f 42 868492 33.41888 0.7586958396362817 Product description 7735 2022-08-15 14:03:01.089303 2024-11-22 Closed Customer 7735 129211.2411885180 +7640 f 86 898359 72.60822 0.7048168473081375 Product description 7640 2021-09-19 14:03:01.089303 2023-07-20 Closed Customer 7640 835365.9620603050 +7751 f 68 21420 9.92751 0.9260173833169318 Product description 7751 2022-03-02 14:03:01.089303 2025-05-24 Processing Customer 7751 932435.3912804600 +7736 f 53 326115 30.682627 0.6916431401928662 Product description 7736 2022-02-22 14:03:01.089303 2024-04-10 Processing Customer 7736 956912.3234560340 +7642 f 66 494961 38.96332 0.9936632511232588 Product description 7642 2021-10-23 14:03:01.089303 2025-03-14 Processing Customer 7642 257635.8974639030 +7759 f 42 644485 95.3897 0.34432563238561187 Product description 7759 2022-04-20 14:03:01.089303 2024-04-16 Closed Customer 7759 849177.0960157120 +7737 f 3 536198 5.9958363 0.04586900316673592 Product description 7737 2022-09-26 14:03:01.089303 2023-11-09 Closed Customer 7737 433041.5294882960 +7643 t 39 488322 88.702484 0.30123292969146576 Product description 7643 2022-03-03 14:03:01.089303 2024-11-09 Closed Customer 7643 107932.5251224470 +7761 f 45 143044 1.6927266 0.9627240531890493 Product description 7761 2022-05-08 14:03:01.089303 2023-11-04 Closed Customer 7761 671870.0014932860 +7738 t 79 885585 6.026938 0.4673094929477344 Product description 7738 2024-01-19 14:03:01.089303 2024-04-10 Processing Customer 7738 785677.8931939740 +7646 t 100 30639 67.53434 0.6011517784203804 Product description 7646 2023-05-19 14:03:01.089303 2025-01-09 Processing Customer 7646 73788.3803667110 +7762 t 9 285523 53.20475 0.6265868389375626 Product description 7762 2023-03-10 14:03:01.089303 2024-11-21 Closed Customer 7762 98558.3323467587 +7739 f 72 865115 7.6687922 0.5866410345984363 Product description 7739 2024-01-30 14:03:01.089303 2025-06-22 Cancelled Customer 7739 604919.9409525630 +7647 t 18 208937 15.817937 0.1312574912154787 Product description 7647 2023-06-08 14:03:01.089303 2024-11-28 Processing Customer 7647 333175.0679157000 +7765 t 61 876851 61.167023 0.7624022796449736 Product description 7765 2023-07-16 14:03:01.089303 2025-05-15 Closed Customer 7765 788668.6477850270 +7741 f 27 495001 24.991419 0.15708236090040728 Product description 7741 2024-02-10 14:03:01.089303 2024-04-17 Closed Customer 7741 191159.0779723010 +7654 t 33 345422 7.6467266 0.300578579331507 Product description 7654 2023-07-14 14:03:01.089303 2023-02-06 Closed Customer 7654 678887.0279934580 +7766 t 98 661546 43.709656 0.9326008401780754 Product description 7766 2024-07-30 14:03:01.089303 2024-12-15 Cancelled Customer 7766 482571.0265357440 +7743 f 60 815413 50.018368 0.3482604640496838 Product description 7743 2024-04-12 14:03:01.089303 2023-11-03 Closed Customer 7743 843288.6243586990 +7656 t 98 521394 56.22193 0.3780371915033385 Product description 7656 2022-02-28 14:03:01.089303 2023-09-24 Closed Customer 7656 59854.3716538522 +7768 t 21 995412 5.3109355 0.30641524806714315 Product description 7768 2022-06-10 14:03:01.089303 2024-10-25 Processing Customer 7768 461570.5047562390 +7747 f 97 667158 19.859625 0.18111187467856737 Product description 7747 2023-11-05 14:03:01.089303 2024-07-04 Closed Customer 7747 923751.3840196810 +7658 t 48 630759 3.1088338 0.3147338166523568 Product description 7658 2023-08-18 14:03:01.089303 2024-12-13 Closed Customer 7658 838878.8674214890 +7769 t 59 894269 35.003376 0.20158887938303494 Product description 7769 2023-06-15 14:03:01.089303 2023-08-23 Closed Customer 7769 377693.4341454350 +7748 t 90 735238 17.755293 0.020818373384198452 Product description 7748 2022-10-26 14:03:01.089303 2024-05-06 Processing Customer 7748 174040.5062306040 +7660 t 77 309516 88.82477 0.4741713836242809 Product description 7660 2023-10-04 14:03:01.089303 2024-04-20 Processing Customer 7660 320930.3184813980 +7770 t 86 432852 4.0714664 0.7781545443154592 Product description 7770 2023-02-12 14:03:01.089303 2025-03-23 Closed Customer 7770 208709.0576126230 +7749 t 57 462895 79.905754 0.6664832963629443 Product description 7749 2024-05-10 14:03:01.089303 2024-07-05 Closed Customer 7749 867782.8736584990 +7661 f 61 342547 95.618484 0.9908506538850261 Product description 7661 2022-03-02 14:03:01.089303 2023-05-27 Processing Customer 7661 27.4487366632 +7771 t 55 798056 99.51499 0.3688816873409415 Product description 7771 2024-06-17 14:03:01.089303 2025-06-20 Processing Customer 7771 479313.4936403550 +7754 t 25 244019 68.89525 0.6577998813723518 Product description 7754 2023-05-03 14:03:01.089303 2023-10-22 Closed Customer 7754 546302.9715135900 +7664 t 92 565646 71.03256 0.18909459925235694 Product description 7664 2023-06-22 14:03:01.089303 2023-07-27 Closed Customer 7664 613597.4656489620 +7772 t 64 80500 52.318905 0.32837609274131196 Product description 7772 2024-04-02 14:03:01.089303 2023-10-31 Closed Customer 7772 240871.3713474100 +7757 t 93 200299 56.540894 0.5649904797909819 Product description 7757 2021-09-28 14:03:01.089303 2025-06-09 Closed Customer 7757 865862.1460446910 +7668 t 50 419560 63.389645 0.4647180289618902 Product description 7668 2022-04-11 14:03:01.089303 2024-09-11 Closed Customer 7668 848299.7326209620 +7773 f 33 338816 26.640625 0.6416642393808267 Product description 7773 2021-09-14 14:03:01.089303 2023-03-03 Processing Customer 7773 145395.5440062700 +7763 f 50 542380 61.711666 0.4647505184103373 Product description 7763 2024-04-23 14:03:01.089303 2025-02-19 Processing Customer 7763 655853.5817996260 +7669 f 26 304919 49.938812 0.9606458077213915 Product description 7669 2021-09-12 14:03:01.089303 2024-09-18 Closed Customer 7669 122125.9367329670 +7774 t 31 34981 9.840496 0.5713967241673465 Product description 7774 2023-06-26 14:03:01.089303 2024-08-17 Processing Customer 7774 133663.2527860790 +7764 f 69 737552 0.4734496 0.8416163974466748 Product description 7764 2022-10-27 14:03:01.089303 2024-01-13 Processing Customer 7764 474987.9730155020 +7670 t 93 591801 2.8135743 0.32805643954424824 Product description 7670 2023-03-16 14:03:01.089303 2023-01-20 Processing Customer 7670 788255.6683745500 +7777 t 37 116173 89.544205 0.8406440396491028 Product description 7777 2024-02-19 14:03:01.089303 2023-12-28 Closed Customer 7777 326368.2059988820 +7767 t 5 601886 48.69495 0.5542313981976399 Product description 7767 2023-07-29 14:03:01.089303 2025-03-22 Processing Customer 7767 124163.5145442430 +7671 t 35 409719 66.82303 0.26429983845675054 Product description 7671 2021-09-10 14:03:01.089303 2023-02-14 Processing Customer 7671 65975.1382156166 +7783 f 44 513342 51.809208 0.45942430448917904 Product description 7783 2022-02-07 14:03:01.089303 2023-12-06 Closed Customer 7783 516429.3217282960 +7776 t 91 112351 71.57771 0.8441046856218755 Product description 7776 2022-01-20 14:03:01.089303 2025-08-30 Processing Customer 7776 83640.4826401349 +7673 t 29 101353 33.079414 0.43826849717415683 Product description 7673 2024-04-21 14:03:01.089303 2023-03-27 Closed Customer 7673 651476.4063572790 +7785 t 85 292571 65.59952 0.8782472686175815 Product description 7785 2022-11-28 14:03:01.089303 2024-04-01 Processing Customer 7785 715840.5351173020 +7779 t 99 169445 97.39612 0.30522406569422955 Product description 7779 2022-09-06 14:03:01.089303 2025-02-27 Closed Customer 7779 899495.0218538020 +7675 t 68 40608 58.183376 0.20959729986802245 Product description 7675 2023-04-14 14:03:01.089303 2024-10-07 Closed Customer 7675 652865.3695556520 +7786 f 73 445002 27.598299 0.7806101314869416 Product description 7786 2024-05-07 14:03:01.089303 2023-06-13 Closed Customer 7786 269840.2076630940 +7790 f 52 727855 78.42679 0.1414103677439904 Product description 7790 2022-12-29 14:03:01.089303 2025-03-02 Closed Customer 7790 969125.2577951700 +7676 t 46 742946 52.054543 0.1274471562395334 Product description 7676 2024-05-13 14:03:01.089303 2024-06-27 Processing Customer 7676 66107.1584146988 +7788 t 39 2604 61.94365 0.8612882465764038 Product description 7788 2023-10-17 14:03:01.089303 2023-11-10 Closed Customer 7788 304317.5905712090 +7801 f 87 488155 5.961686 0.7339690209629559 Product description 7801 2022-09-07 14:03:01.089303 2025-04-26 Processing Customer 7801 371810.5401449850 +7678 f 43 143277 48.597427 0.15475357217148655 Product description 7678 2024-03-28 14:03:01.089303 2023-07-16 Processing Customer 7678 242091.3023511100 +7789 f 29 852564 41.071472 0.9292746916269472 Product description 7789 2021-12-20 14:03:01.089303 2025-07-26 Closed Customer 7789 367802.7527563610 +7802 t 74 805452 81.787125 0.902464015284739 Product description 7802 2021-09-22 14:03:01.089303 2024-03-05 Closed Customer 7802 180003.9240597760 +7680 f 44 415656 41.786137 0.41655787942550404 Product description 7680 2022-11-03 14:03:01.089303 2023-08-22 Processing Customer 7680 147625.4183399600 +7791 t 89 711364 56.10261 0.04397313911324474 Product description 7791 2022-08-01 14:03:01.089303 2024-08-24 Processing Customer 7791 147787.1872857790 +7808 f 62 830119 26.579435 0.01905470089482364 Product description 7808 2023-11-24 14:03:01.089303 2023-07-16 Closed Customer 7808 159410.9025350360 +7687 t 60 402911 15.601075 0.25854405927725566 Product description 7687 2021-08-18 14:03:01.089303 2024-01-24 Closed Customer 7687 575974.3718222090 +7793 f 31 729305 48.41807 0.7967033165415849 Product description 7793 2021-09-26 14:03:01.089303 2024-03-25 Processing Customer 7793 893225.8920853830 +7809 f 78 734716 89.5272 0.2599326596197251 Product description 7809 2023-12-26 14:03:01.089303 2023-08-16 Processing Customer 7809 84137.0924855340 +7690 t 47 713393 6.4079742 0.9376081265691099 Product description 7690 2023-11-15 14:03:01.089303 2023-10-20 Processing Customer 7690 19169.8943155849 +7797 t 91 729766 69.10062 0.35069958403741097 Product description 7797 2023-11-19 14:03:01.089303 2024-02-28 Processing Customer 7797 734434.0279200660 +7810 f 25 233517 78.38413 0.05830346766053296 Product description 7810 2024-04-28 14:03:01.089303 2025-12-10 Closed Customer 7810 31235.8834091739 +7692 t 55 545536 31.081503 0.8177659183232464 Product description 7692 2024-03-26 14:03:01.089303 2023-10-15 Cancelled Customer 7692 429781.9201979960 +7798 t 67 826904 47.88989 0.42285850470563346 Product description 7798 2022-09-03 14:03:01.089303 2024-06-30 Closed Customer 7798 253638.6577299230 +7813 f 57 887445 60.990906 0.9081232010699019 Product description 7813 2022-04-06 14:03:01.089303 2025-11-24 Processing Customer 7813 682573.9273367050 +7699 t 9 442983 27.57983 0.5575922313837189 Product description 7699 2023-12-21 14:03:01.089303 2025-11-03 Processing Customer 7699 111763.8678375460 +7800 t 52 21167 32.355038 0.9099042329281524 Product description 7800 2021-09-22 14:03:01.089303 2024-02-20 Processing Customer 7800 49446.5488374587 +7816 t 81 472307 83.71632 0.21471382973362196 Product description 7816 2023-06-09 14:03:01.089303 2024-03-08 Processing Customer 7816 178733.6017307060 +7701 f 68 489003 3.6443062 0.45541391191676794 Product description 7701 2023-04-02 14:03:01.089303 2025-04-28 Processing Customer 7701 278262.4908765430 +7804 f 64 588989 90.82278 0.7061130285635109 Product description 7804 2022-04-11 14:03:01.089303 2025-08-24 Closed Customer 7804 872355.3922453680 +7817 t 27 367980 48.899395 0.8700451856235851 Product description 7817 2021-09-30 14:03:01.089303 2023-08-03 Closed Customer 7817 815161.1892190120 +7711 t 56 594616 18.168077 0.20444931020004375 Product description 7711 2022-10-25 14:03:01.089303 2023-06-16 Closed Customer 7711 34230.4643875693 +7807 f 88 7945 1.2366773 0.7093271743634624 Product description 7807 2023-09-18 14:03:01.089303 2025-08-30 Processing Customer 7807 941517.2204609310 +7819 t 68 868940 58.2402 0.41017152098875087 Product description 7819 2023-12-04 14:03:01.089303 2024-06-23 Closed Customer 7819 827362.6888098060 +7718 f 2 643621 18.283743 0.5571434411097762 Product description 7718 2022-11-18 14:03:01.089303 2023-02-21 Closed Customer 7718 104255.8535064020 +7811 t 73 534222 40.815086 0.1273677435045535 Product description 7811 2022-10-24 14:03:01.089303 2025-06-11 Cancelled Customer 7811 639134.5064443390 +7820 f 47 629161 41.05856 0.6517499480115028 Product description 7820 2024-07-12 14:03:01.089303 2025-02-08 Processing Customer 7820 840352.4226185650 +7723 f 45 606598 5.6024246 0.8325518108219931 Product description 7723 2022-03-09 14:03:01.089303 2025-12-23 Closed Customer 7723 20846.7992963577 +7812 t 27 961191 60.30366 0.6144330347821949 Product description 7812 2023-03-14 14:03:01.089303 2025-10-24 Closed Customer 7812 881799.0094308610 +7829 f 84 460387 31.874928 0.016218998193121337 Product description 7829 2024-05-18 14:03:01.089303 2023-01-21 Closed Customer 7829 590484.1499285350 +7730 t 87 805604 19.34964 0.5866613746243026 Product description 7730 2021-09-09 14:03:01.089303 2023-02-15 Closed Customer 7730 679084.7705538710 +7814 f 75 566398 47.75065 0.9642102674886033 Product description 7814 2023-01-22 14:03:01.089303 2024-04-10 Processing Customer 7814 127481.1438225390 +7833 f 94 365864 35.161427 0.11383756438744186 Product description 7833 2024-01-24 14:03:01.089303 2023-04-26 Closed Customer 7833 377439.0762572890 +7731 t 54 754890 44.399605 0.36736573955478136 Product description 7731 2023-10-10 14:03:01.089303 2025-09-30 Closed Customer 7731 24161.8172062417 +7815 f 100 674155 20.924467 0.6860945431233603 Product description 7815 2022-02-02 14:03:01.089303 2023-07-01 Closed Customer 7815 187444.3039526850 +7834 t 51 633327 49.655556 0.7788811996797271 Product description 7834 2022-07-18 14:03:01.089303 2024-04-13 Closed Customer 7834 706105.0799325630 +7742 t 12 457605 49.298286 0.4953435596224729 Product description 7742 2022-03-26 14:03:01.089303 2023-10-15 Closed Customer 7742 237.3941855751 +7821 f 72 116464 74.04859 0.28548029375490813 Product description 7821 2023-11-28 14:03:01.089303 2025-05-15 Closed Customer 7821 989797.9894894500 +7835 f 78 220361 33.194344 0.32754213135338617 Product description 7835 2022-01-20 14:03:01.089303 2024-06-01 Closed Customer 7835 75588.8273372420 +7746 f 2 479098 49.94072 0.6526449329562887 Product description 7746 2023-05-12 14:03:01.089303 2023-07-17 Closed Customer 7746 732049.6786677850 +7824 t 28 647955 2.372122 0.2648699475367948 Product description 7824 2022-08-31 14:03:01.089303 2024-04-13 Closed Customer 7824 939727.0840303200 +7836 f 40 308844 70.70805 0.3980178506180856 Product description 7836 2022-10-31 14:03:01.089303 2023-08-17 Processing Customer 7836 376255.3931442270 +7750 t 51 342550 22.017735 0.1983508139005643 Product description 7750 2023-07-04 14:03:01.089303 2025-06-09 Closed Customer 7750 892464.8993993150 +7825 t 36 590924 74.47021 0.5608359018227773 Product description 7825 2022-08-05 14:03:01.089303 2024-04-27 Closed Customer 7825 854769.4250538350 +7838 t 22 600649 80.60704 0.45876490296061334 Product description 7838 2022-08-29 14:03:01.089303 2023-07-08 Closed Customer 7838 895076.2891934830 +7752 f 72 716456 96.2019 0.04248128331100176 Product description 7752 2021-09-19 14:03:01.089303 2024-04-12 Processing Customer 7752 363544.3880735850 +7826 f 9 401816 99.7116 0.09519459597750313 Product description 7826 2021-08-14 14:03:01.089303 2025-09-16 Processing Customer 7826 391777.3964636910 +7843 t 93 249364 40.999676 0.6001670155813024 Product description 7843 2024-06-25 14:03:01.089303 2025-07-01 Processing Customer 7843 444438.0602269220 +7753 f 61 130394 37.724865 0.8975645452805061 Product description 7753 2022-12-05 14:03:01.089303 2024-09-23 Closed Customer 7753 355276.5081165600 +7827 f 15 608727 29.489098 0.39090837321108296 Product description 7827 2021-12-26 14:03:01.089303 2023-07-26 Processing Customer 7827 626921.7157991880 +7844 f 90 969886 85.52344 0.6161440861170497 Product description 7844 2023-03-08 14:03:01.089303 2023-04-08 Processing Customer 7844 29466.6786036544 +7755 t 95 813368 53.23718 0.40225792213942313 Product description 7755 2022-10-18 14:03:01.089303 2025-11-02 Processing Customer 7755 6143.5336306843 +7828 t 15 106311 8.2975645 0.569532133808508 Product description 7828 2022-09-18 14:03:01.089303 2025-07-05 Closed Customer 7828 26653.4181620521 +7846 f 85 15424 98.22909 0.22724379954777518 Product description 7846 2023-08-06 14:03:01.089303 2025-10-08 Processing Customer 7846 21444.5714374634 +7756 t 95 292200 13.037341 0.9358471897317351 Product description 7756 2024-05-07 14:03:01.089303 2023-04-08 Closed Customer 7756 925496.5027015630 +7830 t 63 706556 27.894144 0.37989120754085803 Product description 7830 2024-06-02 14:03:01.089303 2024-01-05 Closed Customer 7830 285924.5986602480 +7848 t 69 848294 28.700754 0.40267493003625887 Product description 7848 2022-08-23 14:03:01.089303 2024-08-02 Processing Customer 7848 793927.9665122140 +7758 t 27 188947 7.1969967 0.8875146181058646 Product description 7758 2023-03-04 14:03:01.089303 2024-08-23 Closed Customer 7758 812739.5275094140 +7839 f 15 130246 59.512913 0.38346118970422083 Product description 7839 2023-09-19 14:03:01.089303 2024-05-27 Closed Customer 7839 526708.2757417650 +7849 f 48 467368 82.27853 0.28226989657154533 Product description 7849 2022-06-14 14:03:01.089303 2024-02-17 Closed Customer 7849 904847.0295409670 +7760 f 64 964775 72.03958 0.9145078946302654 Product description 7760 2023-04-09 14:03:01.089303 2023-03-26 Processing Customer 7760 476932.9897255550 +7840 t 27 435782 15.868175 0.07073386702335682 Product description 7840 2022-07-29 14:03:01.089303 2025-06-25 Processing Customer 7840 216292.3864243740 +7851 t 30 155119 42.349125 0.18409445947476755 Product description 7851 2023-08-31 14:03:01.089303 2024-07-22 Processing Customer 7851 688090.5967182680 +7775 f 51 441590 99.13505 0.6637295492519932 Product description 7775 2023-10-20 14:03:01.089303 2025-10-27 Closed Customer 7775 497525.8517381250 +7841 f 75 792943 20.669302 0.153286848145342 Product description 7841 2022-06-01 14:03:01.089303 2024-04-19 Closed Customer 7841 554380.9565824030 +7857 t 41 703067 74.50389 0.18866689360725886 Product description 7857 2022-09-17 14:03:01.089303 2024-10-27 Closed Customer 7857 561767.9790319200 +7778 f 87 809424 82.1171 0.1358900368919116 Product description 7778 2023-01-25 14:03:01.089303 2023-06-28 Processing Customer 7778 198914.1379292930 +7845 f 77 484967 36.61238 0.3193437717806731 Product description 7845 2021-10-06 14:03:01.089303 2024-04-23 Closed Customer 7845 787047.3570939430 +7858 f 96 474827 79.77495 0.40641710702201195 Product description 7858 2022-03-27 14:03:01.089303 2025-05-31 Closed Customer 7858 498860.0936482190 +7780 f 31 522857 87.25903 0.6695853607042004 Product description 7780 2023-06-07 14:03:01.089303 2024-05-24 Cancelled Customer 7780 943947.0907332710 +7854 t 34 512 27.730453 0.9793495636108815 Product description 7854 2022-10-11 14:03:01.089303 2023-11-18 Closed Customer 7854 798412.0227822120 +7860 t 63 678659 96.542984 0.03330666788390246 Product description 7860 2023-02-15 14:03:01.089303 2025-11-27 Closed Customer 7860 465315.3637055070 +7781 f 7 930599 12.696048 0.8146563736289139 Product description 7781 2023-04-25 14:03:01.089303 2024-01-16 Closed Customer 7781 418072.5075882810 +7859 f 16 847989 80.79792 0.11043369390235824 Product description 7859 2021-09-30 14:03:01.089303 2024-09-03 Closed Customer 7859 166430.2005197450 +7862 f 42 66681 85.39394 0.500470909131014 Product description 7862 2021-08-12 14:03:01.089303 2024-04-21 Closed Customer 7862 29355.8551879585 +7782 t 55 820154 48.093784 0.893073370444327 Product description 7782 2022-11-01 14:03:01.089303 2024-03-09 Processing Customer 7782 925793.8205463000 +7861 f 53 836243 20.418129 0.32254636517640733 Product description 7861 2022-06-27 14:03:01.089303 2023-05-12 Closed Customer 7861 621858.6492684290 +7864 f 47 972243 32.34209 0.9678586822859323 Product description 7864 2024-05-13 14:03:01.089303 2023-01-11 Closed Customer 7864 927704.4345549040 +7784 t 96 39417 66.76586 0.7421313583236255 Product description 7784 2021-10-27 14:03:01.089303 2024-07-21 Closed Customer 7784 247493.2113856770 +7866 t 67 255823 1.2670919 0.3299540968231227 Product description 7866 2023-05-05 14:03:01.089303 2024-02-09 Processing Customer 7866 544688.6139954510 +7867 f 52 548839 81.07213 0.3594841564079765 Product description 7867 2023-01-21 14:03:01.089303 2023-09-18 Processing Customer 7867 567863.2021841140 +7787 t 23 230556 14.293924 0.2638877093627059 Product description 7787 2023-03-20 14:03:01.089303 2025-02-21 Closed Customer 7787 848502.3426277070 +7868 f 84 88051 54.218586 0.21380469461239215 Product description 7868 2022-08-16 14:03:01.089303 2023-09-16 Closed Customer 7868 871538.6647886410 +7872 t 68 733014 34.117302 0.5710142969211169 Product description 7872 2024-04-16 14:03:01.089303 2025-10-10 Closed Customer 7872 571047.5669331390 +7792 f 44 643250 18.99154 0.8755941901413067 Product description 7792 2022-07-02 14:03:01.089303 2023-09-03 Closed Customer 7792 472921.4718289010 +7873 f 27 49942 81.483215 0.31511457231959383 Product description 7873 2021-12-07 14:03:01.089303 2025-08-17 Processing Customer 7873 545416.0869895370 +7874 t 92 916380 17.904434 0.18877974341531356 Product description 7874 2022-07-06 14:03:01.089303 2023-07-20 Processing Customer 7874 991634.3951398400 +7794 t 34 461083 77.05023 0.4122183496588576 Product description 7794 2023-03-04 14:03:01.089303 2025-11-13 Processing Customer 7794 751866.9982056100 +7879 t 6 99743 92.843735 0.05764707874254782 Product description 7879 2022-10-27 14:03:01.089303 2024-09-09 Closed Customer 7879 571302.5921363590 +7877 t 61 588992 67.66909 0.04953518893136888 Product description 7877 2023-05-06 14:03:01.089303 2024-05-16 Closed Customer 7877 861678.3524122480 +7795 t 89 490590 28.620049 0.24587219824496032 Product description 7795 2022-10-06 14:03:01.089303 2025-02-26 Closed Customer 7795 398711.7994826870 +7880 t 61 749847 78.9166 0.6194269026682448 Product description 7880 2023-06-08 14:03:01.089303 2023-03-22 Closed Customer 7880 145543.8050836370 +7878 t 4 27061 68.1545 0.8421442593852113 Product description 7878 2022-08-20 14:03:01.089303 2024-05-10 Closed Customer 7878 833971.8933279560 +7796 f 6 895129 1.2160884 0.46883157719628343 Product description 7796 2023-10-23 14:03:01.089303 2025-01-03 Processing Customer 7796 274717.4137467670 +7885 f 95 25615 84.39784 0.3959691202692994 Product description 7885 2022-07-10 14:03:01.089303 2025-04-25 Closed Customer 7885 63073.9742471285 +7881 f 41 459019 98.862175 0.04302441913604227 Product description 7881 2022-10-15 14:03:01.089303 2023-07-14 Processing Customer 7881 925414.5692978780 +7799 f 27 35610 86.1037 0.7059004259909969 Product description 7799 2023-08-05 14:03:01.089303 2023-01-17 Closed Customer 7799 319188.4635196840 +7886 t 70 562015 23.592222 0.4517209827819997 Product description 7886 2024-03-01 14:03:01.089303 2025-07-16 Closed Customer 7886 674229.7469851230 +7882 t 50 679707 98.69039 0.9807714112896413 Product description 7882 2023-12-18 14:03:01.089303 2025-09-01 Processing Customer 7882 331812.6845227030 +7803 t 30 920825 47.917427 0.16862471433474013 Product description 7803 2021-08-23 14:03:01.089303 2025-03-12 Closed Customer 7803 410522.8882175530 +7891 t 40 425454 93.002464 0.44426306300206875 Product description 7891 2023-03-08 14:03:01.089303 2024-01-18 Closed Customer 7891 809794.3482410100 +7883 f 68 888805 20.482794 0.25073741578662734 Product description 7883 2023-03-21 14:03:01.089303 2024-05-28 Processing Customer 7883 207207.2688140810 +7805 t 31 252656 85.57851 0.4186921591220525 Product description 7805 2024-05-25 14:03:01.089303 2025-12-27 Closed Customer 7805 697124.9331620480 +7895 t 55 501259 34.21346 0.5975454389496591 Product description 7895 2024-02-12 14:03:01.089303 2024-07-20 Closed Customer 7895 715485.7586867860 +7887 t 80 578989 31.206804 0.43677998716782795 Product description 7887 2023-09-03 14:03:01.089303 2024-01-30 Cancelled Customer 7887 116224.6348476010 +7806 f 15 485142 59.573864 0.13678257032850638 Product description 7806 2023-07-12 14:03:01.089303 2025-03-23 Closed Customer 7806 546477.7374953900 +7896 t 77 363559 69.64566 0.9304185099338014 Product description 7896 2022-11-07 14:03:01.089303 2025-08-11 Processing Customer 7896 303767.9025829160 +7888 t 61 786037 78.163086 0.3672193109279078 Product description 7888 2023-01-18 14:03:01.089303 2024-09-25 Processing Customer 7888 283817.6650651540 +7818 f 26 31371 95.182304 0.08759901201282361 Product description 7818 2024-03-16 14:03:01.089303 2025-06-24 Closed Customer 7818 68907.8447320561 +7901 f 14 110277 4.4790673 0.30974383964018415 Product description 7901 2023-05-12 14:03:01.089303 2025-07-01 Closed Customer 7901 58005.9779578228 +7889 f 40 213427 62.878826 0.4498587347410492 Product description 7889 2022-06-07 14:03:01.089303 2023-06-10 Closed Customer 7889 823643.6354655760 +7822 t 78 521345 39.15919 0.7710005007496505 Product description 7822 2023-07-04 14:03:01.089303 2025-04-12 Closed Customer 7822 229593.1486802760 +7911 f 18 553108 77.81694 0.3897098084021877 Product description 7911 2023-06-20 14:03:01.089303 2024-02-06 Closed Customer 7911 993554.9357842850 +7893 t 49 180431 56.26407 0.2614651023202015 Product description 7893 2022-08-19 14:03:01.089303 2024-05-30 Closed Customer 7893 568107.8531848800 +7823 f 48 674972 52.10038 0.9175130396965798 Product description 7823 2022-12-16 14:03:01.089303 2025-09-20 Closed Customer 7823 933404.7756990640 +7915 t 87 633770 9.352772 0.9913964722030144 Product description 7915 2023-11-01 14:03:01.089303 2025-02-17 Processing Customer 7915 293503.7628679180 +7897 f 14 959970 31.669476 0.6188731170155606 Product description 7897 2023-07-03 14:03:01.089303 2024-02-03 Closed Customer 7897 213381.6254013150 +7831 f 7 126023 0.2762958 0.30029399056337525 Product description 7831 2021-11-12 14:03:01.089303 2023-01-11 Processing Customer 7831 114479.0865579890 +7917 f 94 226478 43.89781 0.18555022814429378 Product description 7917 2023-04-13 14:03:01.089303 2025-01-19 Processing Customer 7917 654270.5409777450 +7898 t 95 965317 75.80226 0.7846575338067225 Product description 7898 2022-07-13 14:03:01.089303 2024-12-11 Processing Customer 7898 408144.2134312530 +7832 t 30 407056 64.42543 0.663800703019156 Product description 7832 2022-08-05 14:03:01.089303 2025-03-21 Closed Customer 7832 275434.0438777130 +7930 t 4 48348 23.115484 0.3959633196959871 Product description 7930 2022-03-21 14:03:01.089303 2025-09-29 Closed Customer 7930 602749.5624700130 +7900 f 22 628079 27.749796 0.004607962027002088 Product description 7900 2022-04-19 14:03:01.089303 2024-02-10 Closed Customer 7900 405760.0742727380 +7837 f 13 423489 47.790092 0.8150298183047795 Product description 7837 2024-06-14 14:03:01.089303 2025-02-23 Closed Customer 7837 46023.5066247598 +7931 f 26 1345 33.694683 0.9240954079068331 Product description 7931 2023-01-20 14:03:01.089303 2025-06-13 Closed Customer 7931 372288.2817608840 +7902 t 72 328336 30.87614 0.76242389648597 Product description 7902 2021-11-01 14:03:01.089303 2024-02-11 Processing Customer 7902 987119.3740399740 +7842 t 75 450903 59.076828 0.22320495591761613 Product description 7842 2023-10-22 14:03:01.089303 2025-03-06 Closed Customer 7842 256467.6906061330 +7933 t 78 389662 30.079124 0.2717076770040663 Product description 7933 2024-01-31 14:03:01.089303 2025-07-01 Cancelled Customer 7933 473335.4887581460 +7903 t 52 219689 17.741457 0.34135904951630636 Product description 7903 2022-05-02 14:03:01.089303 2025-12-11 Closed Customer 7903 505758.5079275850 +7847 t 83 981086 22.219685 0.036023239909894755 Product description 7847 2024-04-07 14:03:01.089303 2025-09-20 Cancelled Customer 7847 767142.3407642660 +7934 f 70 136181 6.833818 0.9588246747811304 Product description 7934 2022-01-09 14:03:01.089303 2025-07-04 Closed Customer 7934 422547.3630675080 +7904 f 67 637575 31.080133 0.7081777402717648 Product description 7904 2024-04-03 14:03:01.089303 2024-07-07 Closed Customer 7904 563647.3075609810 +7850 t 5 909310 12.579766 0.3869265076727224 Product description 7850 2021-11-12 14:03:01.089303 2023-08-04 Processing Customer 7850 469922.0212958080 +7935 t 100 717223 12.825546 0.3598232449569956 Product description 7935 2022-07-05 14:03:01.089303 2025-12-11 Closed Customer 7935 181497.9730220970 +7905 t 25 745369 70.75081 0.07778211374779431 Product description 7905 2022-10-03 14:03:01.089303 2024-10-05 Closed Customer 7905 830573.7107940880 +7852 t 99 61132 57.027706 0.9829503331948395 Product description 7852 2022-07-08 14:03:01.089303 2024-08-25 Processing Customer 7852 508826.8844755820 +7938 f 75 747067 14.317456 0.9299386069219828 Product description 7938 2023-11-06 14:03:01.089303 2023-10-22 Closed Customer 7938 497157.3775905110 +7906 f 26 167294 18.268007 0.7830723803704274 Product description 7906 2024-04-19 14:03:01.089303 2023-05-07 Processing Customer 7906 88299.1742084407 +7853 t 58 568236 40.6825 0.5419927215961557 Product description 7853 2022-04-23 14:03:01.089303 2025-08-29 Processing Customer 7853 946287.1217617210 +7941 f 43 313144 90.30745 0.5849721302707387 Product description 7941 2021-11-22 14:03:01.089303 2024-06-11 Closed Customer 7941 861083.1279718450 +7907 f 89 3212 96.91939 0.8572681306321996 Product description 7907 2021-08-07 14:03:01.089303 2025-09-07 Processing Customer 7907 635531.6495651560 +7855 t 80 550657 72.51722 0.6405338292317175 Product description 7855 2022-08-04 14:03:01.089303 2025-09-06 Closed Customer 7855 704792.7130665950 +7943 t 63 470459 22.767235 0.20022165117545754 Product description 7943 2023-02-10 14:03:01.089303 2024-08-23 Closed Customer 7943 706507.1706585680 +7909 f 39 61103 92.69352 0.1308122019766813 Product description 7909 2024-07-19 14:03:01.089303 2024-03-05 Closed Customer 7909 182314.4659280980 +7856 t 43 797442 62.053955 0.31354194734576524 Product description 7856 2023-10-09 14:03:01.089303 2024-10-27 Closed Customer 7856 470264.8190695060 +7946 f 69 532938 15.705146 0.33191690904467563 Product description 7946 2021-08-15 14:03:01.089303 2024-11-18 Closed Customer 7946 633405.3228258440 +7910 t 41 874409 77.238174 0.3378381204832763 Product description 7910 2023-02-18 14:03:01.089303 2024-10-07 Processing Customer 7910 607086.3349061180 +7863 t 71 978121 48.01857 0.43168481055686314 Product description 7863 2022-09-24 14:03:01.089303 2023-02-09 Processing Customer 7863 774697.1208738100 +7949 f 88 911306 81.05855 0.0034982366474345383 Product description 7949 2021-10-04 14:03:01.089303 2025-12-28 Cancelled Customer 7949 727292.8106864530 +7912 f 14 837769 35.741535 0.4449527312821573 Product description 7912 2021-12-06 14:03:01.089303 2023-01-02 Closed Customer 7912 149445.2549081690 +7865 f 3 566881 95.43514 0.15685666185956038 Product description 7865 2022-12-31 14:03:01.089303 2023-02-20 Cancelled Customer 7865 187055.6052546530 +7953 f 36 391952 32.20297 0.2664792707665242 Product description 7953 2023-11-03 14:03:01.089303 2025-10-11 Processing Customer 7953 734164.8000615880 +7913 t 22 463912 13.382505 0.9635772437059629 Product description 7913 2022-08-18 14:03:01.089303 2024-04-21 Closed Customer 7913 155330.7863624300 +7869 f 10 955371 42.994236 0.4977588666069934 Product description 7869 2023-08-07 14:03:01.089303 2025-03-05 Processing Customer 7869 144876.9720784820 +7954 f 43 470111 18.494755 0.540072839150362 Product description 7954 2023-07-08 14:03:01.089303 2025-03-25 Closed Customer 7954 282700.9061618670 +7914 t 51 429966 11.124053 0.39896829855638316 Product description 7914 2024-07-03 14:03:01.089303 2023-03-04 Processing Customer 7914 260910.6678869430 +7870 f 97 456623 50.440575 0.5013958355158934 Product description 7870 2021-11-02 14:03:01.089303 2025-04-07 Closed Customer 7870 30026.4820127119 +7955 t 90 965456 7.3589864 0.7019467442384126 Product description 7955 2022-02-14 14:03:01.089303 2024-06-22 Closed Customer 7955 857568.4717350890 +7916 f 88 20294 48.637856 0.6973063419582175 Product description 7916 2024-01-06 14:03:01.089303 2023-07-11 Closed Customer 7916 734326.1555363120 +7871 f 32 829376 90.76402 0.4796852629878643 Product description 7871 2022-09-02 14:03:01.089303 2023-11-30 Closed Customer 7871 624602.2245972290 +7957 t 3 908965 46.42943 0.021957493688226748 Product description 7957 2022-10-08 14:03:01.089303 2024-06-10 Processing Customer 7957 942501.9180081800 +7918 f 0 220220 41.737408 0.7056004025074145 Product description 7918 2024-07-11 14:03:01.089303 2025-11-30 Cancelled Customer 7918 193567.2568639290 +7875 f 11 234687 18.893894 0.8568316678345269 Product description 7875 2023-02-12 14:03:01.089303 2023-10-06 Closed Customer 7875 224666.8559959740 +7961 t 97 739239 55.255436 0.8934334287518766 Product description 7961 2023-12-12 14:03:01.089303 2023-06-29 Processing Customer 7961 889208.1564002550 +7923 t 80 603937 59.499695 0.10649942632604947 Product description 7923 2024-07-04 14:03:01.089303 2024-10-25 Closed Customer 7923 303955.8699907520 +7876 t 11 303723 75.9691 0.8237194868280753 Product description 7876 2021-10-19 14:03:01.089303 2025-03-09 Closed Customer 7876 180525.9279579340 +7963 f 30 264042 75.13434 0.4771304514128829 Product description 7963 2023-11-02 14:03:01.089303 2024-09-02 Closed Customer 7963 71990.8149383777 +7924 f 7 20732 67.71496 0.9350349348209797 Product description 7924 2022-12-10 14:03:01.089303 2024-08-19 Closed Customer 7924 113604.8512359340 +7884 f 53 282702 25.363344 0.24105574932363538 Product description 7884 2022-01-30 14:03:01.089303 2025-10-21 Closed Customer 7884 681034.6278852780 +7964 f 70 188022 0.5026209 0.538939470604916 Product description 7964 2023-06-11 14:03:01.089303 2025-08-07 Closed Customer 7964 832874.6838861710 +7926 t 54 757068 35.612473 0.9954633130989627 Product description 7926 2022-07-10 14:03:01.089303 2024-08-16 Closed Customer 7926 722424.1238866900 +7890 t 52 836187 45.88267 0.3012125957744516 Product description 7890 2024-06-16 14:03:01.089303 2024-05-23 Closed Customer 7890 882067.7441667080 +7965 t 45 56279 45.91934 0.8409738891152116 Product description 7965 2022-05-09 14:03:01.089303 2023-06-02 Processing Customer 7965 300279.4339115160 +7927 t 35 448891 20.287142 0.25156550374989095 Product description 7927 2021-12-07 14:03:01.089303 2025-08-14 Processing Customer 7927 27064.3274989197 +7892 t 3 130627 29.402538 0.6183641533922781 Product description 7892 2023-01-29 14:03:01.089303 2024-08-14 Cancelled Customer 7892 145968.5833855810 +7966 t 43 23811 41.63651 0.5410369524332737 Product description 7966 2024-02-19 14:03:01.089303 2024-05-31 Closed Customer 7966 65693.3736100846 +7928 t 33 120929 81.79087 0.7580440696672177 Product description 7928 2023-01-21 14:03:01.089303 2023-12-12 Cancelled Customer 7928 624964.6072244100 +7894 f 53 305027 89.13542 0.18843084896019135 Product description 7894 2022-12-31 14:03:01.089303 2023-12-04 Closed Customer 7894 957794.3988771910 +7969 f 9 623891 22.960773 0.14912760060008878 Product description 7969 2023-01-29 14:03:01.089303 2023-11-20 Processing Customer 7969 13398.1300503798 +7929 f 97 11600 35.290775 0.46143449714909224 Product description 7929 2022-10-12 14:03:01.089303 2023-10-02 Closed Customer 7929 586190.5887677960 +7899 f 83 665117 83.67672 0.6175100673050657 Product description 7899 2021-12-16 14:03:01.089303 2023-01-10 Processing Customer 7899 208297.0566634830 +7976 f 50 741095 13.849258 0.9783892637737637 Product description 7976 2023-02-24 14:03:01.089303 2023-12-25 Closed Customer 7976 282247.8996826130 +7939 f 86 143118 96.15704 0.6489000456539031 Product description 7939 2021-11-21 14:03:01.089303 2025-09-06 Processing Customer 7939 72689.9105886467 +7908 f 5 512711 38.68558 0.4023581592998191 Product description 7908 2021-09-10 14:03:01.089303 2024-03-25 Processing Customer 7908 148138.1612587920 +7978 t 93 337209 40.63304 0.947022673377738 Product description 7978 2023-04-09 14:03:01.089303 2023-03-26 Processing Customer 7978 482502.2764937220 +7940 t 12 211852 76.07295 0.3786246789403336 Product description 7940 2024-05-01 14:03:01.089303 2025-09-01 Closed Customer 7940 906783.4863269050 +7919 f 97 968673 33.36499 0.946546353177883 Product description 7919 2023-06-28 14:03:01.089303 2023-05-04 Processing Customer 7919 486846.1046151820 +7980 f 81 701430 99.752396 0.12213311451185405 Product description 7980 2023-02-02 14:03:01.089303 2025-02-12 Closed Customer 7980 686799.9813274790 +7947 t 50 332320 74.079796 0.29798388122064523 Product description 7947 2022-03-18 14:03:01.089303 2024-12-04 Closed Customer 7947 508669.5247173160 +7920 t 36 946507 1.8639709 0.4498038745543589 Product description 7920 2023-06-11 14:03:01.089303 2024-09-24 Closed Customer 7920 310385.4659628740 +7981 t 56 505062 31.884588 0.033211681415913574 Product description 7981 2022-02-12 14:03:01.089303 2023-10-08 Closed Customer 7981 550687.7283340860 +7950 t 12 191037 35.32444 0.874018497120737 Product description 7950 2022-11-06 14:03:01.089303 2025-09-16 Processing Customer 7950 609000.4696921660 +7921 t 81 521918 95.201004 0.5302368522868086 Product description 7921 2022-08-06 14:03:01.089303 2023-06-06 Closed Customer 7921 848939.2205819260 +7982 t 69 310327 88.88526 0.5457179044245635 Product description 7982 2022-01-13 14:03:01.089303 2023-06-02 Closed Customer 7982 3351.1544903995 +7951 f 28 203545 47.982944 0.24879402872215906 Product description 7951 2023-07-13 14:03:01.089303 2025-06-13 Closed Customer 7951 330485.6172280740 +7922 t 11 861028 14.077791 0.7187715806166857 Product description 7922 2023-01-11 14:03:01.089303 2023-11-26 Processing Customer 7922 76700.3816441090 +7984 t 26 591183 47.87129 0.2246107523055727 Product description 7984 2024-04-04 14:03:01.089303 2023-02-28 Closed Customer 7984 802670.8601535300 +7960 t 43 650099 2.225428 0.22328809753663137 Product description 7960 2024-01-01 14:03:01.089303 2023-05-14 Closed Customer 7960 617886.6893157850 +7925 f 90 181708 86.56469 0.7244188956143098 Product description 7925 2022-11-13 14:03:01.089303 2023-05-05 Closed Customer 7925 7239.1328815229 +7990 f 98 182425 15.595635 0.6101383790707473 Product description 7990 2023-07-24 14:03:01.089303 2024-08-08 Closed Customer 7990 544607.1200137190 +7962 f 60 710287 13.729814 0.0544169616376422 Product description 7962 2024-02-22 14:03:01.089303 2025-09-20 Processing Customer 7962 813284.6824239660 +7932 t 29 151845 24.956572 0.646882108998394 Product description 7932 2024-07-11 14:03:01.089303 2024-06-23 Processing Customer 7932 390882.5946477990 +8001 f 80 230233 56.52476 0.4694374768118408 Product description 8001 2022-01-15 14:03:01.089303 2024-09-10 Processing Customer 8001 976873.9734371690 +7967 t 87 3332 40.472233 0.34723328156515976 Product description 7967 2023-03-29 14:03:01.089303 2023-11-22 Closed Customer 7967 100326.6740818740 +7936 f 91 831743 23.878843 0.9818292251436311 Product description 7936 2021-11-22 14:03:01.089303 2024-03-24 Processing Customer 7936 790628.2851052570 +8003 t 71 147081 38.47833 0.7463928951031136 Product description 8003 2023-07-09 14:03:01.089303 2025-03-19 Processing Customer 8003 552085.1259115710 +7968 t 24 436394 45.068596 0.3929620919795127 Product description 7968 2023-09-24 14:03:01.089303 2025-11-15 Closed Customer 7968 178809.5705421960 +7937 f 87 331029 6.7542124 0.6159782206834841 Product description 7937 2023-02-03 14:03:01.089303 2024-04-11 Closed Customer 7937 953871.6543581460 +8005 f 24 742420 68.40719 0.5631063204324604 Product description 8005 2022-04-23 14:03:01.089303 2025-01-10 Cancelled Customer 8005 841186.7177774540 +7970 f 35 658090 17.967337 0.7066799924379339 Product description 7970 2023-06-04 14:03:01.089303 2023-01-15 Processing Customer 7970 24478.8281040691 +7942 f 81 442706 79.86043 0.6295933067832387 Product description 7942 2023-08-12 14:03:01.089303 2025-09-26 Processing Customer 7942 526608.0719699460 +8007 t 6 250594 32.92259 0.7965615731883453 Product description 8007 2021-11-01 14:03:01.089303 2025-04-23 Processing Customer 8007 896379.2730088330 +7973 f 11 858971 74.20609 0.6513027692842428 Product description 7973 2023-06-15 14:03:01.089303 2023-05-02 Closed Customer 7973 406038.7806871790 +7944 f 84 434305 10.868296 0.8170979882213736 Product description 7944 2022-04-06 14:03:01.089303 2025-01-07 Cancelled Customer 7944 963230.2586216890 +8008 t 50 615176 33.953148 0.4663798761047637 Product description 8008 2022-03-06 14:03:01.089303 2025-04-30 Closed Customer 8008 217188.1660976780 +7977 f 48 397802 45.091404 0.35021680818032763 Product description 7977 2023-06-08 14:03:01.089303 2024-07-24 Closed Customer 7977 844818.5654521190 +7945 t 62 284706 86.33499 0.337158545223069 Product description 7945 2022-10-21 14:03:01.089303 2025-07-30 Closed Customer 7945 388433.8589121690 +8010 t 90 388332 49.12406 0.12282082902222058 Product description 8010 2022-03-09 14:03:01.089303 2023-08-02 Processing Customer 8010 778173.2707834980 +7983 t 87 12415 46.98292 0.12284849014491783 Product description 7983 2023-07-13 14:03:01.089303 2025-08-22 Processing Customer 7983 563891.7061838210 +7948 f 76 467218 73.12319 0.5026896380663857 Product description 7948 2021-11-04 14:03:01.089303 2025-11-11 Closed Customer 7948 969716.5797490430 +8014 f 29 971181 89.291214 0.6748497681018613 Product description 8014 2024-04-17 14:03:01.089303 2023-11-04 Closed Customer 8014 490429.6718274920 +7985 t 48 832734 42.61807 0.8438432040600858 Product description 7985 2023-06-04 14:03:01.089303 2025-10-31 Closed Customer 7985 173008.3693217100 +7952 t 77 935530 85.07361 0.5359856747588836 Product description 7952 2021-10-15 14:03:01.089303 2023-06-12 Closed Customer 7952 585613.2613107300 +8020 t 98 546577 6.041305 0.6475209051506319 Product description 8020 2022-09-21 14:03:01.089303 2023-10-16 Processing Customer 8020 745414.1335633860 +7987 t 65 222088 34.644157 0.8825075456567362 Product description 7987 2022-04-21 14:03:01.089303 2025-12-29 Processing Customer 7987 499181.4519951950 +7956 t 43 911395 89.88021 0.78842907680162 Product description 7956 2021-10-28 14:03:01.089303 2023-05-14 Processing Customer 7956 814554.0618966260 +8021 t 45 118582 9.812297 0.770689894298993 Product description 8021 2022-12-07 14:03:01.089303 2023-09-03 Closed Customer 8021 604901.2569291320 +7988 t 24 351560 72.12924 0.7152021328393161 Product description 7988 2022-04-05 14:03:01.089303 2024-05-19 Processing Customer 7988 351838.9715856540 +7958 f 18 192113 44.1133 0.3473261340995677 Product description 7958 2024-01-14 14:03:01.089303 2025-09-04 Closed Customer 7958 751147.6694174810 +8026 f 26 964337 34.108852 0.21826688209562306 Product description 8026 2023-09-04 14:03:01.089303 2025-04-16 Closed Customer 8026 670807.7760580130 +7993 f 56 729847 68.154976 0.06807980900018151 Product description 7993 2022-09-16 14:03:01.089303 2025-03-01 Processing Customer 7993 781405.8099132490 +7959 f 51 39407 90.5207 0.581713480672903 Product description 7959 2023-06-01 14:03:01.089303 2024-07-09 Closed Customer 7959 681303.8824975840 +8031 t 50 453056 67.72778 0.4427437892315673 Product description 8031 2023-08-15 14:03:01.089303 2023-04-20 Closed Customer 8031 851625.8131233840 +7997 t 87 377131 48.689358 0.9055164010555714 Product description 7997 2021-12-09 14:03:01.089303 2023-04-12 Processing Customer 7997 274248.5744946100 +7971 t 76 521847 57.227833 0.6317293674214071 Product description 7971 2024-05-09 14:03:01.089303 2024-09-20 Closed Customer 7971 943467.1064946120 +8032 t 31 318748 94.6922 0.19309860603897633 Product description 8032 2022-04-02 14:03:01.089303 2025-05-16 Closed Customer 8032 781418.1519001270 +8000 t 7 310257 6.056894 0.3953456410213647 Product description 8000 2023-07-07 14:03:01.089303 2025-05-20 Closed Customer 8000 223069.7909518360 +7972 t 95 185236 73.14156 0.16140672020809177 Product description 7972 2022-10-10 14:03:01.089303 2025-07-03 Cancelled Customer 7972 400239.8625805200 +8033 t 20 968879 16.723001 0.11189771618363054 Product description 8033 2024-04-13 14:03:01.089303 2024-09-23 Closed Customer 8033 780201.3060982560 +8004 f 47 276188 58.654778 0.8531199565206222 Product description 8004 2023-07-24 14:03:01.089303 2023-12-07 Processing Customer 8004 703996.8910318810 +7974 f 96 999724 74.4387 0.4914169724929671 Product description 7974 2022-10-23 14:03:01.089303 2023-12-10 Closed Customer 7974 995300.6138303020 +8039 t 74 195431 44.075775 0.9983462734808946 Product description 8039 2022-06-11 14:03:01.089303 2024-10-28 Processing Customer 8039 118506.7215362780 +8012 t 55 470447 35.51551 0.7103780305850478 Product description 8012 2021-09-28 14:03:01.089303 2025-11-12 Closed Customer 8012 283662.5882483720 +7975 t 80 339975 84.045555 0.7462733536651491 Product description 7975 2023-02-19 14:03:01.089303 2023-05-01 Processing Customer 7975 933406.5319474830 +8045 t 88 554317 6.175543 0.500865234879253 Product description 8045 2022-01-19 14:03:01.089303 2023-12-15 Processing Customer 8045 899858.0130819460 +8013 f 86 472815 80.005066 0.8751731087196575 Product description 8013 2024-04-06 14:03:01.089303 2024-02-14 Processing Customer 8013 896643.0765693510 +7979 f 22 152495 30.816608 0.661002770929155 Product description 7979 2022-01-15 14:03:01.089303 2023-03-13 Closed Customer 7979 652530.7922176680 +8047 f 92 989642 6.9844685 0.7392370354957372 Product description 8047 2021-11-07 14:03:01.089303 2025-06-08 Closed Customer 8047 647557.1624126390 +8016 f 83 461233 47.55789 0.6365151511731284 Product description 8016 2022-12-15 14:03:01.089303 2024-08-28 Processing Customer 8016 591425.7903135760 +7986 f 44 440297 23.807703 0.8244076380657255 Product description 7986 2023-10-14 14:03:01.089303 2023-02-21 Closed Customer 7986 763114.0834638760 +8052 f 29 315643 2.3695576 0.24002740856009197 Product description 8052 2023-09-21 14:03:01.089303 2024-02-10 Closed Customer 8052 440017.1848476120 +8019 f 62 99719 42.724655 0.6885014423190441 Product description 8019 2022-03-21 14:03:01.089303 2023-02-11 Closed Customer 8019 892371.6745205080 +7989 t 58 354068 63.146656 0.7350884774098425 Product description 7989 2023-06-10 14:03:01.089303 2025-07-22 Closed Customer 7989 120325.0279137720 +8055 f 70 224173 69.2687 0.9066412267026074 Product description 8055 2023-02-05 14:03:01.089303 2025-10-11 Closed Customer 8055 692533.9836417660 +8022 t 44 103129 82.18102 0.5075285681798789 Product description 8022 2022-03-23 14:03:01.089303 2023-08-22 Closed Customer 8022 434530.8961582330 +7991 f 46 675549 37.8964 0.4492620688308797 Product description 7991 2024-03-21 14:03:01.089303 2024-09-20 Closed Customer 7991 609664.5307991220 +8056 f 99 529532 42.685307 0.29426579377493667 Product description 8056 2024-04-21 14:03:01.089303 2024-05-12 Processing Customer 8056 797610.6250240850 +8023 f 65 523792 30.836798 0.2643533170474157 Product description 8023 2023-02-12 14:03:01.089303 2023-09-25 Processing Customer 8023 374873.8151415450 +7992 f 92 414768 81.00155 0.494722245727683 Product description 7992 2022-09-17 14:03:01.089303 2024-11-17 Processing Customer 7992 111710.5321921980 +8057 t 61 971528 94.930786 0.9545060342736669 Product description 8057 2023-05-15 14:03:01.089303 2023-04-14 Processing Customer 8057 156635.5298457300 +8029 f 11 677448 44.23916 0.8484724351149993 Product description 8029 2022-08-24 14:03:01.089303 2025-10-21 Processing Customer 8029 777740.5131716190 +7994 f 62 916540 87.60569 0.13564022137429177 Product description 7994 2023-11-21 14:03:01.089303 2025-12-29 Closed Customer 7994 250348.7379167950 +8058 t 49 306299 19.855509 0.5141465293027458 Product description 8058 2022-09-15 14:03:01.089303 2023-05-24 Processing Customer 8058 609612.2384245680 +8030 f 55 889823 63.06069 0.8712069373027518 Product description 8030 2021-11-07 14:03:01.089303 2024-09-10 Closed Customer 8030 147492.4019928670 +7995 t 0 579952 63.028706 0.06126192763536764 Product description 7995 2024-04-19 14:03:01.089303 2024-06-07 Closed Customer 7995 567610.7229313130 +8063 f 71 241239 19.56723 0.44270951141438175 Product description 8063 2023-03-23 14:03:01.089303 2025-07-08 Closed Customer 8063 310592.2946620580 +8034 f 49 756980 85.557396 0.4302902339665593 Product description 8034 2021-12-02 14:03:01.089303 2024-09-24 Processing Customer 8034 438191.8581281600 +7996 f 9 297448 42.8201 0.6124217675926822 Product description 7996 2023-01-01 14:03:01.089303 2024-06-14 Closed Customer 7996 468581.5633157660 +8074 t 28 876435 33.663696 0.498530423882638 Product description 8074 2021-11-19 14:03:01.089303 2025-08-21 Processing Customer 8074 983444.1784744930 +8038 f 8 228600 57.15204 0.5786765844572486 Product description 8038 2024-04-07 14:03:01.089303 2024-09-02 Closed Customer 8038 769375.2073409180 +7998 t 99 352223 63.41545 0.05416269479821878 Product description 7998 2023-12-02 14:03:01.089303 2025-07-02 Processing Customer 7998 425063.3814958960 +8075 f 34 405639 5.019622 0.6244741202674824 Product description 8075 2023-12-30 14:03:01.089303 2023-11-19 Closed Customer 8075 365844.5759712240 +8044 t 4 588146 97.902534 0.09540200779817098 Product description 8044 2024-03-24 14:03:01.089303 2025-08-01 Closed Customer 8044 931371.1438571310 +7999 t 1 969464 95.29987 0.6674363298249553 Product description 7999 2023-11-01 14:03:01.089303 2024-11-27 Processing Customer 7999 838750.2864988790 +8076 f 45 821550 29.668394 0.006453748332500453 Product description 8076 2024-04-06 14:03:01.089303 2024-05-12 Processing Customer 8076 202378.3842201040 +8050 t 12 916276 84.28643 0.7062952964821747 Product description 8050 2022-02-09 14:03:01.089303 2025-06-15 Closed Customer 8050 686268.9884540490 +8002 t 49 634039 13.691026 0.8168744860002697 Product description 8002 2022-05-09 14:03:01.089303 2023-05-30 Processing Customer 8002 5714.3219564537 +8078 f 33 196976 75.852135 0.14692677361624717 Product description 8078 2022-11-19 14:03:01.089303 2023-07-20 Closed Customer 8078 393748.3547578890 +8051 t 32 300492 82.16595 0.04423566475824714 Product description 8051 2022-11-02 14:03:01.089303 2023-05-23 Closed Customer 8051 993025.9314246220 +8006 t 23 78180 65.77747 0.22929007178510474 Product description 8006 2024-01-15 14:03:01.089303 2023-10-21 Closed Customer 8006 374115.5367161330 +8079 f 73 555203 86.737015 0.5663302787023348 Product description 8079 2022-04-15 14:03:01.089303 2023-03-18 Processing Customer 8079 933110.6023309770 +8053 f 97 296936 18.903814 0.5638396156965442 Product description 8053 2023-06-06 14:03:01.089303 2023-04-07 Cancelled Customer 8053 298122.5351684240 +8009 t 42 943068 49.075283 0.23401045247065255 Product description 8009 2022-09-22 14:03:01.089303 2025-03-06 Processing Customer 8009 121011.8675223200 +8080 f 55 614126 22.30257 0.7843269455927988 Product description 8080 2022-09-06 14:03:01.089303 2024-09-29 Cancelled Customer 8080 682675.5026435370 +8054 f 12 934236 95.15455 0.44832506614604384 Product description 8054 2023-03-23 14:03:01.089303 2024-02-15 Processing Customer 8054 569231.0126423190 +8011 t 60 934538 18.855442 0.7673067639108986 Product description 8011 2021-12-16 14:03:01.089303 2023-07-21 Processing Customer 8011 140974.4579453900 +8083 f 13 940196 93.19768 0.05743867283018744 Product description 8083 2022-12-28 14:03:01.089303 2023-09-26 Cancelled Customer 8083 258023.2230528310 +8059 t 9 705117 98.93117 0.39864356213177743 Product description 8059 2023-09-27 14:03:01.089303 2025-10-28 Closed Customer 8059 644368.2118012430 +8015 f 38 564110 34.65356 0.7285489230740687 Product description 8015 2024-02-24 14:03:01.089303 2024-06-21 Processing Customer 8015 679709.7105587750 +8084 f 41 710030 72.56005 0.4675082037531517 Product description 8084 2024-06-14 14:03:01.089303 2024-05-16 Processing Customer 8084 694483.0640583960 +8062 f 23 19537 93.51087 0.18545582163020313 Product description 8062 2023-10-30 14:03:01.089303 2024-07-09 Closed Customer 8062 210744.8267429530 +8017 t 10 1318 62.614315 0.0683642317129376 Product description 8017 2024-08-01 14:03:01.089303 2023-04-03 Closed Customer 8017 764565.2837708920 +8085 t 93 976132 94.212036 0.3026905536054194 Product description 8085 2022-05-11 14:03:01.089303 2024-02-02 Processing Customer 8085 385324.8927704560 +8065 t 30 770108 89.40095 0.08247586672150575 Product description 8065 2022-01-10 14:03:01.089303 2025-05-02 Closed Customer 8065 180483.6963073270 +8018 f 28 23596 23.792715 0.6237672326423187 Product description 8018 2022-08-23 14:03:01.089303 2025-12-07 Closed Customer 8018 622870.8460838210 +8087 t 41 352931 31.90454 0.8960950911739722 Product description 8087 2023-04-01 14:03:01.089303 2025-07-22 Closed Customer 8087 979723.1726662760 +8066 f 81 253880 13.686867 0.3091117270656021 Product description 8066 2022-11-10 14:03:01.089303 2025-05-13 Closed Customer 8066 560450.0611319450 +8024 f 25 204696 48.129875 0.8015990207575108 Product description 8024 2023-07-03 14:03:01.089303 2024-02-17 Cancelled Customer 8024 693046.2392379620 +8088 t 24 280717 97.1741 0.43400032637214636 Product description 8088 2023-04-30 14:03:01.089303 2023-07-11 Processing Customer 8088 797474.5845792630 +8068 f 98 197732 75.51368 0.42395005995942014 Product description 8068 2023-02-20 14:03:01.089303 2023-05-05 Processing Customer 8068 389301.2068177550 +8025 t 4 89955 76.50966 0.9873071199629493 Product description 8025 2023-04-13 14:03:01.089303 2025-11-04 Closed Customer 8025 169196.7235327460 +8094 t 75 325921 21.933056 0.281087222414083 Product description 8094 2023-03-10 14:03:01.089303 2024-11-08 Closed Customer 8094 367305.8923440000 +8069 f 51 916811 3.8744588 0.2776038834119312 Product description 8069 2023-12-08 14:03:01.089303 2025-03-04 Closed Customer 8069 356000.1796444540 +8027 f 75 947852 36.4523 0.04110030459917624 Product description 8027 2023-04-22 14:03:01.089303 2024-05-19 Processing Customer 8027 497903.8285186630 +8095 f 66 777598 74.13373 0.031173448861995467 Product description 8095 2022-02-20 14:03:01.089303 2025-12-27 Processing Customer 8095 830697.2493765560 +8072 t 6 179637 56.864418 0.026533621226445092 Product description 8072 2022-03-16 14:03:01.089303 2025-08-21 Processing Customer 8072 191759.6096800980 +8028 t 81 133051 94.22257 0.40800613726662505 Product description 8028 2022-06-01 14:03:01.089303 2025-09-29 Closed Customer 8028 533850.1643062690 +8096 t 8 442637 22.569065 0.7180636955432043 Product description 8096 2023-05-14 14:03:01.089303 2025-08-19 Closed Customer 8096 359409.2112305770 +8073 t 55 680339 70.67676 0.43614727115262397 Product description 8073 2022-04-07 14:03:01.089303 2024-10-11 Processing Customer 8073 983108.9344540940 +8035 t 81 57256 51.936707 0.8275223279778245 Product description 8035 2024-03-10 14:03:01.089303 2023-07-06 Closed Customer 8035 657921.3576002050 +8097 t 65 23763 49.471107 0.7188896191053438 Product description 8097 2022-07-31 14:03:01.089303 2024-02-17 Closed Customer 8097 627754.9941111290 +8081 t 26 942048 38.091885 0.4658384993476794 Product description 8081 2021-12-01 14:03:01.089303 2024-03-19 Processing Customer 8081 443715.1360352870 +8036 f 79 909773 66.951 0.7023071983914662 Product description 8036 2022-08-13 14:03:01.089303 2023-04-03 Closed Customer 8036 660055.7218599870 +8098 f 77 449066 63.38086 0.8949467497812513 Product description 8098 2022-11-22 14:03:01.089303 2025-01-24 Processing Customer 8098 614941.6701928420 +8089 f 95 268039 77.871445 0.5434295737888739 Product description 8089 2022-05-12 14:03:01.089303 2024-12-14 Closed Customer 8089 334270.4497939200 +8037 f 97 311490 29.547363 0.5166624813901635 Product description 8037 2022-04-10 14:03:01.089303 2024-12-06 Processing Customer 8037 874585.6374698530 +8100 t 37 668437 38.405693 0.08725274805071948 Product description 8100 2022-10-23 14:03:01.089303 2025-12-18 Closed Customer 8100 59402.2015197595 +8092 f 26 122714 50.023327 0.9408791053144903 Product description 8092 2024-07-14 14:03:01.089303 2025-06-25 Cancelled Customer 8092 598125.5418218690 +8040 f 19 539875 23.876959 0.18149697295851297 Product description 8040 2023-06-19 14:03:01.089303 2025-08-08 Closed Customer 8040 137089.9688578470 +8102 f 95 831910 72.593 0.5493450020415729 Product description 8102 2022-04-21 14:03:01.089303 2024-08-05 Processing Customer 8102 260916.6816114130 +8093 t 68 626497 45.727974 0.5575614077493825 Product description 8093 2023-11-27 14:03:01.089303 2025-02-07 Closed Customer 8093 677201.1876805130 +8041 f 59 468586 56.558292 0.23088528244674222 Product description 8041 2022-05-11 14:03:01.089303 2023-06-11 Closed Customer 8041 605779.9965634590 +8104 t 91 993839 56.2295 0.15527467406338147 Product description 8104 2023-11-01 14:03:01.089303 2024-08-02 Closed Customer 8104 895558.4963764950 +8099 f 78 456511 87.93742 0.718732481483741 Product description 8099 2022-09-02 14:03:01.089303 2023-06-23 Processing Customer 8099 570504.9692576090 +8042 t 31 697068 84.029495 0.26885431378842384 Product description 8042 2022-01-19 14:03:01.089303 2024-12-05 Closed Customer 8042 493959.4021028990 +8109 t 93 6429 78.09267 0.9787536801296532 Product description 8109 2021-12-14 14:03:01.089303 2023-05-15 Closed Customer 8109 452273.5660249780 +8103 t 94 907874 0.47072434 0.5535510544007636 Product description 8103 2021-12-25 14:03:01.089303 2024-12-28 Processing Customer 8103 632427.3663943420 +8043 f 26 350113 68.76599 0.5323173079498176 Product description 8043 2023-08-28 14:03:01.089303 2024-09-20 Processing Customer 8043 678436.2631101610 +8110 f 17 778324 45.364567 0.46397390115608417 Product description 8110 2022-08-26 14:03:01.089303 2025-04-06 Closed Customer 8110 319277.4562802470 +8105 t 21 789034 9.542331 0.38501640850245167 Product description 8105 2022-01-06 14:03:01.089303 2025-06-01 Closed Customer 8105 724117.2083447470 +8046 t 52 606169 36.237362 0.6975777961383187 Product description 8046 2023-10-22 14:03:01.089303 2025-01-30 Closed Customer 8046 918533.9248519390 +8113 f 56 538741 77.86136 0.5743323821535533 Product description 8113 2023-04-27 14:03:01.089303 2023-02-04 Processing Customer 8113 265191.3595656270 +8106 t 29 179151 15.466184 0.06788414114567587 Product description 8106 2023-02-28 14:03:01.089303 2024-04-19 Closed Customer 8106 961495.9449477030 +8048 f 83 268041 96.929504 0.9187585359852122 Product description 8048 2022-03-21 14:03:01.089303 2023-01-07 Cancelled Customer 8048 652520.1904517740 +8114 t 60 927246 40.5736 0.12361733984912249 Product description 8114 2022-04-12 14:03:01.089303 2023-01-25 Closed Customer 8114 919561.5297034720 +8108 t 66 538643 3.4681554 0.6014591880708196 Product description 8108 2023-12-25 14:03:01.089303 2023-01-11 Processing Customer 8108 466465.9251229860 +8049 t 22 239924 47.17826 0.28280040797766404 Product description 8049 2022-01-20 14:03:01.089303 2025-04-19 Processing Customer 8049 750193.3418136840 +8116 t 47 526964 79.59315 0.4078073382355676 Product description 8116 2023-10-26 14:03:01.089303 2024-01-09 Closed Customer 8116 284854.6836433670 +8119 f 26 982666 0.8925369 0.019479610336439634 Product description 8119 2021-09-01 14:03:01.089303 2024-01-09 Processing Customer 8119 850790.6190933350 +8060 t 52 766161 13.894823 0.4257028041537545 Product description 8060 2021-10-14 14:03:01.089303 2023-06-28 Closed Customer 8060 686293.2448609980 +8117 t 31 979847 82.70134 0.9078405796055797 Product description 8117 2022-06-19 14:03:01.089303 2025-12-20 Closed Customer 8117 347234.1770032300 +8121 f 23 979606 86.207565 0.17374502153907656 Product description 8121 2024-02-04 14:03:01.089303 2024-03-25 Closed Customer 8121 777018.3508814870 +8061 t 39 558929 93.635574 0.43085582581159443 Product description 8061 2021-10-31 14:03:01.089303 2025-03-07 Processing Customer 8061 168614.9362707140 +8122 f 79 986581 17.598227 0.27633888230402803 Product description 8122 2022-02-09 14:03:01.089303 2025-04-11 Closed Customer 8122 829048.6013945970 +8125 t 39 874669 40.20207 0.35574676753814316 Product description 8125 2023-10-25 14:03:01.089303 2024-06-01 Cancelled Customer 8125 249427.6968332580 +8064 t 1 486951 11.235604 0.7833881696630378 Product description 8064 2022-04-15 14:03:01.089303 2025-07-14 Closed Customer 8064 6751.5725909217 +8128 f 68 191181 53.717903 0.8303578382427794 Product description 8128 2024-07-12 14:03:01.089303 2023-05-25 Closed Customer 8128 927092.8538556830 +8129 f 83 972526 77.12374 0.5876795693598815 Product description 8129 2023-05-30 14:03:01.089303 2023-07-01 Processing Customer 8129 391125.3391408990 +8067 t 95 51763 76.37806 0.17242607132881815 Product description 8067 2023-07-25 14:03:01.089303 2025-08-10 Closed Customer 8067 819106.0794221700 +8134 t 11 133074 59.064613 0.6974636710898885 Product description 8134 2024-03-14 14:03:01.089303 2023-06-12 Closed Customer 8134 759857.9754971910 +8133 f 48 689063 76.84601 0.13788578099501692 Product description 8133 2023-08-29 14:03:01.089303 2023-11-03 Closed Customer 8133 693821.5402219680 +8070 t 52 412998 41.9852 0.3138031233890466 Product description 8070 2024-04-05 14:03:01.089303 2024-01-30 Processing Customer 8070 933454.8497085460 +8136 f 93 208447 29.734013 0.2422867290822701 Product description 8136 2024-01-25 14:03:01.089303 2025-09-21 Processing Customer 8136 448220.1736161070 +8135 t 36 284552 15.943505 0.22064872638359034 Product description 8135 2024-01-29 14:03:01.089303 2025-01-25 Processing Customer 8135 291621.0330211730 +8071 t 52 529635 37.788803 0.05466100099139126 Product description 8071 2024-07-28 14:03:01.089303 2025-06-13 Closed Customer 8071 33527.4268266090 +8139 t 70 170120 76.30177 0.4315979269546766 Product description 8139 2021-10-10 14:03:01.089303 2025-11-22 Closed Customer 8139 731227.9515740060 +8137 f 79 134227 92.74441 0.7403641181620166 Product description 8137 2024-06-09 14:03:01.089303 2025-10-08 Closed Customer 8137 623656.8547407940 +8077 t 74 264780 23.98784 0.8884333106652313 Product description 8077 2024-04-30 14:03:01.089303 2024-10-06 Processing Customer 8077 9347.7860024436 +8140 t 27 603273 81.03439 0.0499606733682505 Product description 8140 2022-10-06 14:03:01.089303 2025-04-13 Closed Customer 8140 814539.4779287610 +8138 t 0 763656 16.471384 0.5154261264716418 Product description 8138 2023-09-16 14:03:01.089303 2023-02-08 Processing Customer 8138 57217.7782457004 +8082 f 29 221357 45.092716 0.10564298573563136 Product description 8082 2022-02-07 14:03:01.089303 2024-05-05 Closed Customer 8082 742420.9219408060 +8146 f 98 430835 71.97243 0.6198304433346031 Product description 8146 2023-01-18 14:03:01.089303 2025-10-09 Closed Customer 8146 532432.3830569920 +8143 f 86 277383 74.35114 0.8814761089404577 Product description 8143 2024-05-24 14:03:01.089303 2023-05-29 Processing Customer 8143 897233.6117914570 +8086 f 57 666051 97.52248 0.44612014168020764 Product description 8086 2021-11-16 14:03:01.089303 2024-10-10 Processing Customer 8086 567331.1343281070 +8147 t 33 518734 18.815197 0.14030347615817007 Product description 8147 2022-12-10 14:03:01.089303 2024-06-04 Closed Customer 8147 144504.1760144650 +8144 t 47 622849 95.46453 0.4491474155518098 Product description 8144 2022-06-20 14:03:01.089303 2024-04-22 Processing Customer 8144 169153.6047007820 +8090 t 8 956968 81.15066 0.3004156245933167 Product description 8090 2023-09-24 14:03:01.089303 2023-12-19 Closed Customer 8090 369787.0838488340 +8148 f 36 104855 31.099148 0.37722508890007234 Product description 8148 2022-07-01 14:03:01.089303 2024-09-11 Closed Customer 8148 776947.8495657510 +8152 f 6 692660 97.735275 0.64837446471169 Product description 8152 2021-10-06 14:03:01.089303 2024-11-06 Processing Customer 8152 629418.7054799000 +8091 f 79 202623 46.521336 0.31304650994409755 Product description 8091 2022-03-19 14:03:01.089303 2023-10-10 Closed Customer 8091 552231.7035782220 +8149 t 13 165606 34.811268 0.9948415909693189 Product description 8149 2021-10-23 14:03:01.089303 2025-12-10 Closed Customer 8149 630371.6449485110 +8153 t 25 359637 78.82615 0.04599868704612575 Product description 8153 2024-01-23 14:03:01.089303 2023-01-31 Processing Customer 8153 803926.7541562940 +8101 f 63 20002 22.855614 0.42446691380776613 Product description 8101 2022-10-06 14:03:01.089303 2024-08-15 Processing Customer 8101 877613.3770538760 +8150 t 26 953044 37.688812 0.13459989150053886 Product description 8150 2023-04-25 14:03:01.089303 2025-11-30 Processing Customer 8150 491318.9640672540 +8155 t 82 839711 27.647 0.9533676205224388 Product description 8155 2024-06-06 14:03:01.089303 2025-04-09 Closed Customer 8155 306453.8982924390 +8107 f 4 615540 26.418728 0.8643256259558676 Product description 8107 2023-02-26 14:03:01.089303 2023-11-02 Closed Customer 8107 794576.0707887150 +8151 f 15 720963 72.76974 0.02130023445154805 Product description 8151 2024-04-09 14:03:01.089303 2025-03-17 Processing Customer 8151 75121.2784075506 +8158 t 27 565652 12.412836 0.9365772179205898 Product description 8158 2022-06-07 14:03:01.089303 2023-12-12 Processing Customer 8158 124939.6173840440 +8111 f 99 800903 40.988293 0.9520720476075191 Product description 8111 2023-02-18 14:03:01.089303 2025-10-11 Closed Customer 8111 461713.1592586500 +8159 t 26 267727 31.34315 0.5233862880916114 Product description 8159 2022-06-22 14:03:01.089303 2025-04-21 Processing Customer 8159 445927.4768275990 +8161 f 93 163701 75.13211 0.9831812225464311 Product description 8161 2023-01-25 14:03:01.089303 2024-11-07 Processing Customer 8161 638767.2740284170 +8112 f 39 191413 37.725437 0.35279096755176553 Product description 8112 2022-10-12 14:03:01.089303 2023-08-10 Processing Customer 8112 156239.8326668340 +8164 t 64 598533 37.990784 0.5961650897488404 Product description 8164 2022-07-13 14:03:01.089303 2024-08-22 Processing Customer 8164 543146.4923113510 +8169 f 94 607397 37.524414 0.9488938817568631 Product description 8169 2021-10-21 14:03:01.089303 2023-07-20 Processing Customer 8169 323376.7664919180 +8115 f 16 90486 94.11992 0.13809685809916417 Product description 8115 2023-12-17 14:03:01.089303 2023-11-19 Closed Customer 8115 40880.4122888853 +8167 t 42 298458 6.719994 0.637955604624505 Product description 8167 2021-11-01 14:03:01.089303 2024-08-19 Processing Customer 8167 183869.8289420440 +8171 t 91 683284 86.08579 0.31609903308466514 Product description 8171 2023-02-17 14:03:01.089303 2025-04-15 Closed Customer 8171 995005.3324650770 +8118 f 50 837286 37.14638 0.23527361135441183 Product description 8118 2023-01-25 14:03:01.089303 2023-09-24 Closed Customer 8118 441528.2761341710 +8180 t 1 969771 3.9489856 0.7209121685112798 Product description 8180 2022-10-07 14:03:01.089303 2023-02-13 Closed Customer 8180 216921.2050138470 +8173 t 24 844630 12.366445 0.4289811918641284 Product description 8173 2024-06-04 14:03:01.089303 2023-01-29 Closed Customer 8173 948961.9665833260 +8120 t 59 588140 7.256327 0.34188929944594193 Product description 8120 2022-04-02 14:03:01.089303 2025-11-13 Closed Customer 8120 890475.7213240230 +8181 f 84 616051 37.99517 0.9676130928173983 Product description 8181 2023-12-04 14:03:01.089303 2025-09-15 Closed Customer 8181 318256.8475362260 +8176 t 70 352222 21.950281 0.5417899337836438 Product description 8176 2022-12-07 14:03:01.089303 2023-09-20 Processing Customer 8176 524086.9971932440 +8123 f 51 992769 89.699165 0.5198790703378044 Product description 8123 2024-07-04 14:03:01.089303 2024-08-06 Processing Customer 8123 441521.8438153870 +8183 f 64 603482 32.177757 0.5927597992240443 Product description 8183 2023-09-15 14:03:01.089303 2023-02-16 Closed Customer 8183 26576.5697076716 +8179 t 95 859232 45.489674 0.005203282185636482 Product description 8179 2023-07-01 14:03:01.089303 2024-09-06 Processing Customer 8179 242812.6897674470 +8124 t 47 891317 75.06043 0.47031365811007575 Product description 8124 2024-04-17 14:03:01.089303 2025-11-20 Closed Customer 8124 933122.8408903480 +8184 f 82 631060 73.67703 0.6868107113239539 Product description 8184 2023-12-28 14:03:01.089303 2024-11-21 Closed Customer 8184 533151.7710693490 +8182 t 31 914074 52.525917 0.12211968162784714 Product description 8182 2022-09-23 14:03:01.089303 2025-03-18 Closed Customer 8182 872591.2145565720 +8126 f 40 904123 63.28951 0.950672033275449 Product description 8126 2022-09-24 14:03:01.089303 2023-02-01 Closed Customer 8126 33692.2862725899 +8188 f 51 486845 34.804607 0.08734898613137787 Product description 8188 2022-12-09 14:03:01.089303 2024-06-20 Processing Customer 8188 296512.6099973650 +8185 f 58 969993 9.3870325 0.2789989298970319 Product description 8185 2023-09-10 14:03:01.089303 2023-12-05 Closed Customer 8185 258833.2192430730 +8127 t 44 198266 19.141867 0.1690056389543635 Product description 8127 2022-08-05 14:03:01.089303 2023-03-10 Cancelled Customer 8127 980862.8737615560 +8190 t 81 183031 21.686724 0.7381511095662141 Product description 8190 2021-10-09 14:03:01.089303 2024-11-24 Processing Customer 8190 918160.3090392590 +8191 f 79 95056 16.320679 0.19632251879592033 Product description 8191 2024-01-16 14:03:01.089303 2025-10-20 Processing Customer 8191 961953.0601524600 +8130 f 53 564983 84.50211 0.9931053883139214 Product description 8130 2022-03-21 14:03:01.089303 2025-07-30 Processing Customer 8130 622630.8011812560 +8194 f 4 609209 87.8394 0.9709068510510726 Product description 8194 2022-10-05 14:03:01.089303 2023-04-24 Processing Customer 8194 869725.9586687240 +8196 t 29 877932 70.60236 0.8492462736423825 Product description 8196 2022-04-20 14:03:01.089303 2024-02-27 Closed Customer 8196 139497.9841573160 +8131 f 39 554611 15.283396 0.5134877122560866 Product description 8131 2024-04-18 14:03:01.089303 2023-12-14 Closed Customer 8131 419439.2114152410 +8202 f 32 754949 78.290695 0.790204765907287 Product description 8202 2024-04-07 14:03:01.089303 2025-02-16 Processing Customer 8202 448605.5382897330 +8197 t 94 857392 15.326257 0.815451469159509 Product description 8197 2022-02-02 14:03:01.089303 2025-07-22 Processing Customer 8197 651610.9024094380 +8132 f 44 922495 36.382835 0.5212282695886046 Product description 8132 2023-02-01 14:03:01.089303 2024-05-19 Processing Customer 8132 682698.4778845530 +8204 f 60 690011 39.82634 0.6940128422988217 Product description 8204 2022-05-27 14:03:01.089303 2023-10-22 Closed Customer 8204 466498.1870352850 +8198 f 90 283755 63.223637 0.07666349780891224 Product description 8198 2024-01-04 14:03:01.089303 2023-08-27 Closed Customer 8198 52139.3697002708 +8141 t 98 807817 53.71938 0.5033458509172917 Product description 8141 2021-11-21 14:03:01.089303 2024-01-07 Processing Customer 8141 75218.1563704148 +8205 f 71 190580 40.324337 0.6434227604036913 Product description 8205 2022-10-26 14:03:01.089303 2024-05-27 Processing Customer 8205 77612.6805519439 +8199 t 16 139418 68.20738 0.08454498354937456 Product description 8199 2022-01-02 14:03:01.089303 2025-03-11 Processing Customer 8199 406395.7628436510 +8142 f 3 706095 33.020374 0.40119911262132746 Product description 8142 2023-08-04 14:03:01.089303 2024-02-22 Processing Customer 8142 934671.6772643580 +8214 f 76 362352 54.87079 0.4745141832718822 Product description 8214 2023-03-24 14:03:01.089303 2023-08-29 Processing Customer 8214 402623.3003776700 +8200 t 88 545636 34.657074 0.7532237486027675 Product description 8200 2024-07-10 14:03:01.089303 2023-12-31 Closed Customer 8200 751757.9639376780 +8145 t 6 939385 86.47831 0.7981254333529435 Product description 8145 2022-06-19 14:03:01.089303 2024-12-09 Processing Customer 8145 92479.4758077816 +8218 f 1 563497 41.556026 0.5755070385979302 Product description 8218 2022-03-06 14:03:01.089303 2024-02-14 Cancelled Customer 8218 627679.4228006640 +8201 f 31 380167 13.567313 0.18257433541537793 Product description 8201 2023-12-18 14:03:01.089303 2023-06-30 Closed Customer 8201 763185.1222162780 +8154 f 41 656698 47.29111 0.5018102679215559 Product description 8154 2023-12-21 14:03:01.089303 2024-08-30 Closed Customer 8154 710305.0445696900 +8219 f 74 466778 37.33075 0.14254430646480643 Product description 8219 2023-04-25 14:03:01.089303 2024-02-10 Closed Customer 8219 786206.1673597830 +8203 f 40 93961 53.080185 0.05966023445572333 Product description 8203 2023-03-10 14:03:01.089303 2024-11-28 Processing Customer 8203 227832.0957059490 +8156 f 62 920725 72.14408 0.5457522467209159 Product description 8156 2022-12-04 14:03:01.089303 2024-07-08 Processing Customer 8156 521048.2938825190 +8221 f 49 37474 9.377347 0.29700385052377953 Product description 8221 2021-10-12 14:03:01.089303 2023-07-01 Closed Customer 8221 699910.6695441920 +8209 t 26 21652 18.459866 0.6467286306651197 Product description 8209 2022-10-22 14:03:01.089303 2023-06-29 Closed Customer 8209 485383.6134640450 +8157 t 9 50131 78.98923 0.6466306804722706 Product description 8157 2021-11-29 14:03:01.089303 2024-11-21 Cancelled Customer 8157 149417.3013020230 +8224 t 17 735872 11.084995 0.6757941932360367 Product description 8224 2024-04-01 14:03:01.089303 2024-02-28 Processing Customer 8224 185705.5511069810 +8211 t 8 223126 14.735953 0.8375891539665652 Product description 8211 2024-01-09 14:03:01.089303 2024-01-26 Processing Customer 8211 330656.6489974050 +8160 f 57 368684 29.55317 0.968218044694634 Product description 8160 2022-07-19 14:03:01.089303 2024-11-09 Closed Customer 8160 89059.3750233322 +8227 t 46 860554 27.561394 0.29502214159217033 Product description 8227 2022-09-08 14:03:01.089303 2025-01-14 Closed Customer 8227 5686.3857142524 +8212 f 22 723561 37.2235 0.4663352927804816 Product description 8212 2022-11-22 14:03:01.089303 2025-08-06 Processing Customer 8212 664493.8784566890 +8162 t 86 197583 82.38361 0.9804761102790458 Product description 8162 2022-10-15 14:03:01.089303 2024-03-15 Processing Customer 8162 260129.2010538710 +8229 t 31 33435 23.59299 0.46168937867512483 Product description 8229 2022-03-18 14:03:01.089303 2023-09-29 Processing Customer 8229 7429.8744833108 +8213 f 82 762478 63.855667 0.7530291016609603 Product description 8213 2024-04-30 14:03:01.089303 2023-11-06 Processing Customer 8213 25552.5711483386 +8163 f 87 624708 78.44866 0.5657534915501934 Product description 8163 2024-02-25 14:03:01.089303 2025-10-01 Closed Customer 8163 405156.4101351420 +8234 t 74 339828 97.61677 0.43795025947206057 Product description 8234 2024-07-19 14:03:01.089303 2024-03-11 Closed Customer 8234 215496.2574191860 +8215 t 25 850372 82.89479 0.8907112292820152 Product description 8215 2024-03-03 14:03:01.089303 2024-01-11 Processing Customer 8215 614378.9088480890 +8165 f 76 235577 8.477105 0.22325786142440407 Product description 8165 2022-12-30 14:03:01.089303 2023-11-28 Cancelled Customer 8165 859258.0452833440 +8236 t 99 440912 29.774637 0.09646029018556845 Product description 8236 2022-01-31 14:03:01.089303 2025-07-15 Closed Customer 8236 217533.3340830610 +8217 t 75 853343 8.893422 0.632216237839959 Product description 8217 2021-11-19 14:03:01.089303 2024-03-02 Processing Customer 8217 62147.2873085622 +8166 f 1 239477 4.377734 0.9854118865829662 Product description 8166 2022-01-05 14:03:01.089303 2025-06-29 Processing Customer 8166 706474.1464935440 +8237 f 45 303967 51.751713 0.23118763275158472 Product description 8237 2022-09-13 14:03:01.089303 2023-12-21 Processing Customer 8237 616781.6075627530 +8222 t 20 803237 14.108417 0.7631263907380763 Product description 8222 2021-08-17 14:03:01.089303 2024-05-14 Closed Customer 8222 472394.0040319190 +8168 f 97 797346 12.510577 0.753806914052042 Product description 8168 2022-03-19 14:03:01.089303 2024-01-31 Closed Customer 8168 175873.0250574030 +8238 t 30 119301 99.24873 0.053744858077728 Product description 8238 2023-03-15 14:03:01.089303 2024-03-09 Closed Customer 8238 851969.9653792010 +8226 f 2 881619 14.144652 0.371300086179847 Product description 8226 2023-05-24 14:03:01.089303 2024-09-24 Processing Customer 8226 395246.4546183170 +8170 t 32 676227 8.13911 0.11172884649452897 Product description 8170 2024-03-28 14:03:01.089303 2024-04-29 Closed Customer 8170 566385.2119883290 +8241 t 60 531137 25.132154 0.7530207167819327 Product description 8241 2024-02-02 14:03:01.089303 2023-08-22 Processing Customer 8241 992125.5565731250 +8230 f 51 387348 21.012419 0.1390949112988089 Product description 8230 2022-05-12 14:03:01.089303 2025-10-13 Closed Customer 8230 817108.6239880980 +8172 t 62 563517 18.147772 0.5635325024458027 Product description 8172 2023-10-04 14:03:01.089303 2024-07-13 Processing Customer 8172 905809.2692609030 +8244 f 47 987938 63.30818 0.5174787253107169 Product description 8244 2022-03-09 14:03:01.089303 2025-04-03 Closed Customer 8244 133511.1586583830 +8231 f 54 431230 76.738754 0.8870756540448959 Product description 8231 2022-01-13 14:03:01.089303 2025-12-12 Closed Customer 8231 881138.1987469820 +8174 f 86 467622 22.773663 0.6343753679839779 Product description 8174 2024-07-03 14:03:01.089303 2024-04-06 Processing Customer 8174 943683.8050638100 +8250 t 79 577416 98.51469 0.9962894881735167 Product description 8250 2022-02-25 14:03:01.089303 2025-09-10 Closed Customer 8250 130388.5567862400 +8232 t 42 814460 76.13771 0.8112722826745333 Product description 8232 2024-02-05 14:03:01.089303 2024-06-07 Closed Customer 8232 7697.4541129076 +8175 f 94 565933 78.47465 0.9022012032763271 Product description 8175 2023-05-07 14:03:01.089303 2025-03-05 Processing Customer 8175 115581.2162649320 +8253 t 62 963539 51.285484 0.6494044220255901 Product description 8253 2022-08-22 14:03:01.089303 2023-04-14 Closed Customer 8253 422541.5116001190 +8233 f 87 718847 84.28976 0.6303089681796372 Product description 8233 2022-07-28 14:03:01.089303 2023-12-28 Closed Customer 8233 279156.2354577620 +8177 f 1 196272 24.761023 0.5133891640958979 Product description 8177 2022-06-20 14:03:01.089303 2023-07-16 Processing Customer 8177 166847.3008456420 +8259 f 69 401617 69.32689 0.7138430214616704 Product description 8259 2021-08-29 14:03:01.089303 2023-02-20 Closed Customer 8259 310921.2985456620 +8239 f 50 339980 32.487934 0.665837874073798 Product description 8239 2024-05-17 14:03:01.089303 2023-12-31 Closed Customer 8239 96232.4954635889 +8178 f 4 357014 69.68867 0.4939178554732493 Product description 8178 2022-08-23 14:03:01.089303 2023-03-11 Closed Customer 8178 843580.4354114010 +8261 f 20 692782 14.302077 0.9728451366599913 Product description 8261 2024-07-31 14:03:01.089303 2023-02-04 Closed Customer 8261 531235.3076999620 +8243 f 67 271564 39.81946 0.03601539505861595 Product description 8243 2021-10-13 14:03:01.089303 2024-05-29 Processing Customer 8243 796767.1531535530 +8186 t 69 940254 23.35577 0.7151938498759307 Product description 8186 2022-08-21 14:03:01.089303 2023-03-17 Processing Customer 8186 566753.7761504170 +8264 f 11 125234 13.036085 0.9758675391314569 Product description 8264 2021-10-31 14:03:01.089303 2024-03-24 Closed Customer 8264 496910.6005830180 +8246 f 3 390363 28.801725 0.9475133813683065 Product description 8246 2023-10-08 14:03:01.089303 2023-09-15 Processing Customer 8246 140155.5097173240 +8187 t 65 870218 28.83518 0.8593565583273417 Product description 8187 2022-08-02 14:03:01.089303 2023-04-22 Processing Customer 8187 579762.2681473660 +8265 t 21 737148 93.69596 0.3932292000535611 Product description 8265 2022-06-18 14:03:01.089303 2025-04-10 Closed Customer 8265 37485.4715040875 +8248 f 59 933966 47.406662 0.7614485831891535 Product description 8248 2022-01-14 14:03:01.089303 2025-09-10 Closed Customer 8248 664253.6814314470 +8189 t 51 118553 94.74233 0.6534004334003356 Product description 8189 2023-01-16 14:03:01.089303 2024-02-06 Processing Customer 8189 590472.2542810350 +8267 t 13 361069 41.73033 0.3476135940134242 Product description 8267 2023-09-18 14:03:01.089303 2023-10-28 Closed Customer 8267 138453.2344013220 +8251 f 5 330977 48.7381 0.06406728216013491 Product description 8251 2021-12-01 14:03:01.089303 2024-11-21 Processing Customer 8251 205379.2460449340 +8192 t 55 583345 93.988495 0.22582241553225657 Product description 8192 2021-09-26 14:03:01.089303 2023-09-07 Closed Customer 8192 129677.7175009150 +8268 t 85 376177 30.806652 0.10025096560379865 Product description 8268 2023-09-24 14:03:01.089303 2024-01-25 Closed Customer 8268 360830.4172965300 +8255 f 35 597275 66.649864 0.7533728365864825 Product description 8255 2023-12-21 14:03:01.089303 2024-07-25 Closed Customer 8255 52279.0580268691 +8193 f 27 562135 53.08013 0.5109482525157318 Product description 8193 2022-05-12 14:03:01.089303 2024-02-11 Processing Customer 8193 289796.2475182080 +8269 t 22 659232 5.332053 0.4618365491656675 Product description 8269 2022-11-16 14:03:01.089303 2023-07-08 Closed Customer 8269 736490.5046979080 +8256 t 62 504069 69.71276 0.45866590199110746 Product description 8256 2022-06-17 14:03:01.089303 2024-12-16 Closed Customer 8256 786108.1195312420 +8195 f 62 647675 9.930943 0.6919181105641954 Product description 8195 2023-08-31 14:03:01.089303 2024-09-03 Processing Customer 8195 120484.0335456970 +8291 f 79 30876 48.816463 0.5668639797137089 Product description 8291 2023-02-14 14:03:01.089303 2023-09-28 Closed Customer 8291 489047.0899603690 +8257 t 44 179689 66.556046 0.69786851697069 Product description 8257 2024-03-29 14:03:01.089303 2024-10-21 Processing Customer 8257 45401.6946630844 +8206 t 17 114414 29.710575 0.49906941376180214 Product description 8206 2021-11-02 14:03:01.089303 2025-12-10 Closed Customer 8206 299516.7921475390 +8294 t 2 396284 56.232952 0.6595603272423176 Product description 8294 2021-12-13 14:03:01.089303 2024-07-16 Closed Customer 8294 613280.6278344380 +8258 f 99 593836 91.648796 0.9027610731549025 Product description 8258 2022-10-06 14:03:01.089303 2023-11-25 Processing Customer 8258 339060.9602369570 +8207 f 44 752548 84.31923 0.22017694860763726 Product description 8207 2021-12-13 14:03:01.089303 2025-11-29 Cancelled Customer 8207 597993.6509308810 +8305 t 42 172368 69.61533 0.5149997549854604 Product description 8305 2023-11-17 14:03:01.089303 2024-09-15 Closed Customer 8305 118121.0077205210 +8260 t 31 342809 72.795616 0.6105289894712378 Product description 8260 2024-05-28 14:03:01.089303 2023-03-03 Closed Customer 8260 53253.2937378392 +8208 t 80 380075 43.467422 0.5835563051924204 Product description 8208 2022-10-30 14:03:01.089303 2024-07-17 Processing Customer 8208 238532.7227819260 +8310 t 9 92013 55.397778 0.8768675715145946 Product description 8310 2022-07-27 14:03:01.089303 2023-09-01 Closed Customer 8310 522269.3304883670 +8263 f 43 779019 14.6895485 0.7869854039494122 Product description 8263 2022-08-04 14:03:01.089303 2023-10-15 Closed Customer 8263 28921.6709910605 +8210 t 18 947162 84.11738 0.9027619212196036 Product description 8210 2023-02-25 14:03:01.089303 2025-06-30 Processing Customer 8210 717407.6220457480 +8312 t 92 74281 76.8484 0.8235916463584161 Product description 8312 2022-04-11 14:03:01.089303 2025-08-28 Processing Customer 8312 352661.5688683460 +8271 t 59 584126 97.1158 0.6101439852674027 Product description 8271 2024-06-05 14:03:01.089303 2024-05-27 Processing Customer 8271 628011.4449761670 +8216 t 86 243204 1.8313843 0.9123945970158793 Product description 8216 2024-02-25 14:03:01.089303 2025-12-03 Cancelled Customer 8216 90701.6211733982 +8313 t 88 726581 8.716418 0.5887239566578302 Product description 8313 2022-04-20 14:03:01.089303 2023-08-26 Closed Customer 8313 799299.4434034810 +8272 f 78 57019 16.959198 0.22701668524008412 Product description 8272 2021-12-08 14:03:01.089303 2023-05-24 Closed Customer 8272 78264.6830280882 +8220 t 79 933073 66.327805 0.4445535827673126 Product description 8220 2023-04-13 14:03:01.089303 2025-05-31 Processing Customer 8220 663872.8784176460 +8315 t 65 946748 57.160393 0.2558848501652946 Product description 8315 2022-05-22 14:03:01.089303 2025-08-28 Closed Customer 8315 36823.5908671188 +8274 f 77 720426 37.616302 0.9381483671418103 Product description 8274 2023-06-23 14:03:01.089303 2023-11-14 Closed Customer 8274 14528.5966569020 +8223 t 2 34015 64.044785 0.6658194507358743 Product description 8223 2023-06-19 14:03:01.089303 2023-03-19 Closed Customer 8223 635964.3885895600 +8326 f 25 274455 9.7331085 0.11089947164637692 Product description 8326 2024-07-23 14:03:01.089303 2024-09-01 Closed Customer 8326 87960.4030965560 +8275 f 80 876715 93.06409 0.06045575539442538 Product description 8275 2023-02-02 14:03:01.089303 2023-04-23 Closed Customer 8275 606752.5441413080 +8225 f 22 995245 13.892486 0.1465722356960839 Product description 8225 2021-08-29 14:03:01.089303 2023-04-01 Processing Customer 8225 522923.3593398380 +8330 f 40 613828 65.968376 0.7529819603868546 Product description 8330 2023-06-04 14:03:01.089303 2023-08-04 Processing Customer 8330 791369.3229425040 +8276 f 98 282730 24.910841 0.20819246287931392 Product description 8276 2022-05-09 14:03:01.089303 2023-01-27 Closed Customer 8276 193687.2122802100 +8228 f 88 766323 54.610924 0.46354570345918233 Product description 8228 2022-01-02 14:03:01.089303 2025-10-28 Closed Customer 8228 122710.5279579670 +8333 f 59 824878 28.555347 0.0885191321080896 Product description 8333 2021-10-28 14:03:01.089303 2025-05-31 Processing Customer 8333 285026.3099729030 +8279 f 84 125181 45.83341 0.7349450364935528 Product description 8279 2023-03-17 14:03:01.089303 2023-12-30 Closed Customer 8279 907059.3766107250 +8235 t 56 329977 22.29081 0.7776667900271121 Product description 8235 2021-08-30 14:03:01.089303 2023-05-04 Closed Customer 8235 856142.4215655330 +8336 f 79 676688 81.73855 0.1300853877233905 Product description 8336 2023-03-28 14:03:01.089303 2025-12-07 Processing Customer 8336 230229.3248734660 +8281 t 12 31877 76.08478 0.6297306893047967 Product description 8281 2023-05-15 14:03:01.089303 2024-03-08 Closed Customer 8281 699024.9530844610 +8240 t 18 684626 6.661645 0.5970840738179319 Product description 8240 2022-07-09 14:03:01.089303 2024-11-25 Processing Customer 8240 496377.2893008420 +8338 f 51 353685 28.012846 0.4484488277810783 Product description 8338 2024-01-06 14:03:01.089303 2025-07-22 Closed Customer 8338 158499.3370554990 +8282 f 60 167244 67.74363 0.2131707567286263 Product description 8282 2022-02-09 14:03:01.089303 2023-09-09 Closed Customer 8282 442837.8642839520 +8242 t 23 527055 18.081755 0.3033188514212952 Product description 8242 2022-03-07 14:03:01.089303 2023-02-14 Processing Customer 8242 168755.1855308090 +8343 f 8 957008 57.639297 0.9000548379704654 Product description 8343 2023-03-22 14:03:01.089303 2025-09-15 Closed Customer 8343 944990.9477166650 +8284 f 46 117375 77.786545 0.49672443902105456 Product description 8284 2024-02-29 14:03:01.089303 2025-04-13 Closed Customer 8284 53327.9321430342 +8245 f 81 240665 66.39614 0.14391490331275492 Product description 8245 2023-10-28 14:03:01.089303 2025-06-06 Closed Customer 8245 88182.2555414580 +8346 t 76 308584 34.83069 0.2995129347876997 Product description 8346 2022-11-17 14:03:01.089303 2024-09-05 Closed Customer 8346 142521.6519406370 +8286 t 100 142610 14.810691 0.023798398548205313 Product description 8286 2022-04-11 14:03:01.089303 2023-06-15 Closed Customer 8286 749345.4323383940 +8247 f 96 932060 62.197758 0.926355625167119 Product description 8247 2022-11-27 14:03:01.089303 2024-04-07 Closed Customer 8247 761656.2014326400 +8347 f 80 306934 14.579168 0.7929265190866985 Product description 8347 2024-07-20 14:03:01.089303 2024-06-01 Processing Customer 8347 268979.9991211890 +8287 t 29 423726 6.5431705 0.7832334550817457 Product description 8287 2023-03-11 14:03:01.089303 2024-10-28 Closed Customer 8287 450763.5293751660 +8249 f 12 103559 2.9737906 0.1058377500183596 Product description 8249 2023-01-28 14:03:01.089303 2023-01-26 Processing Customer 8249 263464.2913615050 +8348 t 99 607883 25.095203 0.2694879847942673 Product description 8348 2023-06-21 14:03:01.089303 2025-03-29 Closed Customer 8348 552726.4181574440 +8289 t 65 955300 20.033375 0.5361709719370218 Product description 8289 2023-02-28 14:03:01.089303 2024-02-22 Closed Customer 8289 980428.9319348310 +8252 t 56 453899 49.41645 0.7612208189409841 Product description 8252 2023-12-09 14:03:01.089303 2025-10-23 Closed Customer 8252 765788.8877260140 +8349 t 78 674826 72.06684 0.32529236377306603 Product description 8349 2023-03-05 14:03:01.089303 2023-11-25 Closed Customer 8349 670449.8392205700 +8290 t 34 351753 71.06601 0.9732724884144694 Product description 8290 2023-04-19 14:03:01.089303 2023-03-22 Processing Customer 8290 919381.0011897060 +8254 f 7 517125 38.569077 0.8912337140566606 Product description 8254 2022-12-31 14:03:01.089303 2025-02-05 Processing Customer 8254 581796.6031166900 +8351 t 84 697793 55.582993 0.06408514625972828 Product description 8351 2023-04-02 14:03:01.089303 2024-11-24 Closed Customer 8351 975474.6933293570 +8293 t 50 232010 41.61042 0.13876111967736549 Product description 8293 2024-05-07 14:03:01.089303 2023-04-06 Processing Customer 8293 264912.9976853640 +8262 f 14 901234 69.72843 0.11965486699487826 Product description 8262 2023-02-27 14:03:01.089303 2024-01-15 Processing Customer 8262 464436.9360641290 +8352 f 19 654444 99.16247 0.5633888788460624 Product description 8352 2024-07-23 14:03:01.089303 2023-09-03 Closed Customer 8352 748922.9453253370 +8298 t 70 781687 23.321938 0.7699072312953668 Product description 8298 2024-03-28 14:03:01.089303 2025-08-06 Closed Customer 8298 959737.2261466720 +8266 t 13 276424 78.76358 0.8685026379716803 Product description 8266 2024-03-27 14:03:01.089303 2024-04-03 Processing Customer 8266 320007.4021354060 +8355 f 58 810574 43.11267 0.8170125993925694 Product description 8355 2022-08-09 14:03:01.089303 2025-07-08 Cancelled Customer 8355 827884.7245880030 +8299 f 53 133091 14.323006 0.8555436290712315 Product description 8299 2022-02-03 14:03:01.089303 2023-11-28 Closed Customer 8299 827646.8711028500 +8270 f 80 634047 8.798793 0.2293932575859685 Product description 8270 2023-11-16 14:03:01.089303 2025-05-20 Closed Customer 8270 64532.1233707214 +8358 f 81 801224 84.65866 0.17202883182455864 Product description 8358 2023-05-12 14:03:01.089303 2025-11-01 Closed Customer 8358 559226.6219028020 +8300 t 84 764905 85.71 0.5908506600692114 Product description 8300 2021-10-07 14:03:01.089303 2025-10-13 Processing Customer 8300 842420.4614687620 +8273 t 82 466100 41.90238 0.43913981404052294 Product description 8273 2024-02-08 14:03:01.089303 2023-04-23 Closed Customer 8273 601169.4754928700 +8361 t 56 366204 18.764578 0.47047043289437696 Product description 8361 2023-12-04 14:03:01.089303 2024-10-15 Closed Customer 8361 503386.8615587100 +8306 f 42 941040 12.178114 0.7799024648845823 Product description 8306 2022-07-02 14:03:01.089303 2023-04-30 Cancelled Customer 8306 413260.1830405880 +8277 t 90 24685 94.56812 0.3024662632849555 Product description 8277 2021-12-30 14:03:01.089303 2024-11-26 Closed Customer 8277 309028.5588918500 +8362 t 9 353735 90.72355 0.6821459579190012 Product description 8362 2023-09-12 14:03:01.089303 2024-10-29 Processing Customer 8362 496055.0905993630 +8308 t 68 975238 73.76046 0.16839820470941191 Product description 8308 2022-12-17 14:03:01.089303 2025-05-16 Cancelled Customer 8308 435603.0050650970 +8278 t 9 330012 38.317707 0.8540976472051156 Product description 8278 2024-07-20 14:03:01.089303 2025-01-03 Processing Customer 8278 596149.7840269670 +8363 t 83 792743 52.957863 0.8106533600574188 Product description 8363 2022-01-25 14:03:01.089303 2025-11-21 Closed Customer 8363 273564.5153612010 +8309 f 84 983113 2.3007681 0.26137199947017464 Product description 8309 2023-11-20 14:03:01.089303 2025-01-06 Closed Customer 8309 825889.1348545490 +8280 t 94 13646 1.5511786 0.692502129903545 Product description 8280 2022-01-30 14:03:01.089303 2025-05-23 Closed Customer 8280 951837.5163888460 +8368 f 29 344811 52.879063 0.11279389682577445 Product description 8368 2021-12-06 14:03:01.089303 2024-11-06 Closed Customer 8368 809968.9077345640 +8316 t 62 760471 57.90465 0.7787008463705511 Product description 8316 2023-08-18 14:03:01.089303 2023-07-07 Closed Customer 8316 326205.8169131660 +8283 t 48 59325 28.482939 0.08066918349104668 Product description 8283 2022-03-22 14:03:01.089303 2024-04-05 Cancelled Customer 8283 399393.9203357900 +8369 t 11 643536 38.742092 0.8154776228336296 Product description 8369 2023-12-13 14:03:01.089303 2025-12-26 Closed Customer 8369 273784.9214444170 +8319 f 58 507176 98.186104 0.8995114537453084 Product description 8319 2023-04-21 14:03:01.089303 2025-10-11 Closed Customer 8319 312173.4405076640 +8285 t 68 444361 56.073498 0.4702518860008418 Product description 8285 2023-09-10 14:03:01.089303 2024-05-25 Closed Customer 8285 884304.0224741680 +8371 t 41 465746 13.781611 0.45951000441084133 Product description 8371 2024-03-25 14:03:01.089303 2023-01-26 Processing Customer 8371 752112.6959537770 +8322 f 81 333655 47.46158 0.8223367941470308 Product description 8322 2022-02-04 14:03:01.089303 2025-04-06 Closed Customer 8322 388851.0784212470 +8288 t 31 241173 29.406187 0.9681909959767232 Product description 8288 2022-01-06 14:03:01.089303 2025-05-18 Processing Customer 8288 683037.3143868160 +8382 t 19 700259 27.459894 0.05137506920968704 Product description 8382 2022-01-13 14:03:01.089303 2023-05-03 Processing Customer 8382 698225.4832614250 +8325 t 13 53886 81.46664 0.7409907305227996 Product description 8325 2023-01-11 14:03:01.089303 2024-07-20 Processing Customer 8325 962389.1292011140 +8292 f 39 577696 25.171564 0.9907422265893366 Product description 8292 2021-09-11 14:03:01.089303 2023-12-03 Processing Customer 8292 361046.3311542990 +8385 f 23 255861 33.401466 0.23563270602006625 Product description 8385 2021-08-05 14:03:01.089303 2023-10-07 Closed Customer 8385 928351.4110860200 +8328 f 4 949000 23.054329 0.35024352360343514 Product description 8328 2023-12-14 14:03:01.089303 2024-01-22 Closed Customer 8328 383271.9156988350 +8295 f 5 94616 33.358543 0.3270865910323657 Product description 8295 2023-04-30 14:03:01.089303 2024-05-30 Processing Customer 8295 842036.5304285940 +8389 f 44 653216 44.080418 0.5760036608646608 Product description 8389 2022-12-17 14:03:01.089303 2025-09-10 Cancelled Customer 8389 259574.8006988890 +8331 t 87 549611 87.48225 0.4919183584613087 Product description 8331 2022-10-04 14:03:01.089303 2023-12-16 Closed Customer 8331 897197.2563603430 +8296 t 78 597014 77.20984 0.3695376807127566 Product description 8296 2021-12-09 14:03:01.089303 2023-04-28 Closed Customer 8296 690927.0861641230 +8392 f 29 723448 79.93832 0.03398658208315908 Product description 8392 2022-07-04 14:03:01.089303 2024-05-01 Processing Customer 8392 53867.6170248031 +8332 f 22 485417 81.77746 0.13858622026871714 Product description 8332 2023-09-13 14:03:01.089303 2024-08-07 Processing Customer 8332 628279.0377013540 +8297 t 99 572708 50.037346 0.6901667568856418 Product description 8297 2022-11-08 14:03:01.089303 2025-09-27 Processing Customer 8297 135311.0948947250 +8393 f 1 948945 84.71046 0.07244712851700541 Product description 8393 2022-09-25 14:03:01.089303 2023-02-15 Closed Customer 8393 4180.0609869434 +8335 f 36 58263 52.10385 0.9297095393890977 Product description 8335 2023-05-07 14:03:01.089303 2024-06-05 Cancelled Customer 8335 581733.2001951490 +8301 f 5 570063 52.919895 0.8260444428939913 Product description 8301 2022-05-11 14:03:01.089303 2024-10-25 Processing Customer 8301 144326.9723658180 +8402 t 76 39285 89.647484 0.6160370048420418 Product description 8402 2023-05-13 14:03:01.089303 2023-11-27 Closed Customer 8402 175355.5799717750 +8340 t 82 727308 16.79245 0.2221657951843241 Product description 8340 2023-12-09 14:03:01.089303 2024-08-02 Closed Customer 8340 31407.1068732567 +8302 f 76 554591 55.74228 0.11877678954986592 Product description 8302 2024-05-18 14:03:01.089303 2023-03-11 Processing Customer 8302 566904.0617554440 +8405 t 99 446614 72.52801 0.05996053323122652 Product description 8405 2023-11-16 14:03:01.089303 2024-07-12 Processing Customer 8405 123510.9806048950 +8341 t 75 176713 53.53057 0.7782939830737163 Product description 8341 2023-06-10 14:03:01.089303 2025-04-15 Processing Customer 8341 131798.1821187470 +8303 t 34 488080 84.517426 0.580832694458497 Product description 8303 2022-09-20 14:03:01.089303 2023-10-13 Processing Customer 8303 169612.1007182680 +8406 f 95 166433 63.581104 0.7382761367423001 Product description 8406 2024-01-28 14:03:01.089303 2024-07-15 Processing Customer 8406 921676.4611507070 +8342 f 43 304546 70.82015 0.11766104722491377 Product description 8342 2022-12-09 14:03:01.089303 2023-06-10 Processing Customer 8342 321363.2785195520 +8304 f 74 632424 25.468172 0.13541407648608228 Product description 8304 2022-10-09 14:03:01.089303 2024-03-07 Closed Customer 8304 883268.1357412260 +8412 t 32 727643 57.46721 0.8702181885924674 Product description 8412 2024-01-13 14:03:01.089303 2025-01-15 Closed Customer 8412 368563.1638195340 +8344 t 22 511374 44.146976 0.663936865311463 Product description 8344 2022-03-29 14:03:01.089303 2025-05-17 Closed Customer 8344 19004.9691117942 +8307 f 79 927441 88.962814 0.1846427324787534 Product description 8307 2023-04-26 14:03:01.089303 2025-10-27 Processing Customer 8307 880217.2244748620 +8418 t 77 265465 50.0124 0.7740497425343449 Product description 8418 2021-08-23 14:03:01.089303 2025-06-16 Closed Customer 8418 731096.6458827830 +8350 t 5 21652 55.91434 0.02430509478578813 Product description 8350 2022-06-09 14:03:01.089303 2023-10-20 Closed Customer 8350 142413.9847479000 +8311 t 78 33096 88.90542 0.16607467041036372 Product description 8311 2023-04-03 14:03:01.089303 2024-10-07 Processing Customer 8311 352900.2048614630 +8421 f 33 687434 35.4283 0.7804487800058624 Product description 8421 2021-08-17 14:03:01.089303 2024-07-05 Closed Customer 8421 499555.5124270400 +8353 f 52 321269 69.75219 0.0699316519865576 Product description 8353 2022-10-18 14:03:01.089303 2025-08-08 Closed Customer 8353 87076.7184240613 +8314 f 16 533672 73.09223 0.9121968000937279 Product description 8314 2022-04-25 14:03:01.089303 2024-08-27 Closed Customer 8314 329593.5361317390 +8422 t 57 707665 67.37758 0.28200826134671786 Product description 8422 2022-08-13 14:03:01.089303 2024-11-06 Processing Customer 8422 157287.6867675570 +8354 t 41 518064 18.215853 0.7094819815761184 Product description 8354 2023-09-26 14:03:01.089303 2024-08-19 Processing Customer 8354 435020.9941851480 +8317 t 2 218270 57.39242 0.9600638982545 Product description 8317 2022-08-02 14:03:01.089303 2023-05-14 Cancelled Customer 8317 235235.6107196380 +8424 t 87 790485 73.704445 0.1442430398135386 Product description 8424 2022-10-22 14:03:01.089303 2025-09-22 Processing Customer 8424 623374.2117292600 +8357 t 7 686354 23.438515 0.9186577862481116 Product description 8357 2022-01-15 14:03:01.089303 2024-11-04 Closed Customer 8357 354353.4962509260 +8318 t 50 991855 27.91447 0.4990119190786615 Product description 8318 2024-07-27 14:03:01.089303 2024-11-25 Closed Customer 8318 536077.5784509610 +8430 t 69 110611 73.02771 0.6116590674500344 Product description 8430 2022-06-12 14:03:01.089303 2023-08-31 Closed Customer 8430 367630.2991506720 +8360 f 99 695954 20.243782 0.960404638088292 Product description 8360 2022-01-29 14:03:01.089303 2023-02-03 Closed Customer 8360 137377.0763998540 +8320 f 60 181733 82.25072 0.7991025082642409 Product description 8320 2022-06-10 14:03:01.089303 2025-05-03 Processing Customer 8320 707081.7306687300 +8439 t 70 374292 87.19972 0.17467889172412043 Product description 8439 2024-02-18 14:03:01.089303 2025-05-19 Processing Customer 8439 795673.2155381910 +8367 f 23 314789 67.37141 0.08801410578686131 Product description 8367 2022-04-27 14:03:01.089303 2025-03-18 Closed Customer 8367 808611.9987541350 +8321 t 79 485553 37.889095 0.9360429088662912 Product description 8321 2023-10-31 14:03:01.089303 2024-11-19 Processing Customer 8321 678597.7658873640 +8445 t 17 214268 26.111713 0.600963218616485 Product description 8445 2024-05-23 14:03:01.089303 2023-10-26 Closed Customer 8445 84112.9592956342 +8372 f 76 87410 10.13004 0.48851276132509724 Product description 8372 2024-06-19 14:03:01.089303 2025-10-14 Processing Customer 8372 247765.4103777490 +8323 t 51 40510 50.709034 0.845009974612438 Product description 8323 2022-04-24 14:03:01.089303 2025-01-28 Processing Customer 8323 573888.7057855320 +8448 f 99 738477 3.6160178 0.2264497820641722 Product description 8448 2022-04-08 14:03:01.089303 2024-04-17 Processing Customer 8448 606846.8616936580 +8373 f 77 840736 17.072325 0.004756211986581604 Product description 8373 2023-11-02 14:03:01.089303 2025-05-06 Processing Customer 8373 4865.6513527057 +8324 t 6 59315 0.24066742 0.4088370126173331 Product description 8324 2022-01-04 14:03:01.089303 2024-09-20 Closed Customer 8324 343774.7035917380 +8449 f 48 295428 68.422745 0.5154739626590015 Product description 8449 2024-02-07 14:03:01.089303 2023-08-04 Closed Customer 8449 4127.3608901200 +8374 t 68 375233 16.30986 0.3027343158810112 Product description 8374 2023-08-20 14:03:01.089303 2025-02-15 Closed Customer 8374 198293.2549724800 +8327 t 66 204420 33.494392 0.9233283884522336 Product description 8327 2022-08-09 14:03:01.089303 2023-04-11 Processing Customer 8327 501966.3597923020 +8450 t 65 855090 18.858479 0.8485275413116611 Product description 8450 2024-04-13 14:03:01.089303 2024-05-18 Processing Customer 8450 77005.3191592446 +8378 f 60 482195 76.2273 0.5839587414430909 Product description 8378 2021-08-26 14:03:01.089303 2025-09-20 Processing Customer 8378 266773.9868119450 +8329 f 86 169448 20.119534 0.4425910786125442 Product description 8329 2022-05-19 14:03:01.089303 2024-02-26 Closed Customer 8329 369308.8737927650 +8451 f 70 383422 62.545155 0.5268335171189591 Product description 8451 2023-05-12 14:03:01.089303 2025-09-03 Closed Customer 8451 223436.8929880300 +8390 t 0 493138 26.973497 0.7923173385827909 Product description 8390 2024-03-04 14:03:01.089303 2024-09-13 Closed Customer 8390 766076.2458488610 +8334 t 81 980434 90.68454 0.23092694148634507 Product description 8334 2023-04-25 14:03:01.089303 2024-07-23 Closed Customer 8334 973713.2699890870 +8452 t 88 867085 24.907572 0.14979947508441427 Product description 8452 2024-05-17 14:03:01.089303 2024-08-12 Closed Customer 8452 647993.2662478700 +8391 t 85 992610 42.819614 0.42635452540077523 Product description 8391 2022-11-30 14:03:01.089303 2025-12-26 Processing Customer 8391 495251.1706760880 +8337 t 1 534829 38.06453 0.7586145241467577 Product description 8337 2023-05-21 14:03:01.089303 2025-03-15 Closed Customer 8337 305507.1154893940 +8453 t 37 783796 9.97241 0.45343624473730415 Product description 8453 2022-12-24 14:03:01.089303 2024-04-30 Closed Customer 8453 545582.3701154220 +8397 t 52 736624 59.69219 0.32805777796683344 Product description 8397 2022-08-13 14:03:01.089303 2023-10-19 Processing Customer 8397 840711.6768440340 +8339 t 4 721781 25.35874 0.8084060500125929 Product description 8339 2021-08-16 14:03:01.089303 2023-05-08 Closed Customer 8339 876608.8721193310 +8457 t 12 675077 62.76612 0.7888915090006847 Product description 8457 2023-06-03 14:03:01.089303 2024-08-24 Processing Customer 8457 893091.8394209790 +8400 f 34 555702 62.248146 0.5312842205569481 Product description 8400 2021-09-14 14:03:01.089303 2024-05-17 Processing Customer 8400 630241.0145139450 +8345 t 98 581305 91.99776 0.7398197782295668 Product description 8345 2021-09-22 14:03:01.089303 2025-05-12 Closed Customer 8345 815494.4289972580 +8458 t 75 136631 69.61003 0.4621443807912584 Product description 8458 2023-04-16 14:03:01.089303 2025-08-19 Closed Customer 8458 540249.2855516920 +8401 f 62 818117 60.68488 0.9632748872242871 Product description 8401 2024-07-12 14:03:01.089303 2023-05-22 Processing Customer 8401 928452.1522364140 +8356 t 59 430142 13.1241665 0.5260002203412029 Product description 8356 2023-12-01 14:03:01.089303 2024-10-24 Processing Customer 8356 845238.3240674630 +8464 t 39 653350 44.54968 0.2607516691043301 Product description 8464 2022-08-07 14:03:01.089303 2023-10-18 Closed Customer 8464 545653.7859041540 +8403 t 36 905948 3.372888 0.7264447371160045 Product description 8403 2023-06-02 14:03:01.089303 2024-03-22 Closed Customer 8403 299865.1057769770 +8359 t 61 155548 31.528954 0.8631934349116577 Product description 8359 2024-05-04 14:03:01.089303 2024-08-05 Closed Customer 8359 12176.8630346430 +8470 f 26 308669 7.3759837 0.43464599010727056 Product description 8470 2023-03-13 14:03:01.089303 2024-08-13 Closed Customer 8470 937535.6842367890 +8409 t 52 565861 1.1482328 0.7859822773796594 Product description 8409 2022-10-23 14:03:01.089303 2023-12-31 Closed Customer 8409 886882.8726329920 +8364 t 36 771557 21.11116 0.21788874600017039 Product description 8364 2021-08-15 14:03:01.089303 2023-06-02 Closed Customer 8364 58294.7180033351 +8473 f 85 393448 97.149254 0.02937253135375073 Product description 8473 2021-12-09 14:03:01.089303 2023-03-16 Closed Customer 8473 870487.2135670070 +8411 t 26 31873 45.237885 0.12002923943821742 Product description 8411 2022-08-05 14:03:01.089303 2023-04-03 Closed Customer 8411 497322.1003055710 +8365 t 24 738328 25.867067 0.4139618337437483 Product description 8365 2024-02-16 14:03:01.089303 2025-09-29 Closed Customer 8365 191210.9412724630 +8475 t 4 47250 5.171647 0.6660379040706488 Product description 8475 2023-12-04 14:03:01.089303 2025-01-17 Closed Customer 8475 186137.1748509950 +8413 t 65 340047 67.45054 0.33765918888468605 Product description 8413 2023-05-01 14:03:01.089303 2023-01-20 Processing Customer 8413 522749.3535625140 +8366 t 50 889355 75.193 0.9443408591194355 Product description 8366 2022-10-22 14:03:01.089303 2024-12-31 Closed Customer 8366 91051.3568090714 +8481 t 55 809470 90.020004 0.44925408251162224 Product description 8481 2022-01-14 14:03:01.089303 2023-10-05 Cancelled Customer 8481 624449.5800640450 +8415 f 22 63258 65.73666 0.0378072136221661 Product description 8415 2022-01-12 14:03:01.089303 2025-04-12 Processing Customer 8415 637715.0821618650 +8370 t 23 75144 3.211746 0.29510048333798267 Product description 8370 2023-11-27 14:03:01.089303 2025-01-09 Closed Customer 8370 791812.7525089920 +8487 t 91 359725 29.165043 0.18588314655287164 Product description 8487 2024-03-24 14:03:01.089303 2025-05-24 Closed Customer 8487 179560.8967746180 +8417 t 17 394837 6.872466 0.9212569170064882 Product description 8417 2024-01-07 14:03:01.089303 2023-03-14 Processing Customer 8417 964135.3848952680 +8375 f 33 790960 76.45442 0.27585965980063065 Product description 8375 2023-03-30 14:03:01.089303 2023-10-16 Processing Customer 8375 660296.5970008620 +8488 t 38 83068 61.845592 0.20463822978036816 Product description 8488 2022-08-14 14:03:01.089303 2023-10-20 Processing Customer 8488 387044.6448294940 +8423 t 18 537249 37.943096 0.5869266473851766 Product description 8423 2024-02-27 14:03:01.089303 2024-04-23 Processing Customer 8423 717730.5080162920 +8376 t 75 61888 29.027216 0.8598237129957695 Product description 8376 2022-05-08 14:03:01.089303 2024-06-27 Closed Customer 8376 307944.9372727120 +8489 f 76 109294 95.399574 0.001698337750770662 Product description 8489 2023-12-23 14:03:01.089303 2024-01-27 Processing Customer 8489 749260.9272152610 +8426 f 96 602091 76.60848 0.42411869186756235 Product description 8426 2022-01-21 14:03:01.089303 2024-05-17 Closed Customer 8426 141336.3333996610 +8377 t 89 822646 76.955986 0.014000774476429001 Product description 8377 2024-01-11 14:03:01.089303 2023-02-27 Processing Customer 8377 287433.0193914250 +8491 t 76 159247 25.01614 0.7926599846819293 Product description 8491 2022-10-09 14:03:01.089303 2023-09-28 Closed Customer 8491 918999.2732362170 +8427 f 43 65947 48.53333 0.48758331316279424 Product description 8427 2021-10-17 14:03:01.089303 2024-07-10 Processing Customer 8427 699731.9322700870 +8379 f 6 55397 92.32498 0.8934557383914452 Product description 8379 2022-09-10 14:03:01.089303 2025-08-08 Processing Customer 8379 934572.6662054300 +8493 t 64 790925 53.604378 0.5326548176403811 Product description 8493 2022-05-27 14:03:01.089303 2024-11-28 Closed Customer 8493 908229.1540212140 +8428 f 26 750894 13.129591 0.7860117302549128 Product description 8428 2024-07-20 14:03:01.089303 2025-02-12 Processing Customer 8428 924018.2825914580 +8380 f 52 77960 86.26322 0.7423663097420388 Product description 8380 2023-07-02 14:03:01.089303 2025-08-22 Cancelled Customer 8380 602812.9698643600 +8496 t 22 564479 46.431038 0.09767086882429155 Product description 8496 2021-11-27 14:03:01.089303 2024-01-03 Processing Customer 8496 143937.0601070710 +8431 t 60 326226 28.034168 0.5091710479361993 Product description 8431 2024-07-01 14:03:01.089303 2025-11-16 Processing Customer 8431 602934.7669573500 +8381 t 59 662613 40.707474 0.06299751796323605 Product description 8381 2023-03-26 14:03:01.089303 2024-02-04 Processing Customer 8381 507927.6911898700 +8497 f 25 676561 15.63569 0.8143587759144744 Product description 8497 2022-08-23 14:03:01.089303 2023-07-14 Closed Customer 8497 592532.1963603100 +8433 t 98 203727 55.519707 0.45725670585665057 Product description 8433 2022-11-07 14:03:01.089303 2023-09-09 Closed Customer 8433 1731.8060335434 +8383 t 78 152928 9.089333 0.5623638190738411 Product description 8383 2023-07-23 14:03:01.089303 2023-02-12 Processing Customer 8383 808188.5239947720 +8510 f 66 871883 13.460135 0.9551431363809648 Product description 8510 2022-02-08 14:03:01.089303 2023-06-04 Closed Customer 8510 570153.4036075560 +8437 f 75 301415 10.977383 0.44320334541561834 Product description 8437 2023-07-19 14:03:01.089303 2023-06-17 Processing Customer 8437 58090.0797378128 +8384 t 85 413825 77.92915 0.14738811041445032 Product description 8384 2022-10-06 14:03:01.089303 2025-09-01 Closed Customer 8384 62099.6244584902 +8511 f 46 155316 1.9443948 0.8253800716334219 Product description 8511 2023-11-10 14:03:01.089303 2025-11-16 Processing Customer 8511 106649.0982688180 +8441 t 95 10449 10.367481 0.07890658990665145 Product description 8441 2021-11-05 14:03:01.089303 2024-01-14 Closed Customer 8441 137318.1949022180 +8386 t 82 377433 0.111741 0.4597961495431697 Product description 8386 2024-03-05 14:03:01.089303 2023-12-12 Cancelled Customer 8386 84295.2932643364 +8514 f 59 266012 77.475464 0.7071761586344785 Product description 8514 2023-07-04 14:03:01.089303 2023-07-23 Closed Customer 8514 667444.0537442690 +8454 f 60 317114 50.904266 0.323407080358173 Product description 8454 2023-08-30 14:03:01.089303 2025-10-09 Processing Customer 8454 484346.1864652920 +8387 t 48 845068 92.945526 0.7388480487363438 Product description 8387 2024-02-20 14:03:01.089303 2025-11-04 Processing Customer 8387 457597.0561901070 +8518 t 36 186863 48.721325 0.6409537258104372 Product description 8518 2022-12-06 14:03:01.089303 2024-07-01 Processing Customer 8518 946024.4613121350 +8455 t 48 718952 79.116104 0.34111275782137795 Product description 8455 2023-08-08 14:03:01.089303 2024-05-30 Closed Customer 8455 35588.5204505419 +8388 f 16 986094 78.50822 0.5310052440411042 Product description 8388 2021-10-31 14:03:01.089303 2024-08-06 Closed Customer 8388 61648.2061355477 +8520 t 16 537602 86.346725 0.8807246988954738 Product description 8520 2021-08-27 14:03:01.089303 2024-08-17 Closed Customer 8520 140748.0220779930 +8456 f 52 826252 90.10289 0.674285333480249 Product description 8456 2023-07-20 14:03:01.089303 2024-12-03 Closed Customer 8456 309121.8643969040 +8394 t 55 207786 95.39604 0.7227951512671069 Product description 8394 2021-12-20 14:03:01.089303 2023-09-04 Processing Customer 8394 487311.8573476450 +8528 t 34 145373 21.450356 0.38000393246472086 Product description 8528 2024-01-18 14:03:01.089303 2025-09-03 Closed Customer 8528 358730.7506625590 +8460 t 31 467687 99.90368 0.15538550179773836 Product description 8460 2021-10-25 14:03:01.089303 2025-01-27 Closed Customer 8460 460879.8194699200 +8395 f 34 184090 22.467484 0.6463247253713504 Product description 8395 2023-05-01 14:03:01.089303 2023-10-13 Processing Customer 8395 943567.5031085860 +8530 t 70 236859 0.6039527 0.0840551252393702 Product description 8530 2022-08-30 14:03:01.089303 2024-08-01 Closed Customer 8530 602364.6201837710 +8466 t 14 260745 5.5839753 0.12160464113735969 Product description 8466 2024-03-02 14:03:01.089303 2024-02-24 Processing Customer 8466 270984.7105944230 +8396 t 78 496575 84.53851 0.9354379471020593 Product description 8396 2023-02-08 14:03:01.089303 2025-11-27 Closed Customer 8396 554523.2057501120 +8535 f 12 451869 11.36547 0.752055157615775 Product description 8535 2022-11-22 14:03:01.089303 2025-03-22 Processing Customer 8535 999022.2624634270 +8471 f 93 470251 4.8847857 0.23269769700686993 Product description 8471 2022-05-20 14:03:01.089303 2023-10-02 Processing Customer 8471 5330.7584780633 +8398 f 26 155371 69.73897 0.07591781460076419 Product description 8398 2022-05-08 14:03:01.089303 2025-09-05 Cancelled Customer 8398 714680.5706124940 +8542 f 59 584262 53.758213 0.9341300710856295 Product description 8542 2023-05-18 14:03:01.089303 2025-04-25 Closed Customer 8542 88569.4883844579 +8477 f 20 931519 13.786486 0.24828411918861804 Product description 8477 2023-03-20 14:03:01.089303 2023-08-19 Processing Customer 8477 334377.8099617540 +8399 t 87 553000 99.47891 0.3312910546757628 Product description 8399 2023-12-16 14:03:01.089303 2023-04-18 Processing Customer 8399 633558.7888747510 +8545 f 5 178802 62.527374 0.5360656293347326 Product description 8545 2021-12-11 14:03:01.089303 2024-03-21 Cancelled Customer 8545 178450.1849016810 +8479 t 24 503494 7.392616 0.16670840246599994 Product description 8479 2023-07-31 14:03:01.089303 2023-01-30 Closed Customer 8479 794229.1726447020 +8404 t 21 592878 77.923676 0.2557397856893111 Product description 8404 2021-11-10 14:03:01.089303 2024-02-15 Processing Customer 8404 280053.5043365710 +8547 t 22 749664 8.917687 0.6161331065991078 Product description 8547 2021-08-26 14:03:01.089303 2025-11-23 Processing Customer 8547 574315.7899181280 +8480 t 11 730772 48.589184 0.22177636773832177 Product description 8480 2022-11-03 14:03:01.089303 2023-03-07 Closed Customer 8480 881897.7711613240 +8407 t 3 758901 50.016937 0.808697796423818 Product description 8407 2022-06-10 14:03:01.089303 2025-03-13 Processing Customer 8407 42024.9546591975 +8551 f 16 546174 78.512215 0.12889133042106238 Product description 8551 2023-09-07 14:03:01.089303 2025-06-08 Processing Customer 8551 583296.1558051610 +8482 t 7 364319 9.224469 0.6573366993990533 Product description 8482 2023-03-12 14:03:01.089303 2024-02-27 Closed Customer 8482 545448.7009058330 +8408 f 99 211495 15.878438 0.3149596155600243 Product description 8408 2024-05-06 14:03:01.089303 2024-04-29 Processing Customer 8408 606622.4342186430 +8552 f 98 123212 72.62046 0.9168880012917242 Product description 8552 2023-12-05 14:03:01.089303 2023-02-19 Processing Customer 8552 632013.8592492230 +8483 f 11 778916 26.189934 0.37708441525379754 Product description 8483 2023-12-03 14:03:01.089303 2024-06-21 Processing Customer 8483 928642.6488572520 +8410 f 93 388971 19.80983 0.746127037497633 Product description 8410 2023-06-15 14:03:01.089303 2025-05-11 Processing Customer 8410 316315.6819463210 +8554 t 13 614104 71.42696 0.6415702071691882 Product description 8554 2022-03-31 14:03:01.089303 2024-01-03 Processing Customer 8554 154234.8824538810 +8492 t 29 670449 31.518984 0.5051591424064412 Product description 8492 2022-11-15 14:03:01.089303 2023-05-17 Closed Customer 8492 547319.1618130320 +8414 f 92 264466 12.056937 0.6173181646364547 Product description 8414 2023-01-03 14:03:01.089303 2025-03-30 Closed Customer 8414 594916.3846427230 +8556 f 35 686475 79.24872 0.16734868012997595 Product description 8556 2024-03-31 14:03:01.089303 2023-06-10 Closed Customer 8556 128935.6733424220 +8494 t 58 625736 61.164207 0.61403176939654 Product description 8494 2023-08-19 14:03:01.089303 2023-01-28 Processing Customer 8494 183489.6098445320 +8416 t 86 711727 76.58904 0.34650698350364806 Product description 8416 2022-09-30 14:03:01.089303 2023-10-23 Closed Customer 8416 943805.1343071980 +8558 f 28 708007 31.30878 0.8663177678910259 Product description 8558 2021-09-14 14:03:01.089303 2025-06-08 Closed Customer 8558 147671.1573921850 +8495 f 11 629258 99.41044 0.09542588455548184 Product description 8495 2023-10-21 14:03:01.089303 2024-10-07 Processing Customer 8495 944398.1479162710 +8419 f 17 104075 90.51736 0.04321188952543409 Product description 8419 2023-03-22 14:03:01.089303 2025-08-24 Closed Customer 8419 646735.7261693320 +8559 f 44 158296 30.68876 0.3569513442721046 Product description 8559 2021-12-29 14:03:01.089303 2024-12-13 Closed Customer 8559 210666.2784966710 +8499 t 85 825791 99.453514 0.4873954702728227 Product description 8499 2023-01-22 14:03:01.089303 2023-02-22 Processing Customer 8499 939224.7311409710 +8420 t 52 445550 38.537865 0.9486818713050873 Product description 8420 2022-04-26 14:03:01.089303 2025-02-14 Closed Customer 8420 903569.1658512240 +8568 f 27 221090 34.90359 0.3851004637411606 Product description 8568 2022-09-18 14:03:01.089303 2023-02-17 Closed Customer 8568 115968.8055961290 +8500 t 11 96620 53.72598 0.8588048990751673 Product description 8500 2022-09-13 14:03:01.089303 2024-11-11 Closed Customer 8500 25287.3723869236 +8425 t 37 102866 7.22916 0.29521618601657096 Product description 8425 2024-02-19 14:03:01.089303 2025-04-09 Closed Customer 8425 113345.9165664950 +8572 t 92 672736 62.04963 0.11617570708520475 Product description 8572 2022-08-29 14:03:01.089303 2025-10-06 Closed Customer 8572 544664.5320961600 +8501 t 88 780224 24.151728 0.14125145221034785 Product description 8501 2022-09-23 14:03:01.089303 2023-05-28 Processing Customer 8501 348051.3525425300 +8429 f 18 91655 90.64018 0.6015288779671017 Product description 8429 2023-11-12 14:03:01.089303 2025-03-26 Processing Customer 8429 229737.8362157900 +8573 f 27 244434 89.92951 0.3912057691320925 Product description 8573 2023-04-07 14:03:01.089303 2025-05-01 Processing Customer 8573 503330.4413190120 +8502 f 38 83069 76.830246 0.4343098201925102 Product description 8502 2023-07-01 14:03:01.089303 2023-06-25 Closed Customer 8502 183249.3926520690 +8432 t 65 616093 65.63473 0.588074032944558 Product description 8432 2022-04-02 14:03:01.089303 2024-04-22 Closed Customer 8432 489383.7754339000 +8574 t 55 81561 15.941223 0.544931231058726 Product description 8574 2023-01-13 14:03:01.089303 2024-09-27 Closed Customer 8574 364808.7838261450 +8506 f 1 492244 70.803345 0.4997190750991436 Product description 8506 2024-03-27 14:03:01.089303 2025-04-24 Processing Customer 8506 487594.2569727310 +8434 t 87 529123 89.66911 0.5227798132607582 Product description 8434 2024-03-27 14:03:01.089303 2025-02-09 Closed Customer 8434 712494.0195205340 +8575 t 69 664633 3.201042 0.9486277349228587 Product description 8575 2024-05-06 14:03:01.089303 2023-12-27 Cancelled Customer 8575 847426.1640307150 +8508 t 24 854071 35.275425 0.21140882628246516 Product description 8508 2021-11-01 14:03:01.089303 2023-08-27 Processing Customer 8508 701936.2745319140 +8435 f 65 382655 3.9317284 0.1450084772656588 Product description 8435 2023-05-18 14:03:01.089303 2025-05-04 Processing Customer 8435 797156.7447670580 +8582 f 21 640132 98.01039 0.3028536862394482 Product description 8582 2023-04-12 14:03:01.089303 2025-04-28 Processing Customer 8582 451149.8005119420 +8512 t 6 95920 51.615665 0.1887039482978068 Product description 8512 2024-04-28 14:03:01.089303 2025-05-12 Closed Customer 8512 367164.9316931570 +8436 t 92 426791 20.382402 0.45477393888078055 Product description 8436 2022-02-01 14:03:01.089303 2023-07-30 Closed Customer 8436 572368.7897355060 +8585 t 66 278779 83.8996 0.1112784311232069 Product description 8585 2022-03-04 14:03:01.089303 2023-03-23 Closed Customer 8585 145337.6696495850 +8515 t 74 509494 91.703224 0.5393387524194395 Product description 8515 2021-09-04 14:03:01.089303 2023-11-11 Closed Customer 8515 228674.3592491090 +8438 t 44 257203 70.89216 0.9555193397581654 Product description 8438 2022-01-29 14:03:01.089303 2024-04-04 Closed Customer 8438 234712.0294586130 +8586 f 94 927665 78.39792 0.9657134913645571 Product description 8586 2024-04-06 14:03:01.089303 2025-05-08 Closed Customer 8586 938538.9707418030 +8517 f 69 665222 37.69299 0.6688267016003309 Product description 8517 2021-08-29 14:03:01.089303 2025-01-15 Processing Customer 8517 302453.5845846440 +8440 f 14 793507 24.021513 0.21735119820577964 Product description 8440 2024-07-30 14:03:01.089303 2023-11-29 Processing Customer 8440 697943.6460161140 +8588 f 21 828625 29.410408 0.7384488484114193 Product description 8588 2023-08-26 14:03:01.089303 2024-04-02 Closed Customer 8588 711143.8597985750 +8519 f 98 837387 81.55 0.06157430911567019 Product description 8519 2024-04-07 14:03:01.089303 2023-06-05 Closed Customer 8519 600716.3672119410 +8442 f 9 977118 34.82963 0.7093467680710681 Product description 8442 2022-05-08 14:03:01.089303 2023-07-15 Processing Customer 8442 879409.5979156750 +8592 f 29 730704 3.1682944 0.673626044331403 Product description 8592 2022-03-05 14:03:01.089303 2023-06-08 Closed Customer 8592 598022.0262441520 +8522 f 97 323075 29.362595 0.7282167212841486 Product description 8522 2021-10-16 14:03:01.089303 2024-10-04 Processing Customer 8522 802286.7647575720 +8443 t 98 796033 85.85191 0.5153773975097842 Product description 8443 2023-12-25 14:03:01.089303 2023-05-22 Processing Customer 8443 418787.3234424590 +8595 f 42 128540 7.0967565 0.9383654443708274 Product description 8595 2022-01-22 14:03:01.089303 2024-03-26 Processing Customer 8595 123217.3153100500 +8526 t 8 819849 97.172554 0.46476596201026155 Product description 8526 2021-08-25 14:03:01.089303 2024-08-04 Closed Customer 8526 840556.4291628270 +8444 t 52 325402 56.649117 0.5435628588158856 Product description 8444 2021-11-29 14:03:01.089303 2025-11-11 Processing Customer 8444 985227.3161848690 +8596 t 83 819163 69.13607 0.7250286867838618 Product description 8596 2023-08-14 14:03:01.089303 2025-08-16 Closed Customer 8596 735089.1828409090 +8529 t 42 182320 65.181526 0.36309562731666034 Product description 8529 2023-03-04 14:03:01.089303 2025-05-21 Closed Customer 8529 682580.6782047760 +8446 t 59 687005 11.6435995 0.5320447655202152 Product description 8446 2024-03-08 14:03:01.089303 2024-09-27 Processing Customer 8446 865719.9797667090 +8605 f 78 334314 38.88284 0.7464628549141104 Product description 8605 2023-10-13 14:03:01.089303 2025-03-29 Closed Customer 8605 285060.8566693110 +8531 f 53 253217 60.246246 0.9799257560324435 Product description 8531 2024-02-18 14:03:01.089303 2024-05-25 Closed Customer 8531 530313.0896292420 +8447 f 3 457380 98.95345 0.5734203255235535 Product description 8447 2024-03-12 14:03:01.089303 2023-11-05 Closed Customer 8447 453259.5517209830 +8606 t 80 811427 32.867847 0.37877434934867793 Product description 8606 2024-06-08 14:03:01.089303 2024-04-13 Cancelled Customer 8606 727666.1766907080 +8532 f 73 248884 77.65185 0.7900519828854087 Product description 8532 2021-12-01 14:03:01.089303 2025-06-20 Processing Customer 8532 734699.9095718910 +8459 t 49 558717 71.895546 0.2918081456100232 Product description 8459 2022-04-29 14:03:01.089303 2023-01-16 Closed Customer 8459 773724.0197194100 +8610 f 37 926583 50.01661 0.32244792684085155 Product description 8610 2023-01-02 14:03:01.089303 2025-02-16 Closed Customer 8610 192966.2884207590 +8534 f 12 938240 81.45948 0.4979972096036249 Product description 8534 2024-04-26 14:03:01.089303 2023-07-19 Closed Customer 8534 198452.6921161740 +8461 t 18 734523 55.44365 0.6119019170714743 Product description 8461 2022-11-01 14:03:01.089303 2023-09-27 Closed Customer 8461 235568.9777104640 +8617 f 61 767402 55.244343 0.09462646278397102 Product description 8617 2024-04-11 14:03:01.089303 2023-09-07 Closed Customer 8617 111523.8845762900 +8537 f 39 392136 9.4574175 0.8407179620362015 Product description 8537 2024-06-21 14:03:01.089303 2025-01-05 Closed Customer 8537 128294.5728875440 +8462 f 29 567536 58.291218 0.7369191562105364 Product description 8462 2023-04-03 14:03:01.089303 2025-06-02 Closed Customer 8462 336547.7776541470 +8619 t 10 164929 39.06897 0.7400804251191033 Product description 8619 2023-11-24 14:03:01.089303 2025-07-29 Processing Customer 8619 946170.0129233290 +8539 t 4 33712 19.97002 0.37410742226508376 Product description 8539 2024-06-08 14:03:01.089303 2023-10-28 Closed Customer 8539 731508.6426373900 +8463 t 82 337179 30.150331 0.8977588041252851 Product description 8463 2022-08-11 14:03:01.089303 2025-12-28 Processing Customer 8463 425566.5981676560 +8621 t 5 508830 6.4692264 0.24322334392763167 Product description 8621 2023-01-26 14:03:01.089303 2025-12-17 Closed Customer 8621 121168.2075529730 +8540 f 33 581510 8.654056 0.8194270178538758 Product description 8540 2024-01-19 14:03:01.089303 2024-08-11 Processing Customer 8540 288156.2297696300 +8465 t 7 44699 98.18186 0.972953302736645 Product description 8465 2023-11-22 14:03:01.089303 2023-01-26 Closed Customer 8465 106939.7893197530 +8622 t 20 394842 30.730883 0.09009864080888974 Product description 8622 2024-06-10 14:03:01.089303 2023-11-28 Processing Customer 8622 696104.9646762910 +8543 f 45 762618 30.695099 0.3098057952216493 Product description 8543 2023-04-05 14:03:01.089303 2023-01-28 Closed Customer 8543 476333.6704972650 +8467 f 67 409770 6.5018787 0.5677082617356 Product description 8467 2022-12-09 14:03:01.089303 2025-09-22 Processing Customer 8467 344403.7603595620 +8625 t 17 340160 33.344624 0.2435513402051086 Product description 8625 2024-03-15 14:03:01.089303 2024-02-21 Closed Customer 8625 329440.5914233810 +8544 t 85 248353 39.249557 0.417710554802035 Product description 8544 2023-03-29 14:03:01.089303 2023-03-28 Processing Customer 8544 232149.5457039800 +8468 t 67 448771 61.490246 0.011058550927277366 Product description 8468 2024-04-23 14:03:01.089303 2023-03-04 Closed Customer 8468 336296.5068402560 +8632 t 14 564701 81.97846 0.9653062827590162 Product description 8632 2023-11-08 14:03:01.089303 2023-09-04 Closed Customer 8632 50905.3541713449 +8546 t 49 354941 68.73471 0.9886083211764998 Product description 8546 2024-07-20 14:03:01.089303 2023-05-18 Closed Customer 8546 582810.1752056050 +8469 f 11 992887 49.311123 0.43651349698194153 Product description 8469 2021-12-20 14:03:01.089303 2023-08-27 Closed Customer 8469 131563.6869840730 +8635 t 94 498260 90.97218 0.04057881769872296 Product description 8635 2023-07-29 14:03:01.089303 2024-07-13 Closed Customer 8635 241998.5211206960 +8549 f 81 256948 78.61229 0.9146577770509836 Product description 8549 2023-10-04 14:03:01.089303 2023-05-04 Closed Customer 8549 39912.9159780678 +8472 t 90 740583 79.78244 0.393083589521698 Product description 8472 2024-03-03 14:03:01.089303 2025-08-14 Processing Customer 8472 899219.1100550290 +8637 t 21 166797 63.13824 0.13038413300054685 Product description 8637 2021-11-10 14:03:01.089303 2025-02-15 Processing Customer 8637 157351.7153319380 +8553 t 11 125411 52.095676 0.9684783199982121 Product description 8553 2023-03-26 14:03:01.089303 2024-06-03 Processing Customer 8553 101470.8785348790 +8474 t 75 498147 26.201763 0.9406492139642744 Product description 8474 2022-06-16 14:03:01.089303 2023-04-02 Processing Customer 8474 846165.4084269630 +8645 t 31 377469 23.263275 0.005161289979334072 Product description 8645 2021-11-03 14:03:01.089303 2024-04-15 Processing Customer 8645 222886.9856421090 +8561 f 67 161340 42.823757 0.41581782236722376 Product description 8561 2021-09-10 14:03:01.089303 2023-04-29 Closed Customer 8561 2472.4952449766 +8476 t 21 431016 71.65464 0.42109023211598995 Product description 8476 2024-01-05 14:03:01.089303 2023-06-07 Closed Customer 8476 592094.6047251330 +8649 t 69 582978 76.31276 0.7378376645234965 Product description 8649 2023-09-05 14:03:01.089303 2023-09-10 Closed Customer 8649 245059.2568836600 +8563 t 13 965738 37.975487 0.2298978427084677 Product description 8563 2022-09-24 14:03:01.089303 2025-12-11 Closed Customer 8563 384406.1035124580 +8478 f 100 730698 11.8636 0.7995482870070099 Product description 8478 2021-12-09 14:03:01.089303 2025-12-06 Closed Customer 8478 368791.4678546140 +8655 t 33 953490 72.36702 0.03393453822382497 Product description 8655 2022-03-31 14:03:01.089303 2023-03-30 Closed Customer 8655 6643.6831451320 +8565 t 18 240673 42.17958 0.6401935609132678 Product description 8565 2022-06-17 14:03:01.089303 2025-11-06 Cancelled Customer 8565 843519.7604211240 +8484 t 6 114186 32.12272 0.9314624463741588 Product description 8484 2022-09-26 14:03:01.089303 2024-05-23 Processing Customer 8484 123506.7362465970 +8656 t 19 511800 26.828945 0.35253210586233763 Product description 8656 2021-08-29 14:03:01.089303 2024-03-02 Processing Customer 8656 326287.5784373560 +8576 t 67 398313 40.4998 0.6732364639717083 Product description 8576 2023-03-10 14:03:01.089303 2023-02-18 Closed Customer 8576 338852.0888656070 +8485 f 30 223640 12.201628 0.6360355391610533 Product description 8485 2022-05-12 14:03:01.089303 2025-04-17 Closed Customer 8485 25398.9713623284 +8659 f 4 99918 26.547987 0.881124650683212 Product description 8659 2021-12-16 14:03:01.089303 2024-03-14 Closed Customer 8659 437170.2908069640 +8577 f 58 570796 0.38969886 0.4234516660890044 Product description 8577 2021-10-22 14:03:01.089303 2025-04-30 Closed Customer 8577 330667.2225622190 +8486 t 3 742641 29.295586 0.02796466600462466 Product description 8486 2023-06-16 14:03:01.089303 2024-02-14 Closed Customer 8486 224332.4489273850 +8662 t 23 312600 49.867683 0.6788305031037254 Product description 8662 2022-07-10 14:03:01.089303 2025-09-29 Cancelled Customer 8662 1390.1481414393 +8578 t 75 48056 21.313494 0.7693125545007042 Product description 8578 2021-12-16 14:03:01.089303 2023-11-25 Closed Customer 8578 181414.1326078700 +8490 t 61 946599 74.619255 0.9481169094664175 Product description 8490 2023-10-02 14:03:01.089303 2023-05-16 Closed Customer 8490 726673.0243922060 +8665 f 9 343669 82.45164 0.21437692081891768 Product description 8665 2023-03-05 14:03:01.089303 2024-04-23 Closed Customer 8665 504090.8365361720 +8580 f 79 368851 14.695582 0.020511343714129993 Product description 8580 2021-09-16 14:03:01.089303 2024-04-20 Processing Customer 8580 457098.2951058870 +8498 t 82 607077 49.98084 0.3053696495554483 Product description 8498 2022-06-19 14:03:01.089303 2024-06-06 Closed Customer 8498 646203.7480821010 +8666 f 99 46424 1.126108 0.770947849305859 Product description 8666 2023-10-17 14:03:01.089303 2023-04-04 Processing Customer 8666 120614.1411648080 +8581 f 57 292857 32.31061 0.6917681631518668 Product description 8581 2022-06-13 14:03:01.089303 2024-11-13 Closed Customer 8581 280914.7394408030 +8503 f 24 831283 14.354241 0.05206405147113102 Product description 8503 2023-06-20 14:03:01.089303 2025-10-23 Processing Customer 8503 997758.8966599670 +8669 f 82 407907 46.696 0.8171404213417013 Product description 8669 2022-02-08 14:03:01.089303 2023-05-12 Processing Customer 8669 193874.1486924800 +8584 f 84 391415 24.690626 0.9959400553500579 Product description 8584 2022-05-12 14:03:01.089303 2023-01-18 Closed Customer 8584 69285.6979873895 +8504 f 65 971199 20.548899 0.5089915126304625 Product description 8504 2022-12-14 14:03:01.089303 2024-05-20 Closed Customer 8504 241151.9376769600 +8670 t 14 94561 38.132065 0.1209980752324391 Product description 8670 2024-03-15 14:03:01.089303 2023-12-13 Closed Customer 8670 428304.0468055790 +8587 f 23 23419 48.742313 0.9460944446046717 Product description 8587 2024-03-30 14:03:01.089303 2025-08-12 Processing Customer 8587 196541.7136440520 +8505 f 39 329569 9.283854 0.9265984496916211 Product description 8505 2022-09-29 14:03:01.089303 2023-03-26 Closed Customer 8505 862515.9533867550 +8671 t 28 9585 32.086353 0.9071976861741824 Product description 8671 2022-10-08 14:03:01.089303 2025-01-29 Closed Customer 8671 619767.9861820760 +8589 t 79 899609 15.600646 0.1077899232848516 Product description 8589 2022-01-17 14:03:01.089303 2025-08-26 Closed Customer 8589 565088.9382906500 +8507 f 8 493933 81.716644 0.4545679890835608 Product description 8507 2023-02-17 14:03:01.089303 2024-12-30 Closed Customer 8507 128365.3725173370 +8673 t 30 688461 97.48505 0.7002952587169808 Product description 8673 2024-05-08 14:03:01.089303 2023-07-01 Closed Customer 8673 912309.6695091850 +8591 f 95 164596 50.321804 0.21174329171367745 Product description 8591 2022-09-13 14:03:01.089303 2023-08-28 Closed Customer 8591 391082.9367002720 +8509 t 66 709726 91.56229 0.925443282545455 Product description 8509 2024-07-15 14:03:01.089303 2025-08-02 Closed Customer 8509 519249.0432198080 +8676 t 20 379772 88.57083 0.2823946290284418 Product description 8676 2022-09-14 14:03:01.089303 2024-10-31 Processing Customer 8676 717546.7929270880 +8593 t 2 259181 18.595081 0.8735407390900427 Product description 8593 2022-05-15 14:03:01.089303 2025-11-08 Processing Customer 8593 212280.9032851980 +8513 f 63 997939 30.0643 0.31200778460972245 Product description 8513 2023-09-20 14:03:01.089303 2024-09-20 Processing Customer 8513 164872.1435112180 +8682 f 68 526075 9.037969 0.5380906981064193 Product description 8682 2023-06-08 14:03:01.089303 2024-05-20 Closed Customer 8682 738841.3858640490 +8597 f 54 947672 30.306908 0.9203665761921407 Product description 8597 2024-04-12 14:03:01.089303 2023-08-19 Processing Customer 8597 788661.0402065910 +8516 t 93 594637 83.78956 0.6267083122892778 Product description 8516 2023-07-06 14:03:01.089303 2023-06-06 Closed Customer 8516 805393.2053450770 +8685 t 43 490751 38.67432 0.8460426072467975 Product description 8685 2023-05-05 14:03:01.089303 2025-01-19 Closed Customer 8685 875705.1916647140 +8598 f 86 546298 77.25323 0.23551547508719395 Product description 8598 2023-09-20 14:03:01.089303 2023-09-19 Closed Customer 8598 248522.3557849350 +8521 t 18 257686 27.042074 0.9857493854189308 Product description 8521 2022-11-06 14:03:01.089303 2024-06-20 Processing Customer 8521 507519.5698641580 +8689 t 3 636668 36.8686 0.6617067590739261 Product description 8689 2023-10-03 14:03:01.089303 2024-06-03 Closed Customer 8689 657619.4153819730 +8601 t 55 501931 56.13938 0.6915864153013764 Product description 8601 2024-03-17 14:03:01.089303 2025-08-10 Closed Customer 8601 183608.7120115200 +8523 t 31 458714 0.3913074 0.3292608571529847 Product description 8523 2022-05-13 14:03:01.089303 2023-03-23 Closed Customer 8523 879081.8124452000 +8699 f 45 299569 39.449665 0.6953372938974489 Product description 8699 2022-12-30 14:03:01.089303 2025-12-09 Processing Customer 8699 412123.8058049740 +8602 f 21 817589 61.16142 0.19250528194136152 Product description 8602 2022-08-04 14:03:01.089303 2025-07-19 Closed Customer 8602 764597.5051227870 +8524 f 87 365223 72.74152 0.5196871878529699 Product description 8524 2022-10-06 14:03:01.089303 2025-09-19 Cancelled Customer 8524 162461.5450304000 +8701 t 57 195253 26.803303 0.4931440733713721 Product description 8701 2023-09-12 14:03:01.089303 2025-10-15 Processing Customer 8701 964428.9356093050 +8604 f 35 352722 38.110825 0.061118785483973426 Product description 8604 2023-01-31 14:03:01.089303 2023-05-23 Closed Customer 8604 801989.9628020250 +8525 t 78 24549 29.975256 0.17079215943600445 Product description 8525 2021-09-21 14:03:01.089303 2023-12-20 Closed Customer 8525 186633.0654658380 +8703 t 85 21832 35.45408 0.02769616342316894 Product description 8703 2022-11-01 14:03:01.089303 2024-04-19 Processing Customer 8703 729659.1798993360 +8611 t 52 479462 93.90608 0.20739768309007545 Product description 8611 2022-06-01 14:03:01.089303 2025-11-17 Closed Customer 8611 264420.7569669350 +8527 t 78 673861 86.08514 0.09397931404964055 Product description 8527 2021-09-30 14:03:01.089303 2025-11-11 Processing Customer 8527 900622.1923866810 +8704 t 33 865113 93.316444 0.5992677372203481 Product description 8704 2022-11-18 14:03:01.089303 2023-01-28 Cancelled Customer 8704 393704.9077006700 +8612 f 98 95543 85.34343 0.2670855297090533 Product description 8612 2023-11-19 14:03:01.089303 2023-03-18 Closed Customer 8612 696548.9560002850 +8533 f 83 767802 37.584473 0.2854125446512512 Product description 8533 2024-04-28 14:03:01.089303 2025-03-13 Closed Customer 8533 834570.9328415830 +8707 t 25 669596 57.60604 0.8301576397915653 Product description 8707 2023-08-31 14:03:01.089303 2024-05-31 Closed Customer 8707 441281.0807289380 +8613 t 46 907121 7.3994083 0.7739544904371591 Product description 8613 2023-01-29 14:03:01.089303 2024-03-30 Closed Customer 8613 457346.3821672520 +8536 f 3 11071 30.345724 0.538646462068705 Product description 8536 2023-09-15 14:03:01.089303 2024-04-03 Closed Customer 8536 181453.3063556250 +8709 f 47 227876 49.612873 0.6099111586039854 Product description 8709 2024-04-09 14:03:01.089303 2023-10-08 Closed Customer 8709 428951.9494004740 +8616 t 62 439237 90.431625 0.18116966003409019 Product description 8616 2023-04-14 14:03:01.089303 2024-02-07 Processing Customer 8616 413379.1427456120 +8538 t 95 513718 89.91179 0.8807078781753859 Product description 8538 2024-03-05 14:03:01.089303 2023-01-04 Closed Customer 8538 537316.2477157610 +8714 t 15 732925 45.417633 0.9462297518493727 Product description 8714 2023-09-21 14:03:01.089303 2025-02-18 Closed Customer 8714 557551.0948654420 +8620 f 27 952118 89.33346 0.17156543961766246 Product description 8620 2023-04-12 14:03:01.089303 2023-09-26 Closed Customer 8620 912260.7513146550 +8541 t 72 294881 80.61311 0.12381073893097749 Product description 8541 2024-06-23 14:03:01.089303 2024-11-19 Processing Customer 8541 438164.6733070750 +8729 f 74 712364 73.96762 0.5206089076110558 Product description 8729 2022-05-07 14:03:01.089303 2024-12-13 Processing Customer 8729 516039.2050928700 +8624 f 82 106113 51.110794 0.9195911530303853 Product description 8624 2022-11-02 14:03:01.089303 2023-08-08 Closed Customer 8624 903765.5084343470 +8548 t 12 244602 57.628345 0.9418808726446457 Product description 8548 2021-08-09 14:03:01.089303 2023-07-16 Processing Customer 8548 923211.4320211300 +8731 f 46 505185 94.61301 0.2858040953581735 Product description 8731 2022-12-19 14:03:01.089303 2024-07-09 Processing Customer 8731 317888.0366229430 +8633 f 21 532681 9.607716 0.519067489673386 Product description 8633 2022-12-06 14:03:01.089303 2024-12-25 Closed Customer 8633 908537.5202215220 +8550 t 82 893051 42.24287 0.40877421349396315 Product description 8550 2021-08-06 14:03:01.089303 2023-12-04 Closed Customer 8550 133495.7445673730 +8736 f 46 455075 17.772602 0.08375697613980293 Product description 8736 2022-05-11 14:03:01.089303 2025-04-14 Closed Customer 8736 42418.8779798307 +8638 t 95 513201 57.836517 0.6480254857681196 Product description 8638 2023-05-11 14:03:01.089303 2023-08-24 Closed Customer 8638 570000.7902690060 +8555 f 72 764674 31.545746 0.45252918359589955 Product description 8555 2024-07-24 14:03:01.089303 2025-03-28 Cancelled Customer 8555 208581.0774328250 +8737 f 23 196196 65.463776 0.6682723066013665 Product description 8737 2023-07-21 14:03:01.089303 2023-06-23 Processing Customer 8737 932524.9805306830 +8639 t 46 182940 94.131744 0.5124509636679271 Product description 8639 2024-05-28 14:03:01.089303 2024-10-02 Closed Customer 8639 204041.2845879370 +8557 t 91 279880 84.021454 0.1733495209668341 Product description 8557 2023-11-17 14:03:01.089303 2025-02-20 Closed Customer 8557 929994.9245189010 +8740 t 85 510972 3.429313 0.19170715873067223 Product description 8740 2022-10-21 14:03:01.089303 2023-06-25 Processing Customer 8740 809653.6411862200 +8640 f 74 398039 6.520132 0.5235002765119852 Product description 8640 2022-04-09 14:03:01.089303 2023-10-21 Processing Customer 8640 685176.6290277370 +8560 t 22 894074 13.974797 0.7295819870011293 Product description 8560 2022-03-02 14:03:01.089303 2024-11-16 Cancelled Customer 8560 983966.0062373140 +8741 f 24 346506 87.34038 0.3700108343143427 Product description 8741 2023-02-18 14:03:01.089303 2025-11-26 Processing Customer 8741 36908.5371908930 +8641 t 46 320807 30.097164 0.09198003611588135 Product description 8641 2021-10-04 14:03:01.089303 2024-07-23 Processing Customer 8641 630951.3122064270 +8562 f 14 378102 84.97408 0.6164023463382193 Product description 8562 2024-03-11 14:03:01.089303 2023-11-18 Processing Customer 8562 279633.2788665520 +8744 f 92 771094 21.204056 0.4380005169657366 Product description 8744 2021-12-05 14:03:01.089303 2025-02-16 Processing Customer 8744 147954.0193268500 +8642 f 45 396120 25.033892 0.2795568896397249 Product description 8642 2022-10-14 14:03:01.089303 2025-01-18 Closed Customer 8642 972791.8353061680 +8564 f 45 213253 49.28082 0.7331111834026061 Product description 8564 2021-08-31 14:03:01.089303 2023-08-04 Closed Customer 8564 558705.3434445610 +8745 t 43 632827 72.86398 0.42779634711114056 Product description 8745 2023-03-28 14:03:01.089303 2024-10-16 Closed Customer 8745 764781.7482969510 +8644 t 58 420425 0.582969 0.01806931260278688 Product description 8644 2024-03-18 14:03:01.089303 2023-10-01 Closed Customer 8644 880345.5706769870 +8566 f 54 808375 96.175446 0.9295095085447969 Product description 8566 2021-11-27 14:03:01.089303 2025-12-25 Processing Customer 8566 625437.6717057930 +8747 f 88 257102 93.68185 0.2747495370999147 Product description 8747 2023-12-12 14:03:01.089303 2024-06-10 Closed Customer 8747 425349.2569404960 +8646 t 27 217799 77.44418 0.3587490510634872 Product description 8646 2021-12-12 14:03:01.089303 2025-08-24 Processing Customer 8646 584416.3433059890 +8567 t 80 897564 28.139387 0.647061999320151 Product description 8567 2023-12-28 14:03:01.089303 2024-12-20 Closed Customer 8567 161552.2030777080 +8768 f 29 483912 7.434708 0.38864313667011174 Product description 8768 2024-03-04 14:03:01.089303 2024-05-28 Closed Customer 8768 853545.8323261730 +8651 f 36 100269 43.45951 0.3689382091306008 Product description 8651 2022-12-22 14:03:01.089303 2024-07-24 Cancelled Customer 8651 80544.5154684570 +8569 t 25 267962 89.199455 0.281917777699789 Product description 8569 2024-01-03 14:03:01.089303 2024-07-09 Closed Customer 8569 694304.6225148310 +8772 f 51 399496 49.993603 0.9717938507195711 Product description 8772 2024-07-06 14:03:01.089303 2024-06-01 Processing Customer 8772 263629.5159692030 +8652 f 36 625036 34.31014 0.6103942230102248 Product description 8652 2022-07-04 14:03:01.089303 2025-02-16 Closed Customer 8652 744242.0650405700 +8570 f 26 795358 59.86197 0.036751811408471724 Product description 8570 2023-04-08 14:03:01.089303 2025-09-27 Cancelled Customer 8570 149254.2129158990 +8773 f 48 488467 32.75279 0.8863146395576251 Product description 8773 2022-07-24 14:03:01.089303 2023-05-02 Processing Customer 8773 707749.0265279600 +8654 f 40 71858 98.41834 0.40555355783963876 Product description 8654 2024-03-20 14:03:01.089303 2024-08-20 Closed Customer 8654 176688.6933345790 +8571 f 52 565913 8.637634 0.1536313636438429 Product description 8571 2021-11-02 14:03:01.089303 2024-03-01 Processing Customer 8571 814011.1136104050 +8775 t 44 145833 65.441925 0.4129662512928789 Product description 8775 2023-08-25 14:03:01.089303 2025-06-29 Closed Customer 8775 690818.8570100610 +8657 f 3 969642 77.70338 0.7568812627066492 Product description 8657 2022-05-31 14:03:01.089303 2024-08-23 Closed Customer 8657 597675.9531722740 +8579 t 28 621471 25.36683 0.2035498709084571 Product description 8579 2023-10-07 14:03:01.089303 2023-08-14 Closed Customer 8579 715667.9591171620 +8778 f 54 748178 58.667496 0.5871795660473538 Product description 8778 2021-11-10 14:03:01.089303 2023-06-02 Processing Customer 8778 691571.0650174810 +8658 f 39 973025 69.75935 0.6882671851080318 Product description 8658 2022-06-03 14:03:01.089303 2023-03-21 Closed Customer 8658 493046.6033455860 +8583 f 73 865473 97.94933 0.1212825434714695 Product description 8583 2023-04-06 14:03:01.089303 2024-05-01 Closed Customer 8583 111828.0756196410 +8780 t 66 432284 98.04088 0.4985436850329634 Product description 8780 2022-12-28 14:03:01.089303 2024-12-12 Processing Customer 8780 155453.1380217020 +8660 f 54 349048 25.00631 0.9330196199704872 Product description 8660 2023-11-23 14:03:01.089303 2024-02-01 Closed Customer 8660 136976.8866945020 +8590 f 66 803365 44.84666 0.6599600117432765 Product description 8590 2024-01-31 14:03:01.089303 2024-07-05 Processing Customer 8590 77925.2773033861 +8782 f 1 861684 11.763122 0.6619785405524539 Product description 8782 2024-02-25 14:03:01.089303 2024-11-28 Closed Customer 8782 806292.2246307770 +8668 f 91 401489 42.81862 0.8201280918306253 Product description 8668 2024-02-29 14:03:01.089303 2023-02-06 Closed Customer 8668 155241.7281629450 +8594 f 16 678772 92.55267 0.48732345083773865 Product description 8594 2023-06-19 14:03:01.089303 2023-11-29 Processing Customer 8594 86548.0389620075 +8788 t 46 59391 70.98269 0.6028017970827406 Product description 8788 2023-04-13 14:03:01.089303 2023-08-13 Closed Customer 8788 735915.0220290940 +8684 f 38 86186 56.31481 0.15411752593526984 Product description 8684 2023-06-09 14:03:01.089303 2024-09-08 Processing Customer 8684 621684.1430783010 +8599 f 6 400875 62.027584 0.13490360096232834 Product description 8599 2023-08-15 14:03:01.089303 2024-06-22 Closed Customer 8599 462346.2166943640 +8791 f 65 276331 25.29045 0.014228687828961029 Product description 8791 2023-03-04 14:03:01.089303 2023-12-25 Processing Customer 8791 870089.1721991260 +8687 t 43 30901 52.839043 0.5547578941062454 Product description 8687 2024-04-30 14:03:01.089303 2025-11-27 Processing Customer 8687 516686.3245701410 +8600 t 24 105404 11.374144 0.14056832073598358 Product description 8600 2024-03-11 14:03:01.089303 2024-10-12 Processing Customer 8600 947737.3384711570 +8794 t 10 381146 95.575424 0.8656430361494998 Product description 8794 2021-10-19 14:03:01.089303 2023-04-16 Processing Customer 8794 948715.0346377890 +8688 t 2 954332 45.96984 0.9012571169545041 Product description 8688 2023-01-11 14:03:01.089303 2024-10-09 Closed Customer 8688 736849.9286014330 +8603 t 71 656466 83.34966 0.496806640578324 Product description 8603 2023-01-22 14:03:01.089303 2025-07-17 Processing Customer 8603 345766.4193182590 +8796 t 48 299361 83.70905 0.9923353044309948 Product description 8796 2022-07-26 14:03:01.089303 2024-12-14 Processing Customer 8796 31843.8715587028 +8691 f 41 227842 85.06383 0.8042791989222877 Product description 8691 2023-10-15 14:03:01.089303 2025-02-03 Processing Customer 8691 762430.4479845530 +8607 f 99 409334 25.433046 0.678726053803576 Product description 8607 2022-09-22 14:03:01.089303 2024-09-02 Processing Customer 8607 362215.6776103510 +8798 f 2 938537 28.248566 0.35975382486767415 Product description 8798 2022-02-26 14:03:01.089303 2023-10-22 Closed Customer 8798 508723.3653426220 +8692 t 47 152266 24.415697 0.8487698663494072 Product description 8692 2022-08-27 14:03:01.089303 2025-08-05 Closed Customer 8692 672821.8428898640 +8608 t 64 878975 91.04493 0.1800802439490461 Product description 8608 2023-01-05 14:03:01.089303 2025-08-14 Cancelled Customer 8608 860621.2958222090 +8799 t 9 182167 98.11413 0.39604069850187784 Product description 8799 2021-10-01 14:03:01.089303 2024-11-07 Processing Customer 8799 985369.3684260310 +8693 f 10 971477 8.5812 0.6866947448968403 Product description 8693 2021-12-10 14:03:01.089303 2024-04-10 Processing Customer 8693 68866.5640941473 +8609 t 86 680282 26.494743 0.5311988265684633 Product description 8609 2022-05-08 14:03:01.089303 2025-04-17 Closed Customer 8609 297262.0167486360 +8802 f 65 440906 97.348564 0.4800174518498821 Product description 8802 2021-12-15 14:03:01.089303 2024-04-19 Processing Customer 8802 953397.1761958960 +8694 f 35 266806 28.535042 0.30041650264593756 Product description 8694 2023-09-11 14:03:01.089303 2024-08-03 Closed Customer 8694 328333.0036813120 +8614 t 86 375249 10.432429 0.711596674895361 Product description 8614 2024-02-28 14:03:01.089303 2025-10-26 Processing Customer 8614 658078.4499130310 +8803 f 10 772003 24.638975 0.8767845253700415 Product description 8803 2024-03-26 14:03:01.089303 2023-10-06 Closed Customer 8803 313555.1787404260 +8695 f 65 335258 78.63117 0.5274068634410725 Product description 8695 2022-02-02 14:03:01.089303 2024-06-05 Closed Customer 8695 340749.5655053590 +8615 t 9 633675 12.558418 0.4510496720776658 Product description 8615 2023-11-22 14:03:01.089303 2025-04-14 Cancelled Customer 8615 99945.4155499606 +8808 f 99 470093 99.25775 0.43844269709921235 Product description 8808 2023-03-10 14:03:01.089303 2023-11-09 Closed Customer 8808 709082.8798864840 +8696 f 76 781022 85.96948 0.7019140553686256 Product description 8696 2024-04-02 14:03:01.089303 2023-10-10 Processing Customer 8696 637319.6869286520 +8618 t 60 519716 47.784435 0.969724682367076 Product description 8618 2022-02-07 14:03:01.089303 2025-12-13 Processing Customer 8618 519615.5668145650 +8821 f 9 234893 66.5699 0.6471665540846061 Product description 8821 2022-12-21 14:03:01.089303 2023-07-08 Closed Customer 8821 582048.0737015680 +8700 t 24 829569 97.925735 0.8678321725275566 Product description 8700 2023-07-01 14:03:01.089303 2023-11-08 Closed Customer 8700 423750.5867279440 +8623 t 10 953215 17.464493 0.11931298172808269 Product description 8623 2023-08-13 14:03:01.089303 2024-08-30 Processing Customer 8623 315383.2392459110 +8822 t 59 306138 41.5426 0.032265327699867896 Product description 8822 2022-03-08 14:03:01.089303 2025-06-20 Closed Customer 8822 463197.4891737830 +8705 t 62 118008 46.27951 0.7672257712653519 Product description 8705 2024-04-13 14:03:01.089303 2025-06-26 Processing Customer 8705 313545.5475660400 +8626 f 61 849373 17.632683 0.00996546091448991 Product description 8626 2023-04-01 14:03:01.089303 2024-11-22 Closed Customer 8626 945786.8399077680 +8823 t 36 89132 68.96643 0.03140583347278891 Product description 8823 2023-03-29 14:03:01.089303 2023-09-01 Closed Customer 8823 858469.0950135720 +8706 t 30 201059 5.953804 0.63477823775996 Product description 8706 2022-06-06 14:03:01.089303 2024-12-17 Closed Customer 8706 271684.1839183350 +8627 t 33 4391 22.36776 0.8810053634783053 Product description 8627 2023-03-10 14:03:01.089303 2024-12-01 Closed Customer 8627 184823.0306688880 +8833 t 7 154756 35.10973 0.979867057978673 Product description 8833 2023-06-29 14:03:01.089303 2024-06-18 Closed Customer 8833 389828.0334193380 +8710 t 52 157620 59.656666 0.8797212026751069 Product description 8710 2023-12-27 14:03:01.089303 2025-06-25 Processing Customer 8710 789796.5753719700 +8628 f 78 733603 58.982735 0.31462778194920205 Product description 8628 2023-03-09 14:03:01.089303 2023-05-15 Closed Customer 8628 278601.9818417460 +8836 f 21 126847 20.190857 0.2840187480298084 Product description 8836 2023-12-29 14:03:01.089303 2023-11-30 Closed Customer 8836 385707.4592863480 +8712 f 53 357432 75.943565 0.2555393712305545 Product description 8712 2022-10-28 14:03:01.089303 2025-02-12 Closed Customer 8712 493765.0290549380 +8629 t 88 407368 86.90768 0.8414836055975989 Product description 8629 2021-12-19 14:03:01.089303 2025-12-06 Processing Customer 8629 232702.7095036060 +8837 f 25 304785 3.5215173 0.011585920136589323 Product description 8837 2024-06-26 14:03:01.089303 2023-07-29 Processing Customer 8837 151978.4981640020 +8715 t 40 292038 11.19932 0.8360253481199109 Product description 8715 2024-07-12 14:03:01.089303 2025-02-09 Closed Customer 8715 875317.2208810480 +8630 t 61 402440 96.736084 0.15922354718410148 Product description 8630 2022-11-16 14:03:01.089303 2024-11-05 Processing Customer 8630 108146.6672649330 +8838 f 83 945582 92.62391 0.20855652646172018 Product description 8838 2021-08-08 14:03:01.089303 2023-07-11 Closed Customer 8838 957034.4336407680 +8718 t 72 546044 44.969696 0.2524518502242614 Product description 8718 2024-05-14 14:03:01.089303 2024-04-14 Closed Customer 8718 820520.0741270570 +8631 t 86 902799 94.81466 0.8905153040347606 Product description 8631 2022-01-10 14:03:01.089303 2024-05-03 Closed Customer 8631 127068.9271763320 +8839 f 9 820273 70.559944 0.5613398001872767 Product description 8839 2023-01-22 14:03:01.089303 2023-04-15 Closed Customer 8839 730910.0828098460 +8719 t 92 513670 83.49022 0.5973338856024597 Product description 8719 2022-02-01 14:03:01.089303 2023-12-16 Closed Customer 8719 7105.9107200888 +8634 f 50 761019 87.25304 0.5571337676502033 Product description 8634 2023-12-10 14:03:01.089303 2024-08-11 Processing Customer 8634 817072.0973247110 +8841 t 51 545050 61.248158 0.05593945149263391 Product description 8841 2022-12-02 14:03:01.089303 2025-02-28 Closed Customer 8841 787778.0978160980 +8721 t 49 449222 38.01606 0.5069636876814627 Product description 8721 2023-09-13 14:03:01.089303 2025-06-23 Processing Customer 8721 499687.9819835520 +8636 t 50 287820 82.15346 0.578031514863337 Product description 8636 2023-10-04 14:03:01.089303 2024-05-24 Processing Customer 8636 205211.3677499180 +8844 t 92 941685 5.7543097 0.659352722408876 Product description 8844 2021-09-25 14:03:01.089303 2024-04-19 Processing Customer 8844 86958.1019835870 +8723 t 17 576913 44.419266 0.23552784402270532 Product description 8723 2022-02-27 14:03:01.089303 2025-03-18 Closed Customer 8723 784122.7725742250 +8643 t 16 842118 37.729507 0.9042793118484873 Product description 8643 2023-06-02 14:03:01.089303 2024-10-13 Processing Customer 8643 595192.6437655150 +8845 t 46 376443 36.54843 0.5596143811200278 Product description 8845 2023-01-19 14:03:01.089303 2025-02-27 Closed Customer 8845 154850.9639863590 +8725 f 62 485432 2.5923018 0.190284736966575 Product description 8725 2023-02-20 14:03:01.089303 2024-01-22 Closed Customer 8725 298587.3092080560 +8647 f 57 737277 71.59298 0.3251854612580978 Product description 8647 2022-02-08 14:03:01.089303 2025-07-27 Processing Customer 8647 154991.3100121150 +8851 t 46 552304 89.89316 0.3833878759155809 Product description 8851 2024-02-16 14:03:01.089303 2024-01-06 Closed Customer 8851 777687.8905821610 +8726 f 11 718199 31.99251 0.5230520700894701 Product description 8726 2021-11-28 14:03:01.089303 2023-09-05 Closed Customer 8726 370454.1197250430 +8648 f 62 595638 61.74414 0.0017568210665395156 Product description 8648 2023-05-31 14:03:01.089303 2023-11-02 Closed Customer 8648 227487.9869548840 +8857 t 27 51392 91.70497 0.5624832913553917 Product description 8857 2023-04-04 14:03:01.089303 2023-01-09 Processing Customer 8857 973909.5165567410 +8728 f 42 917936 79.27562 0.2616784274053998 Product description 8728 2024-01-20 14:03:01.089303 2024-05-07 Processing Customer 8728 370661.2752645210 +8650 t 22 74193 98.6149 0.5823724794518021 Product description 8650 2023-09-28 14:03:01.089303 2023-12-08 Processing Customer 8650 387319.4392367690 +8858 f 64 680306 10.574187 0.7211039318872068 Product description 8858 2022-06-21 14:03:01.089303 2024-03-25 Processing Customer 8858 804717.9233311150 +8732 f 5 733959 38.43346 0.757829129597333 Product description 8732 2023-09-08 14:03:01.089303 2025-03-12 Closed Customer 8732 971722.4162453450 +8653 f 19 703110 51.531292 0.7559128391164656 Product description 8653 2021-09-29 14:03:01.089303 2024-05-11 Closed Customer 8653 763209.3804821380 +8861 t 32 641559 84.29584 0.7514674511221955 Product description 8861 2022-03-12 14:03:01.089303 2024-01-05 Processing Customer 8861 637355.6729318860 +8734 f 1 794326 54.38817 0.3358508667515281 Product description 8734 2022-11-05 14:03:01.089303 2024-09-19 Processing Customer 8734 605467.7736900760 +8661 t 85 451124 32.006943 0.7343575449961115 Product description 8661 2022-03-09 14:03:01.089303 2024-02-14 Processing Customer 8661 967303.4793729230 +8863 f 100 828768 2.7216337 0.7429384619578556 Product description 8863 2023-01-21 14:03:01.089303 2024-04-24 Closed Customer 8863 752061.3394228410 +8735 t 88 834484 26.45441 0.1571903954644185 Product description 8735 2023-08-28 14:03:01.089303 2024-02-20 Processing Customer 8735 831847.3689839610 +8663 f 91 431865 95.54278 0.048829722549374566 Product description 8663 2023-06-18 14:03:01.089303 2023-12-15 Closed Customer 8663 164821.3217028170 +8865 t 43 722509 2.2011619 0.48597360389919686 Product description 8865 2023-01-15 14:03:01.089303 2025-07-07 Processing Customer 8865 568397.7651248110 +8738 f 57 772200 84.57114 0.7202254747205927 Product description 8738 2022-08-16 14:03:01.089303 2023-12-05 Closed Customer 8738 478161.3878016310 +8664 t 58 784698 64.70553 0.4430871710899531 Product description 8664 2021-12-04 14:03:01.089303 2025-06-18 Closed Customer 8664 975343.6932234440 +8870 t 33 932556 15.893893 0.7248857997589155 Product description 8870 2022-06-07 14:03:01.089303 2025-01-04 Processing Customer 8870 354112.4839442520 +8746 t 53 746723 49.45348 0.045770582983358565 Product description 8746 2024-02-20 14:03:01.089303 2025-11-25 Closed Customer 8746 483598.7839291000 +8667 f 83 258762 14.432917 0.43890298260680893 Product description 8667 2023-08-23 14:03:01.089303 2023-11-07 Closed Customer 8667 392081.1051118420 +8876 t 16 459888 61.194145 0.4858292203943648 Product description 8876 2023-08-24 14:03:01.089303 2025-05-18 Processing Customer 8876 921230.7136084620 +8748 t 62 357423 36.48511 0.07682579049092908 Product description 8748 2022-11-10 14:03:01.089303 2025-09-30 Processing Customer 8748 742017.3777283420 +8672 t 16 641407 38.375687 0.30710551883434434 Product description 8672 2022-03-23 14:03:01.089303 2023-10-22 Processing Customer 8672 345880.2320127390 +8879 t 26 363197 63.35368 0.013403051137025557 Product description 8879 2022-09-29 14:03:01.089303 2024-05-28 Processing Customer 8879 893753.2528523100 +8749 t 53 117969 91.941666 0.7275074578255882 Product description 8749 2021-09-02 14:03:01.089303 2023-08-20 Closed Customer 8749 500805.1949000850 +8674 f 95 774100 56.39622 0.05067167428082442 Product description 8674 2023-09-04 14:03:01.089303 2024-04-01 Closed Customer 8674 232458.5462193340 +8888 t 68 603004 58.457325 0.3349925645132146 Product description 8888 2024-04-04 14:03:01.089303 2025-06-05 Closed Customer 8888 929954.4215013180 +8751 f 48 399066 37.023006 0.7308146891102183 Product description 8751 2024-06-13 14:03:01.089303 2024-08-25 Closed Customer 8751 351908.7200840510 +8675 f 29 319508 68.48587 0.36388301752463903 Product description 8675 2021-11-08 14:03:01.089303 2023-04-13 Closed Customer 8675 409692.2691122200 +8889 t 64 774398 95.579384 0.5382987166242756 Product description 8889 2023-08-12 14:03:01.089303 2025-09-26 Closed Customer 8889 699420.2697109170 +8752 t 7 664988 8.148463 0.3254164269582773 Product description 8752 2022-04-16 14:03:01.089303 2023-07-27 Closed Customer 8752 942789.3342848710 +8677 t 10 290008 68.27913 0.8205166033720026 Product description 8677 2023-08-09 14:03:01.089303 2023-01-03 Closed Customer 8677 631240.6501753150 +8898 t 99 69721 29.184444 0.9151840436451124 Product description 8898 2021-12-10 14:03:01.089303 2023-03-15 Closed Customer 8898 474633.8715241730 +8753 f 21 84629 95.59778 0.34036900956995453 Product description 8753 2022-09-12 14:03:01.089303 2023-11-10 Closed Customer 8753 694624.1187519710 +8678 f 39 341071 78.80458 0.369557473999361 Product description 8678 2022-06-25 14:03:01.089303 2024-12-04 Closed Customer 8678 952841.3880925870 +8903 t 10 788607 40.522842 0.5798101048258033 Product description 8903 2023-09-22 14:03:01.089303 2024-04-07 Closed Customer 8903 668928.5427639970 +8755 f 18 462761 65.983284 0.5268967892835903 Product description 8755 2021-09-15 14:03:01.089303 2024-11-22 Processing Customer 8755 518412.5812145800 +8679 f 35 332048 9.360324 0.02108578185850618 Product description 8679 2022-11-10 14:03:01.089303 2023-05-17 Processing Customer 8679 593090.2242430140 +8908 t 72 284381 51.287937 0.26731715633212616 Product description 8908 2023-10-01 14:03:01.089303 2023-01-02 Processing Customer 8908 278046.7726672060 +8756 f 50 474007 7.157969 0.8755436034130923 Product description 8756 2023-12-22 14:03:01.089303 2025-11-06 Processing Customer 8756 850890.2775683640 +8680 t 66 956930 3.2821333 0.651965366129243 Product description 8680 2024-02-09 14:03:01.089303 2023-08-28 Closed Customer 8680 836892.3752036400 +8910 t 38 859108 75.891205 0.6372599500090885 Product description 8910 2022-09-11 14:03:01.089303 2023-07-14 Cancelled Customer 8910 551187.7970721670 +8757 f 52 719819 14.893387 0.4473241339916072 Product description 8757 2023-07-12 14:03:01.089303 2024-08-05 Closed Customer 8757 209470.9046463700 +8681 f 23 386853 75.24713 0.04878803771936546 Product description 8681 2023-05-30 14:03:01.089303 2023-02-24 Closed Customer 8681 664697.4588552860 +8913 t 94 104042 80.265 0.11361231201316357 Product description 8913 2023-12-27 14:03:01.089303 2025-08-15 Processing Customer 8913 25662.9426321808 +8761 t 53 442372 16.045725 0.49526211962499644 Product description 8761 2024-05-13 14:03:01.089303 2023-11-20 Closed Customer 8761 181943.4456626650 +8683 f 61 88131 7.561805 0.9804125792507925 Product description 8683 2022-02-09 14:03:01.089303 2023-06-22 Processing Customer 8683 414409.9533452210 +8918 f 60 39370 84.55864 0.9553733090102945 Product description 8918 2022-11-27 14:03:01.089303 2024-07-17 Closed Customer 8918 65631.5784522476 +8765 f 41 742637 93.27112 0.15906829283112955 Product description 8765 2021-08-27 14:03:01.089303 2025-02-18 Closed Customer 8765 428164.8298122780 +8686 f 11 651353 57.877537 0.9474842900915128 Product description 8686 2023-01-06 14:03:01.089303 2025-05-11 Closed Customer 8686 11768.3909046491 +8923 f 35 80954 33.71756 0.5033885426024689 Product description 8923 2022-09-02 14:03:01.089303 2023-04-12 Closed Customer 8923 29147.0721868876 +8767 t 26 990614 61.664913 0.5328525117238314 Product description 8767 2024-06-10 14:03:01.089303 2025-05-20 Closed Customer 8767 869116.1263384370 +8690 f 80 158906 55.583263 0.553032068225658 Product description 8690 2023-08-07 14:03:01.089303 2023-09-08 Closed Customer 8690 762521.6510870200 +8924 f 44 157249 36.03587 0.1723483811860369 Product description 8924 2022-01-08 14:03:01.089303 2025-07-11 Closed Customer 8924 614826.9585339610 +8771 t 70 152183 91.59896 0.5934499402467353 Product description 8771 2021-12-23 14:03:01.089303 2024-02-02 Closed Customer 8771 503660.9088842600 +8697 f 61 210644 49.87201 0.19529704678265958 Product description 8697 2021-11-23 14:03:01.089303 2024-09-30 Processing Customer 8697 572347.9776147120 +8926 t 31 447415 72.73413 0.9321228566436908 Product description 8926 2024-04-04 14:03:01.089303 2024-04-27 Closed Customer 8926 475856.2117580710 +8783 t 54 274858 8.752386 0.9260373489137947 Product description 8783 2023-05-06 14:03:01.089303 2025-04-06 Closed Customer 8783 127422.6931627820 +8698 f 91 812021 52.899586 0.2340586243402747 Product description 8698 2022-07-14 14:03:01.089303 2024-08-17 Processing Customer 8698 365281.4888203790 +8930 f 50 689043 17.684502 0.5630396078217323 Product description 8930 2022-07-09 14:03:01.089303 2025-08-03 Closed Customer 8930 978031.7903270730 +8784 f 29 837276 48.219482 0.8542379551058374 Product description 8784 2023-11-05 14:03:01.089303 2025-10-19 Closed Customer 8784 426692.3830044680 +8702 t 85 832105 55.980804 0.3035724812109386 Product description 8702 2022-11-07 14:03:01.089303 2023-01-29 Processing Customer 8702 304917.3123193040 +8931 f 7 4850 89.499664 0.7871531472716562 Product description 8931 2023-05-02 14:03:01.089303 2024-12-08 Processing Customer 8931 413675.0869511300 +8785 f 7 529997 10.988646 0.7845315973931122 Product description 8785 2024-03-26 14:03:01.089303 2024-06-20 Processing Customer 8785 43425.2948712377 +8708 f 68 597232 36.745304 0.33380090794971906 Product description 8708 2023-07-06 14:03:01.089303 2025-02-24 Closed Customer 8708 350518.0471818580 +8932 t 74 260748 54.39074 0.7641847205847618 Product description 8932 2023-06-09 14:03:01.089303 2023-05-14 Processing Customer 8932 483380.6720602280 +8786 f 34 370523 96.27852 0.6559455720461429 Product description 8786 2021-10-25 14:03:01.089303 2025-02-14 Processing Customer 8786 872657.4955348990 +8711 f 39 64333 57.469303 0.686411312297313 Product description 8711 2024-03-26 14:03:01.089303 2025-10-07 Processing Customer 8711 209498.3672353550 +8933 t 67 756445 44.359802 0.13671492655617 Product description 8933 2024-03-09 14:03:01.089303 2023-10-07 Closed Customer 8933 730253.9739983730 +8787 t 30 770145 66.45168 0.5580576729184799 Product description 8787 2022-03-28 14:03:01.089303 2024-05-13 Processing Customer 8787 374246.6662909400 +8713 f 77 462661 23.194822 0.9090159871154064 Product description 8713 2024-03-11 14:03:01.089303 2024-02-16 Processing Customer 8713 854780.3229762320 +8934 t 95 414273 17.511328 0.8220035705728286 Product description 8934 2023-04-25 14:03:01.089303 2023-01-20 Processing Customer 8934 913837.8897385810 +8789 f 37 385332 12.877936 0.869382721811796 Product description 8789 2022-11-02 14:03:01.089303 2025-05-30 Processing Customer 8789 882335.5679918630 +8716 f 13 372367 76.13567 0.7404049561980806 Product description 8716 2023-12-22 14:03:01.089303 2024-10-21 Processing Customer 8716 341934.6153565930 +8939 t 95 690537 41.675934 0.05842421507231066 Product description 8939 2023-03-02 14:03:01.089303 2025-12-26 Closed Customer 8939 427021.9703829950 +8790 t 9 773725 98.27921 0.3334483140186535 Product description 8790 2023-10-16 14:03:01.089303 2025-03-25 Closed Customer 8790 99602.1082367484 +8717 t 82 598065 28.87967 0.05692461198821874 Product description 8717 2022-03-15 14:03:01.089303 2025-01-11 Processing Customer 8717 5007.1374457232 +8941 f 43 946367 73.95368 0.5869850533690446 Product description 8941 2023-05-05 14:03:01.089303 2023-11-18 Closed Customer 8941 317822.2820275140 +8792 t 20 631787 68.71428 0.599766350815635 Product description 8792 2023-03-11 14:03:01.089303 2024-08-19 Processing Customer 8792 530348.7931483100 +8720 f 100 818115 50.2347 0.8274673555323808 Product description 8720 2023-12-24 14:03:01.089303 2025-01-16 Processing Customer 8720 177506.0264174190 +8942 t 11 169012 28.7844 0.783362927737091 Product description 8942 2024-06-30 14:03:01.089303 2025-11-05 Processing Customer 8942 112481.8345863330 +8793 f 43 262838 61.692173 0.9884862493221505 Product description 8793 2021-10-15 14:03:01.089303 2024-11-20 Processing Customer 8793 93906.7677432597 +8722 f 24 734565 43.943825 0.40900416684685226 Product description 8722 2022-07-02 14:03:01.089303 2025-02-22 Closed Customer 8722 399867.3033826420 +8945 f 47 228671 58.232647 0.004136859991373143 Product description 8945 2023-12-27 14:03:01.089303 2025-09-09 Closed Customer 8945 119578.1565670660 +8800 f 24 463264 1.4602277 0.9964064830653783 Product description 8800 2022-04-13 14:03:01.089303 2023-03-06 Processing Customer 8800 45672.0467108660 +8724 t 67 139686 94.67437 0.8447608324334404 Product description 8724 2022-08-17 14:03:01.089303 2024-12-27 Processing Customer 8724 325121.3129798030 +8950 t 13 449876 53.718018 0.3920073812939542 Product description 8950 2024-05-05 14:03:01.089303 2023-04-09 Processing Customer 8950 465308.2932280340 +8807 f 9 304152 18.640373 0.3022647948175461 Product description 8807 2022-02-21 14:03:01.089303 2024-10-02 Closed Customer 8807 423259.2535600720 +8727 t 73 19606 74.77457 0.8183434890156285 Product description 8727 2022-09-11 14:03:01.089303 2025-03-13 Closed Customer 8727 707699.8437642960 +8951 f 24 571357 6.3977313 0.3110025981852793 Product description 8951 2024-01-19 14:03:01.089303 2024-07-24 Processing Customer 8951 338463.2190970580 +8813 t 17 425729 65.91755 0.08292490502319794 Product description 8813 2023-02-17 14:03:01.089303 2025-02-17 Processing Customer 8813 272279.1823085270 +8730 f 26 719295 10.05463 0.7761215688323695 Product description 8730 2024-07-12 14:03:01.089303 2025-10-23 Closed Customer 8730 115672.9845808260 +8961 f 14 47361 4.808519 0.9956473176254015 Product description 8961 2024-02-28 14:03:01.089303 2025-08-28 Processing Customer 8961 647084.6105973180 +8814 f 43 58388 89.717 0.16030947999961143 Product description 8814 2024-01-24 14:03:01.089303 2025-01-06 Closed Customer 8814 555416.3730583750 +8733 f 26 696329 0.43110758 0.5347473388567145 Product description 8733 2024-02-27 14:03:01.089303 2024-12-17 Closed Customer 8733 10102.8478018677 +8962 t 70 702397 69.52141 0.5813375289478948 Product description 8962 2022-04-15 14:03:01.089303 2023-11-05 Closed Customer 8962 374613.2035795780 +8817 f 12 452266 64.64662 0.36660217843103027 Product description 8817 2021-11-20 14:03:01.089303 2024-06-18 Processing Customer 8817 943482.5667662670 +8739 f 76 720611 99.84197 0.2961672033696523 Product description 8739 2023-08-05 14:03:01.089303 2024-03-22 Cancelled Customer 8739 434017.7626328660 +8964 t 21 8323 95.56309 0.8200551722791296 Product description 8964 2022-08-14 14:03:01.089303 2023-05-02 Closed Customer 8964 301864.6630832650 +8818 t 1 932263 47.171356 0.893766628270555 Product description 8818 2024-05-25 14:03:01.089303 2024-09-25 Processing Customer 8818 173389.1880738800 +8742 t 6 217094 92.65521 0.9179644893161054 Product description 8742 2023-08-14 14:03:01.089303 2023-09-01 Processing Customer 8742 773618.4016122930 +8966 f 34 231669 23.090532 0.5883334612677054 Product description 8966 2024-07-10 14:03:01.089303 2024-05-31 Processing Customer 8966 201900.0753433530 +8824 f 53 133949 64.53422 0.22638878012811148 Product description 8824 2022-02-20 14:03:01.089303 2024-11-16 Processing Customer 8824 878368.3462794190 +8743 t 93 44493 87.79067 0.8044050026591307 Product description 8743 2023-05-18 14:03:01.089303 2023-05-31 Cancelled Customer 8743 91787.1985277898 +8967 f 18 437118 77.95645 0.93655353170438 Product description 8967 2024-06-06 14:03:01.089303 2023-07-27 Closed Customer 8967 998928.8218030770 +8826 t 15 613350 36.911236 0.7050545691628969 Product description 8826 2022-07-15 14:03:01.089303 2025-09-22 Closed Customer 8826 419265.4712443410 +8750 f 61 27426 63.884842 0.6250891905168636 Product description 8750 2023-04-11 14:03:01.089303 2024-06-27 Processing Customer 8750 889637.5471193640 +8972 f 36 769799 9.590704 0.7688280563157228 Product description 8972 2022-07-04 14:03:01.089303 2024-03-11 Closed Customer 8972 756827.8826436840 +8827 t 98 325382 26.836544 0.06108409391261915 Product description 8827 2021-12-31 14:03:01.089303 2025-01-12 Processing Customer 8827 46273.4216534848 +8754 f 71 370774 59.066235 0.9265729920790982 Product description 8754 2023-07-03 14:03:01.089303 2025-03-07 Processing Customer 8754 717523.3379630230 +8977 f 79 799901 50.974766 0.13448812821278366 Product description 8977 2022-01-01 14:03:01.089303 2023-05-05 Closed Customer 8977 843025.6832995300 +8831 f 17 145740 46.972088 0.41002590042901943 Product description 8831 2022-03-11 14:03:01.089303 2023-12-29 Closed Customer 8831 769180.8135893120 +8758 f 31 252303 3.3504446 0.30471954125211553 Product description 8758 2023-09-04 14:03:01.089303 2024-09-12 Closed Customer 8758 917771.0464138610 +8979 f 97 907252 17.570879 0.45078172323230703 Product description 8979 2022-01-23 14:03:01.089303 2023-12-03 Processing Customer 8979 231234.1174320170 +8832 t 3 332953 53.92919 0.7000343000559397 Product description 8832 2023-01-17 14:03:01.089303 2023-11-11 Closed Customer 8832 154436.6647291360 +8759 t 26 952251 63.385445 0.26356325397335567 Product description 8759 2021-08-14 14:03:01.089303 2024-10-20 Processing Customer 8759 446628.8783477880 +8981 t 3 391471 46.174168 0.43926463110181047 Product description 8981 2023-06-26 14:03:01.089303 2025-12-26 Processing Customer 8981 783097.1630323520 +8834 t 59 211668 87.246284 0.17456900930220343 Product description 8834 2023-04-08 14:03:01.089303 2025-03-15 Processing Customer 8834 498527.9009255630 +8760 t 97 855599 37.254387 0.8660432704522556 Product description 8760 2023-05-03 14:03:01.089303 2025-03-12 Closed Customer 8760 459001.1953721530 +8985 f 59 26760 79.58994 0.15283925471825555 Product description 8985 2023-03-10 14:03:01.089303 2024-02-16 Processing Customer 8985 102736.3760608540 +8835 f 55 462883 7.6729455 0.5144034856659729 Product description 8835 2022-09-05 14:03:01.089303 2024-09-30 Closed Customer 8835 429356.8409734870 +8762 t 40 56992 20.719809 0.0440535265328883 Product description 8762 2022-05-24 14:03:01.089303 2023-04-19 Processing Customer 8762 283073.5123253800 +8999 t 61 451947 93.27264 0.4079952182090132 Product description 8999 2022-05-20 14:03:01.089303 2025-01-16 Cancelled Customer 8999 342598.8309562800 +8840 t 68 778698 24.082586 0.0504729667749757 Product description 8840 2022-09-05 14:03:01.089303 2025-05-12 Processing Customer 8840 874643.6537134590 +8763 f 17 77700 8.863356 0.4704394082698862 Product description 8763 2023-09-14 14:03:01.089303 2023-02-22 Closed Customer 8763 732101.1594100070 +9000 f 3 658959 43.447697 0.020562498025640252 Product description 9000 2024-07-23 14:03:01.089303 2024-05-19 Processing Customer 9000 726285.5586785090 +8842 f 62 314622 18.39022 0.22173309621502568 Product description 8842 2023-09-30 14:03:01.089303 2023-11-03 Processing Customer 8842 34198.3274862834 +8764 t 61 575766 11.792299 0.8742253551481234 Product description 8764 2021-12-29 14:03:01.089303 2025-02-25 Closed Customer 8764 966877.5779524380 +9002 t 21 358295 51.601856 0.04289263815014266 Product description 9002 2022-06-25 14:03:01.089303 2024-07-26 Processing Customer 9002 819702.1838559840 +8843 f 94 738938 64.01464 0.3832059890628585 Product description 8843 2022-09-03 14:03:01.089303 2025-11-26 Closed Customer 8843 989104.8245878660 +8766 f 4 304703 63.29499 0.08889786233470787 Product description 8766 2023-12-31 14:03:01.089303 2024-07-29 Processing Customer 8766 274544.5731003850 +9006 t 14 996217 33.05429 0.5576759548929573 Product description 9006 2023-04-01 14:03:01.089303 2023-03-04 Closed Customer 9006 451547.8913127250 +8847 f 64 886178 55.429314 0.33234972769823656 Product description 8847 2022-05-02 14:03:01.089303 2025-09-16 Closed Customer 8847 808623.3438435110 +8769 f 55 94780 34.20669 0.5077674301044048 Product description 8769 2023-10-18 14:03:01.089303 2024-04-18 Processing Customer 8769 865112.3565508030 +9009 t 70 22029 79.411415 0.30202502800536735 Product description 9009 2022-07-15 14:03:01.089303 2024-04-04 Processing Customer 9009 874563.5320978410 +8848 t 96 669622 95.25321 0.23805297902512734 Product description 8848 2023-10-07 14:03:01.089303 2025-08-22 Processing Customer 8848 80777.0826415570 +8770 f 49 766244 87.418335 0.771662464646699 Product description 8770 2023-04-28 14:03:01.089303 2024-03-20 Closed Customer 8770 676848.9543683240 +9011 t 69 724417 99.200005 0.10945837626670141 Product description 9011 2023-03-01 14:03:01.089303 2024-03-20 Processing Customer 9011 826982.3076085140 +8849 f 8 7851 9.72377 0.1535617825701152 Product description 8849 2022-02-07 14:03:01.089303 2024-10-29 Closed Customer 8849 965141.3577809680 +8774 f 44 292539 95.66996 0.3439946288369775 Product description 8774 2024-04-28 14:03:01.089303 2023-02-04 Cancelled Customer 8774 198188.9019268230 +9013 t 11 790009 49.308773 0.8805387000636316 Product description 9013 2023-09-04 14:03:01.089303 2024-05-09 Processing Customer 9013 81462.2426779046 +8852 f 15 274765 42.13615 0.988986279698949 Product description 8852 2022-01-25 14:03:01.089303 2023-04-11 Closed Customer 8852 511908.3959998360 +8776 f 23 948573 13.876208 0.3505274836656085 Product description 8776 2021-11-25 14:03:01.089303 2024-03-25 Processing Customer 8776 288373.8092278240 +9016 f 19 989008 26.976614 0.9405464605477363 Product description 9016 2024-01-12 14:03:01.089303 2024-07-19 Processing Customer 9016 605092.9826618410 +8853 t 22 489034 74.24484 0.9349782433196694 Product description 8853 2022-03-20 14:03:01.089303 2025-01-28 Closed Customer 8853 24522.9012067121 +8777 f 66 570796 88.95765 0.22705675444544227 Product description 8777 2024-06-11 14:03:01.089303 2024-12-07 Closed Customer 8777 619250.1295147070 +9020 f 85 372181 64.509476 0.8522335789188489 Product description 9020 2023-10-01 14:03:01.089303 2024-03-11 Closed Customer 9020 244117.6464698920 +8854 f 78 895283 36.493145 0.9579947547692882 Product description 8854 2023-02-05 14:03:01.089303 2025-05-09 Closed Customer 8854 341467.4668520060 +8779 t 88 155356 61.810028 0.6853677402276404 Product description 8779 2022-08-20 14:03:01.089303 2023-07-25 Closed Customer 8779 376958.0426312050 +9024 t 0 56903 18.18876 0.45318697287723353 Product description 9024 2022-12-25 14:03:01.089303 2023-09-12 Closed Customer 9024 658831.6450882950 +8855 t 40 501691 42.47251 0.12228931778873431 Product description 8855 2024-03-26 14:03:01.089303 2023-09-20 Processing Customer 8855 634721.5469238310 +8781 f 66 515668 27.258259 0.9521865909018032 Product description 8781 2022-08-27 14:03:01.089303 2023-02-13 Closed Customer 8781 515987.4256414520 +9025 t 77 935904 2.8936105 0.7040777778733016 Product description 9025 2024-01-29 14:03:01.089303 2025-10-31 Closed Customer 9025 90546.4502430711 +8856 f 36 997767 57.43062 0.25578371924423493 Product description 8856 2023-10-05 14:03:01.089303 2025-09-24 Closed Customer 8856 931859.8883885550 +8795 f 30 371860 72.788956 0.039310701901335676 Product description 8795 2023-07-14 14:03:01.089303 2023-10-07 Closed Customer 8795 752992.0673410580 +9028 f 27 332843 35.832726 0.30570135381340435 Product description 9028 2022-06-26 14:03:01.089303 2025-08-21 Processing Customer 9028 119849.7170459060 +8859 f 75 439604 59.712696 0.3821955426135091 Product description 8859 2023-01-27 14:03:01.089303 2024-06-10 Closed Customer 8859 271404.5652438590 +8797 t 91 933378 3.0975626 0.46684409390422843 Product description 8797 2024-07-18 14:03:01.089303 2023-03-11 Closed Customer 8797 45376.2960387358 +9031 f 67 944582 33.07005 0.6461597956027489 Product description 9031 2024-02-18 14:03:01.089303 2025-08-16 Closed Customer 9031 901017.7049135460 +8860 t 60 145995 85.5202 0.735321140333923 Product description 8860 2022-08-12 14:03:01.089303 2024-04-02 Closed Customer 8860 856991.3935323510 +8801 f 75 899921 63.25936 0.3122306355821891 Product description 8801 2024-02-22 14:03:01.089303 2024-02-12 Processing Customer 8801 791568.6795274470 +9033 f 76 433848 21.457129 0.9408680551210011 Product description 9033 2023-03-28 14:03:01.089303 2025-01-17 Processing Customer 9033 470706.4175119310 +8862 f 99 793207 3.0660915 0.4907106579759457 Product description 8862 2021-11-09 14:03:01.089303 2023-05-27 Closed Customer 8862 957555.1148761900 +8804 f 40 364312 6.0872316 0.5738360905650808 Product description 8804 2022-06-22 14:03:01.089303 2024-09-25 Closed Customer 8804 321156.6621014410 +9036 f 8 186804 63.302822 0.0004056431890049339 Product description 9036 2024-06-25 14:03:01.089303 2023-10-18 Processing Customer 9036 75190.0105862013 +8866 f 4 328413 83.48958 0.6583079760409731 Product description 8866 2022-08-02 14:03:01.089303 2023-10-22 Closed Customer 8866 821896.8634478580 +8805 t 80 603922 84.37779 0.5238895788431464 Product description 8805 2022-08-24 14:03:01.089303 2025-06-24 Closed Customer 8805 326823.0152371990 +9037 t 40 384275 62.44273 0.6102318666658988 Product description 9037 2024-05-15 14:03:01.089303 2025-01-05 Closed Customer 9037 443066.6823445040 +8869 f 44 427709 67.97101 0.8417707506895269 Product description 8869 2022-04-04 14:03:01.089303 2024-05-14 Closed Customer 8869 624247.0365902090 +8806 t 23 801554 9.008583 0.1173651821660826 Product description 8806 2023-01-12 14:03:01.089303 2024-07-11 Processing Customer 8806 988931.2124630830 +9039 t 49 771023 36.838974 0.5757197169038974 Product description 9039 2022-01-10 14:03:01.089303 2023-04-09 Processing Customer 9039 954837.4468058860 +8872 t 51 941312 79.53606 0.4250815797614109 Product description 8872 2022-11-17 14:03:01.089303 2025-07-18 Processing Customer 8872 517948.4720643440 +8809 f 71 797290 40.30966 0.8132564881845283 Product description 8809 2023-03-29 14:03:01.089303 2024-11-29 Closed Customer 8809 877902.4246939610 +9046 f 15 369263 16.422098 0.09747977794808094 Product description 9046 2022-02-26 14:03:01.089303 2025-11-02 Closed Customer 9046 156369.8066619810 +8873 t 44 212345 51.423855 0.06205936601310924 Product description 8873 2024-01-29 14:03:01.089303 2024-05-10 Processing Customer 8873 139802.7236644200 +8810 t 62 300790 70.53453 0.3348037707980751 Product description 8810 2022-06-03 14:03:01.089303 2023-07-31 Processing Customer 8810 558694.3825133340 +9047 f 31 646976 88.567696 0.15397840424765974 Product description 9047 2023-05-25 14:03:01.089303 2024-01-20 Closed Customer 9047 379051.2157039850 +8874 f 67 321818 44.1435 0.6176348357672765 Product description 8874 2022-08-06 14:03:01.089303 2025-01-09 Processing Customer 8874 624754.2737572300 +8811 t 91 49462 24.431484 0.30588961362615663 Product description 8811 2022-03-19 14:03:01.089303 2025-03-13 Cancelled Customer 8811 591103.9980735570 +9049 f 58 300849 61.45118 0.3208333731286217 Product description 9049 2022-03-05 14:03:01.089303 2024-01-31 Processing Customer 9049 954387.4897310150 +8875 f 7 839104 32.21556 0.4184320739868994 Product description 8875 2023-06-24 14:03:01.089303 2025-11-11 Closed Customer 8875 200945.4525606780 +8812 t 89 308689 12.112895 0.48205197702461433 Product description 8812 2022-07-25 14:03:01.089303 2023-10-01 Closed Customer 8812 139726.0274971610 +9051 t 32 792573 1.6027313 0.2980096648951971 Product description 9051 2022-07-31 14:03:01.089303 2025-08-24 Closed Customer 9051 675263.4889003740 +8883 f 89 675359 21.17648 0.9433891652956561 Product description 8883 2023-10-13 14:03:01.089303 2025-11-09 Processing Customer 8883 222642.5073962130 +8815 t 9 326268 45.709076 0.9686568128886499 Product description 8815 2022-12-26 14:03:01.089303 2023-07-01 Closed Customer 8815 576400.4045167540 +9060 t 26 772266 75.037476 0.9959374520097697 Product description 9060 2022-04-14 14:03:01.089303 2025-05-05 Processing Customer 9060 927901.2723688670 +8884 f 8 211455 8.860236 0.6116459060162711 Product description 8884 2023-04-23 14:03:01.089303 2023-11-30 Closed Customer 8884 563695.2830917080 +8816 f 24 853489 81.06857 0.15589565649257864 Product description 8816 2022-12-22 14:03:01.089303 2025-01-02 Closed Customer 8816 891037.3689849680 +9065 t 45 770110 37.86472 0.7596817268853115 Product description 9065 2021-11-06 14:03:01.089303 2024-08-25 Processing Customer 9065 813323.7686008140 +8885 f 28 65772 80.00888 0.18726081860363308 Product description 8885 2023-01-23 14:03:01.089303 2023-03-29 Closed Customer 8885 31104.7036894756 +8819 t 86 910038 30.206982 0.5927692876312243 Product description 8819 2022-11-18 14:03:01.089303 2025-10-15 Closed Customer 8819 550187.5720323500 +9067 f 28 193384 71.18142 0.18513756381200608 Product description 9067 2021-09-30 14:03:01.089303 2024-03-13 Closed Customer 9067 858422.0143361380 +8890 f 47 251860 7.447847 0.4777457143920216 Product description 8890 2024-02-17 14:03:01.089303 2024-07-29 Processing Customer 8890 615702.4920864450 +8820 t 58 521685 49.59447 0.9784940042545749 Product description 8820 2022-09-02 14:03:01.089303 2023-11-28 Closed Customer 8820 151513.5771060020 +9068 f 22 57827 42.660614 0.0019761441008583347 Product description 9068 2022-09-13 14:03:01.089303 2025-06-01 Processing Customer 9068 768236.5218161810 +8891 t 93 927231 80.037155 0.4276960072646716 Product description 8891 2021-12-31 14:03:01.089303 2025-12-04 Processing Customer 8891 362375.1566302610 +8825 f 92 12017 11.190387 0.4671291640659483 Product description 8825 2022-05-03 14:03:01.089303 2024-11-09 Closed Customer 8825 995207.0701566460 +9070 t 16 983849 62.217525 0.16762449825796466 Product description 9070 2022-06-17 14:03:01.089303 2024-07-22 Processing Customer 9070 879080.8768230780 +8893 t 89 848744 69.60054 0.7080324139298071 Product description 8893 2023-07-03 14:03:01.089303 2023-05-11 Processing Customer 8893 193159.8007002750 +8828 f 43 551233 91.43649 0.2754570405703767 Product description 8828 2023-11-10 14:03:01.089303 2023-01-17 Closed Customer 8828 259704.6914746100 +9073 t 34 754514 32.28945 0.27003633633194823 Product description 9073 2022-06-18 14:03:01.089303 2024-01-31 Closed Customer 9073 262737.2365225010 +8901 t 57 238697 91.21306 0.9481354956792103 Product description 8901 2022-01-16 14:03:01.089303 2024-09-11 Processing Customer 8901 839713.2663852850 +8829 t 14 753598 21.950974 0.925932451025627 Product description 8829 2023-11-10 14:03:01.089303 2024-11-17 Closed Customer 8829 123244.8840065170 +9080 t 68 447830 8.032374 0.912095561920367 Product description 9080 2021-10-04 14:03:01.089303 2025-08-19 Closed Customer 9080 263800.0654158180 +8902 f 45 869801 69.29158 0.16976380343688646 Product description 8902 2023-11-08 14:03:01.089303 2024-03-10 Closed Customer 8902 227704.7055661010 +8830 t 17 4048 54.030354 0.600115145331106 Product description 8830 2022-08-10 14:03:01.089303 2023-07-11 Closed Customer 8830 452399.2514122170 +9081 f 66 741856 97.585556 0.3473889404897008 Product description 9081 2023-10-05 14:03:01.089303 2024-04-18 Processing Customer 9081 771962.6923795780 +8906 t 49 74471 54.851425 0.08134232375076067 Product description 8906 2022-04-22 14:03:01.089303 2025-02-04 Closed Customer 8906 531811.4926539260 +8846 t 44 635671 46.71968 0.8691389333590216 Product description 8846 2024-01-28 14:03:01.089303 2024-08-16 Closed Customer 8846 839435.2626130730 +9082 f 47 241585 67.33195 0.9968797395196418 Product description 9082 2022-03-20 14:03:01.089303 2025-06-08 Processing Customer 9082 554485.1643683410 +8907 t 40 342739 44.7969 0.8104687977709446 Product description 8907 2023-01-10 14:03:01.089303 2023-09-29 Closed Customer 8907 190761.3404372380 +8850 t 68 525570 41.784065 0.8404013405919848 Product description 8850 2022-05-10 14:03:01.089303 2025-12-09 Closed Customer 8850 979643.1154061050 +9084 f 97 680118 90.842896 0.537683403344694 Product description 9084 2024-04-13 14:03:01.089303 2023-04-14 Processing Customer 9084 263005.4488311120 +8909 t 26 37894 35.132767 0.7158514364385695 Product description 8909 2022-08-27 14:03:01.089303 2024-05-13 Closed Customer 8909 593582.9868728140 +8864 f 19 540453 64.40415 0.3357948415337795 Product description 8864 2024-04-17 14:03:01.089303 2023-09-01 Closed Customer 8864 952599.2043488500 +9086 f 74 376268 48.738205 0.032560662366662996 Product description 9086 2024-06-10 14:03:01.089303 2024-04-05 Closed Customer 9086 488777.0661016870 +8914 f 88 633839 15.855357 0.5849669913436557 Product description 8914 2023-07-20 14:03:01.089303 2025-12-27 Closed Customer 8914 69147.7903344726 +8867 t 79 180305 3.1536648 0.7964929201862709 Product description 8867 2024-05-21 14:03:01.089303 2023-04-10 Closed Customer 8867 157513.9993954480 +9091 f 65 769705 93.610695 0.5203618050021461 Product description 9091 2023-12-21 14:03:01.089303 2023-09-27 Closed Customer 9091 671702.6425204900 +8915 t 52 6393 42.19692 0.1302662129389205 Product description 8915 2021-12-06 14:03:01.089303 2024-07-14 Closed Customer 8915 65522.2111424187 +8868 t 65 135953 22.09097 0.7880227290764701 Product description 8868 2024-05-12 14:03:01.089303 2023-10-05 Closed Customer 8868 697952.5422934140 +9096 f 97 255794 49.883564 0.1327967419370566 Product description 9096 2023-04-16 14:03:01.089303 2024-07-17 Closed Customer 9096 558993.0831038680 +8919 t 19 528990 47.641228 0.8099790835407887 Product description 8919 2023-10-22 14:03:01.089303 2025-09-09 Closed Customer 8919 456684.9669771820 +8871 f 80 74335 4.6611347 0.47486390995614514 Product description 8871 2024-01-02 14:03:01.089303 2025-02-02 Closed Customer 8871 495735.9795663480 +9100 f 54 698948 87.336655 0.8697574806950072 Product description 9100 2022-02-20 14:03:01.089303 2025-02-17 Cancelled Customer 9100 218123.3991518280 +8920 f 67 400342 67.845795 0.9141482810694157 Product description 8920 2024-06-02 14:03:01.089303 2023-05-22 Closed Customer 8920 595636.8139104140 +8877 f 10 365664 53.99136 0.7607862944372492 Product description 8877 2022-10-09 14:03:01.089303 2023-07-11 Processing Customer 8877 404849.3113763310 +9102 f 25 509111 94.355606 0.7317454731563551 Product description 9102 2023-07-30 14:03:01.089303 2023-11-21 Closed Customer 9102 638300.5976662450 +8922 t 14 784325 22.888597 0.8588163881810473 Product description 8922 2023-08-07 14:03:01.089303 2024-07-26 Cancelled Customer 8922 635607.6742550060 +8878 t 56 91765 94.07449 0.028073700778893595 Product description 8878 2022-05-21 14:03:01.089303 2023-08-18 Closed Customer 8878 928823.5825349180 +9105 t 96 798629 73.550224 0.057481982397373343 Product description 9105 2024-04-06 14:03:01.089303 2024-11-09 Closed Customer 9105 860425.1057840100 +8927 t 90 50578 64.90901 0.8153402481949605 Product description 8927 2021-11-22 14:03:01.089303 2023-06-07 Cancelled Customer 8927 911078.4921596920 +8880 t 83 778082 61.515636 0.35796589289988034 Product description 8880 2024-06-27 14:03:01.089303 2024-10-05 Processing Customer 8880 180834.6301619040 +9107 t 93 341299 37.06977 0.7190603111789677 Product description 9107 2021-11-15 14:03:01.089303 2025-09-19 Closed Customer 9107 445729.1897656290 +8929 f 33 541333 85.711876 0.9105579788896421 Product description 8929 2022-11-28 14:03:01.089303 2023-01-21 Processing Customer 8929 376291.9613860700 +8881 t 65 782931 16.600513 0.5622388091155592 Product description 8881 2023-10-26 14:03:01.089303 2024-08-05 Processing Customer 8881 216863.4512759410 +9108 f 30 625200 32.610447 0.39255056943720135 Product description 9108 2021-10-27 14:03:01.089303 2025-07-11 Processing Customer 9108 499352.1392885820 +8935 t 85 658828 54.422512 0.8064910604358673 Product description 8935 2022-02-28 14:03:01.089303 2024-11-16 Processing Customer 8935 350982.0296379510 +8882 t 46 227261 35.237583 0.7953007783472934 Product description 8882 2024-02-29 14:03:01.089303 2023-05-26 Processing Customer 8882 92019.2756966927 +9113 f 19 329372 55.926067 0.4088336272965485 Product description 9113 2023-08-17 14:03:01.089303 2023-03-25 Closed Customer 9113 972225.9149428400 +8936 f 50 206400 4.8142943 0.5859927223381902 Product description 8936 2022-02-18 14:03:01.089303 2024-09-28 Closed Customer 8936 40086.7057532075 +8886 t 38 158857 33.478764 0.10464939876431245 Product description 8886 2022-02-23 14:03:01.089303 2025-07-16 Closed Customer 8886 70936.9914144276 +9116 f 23 355068 62.174282 0.7864153576268187 Product description 9116 2023-05-08 14:03:01.089303 2024-02-16 Closed Customer 9116 668230.9093826650 +8937 f 6 182070 8.720389 0.08522851607161641 Product description 8937 2022-05-21 14:03:01.089303 2025-12-28 Processing Customer 8937 460207.7355263990 +8887 f 34 282117 24.284653 0.45087450653856465 Product description 8887 2021-08-09 14:03:01.089303 2024-08-16 Processing Customer 8887 874632.0324287280 +9118 t 87 610326 73.03959 0.541695442249452 Product description 9118 2022-10-19 14:03:01.089303 2024-03-15 Closed Customer 9118 353215.5586193680 +8943 t 78 37038 54.520603 0.2604508353895483 Product description 8943 2023-03-29 14:03:01.089303 2023-04-23 Processing Customer 8943 973284.2193774580 +8892 t 87 920906 15.971233 0.8069702553621205 Product description 8892 2022-02-03 14:03:01.089303 2024-05-05 Closed Customer 8892 507348.9320383830 +9119 f 6 146061 1.987228 0.33069455602851505 Product description 9119 2024-03-09 14:03:01.089303 2025-03-31 Closed Customer 9119 329051.6807944850 +8944 f 95 517487 36.47183 0.9819057829256863 Product description 8944 2024-07-14 14:03:01.089303 2024-03-11 Closed Customer 8944 632761.4926152630 +8894 f 1 109297 33.10416 0.22017323355515472 Product description 8894 2024-01-09 14:03:01.089303 2024-01-10 Processing Customer 8894 417657.3183264690 +9123 f 62 117678 82.39556 0.281016194601694 Product description 9123 2024-07-31 14:03:01.089303 2023-05-27 Processing Customer 9123 380874.3843657960 +8946 f 53 417024 30.110418 0.7717984366762352 Product description 8946 2024-05-05 14:03:01.089303 2023-03-11 Closed Customer 8946 722512.6754994270 +8895 f 27 928994 21.388 0.9051026544458729 Product description 8895 2021-12-19 14:03:01.089303 2025-05-15 Closed Customer 8895 306168.4405133890 +9127 t 66 804731 54.29995 0.8017169860505327 Product description 9127 2021-12-01 14:03:01.089303 2023-11-05 Closed Customer 9127 471874.2316947340 +8947 f 4 387652 13.08262 0.2792778772491076 Product description 8947 2021-08-25 14:03:01.089303 2023-01-05 Closed Customer 8947 791986.7177354440 +8896 f 55 748733 59.864075 0.06209066773244487 Product description 8896 2024-07-16 14:03:01.089303 2025-09-11 Closed Customer 8896 393951.0954759480 +9135 t 20 735149 97.20395 0.6095834236080613 Product description 9135 2022-07-27 14:03:01.089303 2024-08-12 Processing Customer 9135 760230.4206314300 +8948 t 78 727621 6.5388374 0.40702472198353234 Product description 8948 2022-08-13 14:03:01.089303 2024-11-01 Processing Customer 8948 40576.4946328269 +8897 t 24 569293 56.260674 0.2808993170579477 Product description 8897 2021-09-09 14:03:01.089303 2025-02-13 Processing Customer 8897 408150.3743830980 +9138 t 74 628031 78.74451 0.12082011394691605 Product description 9138 2023-05-09 14:03:01.089303 2024-03-26 Processing Customer 9138 572020.8977108360 +8949 t 29 731627 84.25993 0.4922568971823651 Product description 8949 2021-10-15 14:03:01.089303 2025-07-08 Closed Customer 8949 705699.7150033660 +8899 f 1 454394 40.515297 0.5319709932070644 Product description 8899 2023-07-19 14:03:01.089303 2025-09-06 Processing Customer 8899 597499.2211161880 +9139 t 42 840727 67.461296 0.5881742070145783 Product description 9139 2023-08-07 14:03:01.089303 2024-03-24 Processing Customer 9139 689684.0952837240 +8953 t 60 51792 8.028245 0.012934425270728411 Product description 8953 2023-04-27 14:03:01.089303 2024-02-09 Closed Customer 8953 22287.1651025791 +8900 f 33 96579 57.67002 0.40496471646128285 Product description 8900 2023-07-20 14:03:01.089303 2025-10-09 Closed Customer 8900 248048.4978245130 +9147 f 0 449583 36.43288 0.2798264090896474 Product description 9147 2022-09-08 14:03:01.089303 2025-01-21 Processing Customer 9147 630911.1599256380 +8955 f 61 777261 81.49884 0.8026246683531539 Product description 8955 2021-10-10 14:03:01.089303 2025-06-25 Closed Customer 8955 844649.2164637680 +8904 t 22 13084 53.649933 0.535879990681206 Product description 8904 2024-05-18 14:03:01.089303 2025-07-02 Processing Customer 8904 956015.7507858590 +9149 f 49 860233 22.734962 0.8898457662831767 Product description 9149 2022-04-02 14:03:01.089303 2023-04-29 Closed Customer 9149 348960.1298990270 +8956 f 63 243967 34.094368 0.9124575078427313 Product description 8956 2022-10-16 14:03:01.089303 2024-08-25 Closed Customer 8956 816294.5901303510 +8905 t 86 111553 72.46194 0.48080769801534373 Product description 8905 2024-07-22 14:03:01.089303 2024-03-27 Closed Customer 8905 712949.0977929440 +9158 t 49 602290 50.684288 0.025832406446294698 Product description 9158 2023-02-15 14:03:01.089303 2025-05-21 Closed Customer 9158 301328.6112873960 +8960 t 20 727086 15.284592 0.564103680742484 Product description 8960 2024-02-23 14:03:01.089303 2025-10-31 Closed Customer 8960 526728.1744767760 +8911 f 53 834657 94.92818 0.10540764863207741 Product description 8911 2023-06-19 14:03:01.089303 2023-10-01 Closed Customer 8911 347475.8304983040 +9159 t 6 435678 58.57363 0.23240388928023847 Product description 9159 2024-03-04 14:03:01.089303 2024-05-11 Closed Customer 9159 791873.0962246910 +8965 f 88 471653 57.936775 0.3795317507971703 Product description 8965 2022-03-09 14:03:01.089303 2024-07-23 Closed Customer 8965 198683.8940999680 +8912 t 23 594535 38.869556 0.2713380141569566 Product description 8912 2021-08-07 14:03:01.089303 2025-08-29 Processing Customer 8912 905956.4684387880 +9166 f 7 14165 57.68394 0.8136057708858537 Product description 9166 2023-12-24 14:03:01.089303 2025-03-30 Closed Customer 9166 349227.2064145610 +8968 f 18 228774 30.877401 0.49304095739835674 Product description 8968 2021-10-02 14:03:01.089303 2023-05-18 Closed Customer 8968 76689.6311818819 +8916 f 78 796646 87.518906 0.42369059847784385 Product description 8916 2024-02-15 14:03:01.089303 2025-08-06 Processing Customer 8916 351165.2721374150 +9168 f 18 337083 62.868668 0.09928912442376614 Product description 9168 2023-07-18 14:03:01.089303 2025-11-24 Closed Customer 9168 763387.5784923560 +8970 f 1 497815 62.961136 0.8397633460381257 Product description 8970 2023-06-25 14:03:01.089303 2025-09-15 Closed Customer 8970 817.2507621076 +8917 f 46 499290 11.934281 0.14743327022880592 Product description 8917 2021-08-16 14:03:01.089303 2024-02-07 Processing Customer 8917 665890.2541068130 +9171 t 5 970530 1.5959761 0.3193966777811674 Product description 9171 2022-08-10 14:03:01.089303 2025-01-17 Closed Customer 9171 307855.7273668070 +8973 t 53 329732 42.941372 0.4570519333203791 Product description 8973 2022-05-02 14:03:01.089303 2025-06-24 Closed Customer 8973 291257.1927640530 +8921 f 28 759696 43.522335 0.7608825326508644 Product description 8921 2021-11-04 14:03:01.089303 2024-03-30 Processing Customer 8921 831258.2580735250 +9172 f 42 858715 35.104557 0.9006143831452569 Product description 9172 2023-10-05 14:03:01.089303 2024-01-10 Closed Customer 9172 599068.5398032270 +8975 f 31 377566 92.76055 0.3200314270948894 Product description 8975 2022-09-26 14:03:01.089303 2025-11-14 Closed Customer 8975 535011.8989208670 +8925 f 37 850620 66.93167 0.6489932371034719 Product description 8925 2023-07-20 14:03:01.089303 2023-08-15 Processing Customer 8925 773272.7137383650 +9174 f 64 293851 25.137907 0.20296375137825962 Product description 9174 2022-09-05 14:03:01.089303 2023-06-03 Cancelled Customer 9174 487855.7795949620 +8984 f 91 642426 25.587357 0.679279192614068 Product description 8984 2022-11-05 14:03:01.089303 2025-05-17 Closed Customer 8984 660794.5925460290 +8928 f 66 797463 87.846306 0.17150318762473304 Product description 8928 2023-05-04 14:03:01.089303 2023-12-29 Processing Customer 8928 784782.4298363480 +9180 f 82 455701 8.430029 0.0871540913725184 Product description 9180 2021-10-18 14:03:01.089303 2023-07-20 Closed Customer 9180 427141.4617535250 +8987 f 98 15348 82.31076 0.6954138152126745 Product description 8987 2024-02-29 14:03:01.089303 2023-07-01 Processing Customer 8987 137036.8990842760 +8938 t 6 763474 40.42085 0.3511148256622114 Product description 8938 2021-11-13 14:03:01.089303 2024-07-15 Closed Customer 8938 595580.6552879610 +9181 t 46 144534 41.903553 0.7862753263800926 Product description 9181 2021-08-23 14:03:01.089303 2025-01-14 Processing Customer 9181 386987.5712770430 +8988 t 69 731118 44.420025 0.3622955763202427 Product description 8988 2023-03-08 14:03:01.089303 2023-10-27 Processing Customer 8988 105053.3496359130 +8940 f 70 221641 52.93185 0.4280943071935859 Product description 8940 2023-09-08 14:03:01.089303 2023-06-27 Closed Customer 8940 515198.4440511300 +9182 f 40 965497 66.37014 0.4949390122972446 Product description 9182 2022-01-15 14:03:01.089303 2023-04-09 Closed Customer 9182 516114.7372772380 +8989 t 32 623474 13.135841 0.15693714119196045 Product description 8989 2024-02-05 14:03:01.089303 2023-06-27 Closed Customer 8989 764590.1701564920 +8952 f 20 377044 61.01975 0.1569585487052656 Product description 8952 2022-12-04 14:03:01.089303 2024-03-13 Closed Customer 8952 177426.1503379790 +9185 f 88 805931 44.894814 0.23602025480646205 Product description 9185 2023-05-11 14:03:01.089303 2023-07-26 Closed Customer 9185 598271.2173633150 +8990 t 63 983897 86.77689 0.45409929466278953 Product description 8990 2022-06-28 14:03:01.089303 2024-07-12 Processing Customer 8990 741522.9314705310 +8954 t 66 660958 22.82299 0.5171620572103386 Product description 8954 2024-05-10 14:03:01.089303 2025-11-15 Closed Customer 8954 824935.4892446020 +9192 t 43 493115 8.942118 0.8377618705067036 Product description 9192 2024-02-17 14:03:01.089303 2023-10-11 Processing Customer 9192 434455.6743215160 +8992 t 87 571919 94.04704 0.9324840017441716 Product description 8992 2024-03-25 14:03:01.089303 2024-12-26 Closed Customer 8992 167016.7410014150 +8957 t 40 582713 98.8492 0.6353563302943037 Product description 8957 2023-04-21 14:03:01.089303 2025-02-15 Processing Customer 8957 254051.2389486760 +9195 t 50 870880 14.999233 0.17161784990702245 Product description 9195 2022-01-17 14:03:01.089303 2023-05-28 Closed Customer 9195 335430.1367132240 +8998 f 91 371138 99.44632 0.10821181832722715 Product description 8998 2022-03-05 14:03:01.089303 2023-04-12 Processing Customer 8998 745759.4216125790 +8958 t 73 769430 66.41646 0.29687245405497364 Product description 8958 2022-10-15 14:03:01.089303 2025-01-17 Cancelled Customer 8958 464793.5793794140 +9198 t 71 569120 50.93698 0.5436212511216993 Product description 9198 2023-10-09 14:03:01.089303 2025-10-03 Closed Customer 9198 766939.1441303650 +9007 t 51 282886 39.579212 0.47263698320365677 Product description 9007 2024-04-14 14:03:01.089303 2023-12-02 Processing Customer 9007 525306.7701156160 +8959 t 3 625703 71.829254 0.4888377172134071 Product description 8959 2022-12-18 14:03:01.089303 2023-12-20 Closed Customer 8959 716328.2797768210 +9201 t 35 940211 64.41222 0.013999981439397402 Product description 9201 2022-02-01 14:03:01.089303 2023-07-13 Closed Customer 9201 333958.1033032570 +9008 t 93 881079 42.74152 0.48782404628288845 Product description 9008 2023-04-25 14:03:01.089303 2025-06-07 Processing Customer 9008 274586.7910834260 +8963 f 38 918244 60.648563 0.40688063738872415 Product description 8963 2023-04-04 14:03:01.089303 2025-04-26 Cancelled Customer 8963 622699.8873315350 +9205 t 84 520694 86.75221 0.1304655236559924 Product description 9205 2023-03-10 14:03:01.089303 2023-10-28 Closed Customer 9205 517847.3233766460 +9010 t 21 640544 79.84185 0.10334329778945062 Product description 9010 2023-11-28 14:03:01.089303 2025-09-18 Closed Customer 9010 95250.5402129553 +8969 t 61 843529 98.11686 0.3422125004947354 Product description 8969 2024-01-28 14:03:01.089303 2025-06-24 Processing Customer 8969 579596.1260980320 +9207 f 100 959044 44.058144 0.8014670552894074 Product description 9207 2022-04-20 14:03:01.089303 2023-02-16 Closed Customer 9207 239751.7979938720 +9019 f 45 136262 42.938854 0.9155941150931781 Product description 9019 2024-06-14 14:03:01.089303 2025-03-30 Cancelled Customer 9019 878031.8272355250 +8971 t 49 117897 75.18032 0.6282510251331708 Product description 8971 2023-02-13 14:03:01.089303 2023-12-25 Closed Customer 8971 701758.3352950680 +9209 t 30 273296 27.185896 0.2226997644475901 Product description 9209 2021-12-08 14:03:01.089303 2024-11-17 Closed Customer 9209 273089.1060254560 +9022 f 76 331354 12.279699 0.44121775627867876 Product description 9022 2024-06-18 14:03:01.089303 2025-02-06 Closed Customer 9022 215406.8353475510 +8974 t 59 14791 25.78558 0.4198062275388814 Product description 8974 2024-02-19 14:03:01.089303 2025-09-02 Processing Customer 8974 513730.0657271810 +9211 t 9 469901 36.254364 0.7959978939735919 Product description 9211 2022-07-22 14:03:01.089303 2024-01-10 Closed Customer 9211 582584.6861755330 +9029 t 7 601545 75.56209 0.8787418490260812 Product description 9029 2024-06-20 14:03:01.089303 2025-08-01 Processing Customer 9029 517344.8505682430 +8976 f 63 547270 44.616917 0.34906419410049594 Product description 8976 2024-04-05 14:03:01.089303 2025-05-12 Closed Customer 8976 612658.3834354590 +9215 t 67 868296 48.550068 0.4859334795899528 Product description 9215 2021-11-06 14:03:01.089303 2023-08-24 Closed Customer 9215 193123.5800673970 +9030 t 52 129645 36.303196 0.7374175710154169 Product description 9030 2022-01-02 14:03:01.089303 2023-10-23 Processing Customer 9030 870783.9641862310 +8978 t 50 702620 76.25575 0.020360818806278047 Product description 8978 2021-12-22 14:03:01.089303 2024-05-29 Closed Customer 8978 869388.2489095510 +9224 f 15 668057 81.08729 0.6736368710794522 Product description 9224 2023-12-09 14:03:01.089303 2023-11-14 Closed Customer 9224 585080.4949907310 +9032 t 56 263962 66.35682 0.9310736040614067 Product description 9032 2024-05-25 14:03:01.089303 2025-04-11 Processing Customer 9032 786815.5554179100 +8980 f 15 248851 62.976704 0.6349363526266139 Product description 8980 2021-12-01 14:03:01.089303 2023-10-10 Closed Customer 8980 634144.9938664140 +9227 f 39 501528 99.893906 0.14121757387398048 Product description 9227 2022-09-19 14:03:01.089303 2024-06-12 Processing Customer 9227 809561.4952844450 +9034 t 40 33150 78.807045 0.2147560315508379 Product description 9034 2024-02-20 14:03:01.089303 2024-11-10 Closed Customer 9034 873833.6785558830 +8982 f 25 677907 71.554474 0.09908181828592078 Product description 8982 2024-08-01 14:03:01.089303 2025-05-27 Closed Customer 8982 906213.3297036970 +9229 f 92 927690 88.52459 0.4841115455693199 Product description 9229 2022-09-01 14:03:01.089303 2023-10-29 Processing Customer 9229 332003.0416121080 +9035 t 5 450631 44.009514 0.377493859008009 Product description 9035 2024-02-26 14:03:01.089303 2025-04-22 Processing Customer 9035 136371.4926014620 +8983 f 1 533767 14.268442 0.8512311753027326 Product description 8983 2023-05-08 14:03:01.089303 2023-04-28 Cancelled Customer 8983 736208.5042581050 +9231 t 22 186154 33.61486 0.13118615602703443 Product description 9231 2023-03-15 14:03:01.089303 2023-10-16 Closed Customer 9231 617014.4795099650 +9040 f 12 571123 10.518833 0.20890390524056457 Product description 9040 2023-01-04 14:03:01.089303 2023-03-14 Closed Customer 9040 63355.8185177634 +8986 f 22 739507 7.554554 0.7656267625278872 Product description 8986 2023-04-26 14:03:01.089303 2024-10-17 Closed Customer 8986 322103.9205937150 +9236 t 26 433364 88.33234 0.8927797511022675 Product description 9236 2024-04-29 14:03:01.089303 2023-07-15 Processing Customer 9236 266867.4269962390 +9042 f 28 765706 33.85917 0.6310093335660945 Product description 9042 2022-10-16 14:03:01.089303 2025-09-29 Closed Customer 9042 510072.9101106300 +8991 t 84 782819 17.436695 0.9675239515030754 Product description 8991 2022-12-13 14:03:01.089303 2024-05-03 Processing Customer 8991 963679.4525040420 +9238 t 1 917613 78.31133 0.6715028098418898 Product description 9238 2024-02-11 14:03:01.089303 2025-09-15 Processing Customer 9238 709288.1585495010 +9043 t 20 825478 80.50864 0.7153715051078571 Product description 9043 2023-10-29 14:03:01.089303 2025-05-27 Processing Customer 9043 751433.6081866300 +8993 f 73 573777 32.131447 0.8187710342208305 Product description 8993 2021-11-20 14:03:01.089303 2025-04-09 Closed Customer 8993 378833.6520572490 +9243 t 95 308159 11.859779 0.11461535553824831 Product description 9243 2023-08-29 14:03:01.089303 2025-06-10 Processing Customer 9243 113603.4701283220 +9045 t 30 440353 10.759901 0.6603751726853453 Product description 9045 2023-04-16 14:03:01.089303 2023-01-28 Processing Customer 9045 331440.8732914060 +8994 t 41 70707 56.503296 0.620363712067153 Product description 8994 2023-06-28 14:03:01.089303 2025-11-19 Closed Customer 8994 86796.4442712896 +9244 f 70 680573 20.257376 0.582788457126405 Product description 9244 2023-06-15 14:03:01.089303 2025-11-05 Processing Customer 9244 14942.6115402953 +9048 t 85 126401 16.632523 0.9871235080962357 Product description 9048 2022-01-05 14:03:01.089303 2023-07-30 Processing Customer 9048 476506.2947266900 +8995 f 18 743388 89.59677 0.7076106752377314 Product description 8995 2022-04-20 14:03:01.089303 2024-09-10 Processing Customer 8995 590701.4552793120 +9246 t 98 709676 34.96781 0.7990057790796641 Product description 9246 2022-09-22 14:03:01.089303 2024-11-28 Closed Customer 9246 551398.5285249950 +9050 t 83 511954 77.91461 0.39021818605978 Product description 9050 2024-02-06 14:03:01.089303 2024-11-23 Closed Customer 9050 385202.7793039600 +8996 t 83 781757 87.367035 0.43066735163217373 Product description 8996 2022-10-22 14:03:01.089303 2023-11-27 Closed Customer 8996 190132.7739488220 +9253 f 47 202809 75.28417 0.5398804542738347 Product description 9253 2024-01-17 14:03:01.089303 2024-11-24 Processing Customer 9253 866767.0615450650 +9052 f 56 992207 97.53545 0.4989575588035571 Product description 9052 2021-11-29 14:03:01.089303 2025-02-18 Closed Customer 9052 932499.4985911700 +8997 f 61 288270 33.782696 0.6019736889565053 Product description 8997 2022-10-15 14:03:01.089303 2025-02-22 Closed Customer 8997 933596.8834921680 +9254 t 47 128378 17.641088 0.2625659085778267 Product description 9254 2022-07-31 14:03:01.089303 2025-03-30 Processing Customer 9254 852671.3441706980 +9062 f 20 173108 12.28241 0.8521550828590101 Product description 9062 2022-07-27 14:03:01.089303 2023-09-22 Processing Customer 9062 209683.7528777440 +9001 t 34 389114 75.25007 0.7271551078104252 Product description 9001 2024-01-01 14:03:01.089303 2023-12-12 Closed Customer 9001 304443.9154813750 +9259 t 15 896963 29.122414 0.8540666621541035 Product description 9259 2021-10-21 14:03:01.089303 2023-12-13 Closed Customer 9259 783655.6730994070 +9063 f 54 798598 87.83232 0.7583031165985439 Product description 9063 2021-08-10 14:03:01.089303 2023-11-29 Processing Customer 9063 47900.9569665863 +9003 f 53 629786 37.414955 0.012781553812345692 Product description 9003 2023-09-22 14:03:01.089303 2025-06-06 Closed Customer 9003 831048.3199234930 +9266 t 93 7938 82.533516 0.4350113328852956 Product description 9266 2023-01-23 14:03:01.089303 2024-08-30 Processing Customer 9266 169764.0826274340 +9066 t 71 383696 20.761295 0.09952305132052786 Product description 9066 2022-11-13 14:03:01.089303 2023-04-08 Closed Customer 9066 703096.0004644770 +9004 t 50 113147 51.552177 0.5072887895237059 Product description 9004 2024-07-21 14:03:01.089303 2024-04-11 Processing Customer 9004 585995.6296445180 +9267 t 42 509433 78.445816 0.10520547145799952 Product description 9267 2023-07-10 14:03:01.089303 2025-12-05 Closed Customer 9267 58173.1167622515 +9069 t 86 123438 84.79726 0.810035999382098 Product description 9069 2022-05-25 14:03:01.089303 2024-07-15 Closed Customer 9069 820448.0594237680 +9005 t 97 292745 37.45389 0.7664488989128557 Product description 9005 2023-06-15 14:03:01.089303 2025-08-22 Processing Customer 9005 1096.2323116068 +9268 f 22 580881 87.80905 0.6735429122698378 Product description 9268 2022-01-03 14:03:01.089303 2025-07-20 Processing Customer 9268 808394.1092785200 +9071 t 1 820097 11.211479 0.8743417723296112 Product description 9071 2021-11-09 14:03:01.089303 2024-09-20 Closed Customer 9071 870584.3095107820 +9012 t 69 227137 1.9025733 0.26461586395583225 Product description 9012 2022-11-28 14:03:01.089303 2025-12-17 Processing Customer 9012 287162.5210772950 +9279 f 19 140674 83.07127 0.42785971508913434 Product description 9279 2021-10-22 14:03:01.089303 2023-09-25 Closed Customer 9279 400832.4779551520 +9072 f 80 345985 15.080175 0.8603767640233038 Product description 9072 2023-10-15 14:03:01.089303 2025-02-04 Processing Customer 9072 926427.4675999930 +9014 f 64 885396 51.188457 0.12055991174031533 Product description 9014 2022-04-08 14:03:01.089303 2025-04-02 Closed Customer 9014 221584.1941109570 +9280 t 7 819697 76.67419 0.910463646321773 Product description 9280 2021-10-25 14:03:01.089303 2023-12-01 Closed Customer 9280 128813.0830438340 +9074 f 72 990526 13.079437 0.6659934182716363 Product description 9074 2024-05-14 14:03:01.089303 2023-04-03 Processing Customer 9074 29301.0712226973 +9015 t 29 644008 60.26492 0.1723609834856532 Product description 9015 2022-09-12 14:03:01.089303 2023-05-22 Processing Customer 9015 756704.4185007920 +9286 t 79 240462 22.191923 0.420340618192661 Product description 9286 2024-03-02 14:03:01.089303 2024-09-16 Closed Customer 9286 880469.4460187400 +9075 f 37 717356 73.421486 0.1977677541738565 Product description 9075 2023-06-19 14:03:01.089303 2025-09-27 Processing Customer 9075 233515.2418400810 +9017 t 74 473774 43.857845 0.9035150070701121 Product description 9017 2022-01-25 14:03:01.089303 2023-06-05 Processing Customer 9017 588641.6992585840 +9288 t 29 816549 61.037 0.07629168198373293 Product description 9288 2021-12-06 14:03:01.089303 2023-01-03 Processing Customer 9288 283236.4569372990 +9076 t 28 496300 14.475643 0.9442231857560408 Product description 9076 2024-06-17 14:03:01.089303 2024-01-21 Processing Customer 9076 206360.0413758660 +9018 t 54 586044 55.394657 0.24307434171495146 Product description 9018 2024-06-30 14:03:01.089303 2024-03-03 Closed Customer 9018 352312.0640997950 +9291 t 26 95862 53.383682 0.9576039874351281 Product description 9291 2022-06-14 14:03:01.089303 2025-04-29 Closed Customer 9291 372405.8319635230 +9077 f 3 485373 49.64852 0.9982496532447307 Product description 9077 2022-05-10 14:03:01.089303 2025-01-21 Closed Customer 9077 520772.3296090730 +9021 t 29 166096 79.45025 0.04357215171287976 Product description 9021 2021-11-24 14:03:01.089303 2025-07-06 Closed Customer 9021 727215.5915617550 +9292 t 47 974654 5.4147563 0.23898916881037735 Product description 9292 2022-04-26 14:03:01.089303 2025-04-06 Processing Customer 9292 835314.2690267780 +9078 f 77 603570 16.928116 0.44243525578188425 Product description 9078 2024-06-27 14:03:01.089303 2023-12-17 Closed Customer 9078 847731.0969381550 +9023 t 66 396767 48.24415 0.7006966932622518 Product description 9023 2022-11-20 14:03:01.089303 2024-08-08 Closed Customer 9023 695090.7769997950 +9293 t 32 102540 85.73466 0.9461162867064914 Product description 9293 2022-10-01 14:03:01.089303 2023-01-27 Processing Customer 9293 851297.6423472800 +9083 f 61 616143 15.820276 0.9163540163152284 Product description 9083 2023-07-21 14:03:01.089303 2024-04-17 Processing Customer 9083 20144.0656551313 +9026 f 41 388426 8.058548 0.4119151559476535 Product description 9026 2024-01-23 14:03:01.089303 2024-10-07 Processing Customer 9026 961689.8216126340 +9294 f 54 700560 81.7552 0.7247595848253781 Product description 9294 2023-09-13 14:03:01.089303 2023-06-26 Closed Customer 9294 59721.9992022637 +9085 f 31 411694 41.87124 0.7595205800419045 Product description 9085 2022-05-14 14:03:01.089303 2025-08-04 Processing Customer 9085 571590.0590155410 +9027 f 7 257051 45.31487 0.9890572745814481 Product description 9027 2021-08-24 14:03:01.089303 2023-03-06 Closed Customer 9027 80191.3136329127 +9298 f 27 578552 70.163055 0.6370896490031939 Product description 9298 2024-03-12 14:03:01.089303 2024-05-14 Closed Customer 9298 78228.4945726310 +9089 f 84 461686 70.46401 0.8425888321371282 Product description 9089 2021-12-18 14:03:01.089303 2024-08-18 Processing Customer 9089 865007.5548485600 +9038 t 96 141685 99.52837 0.548855272054368 Product description 9038 2024-01-08 14:03:01.089303 2025-09-21 Processing Customer 9038 205049.0461378410 +9300 t 16 986030 30.004602 0.6459651858839948 Product description 9300 2022-03-19 14:03:01.089303 2025-11-25 Closed Customer 9300 923491.0691602030 +9090 f 66 382244 70.738525 0.7288613698451734 Product description 9090 2023-03-19 14:03:01.089303 2024-07-08 Closed Customer 9090 392054.7974075460 +9041 f 48 756091 59.893345 0.3036847851833002 Product description 9041 2023-03-27 14:03:01.089303 2024-04-02 Closed Customer 9041 29996.3970539103 +9302 t 68 83927 67.23919 0.21797379637036585 Product description 9302 2021-11-18 14:03:01.089303 2024-05-22 Processing Customer 9302 481933.4081659330 +9092 f 99 273059 72.45222 0.3835399976954825 Product description 9092 2023-12-08 14:03:01.089303 2024-06-14 Processing Customer 9092 390506.5178513780 +9044 f 79 467685 14.447183 0.5339266456762886 Product description 9044 2023-03-25 14:03:01.089303 2023-07-17 Closed Customer 9044 953448.1093489370 +9313 t 21 346487 73.3812 0.7189954367718343 Product description 9313 2021-09-13 14:03:01.089303 2025-12-27 Closed Customer 9313 82230.0876699948 +9093 f 12 10906 25.125553 0.8515954270779069 Product description 9093 2021-10-24 14:03:01.089303 2024-01-18 Closed Customer 9093 281472.8713650890 +9053 t 36 435198 46.066456 0.5541095927882438 Product description 9053 2022-08-29 14:03:01.089303 2023-04-24 Processing Customer 9053 151949.6404412630 +9318 f 31 642338 1.0986036 0.31301584393158777 Product description 9318 2023-11-21 14:03:01.089303 2023-09-08 Processing Customer 9318 537841.2597724950 +9099 f 90 537950 62.050163 0.534387985492689 Product description 9099 2022-10-18 14:03:01.089303 2024-02-13 Processing Customer 9099 158273.4397816100 +9054 f 10 481657 51.68732 0.1645096093464815 Product description 9054 2024-04-21 14:03:01.089303 2024-01-21 Processing Customer 9054 346829.5056743180 +9320 f 16 103340 43.289925 0.17441572587389942 Product description 9320 2023-01-07 14:03:01.089303 2024-01-23 Closed Customer 9320 751293.0030031520 +9104 f 79 183698 27.004051 0.12819931721768896 Product description 9104 2021-12-25 14:03:01.089303 2023-01-09 Closed Customer 9104 882453.4574815670 +9055 t 38 764868 38.943417 0.3519189746205953 Product description 9055 2022-09-15 14:03:01.089303 2024-05-11 Processing Customer 9055 373716.1595983630 +9321 t 65 119253 36.87762 0.8524076127162985 Product description 9321 2022-04-22 14:03:01.089303 2024-11-29 Closed Customer 9321 437351.7591831760 +9112 f 67 657363 12.681862 0.4758162603337901 Product description 9112 2023-03-15 14:03:01.089303 2023-11-24 Closed Customer 9112 958452.7353275120 +9056 f 11 42354 45.190075 0.3418725518971968 Product description 9056 2021-09-30 14:03:01.089303 2023-09-09 Closed Customer 9056 483392.3307237280 +9324 f 68 351808 85.10032 0.5616074096327992 Product description 9324 2021-09-09 14:03:01.089303 2023-11-08 Closed Customer 9324 742236.7318763290 +9115 t 66 724610 48.84163 0.2590956551683199 Product description 9115 2023-06-12 14:03:01.089303 2025-10-30 Processing Customer 9115 703758.8315170710 +9057 t 88 682580 77.22906 0.1641730627671265 Product description 9057 2023-04-17 14:03:01.089303 2025-03-13 Processing Customer 9057 770961.3677562470 +9325 f 50 443588 7.132166 0.7045109317078229 Product description 9325 2023-02-14 14:03:01.089303 2024-03-10 Closed Customer 9325 810485.0021937470 +9121 t 86 785117 93.489365 0.2630614704085339 Product description 9121 2022-09-28 14:03:01.089303 2025-09-26 Processing Customer 9121 211620.1928391920 +9058 f 25 397906 21.4793 0.44945220513704953 Product description 9058 2022-02-23 14:03:01.089303 2024-04-26 Processing Customer 9058 654891.7949635290 +9326 t 66 113535 62.624073 0.651664340681009 Product description 9326 2023-05-15 14:03:01.089303 2023-09-20 Processing Customer 9326 887211.4018863580 +9122 t 35 795551 17.4675 0.973064268090706 Product description 9122 2021-09-02 14:03:01.089303 2025-08-25 Closed Customer 9122 894214.7688560670 +9059 t 29 162806 53.871914 0.6889987867671223 Product description 9059 2023-10-20 14:03:01.089303 2024-04-10 Closed Customer 9059 90321.5858718092 +9332 f 25 719550 52.592472 0.02348603477913258 Product description 9332 2023-07-19 14:03:01.089303 2025-05-07 Closed Customer 9332 230453.7959910000 +9125 f 82 694557 42.0812 0.47504540938955486 Product description 9125 2021-09-06 14:03:01.089303 2025-07-22 Cancelled Customer 9125 842247.0765146990 +9061 t 80 764130 20.10583 0.8202077226281546 Product description 9061 2024-06-08 14:03:01.089303 2024-10-29 Closed Customer 9061 640195.9148640910 +9333 t 77 932471 2.6534345 0.7199515669793328 Product description 9333 2023-10-04 14:03:01.089303 2024-09-25 Processing Customer 9333 247498.8846986540 +9128 f 57 53124 89.838905 0.6668959200271587 Product description 9128 2024-03-20 14:03:01.089303 2025-01-25 Closed Customer 9128 910695.1713065820 +9064 t 24 117551 68.68954 0.894979063876427 Product description 9064 2023-06-24 14:03:01.089303 2023-05-09 Processing Customer 9064 480437.4954143110 +9348 t 54 367790 66.09736 0.5400731154588456 Product description 9348 2023-03-29 14:03:01.089303 2024-07-04 Closed Customer 9348 967131.3465583930 +9130 t 87 264640 15.760694 0.49078704154486985 Product description 9130 2023-10-20 14:03:01.089303 2023-12-12 Processing Customer 9130 438831.5645675400 +9079 f 18 637859 19.991018 0.6055249471238824 Product description 9079 2024-05-12 14:03:01.089303 2023-02-04 Processing Customer 9079 786128.3217200960 +9351 f 64 408952 19.501541 0.7209979110222378 Product description 9351 2022-03-29 14:03:01.089303 2025-01-20 Closed Customer 9351 47142.6226897869 +9134 t 98 495543 1.5532725 0.05391146245216305 Product description 9134 2022-04-27 14:03:01.089303 2023-04-26 Closed Customer 9134 753445.8301243450 +9087 f 85 743984 39.452766 0.9411963392546241 Product description 9087 2023-07-30 14:03:01.089303 2024-04-18 Processing Customer 9087 171174.4208380460 +9363 f 11 768893 31.443756 0.9391439542766093 Product description 9363 2023-08-22 14:03:01.089303 2025-08-18 Processing Customer 9363 261764.8577991110 +9140 t 85 582784 51.152565 0.7408402367321472 Product description 9140 2024-06-10 14:03:01.089303 2024-09-18 Processing Customer 9140 935297.0710581620 +9088 t 93 925150 80.16705 0.40807783573767153 Product description 9088 2022-03-29 14:03:01.089303 2023-04-27 Cancelled Customer 9088 610027.6704491990 +9366 t 72 84854 7.827472 0.18394971068049415 Product description 9366 2023-06-26 14:03:01.089303 2023-09-10 Processing Customer 9366 959001.6748407320 +9143 f 28 149529 93.83883 0.38807038945118677 Product description 9143 2024-06-15 14:03:01.089303 2024-03-06 Closed Customer 9143 871877.3195181020 +9094 t 23 260610 70.75082 0.497540071881982 Product description 9094 2023-07-04 14:03:01.089303 2024-10-30 Processing Customer 9094 790159.5857167720 +9367 t 39 919614 16.04301 0.024925842274903687 Product description 9367 2024-07-20 14:03:01.089303 2025-04-25 Closed Customer 9367 327189.4311857470 +9144 t 23 235434 22.811802 0.37232945367079395 Product description 9144 2022-04-03 14:03:01.089303 2025-11-21 Closed Customer 9144 362016.8337262620 +9095 f 96 789521 45.525616 0.6997245699462589 Product description 9095 2022-11-29 14:03:01.089303 2024-12-08 Closed Customer 9095 231498.3607207780 +9371 t 95 474339 66.40207 0.6904471890425725 Product description 9371 2023-03-06 14:03:01.089303 2025-10-09 Processing Customer 9371 859747.2409292630 +9148 f 42 263987 61.590046 0.29905235591283486 Product description 9148 2023-02-08 14:03:01.089303 2024-08-24 Closed Customer 9148 850316.4689908220 +9097 f 1 957914 93.878044 0.7201778531680354 Product description 9097 2022-03-29 14:03:01.089303 2023-02-26 Processing Customer 9097 193008.9482125010 +9378 f 84 18062 6.6209784 0.902605352643441 Product description 9378 2021-12-19 14:03:01.089303 2023-10-28 Closed Customer 9378 411421.6852633810 +9151 f 25 843197 40.944805 0.35095236372396954 Product description 9151 2022-05-11 14:03:01.089303 2023-06-15 Processing Customer 9151 919013.2408251120 +9098 t 46 343724 76.62686 0.3418539437178545 Product description 9098 2023-02-09 14:03:01.089303 2023-05-29 Processing Customer 9098 717474.3107802040 +9384 t 1 490353 18.70733 0.13541178218851257 Product description 9384 2024-04-01 14:03:01.089303 2024-09-24 Processing Customer 9384 264058.4789781530 +9154 f 29 987721 71.797935 0.3959363989206821 Product description 9154 2024-07-03 14:03:01.089303 2023-06-16 Closed Customer 9154 323450.6748072870 +9101 t 33 126380 45.0053 0.40222594483614316 Product description 9101 2021-09-08 14:03:01.089303 2023-10-17 Closed Customer 9101 163167.2606444350 +9389 f 73 786531 8.72251 0.8105714228327301 Product description 9389 2022-10-23 14:03:01.089303 2025-09-24 Closed Customer 9389 938679.0487566720 +9155 t 82 452934 12.423065 0.9569196357130565 Product description 9155 2022-03-16 14:03:01.089303 2024-04-12 Processing Customer 9155 238350.4498149770 +9103 f 95 144224 87.58905 0.6725982663633694 Product description 9103 2024-04-23 14:03:01.089303 2024-05-05 Cancelled Customer 9103 707297.1156054170 +9391 t 11 735229 82.75706 0.40489135368349594 Product description 9391 2021-09-24 14:03:01.089303 2025-11-18 Closed Customer 9391 538949.0219802970 +9156 f 88 379255 87.601875 0.334658856762303 Product description 9156 2023-11-20 14:03:01.089303 2025-03-09 Processing Customer 9156 93259.8609120951 +9106 f 29 857603 98.55728 0.2609432103438394 Product description 9106 2022-10-01 14:03:01.089303 2025-07-01 Processing Customer 9106 172204.2224901050 +9392 t 99 541023 65.533134 0.2562072644350124 Product description 9392 2022-11-21 14:03:01.089303 2025-10-14 Closed Customer 9392 817024.0318616530 +9157 t 21 113555 42.1931 0.2897375353146643 Product description 9157 2024-04-07 14:03:01.089303 2023-02-10 Closed Customer 9157 113784.9378850180 +9109 t 61 94066 84.45849 0.10746445335690424 Product description 9109 2021-12-05 14:03:01.089303 2024-02-21 Processing Customer 9109 950762.9349970760 +9397 t 58 121010 43.236237 0.8769646252131196 Product description 9397 2023-07-09 14:03:01.089303 2025-11-24 Processing Customer 9397 519774.0386425770 +9160 f 45 532515 82.57957 0.7893281763517308 Product description 9160 2022-07-09 14:03:01.089303 2025-03-29 Closed Customer 9160 849724.4924418620 +9110 f 60 816623 15.061102 0.040850880644782706 Product description 9110 2023-06-10 14:03:01.089303 2023-07-17 Closed Customer 9110 666581.7618361520 +9399 f 2 299267 80.6251 0.5533653800836689 Product description 9399 2022-03-06 14:03:01.089303 2024-12-04 Closed Customer 9399 98043.2600392369 +9162 f 36 726312 15.95002 0.18218715457791035 Product description 9162 2022-10-22 14:03:01.089303 2024-10-26 Processing Customer 9162 501713.2241871320 +9111 f 49 247413 30.30239 0.5218819224071112 Product description 9111 2023-01-17 14:03:01.089303 2024-05-31 Closed Customer 9111 463100.6296786960 +9400 f 82 656268 26.50135 0.20804541669838272 Product description 9400 2023-04-28 14:03:01.089303 2025-02-06 Closed Customer 9400 23662.7817672534 +9163 f 95 978647 4.323105 0.9011339919541399 Product description 9163 2023-03-11 14:03:01.089303 2025-03-12 Closed Customer 9163 661258.7480480240 +9114 t 74 87779 20.18403 0.4022003050155547 Product description 9114 2023-07-10 14:03:01.089303 2023-08-24 Processing Customer 9114 146883.1757900060 +9415 f 4 561585 57.84704 0.8730609981163369 Product description 9415 2024-01-15 14:03:01.089303 2024-10-31 Processing Customer 9415 928933.9757700400 +9164 t 36 274994 53.16442 0.892489500764249 Product description 9164 2022-06-26 14:03:01.089303 2024-07-24 Processing Customer 9164 313478.4951201970 +9117 f 13 60008 40.044495 0.5331929536834323 Product description 9117 2023-07-17 14:03:01.089303 2023-08-03 Closed Customer 9117 569528.4885803210 +9420 t 30 403990 32.244804 0.10716547892566552 Product description 9420 2023-08-07 14:03:01.089303 2024-02-19 Closed Customer 9420 848151.1394228500 +9169 f 5 768820 30.2868 0.6434598368613109 Product description 9169 2021-11-14 14:03:01.089303 2025-10-05 Cancelled Customer 9169 362983.9310402760 +9120 f 96 941408 8.614387 0.3461970060122752 Product description 9120 2021-09-24 14:03:01.089303 2024-01-27 Closed Customer 9120 920780.6699983330 +9421 f 9 232133 43.94481 0.22022309927236705 Product description 9421 2023-03-21 14:03:01.089303 2024-01-21 Cancelled Customer 9421 71530.2821692845 +9170 f 79 927939 8.122083 0.38319641472014254 Product description 9170 2023-01-25 14:03:01.089303 2024-06-19 Closed Customer 9170 415335.6529658440 +9124 f 36 114279 75.997665 0.36060251725745474 Product description 9124 2021-12-18 14:03:01.089303 2023-10-19 Closed Customer 9124 470439.7116844530 +9431 t 53 959356 8.059125 0.45349157890774805 Product description 9431 2023-08-10 14:03:01.089303 2024-05-27 Closed Customer 9431 81187.7232666092 +9176 f 39 873207 60.89601 0.7901749973658276 Product description 9176 2024-01-02 14:03:01.089303 2023-03-03 Processing Customer 9176 605841.6256275480 +9126 f 0 836528 94.33572 0.3046255576246608 Product description 9126 2024-01-31 14:03:01.089303 2025-07-26 Closed Customer 9126 378871.6988242950 +9436 t 97 377613 60.548195 0.8392616496792975 Product description 9436 2021-12-06 14:03:01.089303 2024-01-16 Closed Customer 9436 317450.6984350320 +9177 t 20 983761 95.85877 0.1157943080317061 Product description 9177 2024-02-15 14:03:01.089303 2025-12-09 Closed Customer 9177 825420.1551299830 +9129 f 29 759194 16.578787 0.9211705421992704 Product description 9129 2022-05-31 14:03:01.089303 2023-02-05 Cancelled Customer 9129 661680.2271609780 +9439 t 49 946559 35.839916 0.24847379455009744 Product description 9439 2023-03-03 14:03:01.089303 2024-12-09 Closed Customer 9439 869865.2017588980 +9178 f 17 266309 34.033234 0.11523097001007798 Product description 9178 2024-05-21 14:03:01.089303 2024-07-02 Processing Customer 9178 557708.7132478770 +9131 f 15 583473 80.8022 0.9934032204158605 Product description 9131 2022-09-19 14:03:01.089303 2024-03-12 Processing Customer 9131 179216.6709655310 +9440 t 71 574369 51.22148 0.7302714137693975 Product description 9440 2023-01-03 14:03:01.089303 2023-03-06 Closed Customer 9440 161333.8336054610 +9179 t 48 883852 79.99765 0.7855344332316712 Product description 9179 2023-04-18 14:03:01.089303 2024-05-19 Closed Customer 9179 162790.7255811250 +9132 f 5 172292 87.37378 0.13206908322811373 Product description 9132 2024-07-30 14:03:01.089303 2023-12-02 Closed Customer 9132 600869.0276789040 +9442 f 53 20402 6.016984 0.3273366512463305 Product description 9442 2022-07-10 14:03:01.089303 2023-03-07 Processing Customer 9442 759093.0046582830 +9184 t 0 237603 25.312551 0.4759429052079476 Product description 9184 2022-03-15 14:03:01.089303 2024-04-11 Cancelled Customer 9184 357705.4818813000 +9133 f 44 362509 3.7627435 0.27572498960853764 Product description 9133 2023-02-07 14:03:01.089303 2024-01-31 Processing Customer 9133 594598.8919611270 +9448 f 94 969007 88.720345 0.23829416355523492 Product description 9448 2024-07-04 14:03:01.089303 2023-01-16 Closed Customer 9448 987109.0462612170 +9188 t 87 656222 57.048958 0.6710811659512501 Product description 9188 2021-09-06 14:03:01.089303 2023-09-20 Processing Customer 9188 403059.8022364950 +9136 f 8 605372 76.71782 0.2897363867958056 Product description 9136 2023-08-24 14:03:01.089303 2023-05-08 Processing Customer 9136 157245.7297789850 +9456 t 98 506681 32.98336 0.3896746130949289 Product description 9456 2024-05-04 14:03:01.089303 2025-12-29 Closed Customer 9456 987510.2859014360 +9189 t 17 54223 91.98057 0.8254227676317285 Product description 9189 2022-05-17 14:03:01.089303 2024-02-17 Closed Customer 9189 319599.4640380810 +9137 f 57 408701 0.46698532 0.11195554919676809 Product description 9137 2021-09-04 14:03:01.089303 2024-12-31 Closed Customer 9137 711396.8516680980 +9457 t 58 526709 93.866455 0.13103233136066805 Product description 9457 2023-10-01 14:03:01.089303 2023-10-17 Closed Customer 9457 6501.5940486219 +9196 f 31 320076 4.025019 0.2996198605419096 Product description 9196 2024-01-08 14:03:01.089303 2025-12-03 Processing Customer 9196 95263.8121601801 +9141 f 43 71564 14.620445 0.44974570832874505 Product description 9141 2022-10-24 14:03:01.089303 2023-08-17 Closed Customer 9141 9473.2575171932 +9459 t 15 249577 84.20762 0.8727574983701096 Product description 9459 2023-11-10 14:03:01.089303 2024-09-19 Cancelled Customer 9459 329224.1219430320 +9197 t 97 426758 29.152391 0.7167727963700017 Product description 9197 2022-03-23 14:03:01.089303 2025-05-20 Processing Customer 9197 892228.8275218650 +9142 t 88 26684 18.8663 0.990729101231441 Product description 9142 2023-08-11 14:03:01.089303 2023-05-04 Closed Customer 9142 624375.6005286660 +9461 f 39 517703 72.43486 0.20125441775041963 Product description 9461 2023-03-30 14:03:01.089303 2023-10-31 Processing Customer 9461 982526.3051581000 +9202 f 85 127802 95.23336 0.5462990607323093 Product description 9202 2023-08-26 14:03:01.089303 2024-04-05 Closed Customer 9202 184345.9195023590 +9145 t 97 931255 51.732075 0.9196689329192616 Product description 9145 2024-07-24 14:03:01.089303 2023-02-26 Processing Customer 9145 260764.2091573080 +9464 t 25 464010 47.04088 0.8162228199827339 Product description 9464 2022-05-29 14:03:01.089303 2023-12-13 Processing Customer 9464 306303.5576941250 +9203 f 34 896928 79.44108 0.2619396274374495 Product description 9203 2021-12-02 14:03:01.089303 2024-12-01 Processing Customer 9203 913233.0692308450 +9146 f 33 370282 57.506615 0.2409122678358706 Product description 9146 2021-11-12 14:03:01.089303 2023-12-28 Closed Customer 9146 327942.7105587440 +9471 f 22 331157 4.717278 0.4517842541130932 Product description 9471 2022-07-25 14:03:01.089303 2025-10-11 Processing Customer 9471 150233.0368288190 +9206 t 85 340176 4.355649 0.07604672269404489 Product description 9206 2021-10-16 14:03:01.089303 2023-08-24 Closed Customer 9206 857800.3815279480 +9150 t 79 32049 47.796947 0.8367554881566228 Product description 9150 2021-11-30 14:03:01.089303 2023-12-04 Closed Customer 9150 930793.5918657010 +9474 f 56 373689 56.896137 0.2468976181947582 Product description 9474 2024-03-27 14:03:01.089303 2024-02-24 Cancelled Customer 9474 106192.1471334490 +9208 t 83 121277 65.76962 0.4322430451461443 Product description 9208 2024-02-19 14:03:01.089303 2024-04-14 Closed Customer 9208 148158.6549851000 +9152 t 41 12526 19.854534 0.972774926141998 Product description 9152 2022-12-23 14:03:01.089303 2023-08-26 Processing Customer 9152 381704.3382921810 +9477 f 25 766778 17.763111 0.7210293037879332 Product description 9477 2023-07-12 14:03:01.089303 2023-12-13 Closed Customer 9477 160128.3223069880 +9212 f 63 941334 77.71394 0.7751220637553047 Product description 9212 2022-12-24 14:03:01.089303 2024-03-21 Closed Customer 9212 641828.9582585960 +9153 f 61 452465 71.55189 0.5190952257174608 Product description 9153 2023-11-15 14:03:01.089303 2023-12-08 Closed Customer 9153 513460.1602507520 +9478 t 34 232220 9.565397 0.34653986749922794 Product description 9478 2023-05-19 14:03:01.089303 2024-06-16 Processing Customer 9478 915788.5010276270 +9213 f 24 32862 73.46012 0.7133204064488794 Product description 9213 2022-08-28 14:03:01.089303 2023-11-21 Closed Customer 9213 481803.1549674830 +9161 f 2 244828 97.41755 0.6977911121247935 Product description 9161 2023-07-02 14:03:01.089303 2023-05-26 Closed Customer 9161 346234.7873902440 +9487 f 49 559059 96.21859 0.013656929448149668 Product description 9487 2022-01-30 14:03:01.089303 2023-10-25 Closed Customer 9487 170647.5325846670 +9216 t 86 776134 95.675735 0.19335623738085417 Product description 9216 2023-08-28 14:03:01.089303 2025-07-11 Closed Customer 9216 613175.2844939450 +9165 f 19 255982 76.64111 0.6003418919120769 Product description 9165 2021-11-07 14:03:01.089303 2025-02-09 Processing Customer 9165 164607.3530859060 +9491 f 14 884162 78.699905 0.34687335792329677 Product description 9491 2023-05-19 14:03:01.089303 2025-01-06 Closed Customer 9491 399472.9005093020 +9219 f 57 911895 98.06352 0.6213684270093367 Product description 9219 2024-04-17 14:03:01.089303 2025-06-20 Processing Customer 9219 914014.8531835630 +9167 t 33 823909 2.335174 0.17455939801320497 Product description 9167 2022-06-15 14:03:01.089303 2024-04-11 Closed Customer 9167 725757.0062954100 +9493 f 62 603667 91.734314 0.6535164684183634 Product description 9493 2023-07-20 14:03:01.089303 2023-07-01 Closed Customer 9493 29481.6957663926 +9222 f 17 841265 5.7055135 0.3460187201891074 Product description 9222 2024-06-07 14:03:01.089303 2023-11-20 Processing Customer 9222 106477.2854701590 +9173 f 58 159419 47.845505 0.6170094953073537 Product description 9173 2024-06-07 14:03:01.089303 2024-12-09 Closed Customer 9173 888048.3735807370 +9496 t 58 250954 95.778534 0.6176704456726263 Product description 9496 2024-07-27 14:03:01.089303 2024-07-19 Processing Customer 9496 685091.3591184380 +9223 t 54 213591 0.6865509 0.5053118010210724 Product description 9223 2021-12-21 14:03:01.089303 2025-11-10 Processing Customer 9223 615925.6999744150 +9175 t 70 173995 33.311172 0.024078760504824714 Product description 9175 2022-11-18 14:03:01.089303 2024-07-10 Processing Customer 9175 82474.8217869740 +9498 f 53 637635 39.39891 0.23849699942501346 Product description 9498 2021-08-10 14:03:01.089303 2025-09-29 Closed Customer 9498 953339.8467661130 +9226 f 44 663925 69.15262 0.9548031720689067 Product description 9226 2023-07-01 14:03:01.089303 2025-01-20 Cancelled Customer 9226 502816.1887848340 +9183 f 99 999434 91.06345 0.7654991737364547 Product description 9183 2023-09-01 14:03:01.089303 2024-01-09 Processing Customer 9183 712602.9041210490 +9504 t 89 871225 85.63406 0.19689801166910215 Product description 9504 2022-07-15 14:03:01.089303 2025-06-30 Processing Customer 9504 58604.7470278928 +9228 t 97 343121 50.618607 0.9580682859358909 Product description 9228 2022-03-12 14:03:01.089303 2025-02-09 Closed Customer 9228 433900.3396059480 +9186 t 75 596659 70.85741 0.6812556359665258 Product description 9186 2022-02-27 14:03:01.089303 2025-02-06 Closed Customer 9186 616818.1255558100 +9505 t 59 120160 20.717335 0.108599835720387 Product description 9505 2024-04-24 14:03:01.089303 2024-07-17 Closed Customer 9505 741867.1016599630 +9233 f 46 669692 28.440445 0.9085093886980395 Product description 9233 2022-06-13 14:03:01.089303 2024-07-19 Processing Customer 9233 765638.6977119070 +9187 t 35 140484 4.3173094 0.38425955485119445 Product description 9187 2022-04-21 14:03:01.089303 2024-06-13 Closed Customer 9187 673321.8489869090 +9506 f 12 729937 74.73984 0.6692251679404926 Product description 9506 2023-03-20 14:03:01.089303 2025-07-09 Processing Customer 9506 914113.1248259100 +9240 f 92 738955 93.002106 0.9729863155145715 Product description 9240 2023-10-27 14:03:01.089303 2023-09-13 Closed Customer 9240 285320.8235846050 +9190 t 21 893206 72.98827 0.23562091666464724 Product description 9190 2022-12-26 14:03:01.089303 2023-03-02 Processing Customer 9190 847648.7604565930 +9509 f 35 195987 26.870075 0.9709305762444451 Product description 9509 2024-05-06 14:03:01.089303 2025-10-30 Processing Customer 9509 236128.8947685690 +9241 t 62 506255 27.725443 0.09189254589596274 Product description 9241 2023-03-23 14:03:01.089303 2023-02-25 Processing Customer 9241 464665.6096832370 +9191 t 51 97872 5.5365515 0.8809619063749174 Product description 9191 2022-04-01 14:03:01.089303 2025-01-02 Closed Customer 9191 130752.9206766920 +9510 f 49 144353 15.015231 0.7556778085080929 Product description 9510 2022-05-14 14:03:01.089303 2023-03-16 Processing Customer 9510 921864.7685608590 +9242 f 40 448073 98.8614 0.7491013654450533 Product description 9242 2022-03-21 14:03:01.089303 2023-02-14 Closed Customer 9242 506860.5667068840 +9193 f 65 407077 52.71313 0.6129973913358846 Product description 9193 2021-11-14 14:03:01.089303 2024-07-14 Processing Customer 9193 38441.5584180857 +9514 f 22 411164 23.112364 0.5422163081586042 Product description 9514 2023-03-29 14:03:01.089303 2024-06-29 Closed Customer 9514 794127.4963036590 +9247 f 61 281424 12.572798 0.8763693278444329 Product description 9247 2023-05-19 14:03:01.089303 2025-09-19 Processing Customer 9247 783412.5029634580 +9194 f 27 756909 16.23937 0.9920403968719249 Product description 9194 2021-11-12 14:03:01.089303 2023-01-04 Closed Customer 9194 865210.3896155480 +9515 t 95 869948 35.264374 0.7701431340721676 Product description 9515 2021-09-09 14:03:01.089303 2025-08-18 Processing Customer 9515 574846.0183266600 +9248 f 43 135933 48.35694 0.9653995828061674 Product description 9248 2021-09-06 14:03:01.089303 2025-01-25 Closed Customer 9248 179808.1023926490 +9199 t 32 929432 18.707956 0.5770988865838724 Product description 9199 2022-02-17 14:03:01.089303 2024-03-20 Closed Customer 9199 864640.9255955800 +9519 t 68 601841 0.87051576 0.8294307797364588 Product description 9519 2022-01-07 14:03:01.089303 2025-09-05 Closed Customer 9519 916246.5186630870 +9255 t 84 153207 6.0078745 0.16485159393694815 Product description 9255 2022-07-15 14:03:01.089303 2023-01-02 Closed Customer 9255 485501.1807401300 +9200 f 62 525740 64.06549 0.4997903476639429 Product description 9200 2021-08-14 14:03:01.089303 2023-04-03 Closed Customer 9200 578908.4657084020 +9520 t 67 186677 42.282593 0.9673310936256847 Product description 9520 2022-06-30 14:03:01.089303 2025-01-31 Closed Customer 9520 611069.2313489850 +9257 f 73 164797 21.888706 0.11218871577375111 Product description 9257 2022-03-03 14:03:01.089303 2024-08-23 Closed Customer 9257 557049.3596778830 +9204 f 93 153403 13.0047865 0.9172074351665209 Product description 9204 2022-07-18 14:03:01.089303 2024-10-01 Processing Customer 9204 121962.6147343860 +9524 t 32 72285 95.612076 0.1344004321765091 Product description 9524 2022-05-22 14:03:01.089303 2024-07-03 Closed Customer 9524 723713.3638431460 +9263 t 31 452488 71.42162 0.570580786772755 Product description 9263 2023-07-04 14:03:01.089303 2024-01-21 Processing Customer 9263 371478.5097275380 +9210 f 79 452858 97.282974 0.5484412639948282 Product description 9210 2022-05-07 14:03:01.089303 2025-02-26 Closed Customer 9210 115976.1359104370 +9525 f 59 497607 75.39811 0.026148593597536518 Product description 9525 2024-03-17 14:03:01.089303 2024-10-07 Closed Customer 9525 876459.4762451950 +9264 t 81 429679 14.180809 0.3763801541943046 Product description 9264 2023-10-06 14:03:01.089303 2025-08-16 Closed Customer 9264 494578.1684811760 +9214 f 26 525846 79.82747 0.4322344957254991 Product description 9214 2023-08-06 14:03:01.089303 2023-04-27 Closed Customer 9214 356651.9323792360 +9526 f 66 44712 12.919198 0.9405488773882844 Product description 9526 2022-10-29 14:03:01.089303 2025-02-07 Closed Customer 9526 590036.1721030550 +9270 f 50 122895 0.75657076 0.1769366000922794 Product description 9270 2022-05-29 14:03:01.089303 2023-03-30 Closed Customer 9270 574883.8116889200 +9217 f 78 923942 22.092377 0.09385950117166075 Product description 9217 2022-05-14 14:03:01.089303 2025-03-10 Closed Customer 9217 385393.4072321930 +9529 t 7 883640 12.479262 0.7588053927533984 Product description 9529 2021-08-27 14:03:01.089303 2024-02-19 Cancelled Customer 9529 790454.2147420660 +9272 t 6 415315 72.49131 0.7636573075581303 Product description 9272 2022-10-23 14:03:01.089303 2023-08-01 Closed Customer 9272 939274.5181136560 +9218 f 6 934570 1.0487342 0.43532188840183395 Product description 9218 2024-07-12 14:03:01.089303 2025-09-17 Processing Customer 9218 431037.6620117750 +9534 f 95 918933 90.58553 0.9560354141496177 Product description 9534 2024-06-29 14:03:01.089303 2024-12-23 Processing Customer 9534 555162.6357253560 +9276 f 37 520686 95.8208 0.7078500789377848 Product description 9276 2024-06-01 14:03:01.089303 2024-03-16 Closed Customer 9276 579747.1675725630 +9220 t 22 695464 20.286617 0.5310454616935765 Product description 9220 2024-02-07 14:03:01.089303 2023-02-27 Processing Customer 9220 739501.3618717810 +9536 t 25 492109 77.89912 0.7373521272398591 Product description 9536 2023-07-18 14:03:01.089303 2025-11-14 Closed Customer 9536 635202.3498365860 +9278 t 22 562483 19.905882 0.37612301179346375 Product description 9278 2023-07-22 14:03:01.089303 2024-05-30 Closed Customer 9278 940698.4957444070 +9221 t 75 829541 72.18071 0.26499800458042344 Product description 9221 2022-07-07 14:03:01.089303 2023-05-19 Processing Customer 9221 698674.5059267890 +9540 f 22 126469 13.877209 0.1720047913155227 Product description 9540 2023-09-26 14:03:01.089303 2025-01-21 Closed Customer 9540 710915.1881117590 +9281 t 33 238249 44.609035 0.09066343147346245 Product description 9281 2023-06-04 14:03:01.089303 2025-01-28 Processing Customer 9281 254241.4297482200 +9225 t 18 158960 67.41083 0.29925504481914444 Product description 9225 2022-03-19 14:03:01.089303 2023-07-05 Closed Customer 9225 343792.7829733450 +9542 t 54 718275 89.66997 0.5878638001128564 Product description 9542 2024-03-15 14:03:01.089303 2025-01-01 Processing Customer 9542 245794.6904685110 +9283 f 28 830752 24.332747 0.3664852395550575 Product description 9283 2023-06-14 14:03:01.089303 2023-10-03 Processing Customer 9283 92609.4099025434 +9230 t 89 144543 12.187046 0.9927203092113395 Product description 9230 2023-12-07 14:03:01.089303 2024-09-20 Closed Customer 9230 583609.9211676210 +9543 t 54 461138 4.9569197 0.45619206381734756 Product description 9543 2022-01-12 14:03:01.089303 2025-09-14 Processing Customer 9543 852407.9675765570 +9284 f 64 546004 61.60351 0.04643511241673437 Product description 9284 2021-09-13 14:03:01.089303 2024-04-18 Closed Customer 9284 225243.8494025600 +9232 t 74 310315 7.131848 0.036902493118798674 Product description 9232 2023-09-22 14:03:01.089303 2023-07-24 Processing Customer 9232 873162.9183488320 +9546 f 48 996201 19.195822 0.39608847924864676 Product description 9546 2021-12-07 14:03:01.089303 2025-10-15 Closed Customer 9546 465813.5434844970 +9285 f 77 222109 65.39994 0.35936019458888424 Product description 9285 2024-02-17 14:03:01.089303 2023-05-16 Processing Customer 9285 438127.7644975160 +9234 t 33 938026 77.37965 0.22197649326712465 Product description 9234 2022-11-25 14:03:01.089303 2024-01-27 Processing Customer 9234 571632.9106322180 +9551 t 18 488514 65.40404 0.6176246722282102 Product description 9551 2024-07-30 14:03:01.089303 2023-04-05 Processing Customer 9551 157514.0101326480 +9287 t 92 725849 81.22696 0.1008865224563813 Product description 9287 2023-10-25 14:03:01.089303 2024-01-29 Closed Customer 9287 356128.0760058880 +9235 t 93 638501 98.513916 0.30852461381078555 Product description 9235 2023-10-14 14:03:01.089303 2024-03-31 Processing Customer 9235 14792.7778692249 +9556 t 22 75670 71.93326 0.6950629981489129 Product description 9556 2022-10-30 14:03:01.089303 2023-03-07 Closed Customer 9556 101787.1545982520 +9290 f 47 983063 53.03092 0.2592277118190758 Product description 9290 2024-02-29 14:03:01.089303 2024-09-25 Closed Customer 9290 426264.0537708440 +9237 f 4 575715 18.709507 0.6561791644128654 Product description 9237 2024-07-25 14:03:01.089303 2023-04-30 Closed Customer 9237 514676.6920335180 +9560 t 91 492727 94.621765 0.7603864463585168 Product description 9560 2022-06-07 14:03:01.089303 2023-02-02 Closed Customer 9560 632272.3144447660 +9295 t 71 93372 92.02458 0.12887126886318256 Product description 9295 2024-06-12 14:03:01.089303 2023-08-04 Processing Customer 9295 178367.9363971230 +9239 f 3 279532 12.0587635 0.8557624085872924 Product description 9239 2023-08-30 14:03:01.089303 2025-10-16 Processing Customer 9239 655576.7706318180 +9566 t 74 724856 94.93487 0.28987228188944414 Product description 9566 2024-06-15 14:03:01.089303 2023-02-06 Processing Customer 9566 122688.9140766860 +9296 t 88 244446 51.420128 0.18597357352392052 Product description 9296 2023-01-26 14:03:01.089303 2024-02-08 Processing Customer 9296 300419.3605553880 +9245 f 98 741058 0.16413893 0.3121929983896514 Product description 9245 2021-09-22 14:03:01.089303 2023-01-22 Closed Customer 9245 512893.2672514280 +9573 t 1 660524 43.744465 0.7815451042596706 Product description 9573 2022-06-18 14:03:01.089303 2023-01-24 Closed Customer 9573 771498.3621103820 +9299 t 84 115177 33.670662 0.8484896622350853 Product description 9299 2022-02-11 14:03:01.089303 2024-03-06 Closed Customer 9299 812779.9149500560 +9249 t 64 300946 25.771582 0.9259282367018749 Product description 9249 2023-03-01 14:03:01.089303 2025-08-07 Processing Customer 9249 17844.0429417392 +9578 f 75 632989 45.761333 0.31390902859082814 Product description 9578 2022-10-19 14:03:01.089303 2025-05-11 Closed Customer 9578 641872.5309443220 +9301 t 90 266404 44.13726 0.516429700844693 Product description 9301 2022-07-16 14:03:01.089303 2023-11-28 Processing Customer 9301 473020.0217123940 +9250 t 10 681319 8.841502 0.7299241244421104 Product description 9250 2023-01-24 14:03:01.089303 2023-04-27 Closed Customer 9250 715459.8152483660 +9586 f 88 879728 42.945904 0.0749687527164653 Product description 9586 2023-01-08 14:03:01.089303 2024-11-22 Processing Customer 9586 893613.9631254210 +9304 t 83 351701 65.25126 0.20546529546149728 Product description 9304 2023-07-28 14:03:01.089303 2023-05-23 Closed Customer 9304 97875.6959811591 +9251 f 17 902625 52.53785 0.33828257481000534 Product description 9251 2022-09-13 14:03:01.089303 2023-07-11 Closed Customer 9251 194535.1401088190 +9587 t 51 602536 89.82458 0.4269165240382904 Product description 9587 2023-12-22 14:03:01.089303 2025-02-28 Processing Customer 9587 426440.4386606740 +9305 f 38 25199 44.16184 0.5281340014042932 Product description 9305 2022-06-17 14:03:01.089303 2024-04-30 Processing Customer 9305 714408.7381419340 +9252 t 63 116446 92.49242 0.8980494978570341 Product description 9252 2024-01-24 14:03:01.089303 2023-08-17 Processing Customer 9252 117203.5956363970 +9588 t 19 385514 20.73734 0.006958179465591741 Product description 9588 2022-08-08 14:03:01.089303 2024-05-28 Processing Customer 9588 57949.3810178384 +9306 f 2 265316 50.00299 0.23746747604012697 Product description 9306 2022-04-19 14:03:01.089303 2024-10-29 Closed Customer 9306 423378.5575377450 +9256 f 35 919484 98.43141 0.28327703593151554 Product description 9256 2021-11-15 14:03:01.089303 2025-02-08 Processing Customer 9256 665584.1465550410 +9594 t 77 581165 10.127331 0.1480885629156461 Product description 9594 2024-03-19 14:03:01.089303 2025-11-28 Processing Customer 9594 504226.5636335050 +9310 f 16 167703 56.10483 0.19455976050212698 Product description 9310 2024-01-23 14:03:01.089303 2025-10-06 Closed Customer 9310 906329.0148190290 +9258 t 30 784458 73.6324 0.519364433822691 Product description 9258 2022-05-08 14:03:01.089303 2025-05-08 Closed Customer 9258 723057.7396812380 +9602 t 74 771981 83.824814 0.7533377002780739 Product description 9602 2022-11-22 14:03:01.089303 2025-06-23 Processing Customer 9602 856945.0390559050 +9311 f 34 389527 95.13596 0.20064827433487054 Product description 9311 2023-03-12 14:03:01.089303 2025-07-29 Closed Customer 9311 702141.8844650360 +9260 f 100 84561 12.22522 0.2779873814369118 Product description 9260 2024-05-18 14:03:01.089303 2025-12-29 Closed Customer 9260 170747.8222532120 +9606 f 42 451373 78.47251 0.9396356124718466 Product description 9606 2023-03-08 14:03:01.089303 2023-01-14 Closed Customer 9606 826319.4914953510 +9312 f 91 944317 56.339783 0.16481766769735984 Product description 9312 2022-02-24 14:03:01.089303 2025-07-29 Closed Customer 9312 306785.2813955980 +9261 t 6 941755 9.255356 0.5796996518672479 Product description 9261 2022-12-08 14:03:01.089303 2025-10-25 Closed Customer 9261 408723.9835069170 +9609 f 19 56609 80.866844 0.4275864414750927 Product description 9609 2024-07-26 14:03:01.089303 2023-02-09 Closed Customer 9609 49466.2722681518 +9314 f 53 259327 74.69737 0.6613363207245762 Product description 9314 2021-11-29 14:03:01.089303 2025-09-07 Closed Customer 9314 262283.6606917080 +9262 f 42 616728 88.65912 0.4766446166489935 Product description 9262 2023-07-06 14:03:01.089303 2024-03-21 Processing Customer 9262 318369.0115741130 +9613 t 54 845461 30.601595 0.944682317573367 Product description 9613 2022-06-27 14:03:01.089303 2025-09-26 Cancelled Customer 9613 941595.2021918770 +9315 t 60 452079 85.18446 0.661444685094633 Product description 9315 2024-05-16 14:03:01.089303 2025-10-24 Closed Customer 9315 697839.0285275470 +9265 f 28 440342 98.0829 0.38085042158980187 Product description 9265 2024-03-07 14:03:01.089303 2025-04-25 Processing Customer 9265 979384.1270246590 +9617 f 84 33300 56.577213 0.4915005493554041 Product description 9617 2024-02-21 14:03:01.089303 2023-09-04 Processing Customer 9617 971963.9661332810 +9316 f 47 547763 45.613422 0.1047865463600921 Product description 9316 2023-10-18 14:03:01.089303 2024-09-16 Closed Customer 9316 415231.5684957700 +9269 f 55 410979 51.56337 0.554081714996908 Product description 9269 2022-02-24 14:03:01.089303 2024-05-21 Processing Customer 9269 150538.3157073010 +9618 f 79 604294 43.034695 0.6690386351645294 Product description 9618 2023-04-15 14:03:01.089303 2023-12-02 Processing Customer 9618 26811.1009978753 +9317 f 14 733615 78.89862 0.8741208008045298 Product description 9317 2024-03-05 14:03:01.089303 2023-04-30 Processing Customer 9317 973238.3617366840 +9271 t 16 568432 22.314611 0.4350400207588514 Product description 9271 2023-02-19 14:03:01.089303 2025-09-26 Closed Customer 9271 577658.8441505620 +9620 f 57 728068 62.802742 0.6995706118594391 Product description 9620 2024-01-05 14:03:01.089303 2023-07-08 Processing Customer 9620 971601.3837733260 +9323 f 24 372423 21.86641 0.8559461279208342 Product description 9323 2022-08-20 14:03:01.089303 2023-06-07 Cancelled Customer 9323 649094.0587497140 +9273 t 10 271723 82.68284 0.4281808801617295 Product description 9273 2023-06-19 14:03:01.089303 2023-07-26 Processing Customer 9273 516927.2544398570 +9622 t 47 147242 78.33122 0.4940052150579284 Product description 9622 2024-01-16 14:03:01.089303 2024-03-24 Closed Customer 9622 431559.3340429300 +9327 t 64 570840 10.615809 0.8866069257420435 Product description 9327 2022-05-24 14:03:01.089303 2025-05-11 Processing Customer 9327 50457.3528900600 +9274 f 55 358500 44.978813 0.09630302862061413 Product description 9274 2022-11-01 14:03:01.089303 2025-01-23 Closed Customer 9274 929174.4876989160 +9626 t 79 866025 9.915405 0.05475926416906063 Product description 9626 2022-10-28 14:03:01.089303 2025-06-08 Closed Customer 9626 443370.0580716290 +9329 t 50 759114 95.15512 0.8681841620648285 Product description 9329 2022-05-31 14:03:01.089303 2023-10-18 Closed Customer 9329 61059.7736145060 +9275 t 78 597262 13.249717 0.09178934281085205 Product description 9275 2022-11-06 14:03:01.089303 2024-10-09 Processing Customer 9275 64434.4597277708 +9628 f 89 122712 90.717514 0.202931678952897 Product description 9628 2023-01-19 14:03:01.089303 2025-05-25 Processing Customer 9628 324380.9250566730 +9331 f 52 22559 67.60384 0.8973553532127312 Product description 9331 2022-08-06 14:03:01.089303 2023-07-06 Closed Customer 9331 645992.9887618580 +9277 f 33 870697 47.005707 0.9886412929334263 Product description 9277 2022-07-03 14:03:01.089303 2025-09-09 Closed Customer 9277 354104.7884415040 +9630 f 40 822737 98.25961 0.9079548633491008 Product description 9630 2023-08-18 14:03:01.089303 2025-10-12 Closed Customer 9630 785945.5654808510 +9334 f 5 586029 6.707091 0.1939353966064985 Product description 9334 2022-12-22 14:03:01.089303 2023-06-20 Closed Customer 9334 585548.1820296160 +9282 t 26 818645 38.57804 0.10245331083293863 Product description 9282 2022-09-11 14:03:01.089303 2023-08-29 Closed Customer 9282 288065.4046763100 +9631 f 68 690874 69.06896 0.3968257783332838 Product description 9631 2023-03-15 14:03:01.089303 2023-03-10 Processing Customer 9631 264409.3872185070 +9336 f 24 870237 73.0982 0.22936872105402983 Product description 9336 2021-10-05 14:03:01.089303 2023-04-22 Closed Customer 9336 568803.6686467050 +9289 f 16 273172 67.652504 0.16332204132453754 Product description 9289 2023-01-04 14:03:01.089303 2024-05-23 Closed Customer 9289 884068.9047080300 +9632 t 11 230719 18.8022 0.31207930838638376 Product description 9632 2023-04-02 14:03:01.089303 2023-12-29 Closed Customer 9632 417067.3543313870 +9337 f 59 402673 88.584404 0.6439950731031772 Product description 9337 2023-08-20 14:03:01.089303 2025-07-05 Closed Customer 9337 524595.4121801790 +9297 t 68 856169 2.0804129 0.7877076619558743 Product description 9297 2021-11-19 14:03:01.089303 2023-05-28 Closed Customer 9297 848632.3397585740 +9634 t 10 308999 86.43829 0.4388031420347467 Product description 9634 2021-12-09 14:03:01.089303 2023-09-16 Processing Customer 9634 741897.0135817770 +9340 t 45 6270 51.429295 0.9872740486897271 Product description 9340 2023-03-19 14:03:01.089303 2025-12-05 Closed Customer 9340 364179.3478538740 +9303 f 89 728587 28.313776 0.22532386855194275 Product description 9303 2022-05-11 14:03:01.089303 2023-04-23 Closed Customer 9303 777079.1990687940 +9637 f 38 587160 32.917564 0.44125901680616764 Product description 9637 2023-10-04 14:03:01.089303 2024-07-31 Processing Customer 9637 864071.2237077750 +9341 f 91 554845 99.65049 0.5174187758719668 Product description 9341 2023-03-14 14:03:01.089303 2025-12-08 Cancelled Customer 9341 960892.3172831890 +9307 t 32 285116 70.32737 0.8131860977571215 Product description 9307 2022-10-31 14:03:01.089303 2025-05-06 Closed Customer 9307 11516.0458456174 +9641 t 4 181481 71.893684 0.013845709385567062 Product description 9641 2022-02-17 14:03:01.089303 2024-04-11 Processing Customer 9641 847389.8211243810 +9342 f 0 592157 55.461212 0.4560514627098833 Product description 9342 2023-04-12 14:03:01.089303 2025-01-06 Cancelled Customer 9342 521033.5200300480 +9308 f 71 912802 51.27229 0.17438753364647042 Product description 9308 2023-12-07 14:03:01.089303 2023-04-25 Processing Customer 9308 743255.4645880170 +9643 f 56 653531 39.32305 0.6190383818765461 Product description 9643 2021-09-25 14:03:01.089303 2024-04-23 Processing Customer 9643 455964.2900656300 +9345 t 63 338155 99.18618 0.4824957848092737 Product description 9345 2023-08-14 14:03:01.089303 2023-12-22 Closed Customer 9345 78317.2149491627 +9309 t 32 717990 51.586983 0.41974058085908084 Product description 9309 2023-04-22 14:03:01.089303 2023-09-04 Closed Customer 9309 942601.2833968900 +9645 f 8 719680 60.606274 0.8296733998939807 Product description 9645 2022-02-19 14:03:01.089303 2023-08-25 Closed Customer 9645 817120.4710118760 +9346 f 26 920470 56.84797 0.8750660229203149 Product description 9346 2021-09-09 14:03:01.089303 2024-11-08 Processing Customer 9346 394920.0833871950 +9319 f 18 832899 92.621 0.43771495720817555 Product description 9319 2024-06-22 14:03:01.089303 2023-04-24 Closed Customer 9319 8296.1573647538 +9652 t 97 26729 81.37487 0.1628331381504431 Product description 9652 2021-09-09 14:03:01.089303 2025-08-12 Processing Customer 9652 189679.2843167460 +9349 f 42 362182 63.457054 0.9559293489933509 Product description 9349 2023-09-01 14:03:01.089303 2024-08-09 Processing Customer 9349 159055.0632401140 +9322 f 37 797959 8.5125 0.7439627650415126 Product description 9322 2023-07-19 14:03:01.089303 2024-11-19 Closed Customer 9322 885434.9814663820 +9653 t 49 566318 92.22104 0.3387951758693539 Product description 9653 2024-04-27 14:03:01.089303 2025-03-19 Closed Customer 9653 40998.4547001727 +9350 t 78 588782 10.809115 0.29475264176384286 Product description 9350 2023-07-08 14:03:01.089303 2025-11-25 Cancelled Customer 9350 829806.0076455660 +9328 t 92 763476 61.263893 0.0730268318361631 Product description 9328 2024-04-02 14:03:01.089303 2024-09-02 Closed Customer 9328 130885.5770880510 +9659 t 19 714861 59.751812 0.856729052596787 Product description 9659 2024-03-13 14:03:01.089303 2024-07-18 Closed Customer 9659 930032.3817291840 +9352 f 21 131664 82.93425 0.1845902060087674 Product description 9352 2022-12-31 14:03:01.089303 2023-08-28 Closed Customer 9352 946139.0734135190 +9330 t 46 857712 63.41858 0.21449161359877777 Product description 9330 2021-11-26 14:03:01.089303 2023-07-04 Closed Customer 9330 188636.8315177760 +9665 t 50 125952 35.3124 0.09943459113211262 Product description 9665 2023-04-28 14:03:01.089303 2023-03-02 Closed Customer 9665 302441.9783271380 +9353 t 98 881020 11.027994 0.7413287296409372 Product description 9353 2022-03-02 14:03:01.089303 2025-05-29 Processing Customer 9353 378782.6579324540 +9335 f 76 9309 95.24119 0.7020071602822959 Product description 9335 2022-11-24 14:03:01.089303 2025-10-10 Processing Customer 9335 138107.9356240780 +9666 f 98 590830 54.45192 0.45700507073065566 Product description 9666 2024-06-03 14:03:01.089303 2024-10-08 Processing Customer 9666 919105.2086395290 +9358 t 25 235946 97.99737 0.4073164666091067 Product description 9358 2023-07-05 14:03:01.089303 2023-05-18 Closed Customer 9358 814787.0917682240 +9338 f 46 695335 69.342766 0.9754032970216109 Product description 9338 2022-06-01 14:03:01.089303 2023-04-15 Closed Customer 9338 333717.5919110180 +9669 t 91 247230 93.005775 0.11850785964115929 Product description 9669 2023-10-22 14:03:01.089303 2025-10-30 Closed Customer 9669 461255.3589459760 +9365 f 77 184873 86.403404 0.36722777529656625 Product description 9365 2022-04-27 14:03:01.089303 2025-05-29 Cancelled Customer 9365 220148.1795464950 +9339 t 5 646364 72.09697 0.7203271289368196 Product description 9339 2021-09-27 14:03:01.089303 2024-12-24 Processing Customer 9339 886448.9277251690 +9676 t 34 845394 56.57324 0.03178229446663394 Product description 9676 2023-11-16 14:03:01.089303 2024-04-16 Closed Customer 9676 476628.7561561530 +9368 f 56 62250 99.50538 0.7274686717730461 Product description 9368 2023-06-08 14:03:01.089303 2024-06-18 Closed Customer 9368 505190.7553111650 +9343 f 80 535404 19.582777 0.6795695794913392 Product description 9343 2022-03-21 14:03:01.089303 2023-09-05 Closed Customer 9343 687957.6318231310 +9679 f 71 447938 29.23709 0.7146147349475918 Product description 9679 2023-06-18 14:03:01.089303 2023-08-31 Processing Customer 9679 859973.4280380030 +9370 f 51 837145 85.08371 0.38636843513658903 Product description 9370 2022-12-30 14:03:01.089303 2024-07-24 Closed Customer 9370 121036.3819508120 +9344 t 89 849800 83.89834 0.31227132117776435 Product description 9344 2022-12-29 14:03:01.089303 2025-01-08 Closed Customer 9344 635131.8303042890 +9681 t 39 656210 65.422035 0.5959787633903311 Product description 9681 2023-03-18 14:03:01.089303 2024-07-22 Processing Customer 9681 706941.2242452060 +9372 t 26 785938 17.722656 0.8806993236147989 Product description 9372 2022-06-13 14:03:01.089303 2023-03-26 Processing Customer 9372 94796.8154245764 +9347 f 26 326586 35.69785 0.26152205723891697 Product description 9347 2023-03-23 14:03:01.089303 2025-05-11 Processing Customer 9347 660218.6107977350 +9684 t 88 724488 17.033493 0.350154377369865 Product description 9684 2023-02-04 14:03:01.089303 2023-01-13 Closed Customer 9684 501859.4829084580 +9373 f 25 273717 2.2297812 0.7130808607813606 Product description 9373 2022-08-18 14:03:01.089303 2024-11-12 Processing Customer 9373 271046.9218235370 +9354 t 27 235655 59.923653 0.8819316884460626 Product description 9354 2023-01-06 14:03:01.089303 2025-01-09 Cancelled Customer 9354 603069.9821891580 +9687 t 10 133718 16.282381 0.7739177662699568 Product description 9687 2024-02-13 14:03:01.089303 2023-07-24 Closed Customer 9687 256824.8823352020 +9376 f 89 419460 12.830393 0.5524512498785796 Product description 9376 2023-01-17 14:03:01.089303 2024-06-02 Closed Customer 9376 158327.9983648000 +9355 t 20 48208 33.90837 0.22442945894823652 Product description 9355 2023-01-07 14:03:01.089303 2025-02-14 Processing Customer 9355 536451.3466661800 +9688 f 84 798288 77.85349 0.7718952131781158 Product description 9688 2023-10-03 14:03:01.089303 2025-04-11 Closed Customer 9688 539469.7975162470 +9377 t 85 415864 85.35475 0.5523853070873912 Product description 9377 2023-06-23 14:03:01.089303 2024-08-23 Processing Customer 9377 276640.7133295950 +9356 t 56 931709 31.157284 0.5387250507590764 Product description 9356 2022-11-16 14:03:01.089303 2025-11-03 Processing Customer 9356 602999.5567403470 +9692 t 49 617660 85.19333 0.593752137413059 Product description 9692 2023-06-09 14:03:01.089303 2023-03-23 Closed Customer 9692 536725.4273514490 +9380 t 80 337739 37.093082 0.7295159362702961 Product description 9380 2021-08-30 14:03:01.089303 2024-12-30 Cancelled Customer 9380 395419.4316697580 +9357 t 51 623080 9.475564 0.16459646878651313 Product description 9357 2023-01-01 14:03:01.089303 2025-07-02 Closed Customer 9357 106274.8140819390 +9693 t 40 518072 65.45793 0.19692987137419848 Product description 9693 2024-04-29 14:03:01.089303 2024-04-05 Closed Customer 9693 53924.6635170514 +9385 t 88 185876 90.63884 0.6852061513535013 Product description 9385 2022-06-11 14:03:01.089303 2025-03-20 Closed Customer 9385 791225.5242923010 +9359 f 54 640023 53.118046 0.684349966521971 Product description 9359 2023-03-25 14:03:01.089303 2025-01-20 Processing Customer 9359 548552.4810966820 +9697 t 90 763977 31.130499 0.8702115054129784 Product description 9697 2023-03-22 14:03:01.089303 2024-04-24 Closed Customer 9697 998372.6093982240 +9388 f 16 226784 43.753887 0.8294497924472175 Product description 9388 2022-12-29 14:03:01.089303 2025-06-18 Closed Customer 9388 175276.2846783110 +9360 t 25 953522 3.3554442 0.1278044611867415 Product description 9360 2021-08-17 14:03:01.089303 2023-06-20 Cancelled Customer 9360 760529.9269061870 +9698 t 18 845611 67.84292 0.2298789313590568 Product description 9698 2022-04-22 14:03:01.089303 2023-06-01 Closed Customer 9698 177417.4423089650 +9394 t 18 744738 75.66638 0.8504329713311627 Product description 9394 2021-09-12 14:03:01.089303 2025-02-23 Closed Customer 9394 16208.9242111279 +9361 f 6 906031 92.92458 0.09695427842852311 Product description 9361 2021-11-02 14:03:01.089303 2025-10-18 Closed Customer 9361 476758.0252747550 +9704 t 87 781110 15.206941 0.4855615724252793 Product description 9704 2023-02-12 14:03:01.089303 2024-12-27 Cancelled Customer 9704 775734.6891025880 +9395 f 11 430529 97.13814 0.9502733013788394 Product description 9395 2024-02-12 14:03:01.089303 2023-08-13 Closed Customer 9395 82610.4748676997 +9362 f 31 428190 95.632065 0.8016241937138098 Product description 9362 2024-06-24 14:03:01.089303 2024-10-07 Processing Customer 9362 329264.8648633190 +9707 f 75 497358 32.933666 0.08111757210100023 Product description 9707 2023-01-25 14:03:01.089303 2023-06-28 Closed Customer 9707 633732.4301650580 +9404 t 33 667677 45.040516 0.28435654753761597 Product description 9404 2023-08-06 14:03:01.089303 2025-10-26 Closed Customer 9404 931039.0943114300 +9364 f 88 651357 14.684014 0.9688573046085445 Product description 9364 2021-08-17 14:03:01.089303 2024-06-13 Processing Customer 9364 424865.2011120340 +9710 f 46 849019 11.312961 0.08334612404480879 Product description 9710 2022-08-28 14:03:01.089303 2023-10-25 Closed Customer 9710 213282.3975187070 +9406 t 28 763111 52.92707 0.7846366146471944 Product description 9406 2024-04-27 14:03:01.089303 2025-06-10 Processing Customer 9406 866658.8902754810 +9369 f 63 448429 26.828472 0.4642085720434217 Product description 9369 2023-01-08 14:03:01.089303 2025-01-10 Processing Customer 9369 720087.5950619690 +9716 f 2 208238 53.340706 0.2926789013692641 Product description 9716 2022-11-29 14:03:01.089303 2025-07-05 Processing Customer 9716 312593.8367116880 +9407 t 49 29879 61.478363 0.021890089185252037 Product description 9407 2022-12-19 14:03:01.089303 2023-10-26 Closed Customer 9407 623924.9832517830 +9374 t 32 892524 89.43822 0.06238035897701977 Product description 9374 2021-11-06 14:03:01.089303 2024-11-15 Closed Customer 9374 787724.5766569770 +9719 f 95 486861 80.59846 0.1097688995570536 Product description 9719 2023-05-16 14:03:01.089303 2025-01-16 Closed Customer 9719 8347.6760258030 +9408 t 22 177160 58.83362 0.2767065517918148 Product description 9408 2022-09-07 14:03:01.089303 2023-08-24 Processing Customer 9408 268595.8686650240 +9375 t 64 338673 17.906986 0.3912416012521369 Product description 9375 2021-11-15 14:03:01.089303 2025-07-02 Closed Customer 9375 161826.3429506610 +9723 f 54 611282 49.67882 0.4106011857208287 Product description 9723 2024-02-13 14:03:01.089303 2024-05-01 Closed Customer 9723 234176.4431778340 +9410 f 63 157623 81.9863 0.7191063593053322 Product description 9410 2021-08-17 14:03:01.089303 2025-07-15 Closed Customer 9410 355915.6758523020 +9379 f 16 304915 7.2764783 0.30228673241853343 Product description 9379 2023-08-21 14:03:01.089303 2023-12-12 Closed Customer 9379 382451.0583715220 +9727 t 98 810093 47.97669 0.5424064854444026 Product description 9727 2023-04-11 14:03:01.089303 2025-01-17 Processing Customer 9727 359914.3143110660 +9413 t 83 141625 28.162985 0.9505717840435572 Product description 9413 2021-12-24 14:03:01.089303 2025-01-25 Processing Customer 9413 157539.9970520190 +9381 f 78 252862 1.5241653 0.6415755506578229 Product description 9381 2023-08-03 14:03:01.089303 2023-03-13 Closed Customer 9381 667273.8329360040 +9729 f 47 119825 79.663345 0.8930230236522831 Product description 9729 2024-05-28 14:03:01.089303 2025-03-26 Closed Customer 9729 678371.9026117470 +9417 f 31 579444 52.89606 0.2051913862949455 Product description 9417 2024-07-08 14:03:01.089303 2025-06-17 Processing Customer 9417 67952.1636699860 +9382 f 97 619668 66.94913 0.6203462332544909 Product description 9382 2022-03-27 14:03:01.089303 2024-08-13 Processing Customer 9382 264679.0569764830 +9740 t 56 531286 2.6699255 0.9398233602856294 Product description 9740 2022-12-05 14:03:01.089303 2024-05-14 Closed Customer 9740 811984.2689357560 +9418 f 63 461769 18.674507 0.20079817828780833 Product description 9418 2023-11-18 14:03:01.089303 2024-08-16 Closed Customer 9418 488667.7643584750 +9383 f 89 571935 66.52331 0.7553158267500812 Product description 9383 2023-02-10 14:03:01.089303 2025-05-16 Processing Customer 9383 71655.1771030254 +9741 t 79 841661 17.179806 0.12432863652094994 Product description 9741 2024-07-25 14:03:01.089303 2024-10-22 Processing Customer 9741 817563.9186577290 +9419 f 52 9370 58.146145 0.46587520061521914 Product description 9419 2022-02-10 14:03:01.089303 2025-04-06 Closed Customer 9419 468515.6966754820 +9386 f 70 832329 63.69862 0.6202815505506543 Product description 9386 2022-09-21 14:03:01.089303 2025-12-23 Closed Customer 9386 963004.8826096600 +9742 f 62 379583 89.00706 0.0752765105882105 Product description 9742 2022-07-10 14:03:01.089303 2023-02-21 Processing Customer 9742 466250.1958712930 +9423 t 9 226599 85.514755 0.8897564475891606 Product description 9423 2023-02-11 14:03:01.089303 2024-03-27 Closed Customer 9423 287670.3361913760 +9387 f 57 778232 21.539 0.34037531513977015 Product description 9387 2021-09-08 14:03:01.089303 2023-06-29 Processing Customer 9387 482105.2097219790 +9760 t 76 153814 30.569876 0.6719705710197772 Product description 9760 2023-08-23 14:03:01.089303 2025-03-01 Closed Customer 9760 944504.3807042350 +9424 f 32 369273 14.366453 0.3409707554695167 Product description 9424 2022-07-30 14:03:01.089303 2023-11-06 Processing Customer 9424 219717.1545841170 +9390 t 48 14549 51.95067 0.09529666977472218 Product description 9390 2021-08-26 14:03:01.089303 2024-02-02 Closed Customer 9390 362291.7552116500 +9766 f 38 741291 59.740673 0.35032800978385126 Product description 9766 2024-03-09 14:03:01.089303 2023-02-14 Closed Customer 9766 765731.2018435190 +9427 f 82 507357 79.98207 0.7582016100018016 Product description 9427 2021-11-10 14:03:01.089303 2025-09-06 Processing Customer 9427 552896.8069248560 +9393 f 34 958136 56.095257 0.362450985773183 Product description 9393 2021-11-29 14:03:01.089303 2023-09-02 Closed Customer 9393 126870.6777741780 +9767 f 95 977195 29.337389 0.08762492082585283 Product description 9767 2023-07-07 14:03:01.089303 2023-04-27 Closed Customer 9767 554619.6529979320 +9428 f 15 8924 18.839571 0.06968444737043811 Product description 9428 2021-09-22 14:03:01.089303 2025-06-19 Processing Customer 9428 840139.5582788350 +9396 f 2 2004 13.30933 0.8777961149891347 Product description 9396 2024-02-02 14:03:01.089303 2025-08-08 Closed Customer 9396 738066.4054353830 +9768 f 33 435442 43.13924 0.9876325360219624 Product description 9768 2024-04-18 14:03:01.089303 2024-10-10 Closed Customer 9768 3148.2217269563 +9429 f 54 181779 74.080025 0.7216123523605624 Product description 9429 2024-04-24 14:03:01.089303 2023-06-15 Closed Customer 9429 181771.5774775980 +9398 t 59 458705 17.604334 0.786109004468134 Product description 9398 2021-09-24 14:03:01.089303 2024-05-26 Closed Customer 9398 827941.8639891530 +9771 t 23 375934 43.666584 0.8166336591736396 Product description 9771 2023-03-27 14:03:01.089303 2025-02-16 Processing Customer 9771 883195.8645407280 +9434 f 50 839209 96.44866 0.8847635384907626 Product description 9434 2023-08-30 14:03:01.089303 2024-12-29 Processing Customer 9434 241760.8869286600 +9401 t 32 81130 53.433918 0.2727429336099867 Product description 9401 2024-07-15 14:03:01.089303 2024-12-27 Closed Customer 9401 213923.8939632760 +9775 t 78 583151 4.9628854 0.7826232345991002 Product description 9775 2022-09-15 14:03:01.089303 2023-10-14 Processing Customer 9775 410135.5281078410 +9437 f 38 259446 3.7326891 0.8022161508745249 Product description 9437 2021-09-09 14:03:01.089303 2024-11-06 Closed Customer 9437 38056.5699213165 +9402 f 42 885164 11.513605 0.1031114016905299 Product description 9402 2023-06-20 14:03:01.089303 2023-06-14 Closed Customer 9402 703573.4984264650 +9784 t 59 339400 37.56962 0.30871470559817027 Product description 9784 2023-04-28 14:03:01.089303 2024-08-28 Processing Customer 9784 705979.9677293520 +9441 f 97 311064 87.501625 0.40301261008605493 Product description 9441 2022-08-12 14:03:01.089303 2023-04-11 Closed Customer 9441 340260.8373535970 +9403 t 31 704912 62.899277 0.11167539176488717 Product description 9403 2023-11-08 14:03:01.089303 2023-10-20 Processing Customer 9403 521252.4492350850 +9790 f 12 713034 10.004907 0.07468252055964797 Product description 9790 2024-01-06 14:03:01.089303 2024-11-08 Closed Customer 9790 853539.4506678920 +9443 f 51 752711 57.67208 0.7246907281282908 Product description 9443 2023-09-14 14:03:01.089303 2025-07-28 Processing Customer 9443 925977.3848316040 +9405 f 24 724845 49.478092 0.272722848757585 Product description 9405 2023-05-30 14:03:01.089303 2023-08-27 Processing Customer 9405 199590.2699577670 +9791 f 37 578673 61.660988 0.4898492136188324 Product description 9791 2023-12-09 14:03:01.089303 2025-12-03 Closed Customer 9791 231894.0087459290 +9447 f 75 945485 80.879555 0.11356325757548191 Product description 9447 2023-10-15 14:03:01.089303 2023-09-05 Closed Customer 9447 150492.1214153970 +9409 f 63 340153 17.30872 0.9404651229408039 Product description 9409 2023-11-12 14:03:01.089303 2025-08-24 Processing Customer 9409 667919.3777398710 +9793 t 77 976099 52.916126 0.015685594981533768 Product description 9793 2023-07-27 14:03:01.089303 2025-01-27 Cancelled Customer 9793 943813.7816980970 +9449 f 12 659905 56.18362 0.9621269390354676 Product description 9449 2022-05-19 14:03:01.089303 2024-01-19 Closed Customer 9449 198997.7965990090 +9411 t 39 502358 71.64219 0.9033205948276652 Product description 9411 2022-02-09 14:03:01.089303 2024-08-17 Closed Customer 9411 315526.9426082160 +9794 t 98 728559 1.732639 0.33794160239345317 Product description 9794 2021-11-12 14:03:01.089303 2024-06-20 Closed Customer 9794 661755.5684960550 +9451 f 51 234660 45.142223 0.870463885572466 Product description 9451 2021-10-21 14:03:01.089303 2023-05-17 Processing Customer 9451 882538.4072233500 +9412 t 92 657583 16.306702 0.08783578242738699 Product description 9412 2023-06-12 14:03:01.089303 2025-09-23 Processing Customer 9412 80173.9997071778 +9796 t 97 171165 45.13479 0.2173217051217371 Product description 9796 2022-06-03 14:03:01.089303 2023-06-17 Processing Customer 9796 568115.3569308890 +9452 t 76 203053 96.238556 0.7784702888846304 Product description 9452 2023-03-12 14:03:01.089303 2024-01-13 Processing Customer 9452 756085.7282561460 +9414 t 94 484290 16.492949 0.856639437616824 Product description 9414 2024-07-10 14:03:01.089303 2023-07-27 Cancelled Customer 9414 761417.3771492180 +9797 f 73 596033 46.569416 0.9245354201810834 Product description 9797 2022-05-27 14:03:01.089303 2023-04-29 Cancelled Customer 9797 306638.2065806690 +9453 f 56 117554 95.69408 0.7622399877681296 Product description 9453 2023-10-13 14:03:01.089303 2025-02-12 Closed Customer 9453 172376.1332353320 +9416 f 76 280675 30.943811 0.9560520916285782 Product description 9416 2024-05-27 14:03:01.089303 2024-06-20 Processing Customer 9416 843674.1001743790 +9799 t 70 165947 21.590992 0.4152737700351494 Product description 9799 2022-07-13 14:03:01.089303 2025-04-18 Processing Customer 9799 108770.2875558310 +9462 t 79 556962 14.493718 0.9854608073699715 Product description 9462 2022-03-07 14:03:01.089303 2025-06-29 Processing Customer 9462 345767.6132457620 +9422 t 80 970413 67.35851 0.007095761536170642 Product description 9422 2023-07-14 14:03:01.089303 2023-11-14 Closed Customer 9422 724030.6335519650 +9801 f 31 373139 57.585064 0.028437179791097833 Product description 9801 2024-04-12 14:03:01.089303 2023-11-17 Closed Customer 9801 862806.8369983700 +9465 f 34 202554 68.34444 0.8832550145880624 Product description 9465 2024-06-13 14:03:01.089303 2025-02-04 Processing Customer 9465 51620.2234065446 +9425 f 52 31639 65.01273 0.11885316518943512 Product description 9425 2023-02-21 14:03:01.089303 2023-11-10 Processing Customer 9425 417642.7033457450 +9802 f 43 610981 29.288746 0.35960444556574345 Product description 9802 2024-05-22 14:03:01.089303 2025-07-22 Closed Customer 9802 569074.8616241910 +9466 t 32 901704 84.95311 0.2678217459070531 Product description 9466 2021-10-20 14:03:01.089303 2024-02-08 Closed Customer 9466 65343.3994550809 +9426 t 84 526094 66.90578 0.5520175340117461 Product description 9426 2022-10-10 14:03:01.089303 2024-02-24 Processing Customer 9426 171175.7114915610 +9803 t 81 88920 83.295296 0.8502441266050909 Product description 9803 2023-07-26 14:03:01.089303 2024-12-22 Closed Customer 9803 682080.3886204030 +9467 f 64 423099 40.869663 0.4607981534667722 Product description 9467 2022-03-15 14:03:01.089303 2025-06-17 Processing Customer 9467 123203.2688919560 +9430 t 3 123452 61.32161 0.3896727231118291 Product description 9430 2023-07-27 14:03:01.089303 2024-05-27 Processing Customer 9430 73455.0420447384 +9806 f 65 749698 82.22809 0.7857437181657403 Product description 9806 2021-10-13 14:03:01.089303 2025-12-23 Cancelled Customer 9806 811028.7292811980 +9469 t 27 473316 16.828947 0.9724893440985305 Product description 9469 2022-05-03 14:03:01.089303 2024-08-07 Processing Customer 9469 194682.9432733710 +9432 t 42 107110 5.957212 0.781386235484753 Product description 9432 2022-02-23 14:03:01.089303 2025-07-14 Cancelled Customer 9432 923059.7450225490 +9807 f 44 109438 90.2646 0.06332853797724525 Product description 9807 2023-09-09 14:03:01.089303 2024-05-29 Closed Customer 9807 559612.0746566980 +9473 f 56 718129 54.601078 0.10428338491425748 Product description 9473 2022-05-01 14:03:01.089303 2023-04-20 Closed Customer 9473 657278.0799431680 +9433 t 21 158273 75.47829 0.9968118234696881 Product description 9433 2024-03-27 14:03:01.089303 2025-07-10 Processing Customer 9433 442988.9842426180 +9808 t 26 752181 93.45589 0.5029677704015505 Product description 9808 2024-07-09 14:03:01.089303 2024-08-05 Closed Customer 9808 652442.7765873710 +9476 f 73 140640 13.69062 0.7890365374354182 Product description 9476 2023-04-13 14:03:01.089303 2025-08-30 Processing Customer 9476 604522.7408925980 +9435 f 38 49589 47.96534 0.4115102601503473 Product description 9435 2022-12-09 14:03:01.089303 2023-09-25 Processing Customer 9435 311401.0531691700 +9811 f 73 801006 59.83184 0.4633013477063521 Product description 9811 2024-06-28 14:03:01.089303 2023-12-31 Closed Customer 9811 470726.6724942370 +9483 t 9 617034 70.53051 0.01083434478546863 Product description 9483 2022-04-13 14:03:01.089303 2023-08-03 Cancelled Customer 9483 312694.7513503960 +9438 t 78 580855 53.30371 0.07966761798130406 Product description 9438 2022-07-04 14:03:01.089303 2024-01-18 Processing Customer 9438 259878.3218327440 +9822 t 6 918819 4.467205 0.029835771225034335 Product description 9822 2022-05-27 14:03:01.089303 2024-09-06 Processing Customer 9822 462856.3892435760 +9486 f 10 832592 92.79775 0.5604022089775214 Product description 9486 2023-11-11 14:03:01.089303 2023-05-10 Closed Customer 9486 717022.5749553760 +9444 t 32 666490 12.56007 0.768989334291927 Product description 9444 2023-06-26 14:03:01.089303 2023-09-26 Closed Customer 9444 422990.1435995980 +9824 t 93 709372 28.267855 0.23153103368355588 Product description 9824 2024-03-08 14:03:01.089303 2025-06-22 Processing Customer 9824 872796.0402873550 +9488 f 18 302369 65.83845 0.3966802376521841 Product description 9488 2024-01-27 14:03:01.089303 2024-12-04 Processing Customer 9488 510451.7629858270 +9445 f 86 972464 91.52607 0.5078020687479246 Product description 9445 2023-08-04 14:03:01.089303 2024-05-26 Processing Customer 9445 334694.0671461600 +9830 f 3 839268 71.89254 0.04025983199185745 Product description 9830 2023-06-03 14:03:01.089303 2023-07-26 Processing Customer 9830 549959.6266849310 +9490 f 58 365741 37.75577 0.5500672339521486 Product description 9490 2021-08-11 14:03:01.089303 2023-09-24 Processing Customer 9490 972222.7055698020 +9446 f 11 466290 74.97961 0.4862318078341694 Product description 9446 2021-10-22 14:03:01.089303 2024-04-21 Closed Customer 9446 833467.3264579140 +9834 t 89 984216 19.572441 0.1023041950647503 Product description 9834 2021-12-31 14:03:01.089303 2024-08-12 Closed Customer 9834 392081.9294836520 +9492 f 29 165876 40.363014 0.48938837019793624 Product description 9492 2022-09-04 14:03:01.089303 2024-12-17 Processing Customer 9492 21515.7358910041 +9450 f 61 642163 32.685764 0.987581364131703 Product description 9450 2022-03-10 14:03:01.089303 2023-03-06 Closed Customer 9450 828899.9667401380 +9836 f 71 825595 90.26154 0.09621473272852299 Product description 9836 2024-02-21 14:03:01.089303 2025-11-26 Closed Customer 9836 901768.8281231880 +9494 t 57 383808 1.2271127 0.1922376604543814 Product description 9494 2022-10-31 14:03:01.089303 2023-05-10 Closed Customer 9494 154414.5823605550 +9454 t 1 793183 26.308388 0.3585794276914207 Product description 9454 2022-01-13 14:03:01.089303 2023-09-08 Cancelled Customer 9454 687184.1636363420 +9840 t 70 445038 1.1666718 0.07674679956571495 Product description 9840 2021-08-18 14:03:01.089303 2024-10-13 Processing Customer 9840 605787.0069723350 +9500 f 7 80197 33.226677 0.031164768441776403 Product description 9500 2022-01-09 14:03:01.089303 2023-03-22 Closed Customer 9500 31753.9026311415 +9455 t 94 309631 47.66416 0.5566060545656413 Product description 9455 2023-02-10 14:03:01.089303 2024-10-14 Closed Customer 9455 563950.5927455600 +9841 f 29 122583 19.939625 0.19330152600253925 Product description 9841 2024-02-05 14:03:01.089303 2024-05-27 Processing Customer 9841 973184.2245560860 +9502 f 89 752568 74.297386 0.7477744198926075 Product description 9502 2024-01-16 14:03:01.089303 2023-04-24 Processing Customer 9502 165136.0244856010 +9458 t 74 196156 95.498375 0.3985192694601807 Product description 9458 2023-01-20 14:03:01.089303 2025-02-16 Processing Customer 9458 965857.4290760490 +9849 f 5 800053 65.84758 0.5455844877119382 Product description 9849 2023-10-20 14:03:01.089303 2023-06-29 Processing Customer 9849 487937.6867843630 +9507 f 48 855879 17.546629 0.3431679115443629 Product description 9507 2021-08-16 14:03:01.089303 2023-10-01 Closed Customer 9507 921564.6965161320 +9460 f 71 6142 42.695023 0.8348480894770987 Product description 9460 2023-03-22 14:03:01.089303 2024-02-03 Processing Customer 9460 100197.5123656860 +9850 f 21 267699 71.79952 0.6173608907485253 Product description 9850 2023-07-30 14:03:01.089303 2023-07-19 Processing Customer 9850 312802.3493082210 +9511 f 50 329795 45.662743 0.6932182317641065 Product description 9511 2023-04-04 14:03:01.089303 2025-03-15 Processing Customer 9511 696386.0270033240 +9463 t 92 214195 79.91603 0.4898326134908473 Product description 9463 2022-11-01 14:03:01.089303 2025-04-30 Closed Customer 9463 894661.9047287320 +9851 f 98 210750 46.142902 0.5519670718869101 Product description 9851 2021-08-29 14:03:01.089303 2025-12-02 Processing Customer 9851 354993.3913742360 +9513 t 59 967553 70.322845 0.653953259751539 Product description 9513 2022-01-21 14:03:01.089303 2025-06-13 Cancelled Customer 9513 609919.9619813830 +9468 f 46 596089 18.79594 0.2747700154178361 Product description 9468 2024-06-27 14:03:01.089303 2023-02-22 Processing Customer 9468 943189.6733557930 +9858 f 28 137759 64.77636 0.5888420499494877 Product description 9858 2022-04-17 14:03:01.089303 2023-10-31 Closed Customer 9858 813862.7656123770 +9516 t 89 455545 59.735687 0.3281507579445737 Product description 9516 2021-12-31 14:03:01.089303 2025-06-27 Processing Customer 9516 225788.6724403730 +9470 t 79 894888 8.168608 0.31512691986442576 Product description 9470 2024-06-18 14:03:01.089303 2024-06-13 Processing Customer 9470 208198.7930480230 +9861 f 45 304261 32.400093 0.9602266092224632 Product description 9861 2024-04-25 14:03:01.089303 2024-01-28 Closed Customer 9861 931558.1141417510 +9517 t 80 530288 24.592743 0.7087331903502267 Product description 9517 2023-03-07 14:03:01.089303 2025-05-20 Closed Customer 9517 265463.9722122100 +9472 t 9 974461 71.32779 0.032872225115902154 Product description 9472 2022-01-31 14:03:01.089303 2023-10-30 Processing Customer 9472 978064.7210726170 +9865 t 35 481325 58.81514 0.5808241733311057 Product description 9865 2023-12-11 14:03:01.089303 2024-10-14 Processing Customer 9865 250135.0518593380 +9521 f 95 45164 41.931538 0.4921387963381285 Product description 9521 2023-02-09 14:03:01.089303 2023-06-10 Closed Customer 9521 308158.3825184000 +9475 t 13 348478 1.1139739 0.3562413935337645 Product description 9475 2023-12-14 14:03:01.089303 2025-11-24 Cancelled Customer 9475 704676.3210914970 +9873 f 48 619562 41.777267 0.7264501766423201 Product description 9873 2023-01-07 14:03:01.089303 2024-01-19 Processing Customer 9873 574786.8601743140 +9522 t 21 619634 2.3901875 0.9064037506649321 Product description 9522 2024-07-06 14:03:01.089303 2025-03-01 Processing Customer 9522 52545.5162559254 +9479 f 59 625145 15.616414 0.45395319127801415 Product description 9479 2021-12-01 14:03:01.089303 2023-01-08 Closed Customer 9479 964683.4618933080 +9878 t 56 374467 79.715225 0.1453062108850638 Product description 9878 2024-07-22 14:03:01.089303 2024-12-25 Closed Customer 9878 316912.4892946440 +9527 f 47 773452 77.77043 0.4782597838189737 Product description 9527 2023-07-05 14:03:01.089303 2023-02-13 Processing Customer 9527 475973.7236428950 +9480 f 93 682436 59.94897 0.08081353191260021 Product description 9480 2023-06-25 14:03:01.089303 2023-04-21 Processing Customer 9480 54502.2726540481 +9879 f 90 690389 0.962797 0.525239229543832 Product description 9879 2023-06-06 14:03:01.089303 2023-09-17 Closed Customer 9879 451515.4857939190 +9530 f 78 377352 34.323517 0.7914765143724587 Product description 9530 2023-03-14 14:03:01.089303 2025-07-02 Closed Customer 9530 363567.6917211510 +9481 t 74 85018 96.41841 0.7752497331009316 Product description 9481 2022-02-17 14:03:01.089303 2025-07-23 Processing Customer 9481 219670.1469623360 +9880 t 15 25369 56.83236 0.6014736628519266 Product description 9880 2023-05-03 14:03:01.089303 2025-06-21 Processing Customer 9880 749425.0456223670 +9531 t 53 777889 3.0122023 0.4095004058171874 Product description 9531 2022-08-19 14:03:01.089303 2025-01-07 Closed Customer 9531 90941.9291029110 +9482 t 55 683770 23.03653 0.14189214961169583 Product description 9482 2024-06-25 14:03:01.089303 2024-02-09 Closed Customer 9482 463383.3936554050 +9889 t 62 491424 23.532219 0.40544249518297093 Product description 9889 2021-11-13 14:03:01.089303 2023-02-23 Processing Customer 9889 172961.7018776680 +9532 t 82 754383 91.45224 0.7035040199167746 Product description 9532 2023-04-25 14:03:01.089303 2025-10-29 Closed Customer 9532 239645.4327058920 +9484 f 85 541626 59.926235 0.6001491543633897 Product description 9484 2024-02-29 14:03:01.089303 2023-06-13 Closed Customer 9484 459534.4582613090 +9890 t 36 577910 15.393858 0.7371246992647507 Product description 9890 2022-03-02 14:03:01.089303 2025-10-24 Processing Customer 9890 424392.6036888790 +9533 f 42 46952 75.85913 0.05442613478465219 Product description 9533 2024-01-31 14:03:01.089303 2023-04-11 Closed Customer 9533 809263.6718530310 +9485 f 29 375604 91.9147 0.11804757361467821 Product description 9485 2023-08-08 14:03:01.089303 2025-09-22 Processing Customer 9485 427556.5297609770 +9893 t 44 918797 78.766464 0.4230590503139702 Product description 9893 2021-12-08 14:03:01.089303 2024-04-05 Processing Customer 9893 379336.6135867020 +9537 t 57 772372 55.02604 0.5396969368015725 Product description 9537 2022-05-03 14:03:01.089303 2023-01-26 Processing Customer 9537 461721.6671579100 +9489 t 61 809662 21.983564 0.5495778686085906 Product description 9489 2021-12-18 14:03:01.089303 2023-08-02 Closed Customer 9489 812066.4395792190 +9897 f 28 179271 23.508116 0.34892610978158345 Product description 9897 2023-10-06 14:03:01.089303 2024-06-25 Processing Customer 9897 181711.5096637350 +9539 f 38 281962 27.886194 0.8478370196076135 Product description 9539 2022-07-18 14:03:01.089303 2024-09-14 Processing Customer 9539 308417.8348903490 +9495 t 76 858475 53.552113 0.3287694144230251 Product description 9495 2023-01-06 14:03:01.089303 2024-03-25 Processing Customer 9495 391634.0358149030 +9900 f 21 846439 15.726626 0.844607872527579 Product description 9900 2023-08-13 14:03:01.089303 2024-06-01 Processing Customer 9900 305284.2025857250 +9541 t 57 657092 15.798174 0.8124736474532561 Product description 9541 2022-09-14 14:03:01.089303 2023-03-04 Processing Customer 9541 455485.7314153150 +9497 f 91 310729 1.8953289 0.43700405332289094 Product description 9497 2021-12-17 14:03:01.089303 2025-03-17 Closed Customer 9497 5506.6817096403 +9901 f 46 250640 31.30963 0.737929604818202 Product description 9901 2024-08-02 14:03:01.089303 2025-12-24 Cancelled Customer 9901 53379.7644820559 +9545 t 14 96461 57.321514 0.398820147387287 Product description 9545 2022-12-27 14:03:01.089303 2024-10-06 Closed Customer 9545 318141.3429574750 +9499 t 37 505853 85.95432 0.8537353846200979 Product description 9499 2022-05-17 14:03:01.089303 2024-08-02 Cancelled Customer 9499 99147.5704462950 +9904 f 9 347609 24.152534 0.6044274603415047 Product description 9904 2023-09-01 14:03:01.089303 2024-12-30 Processing Customer 9904 714453.7259877700 +9547 f 56 847959 69.03157 0.21578942934656808 Product description 9547 2023-10-03 14:03:01.089303 2023-09-27 Closed Customer 9547 357579.8226433090 +9501 t 72 331825 97.708046 0.05137161534791801 Product description 9501 2024-05-30 14:03:01.089303 2023-02-15 Processing Customer 9501 391990.9823377840 +9906 f 60 696642 6.780592 0.4289155378070717 Product description 9906 2023-08-25 14:03:01.089303 2023-10-09 Processing Customer 9906 387402.5650254500 +9549 f 89 175835 84.57146 0.5070501512610015 Product description 9549 2024-02-24 14:03:01.089303 2024-08-03 Processing Customer 9549 504881.5995931760 +9503 f 77 649628 72.55094 0.4467466822045978 Product description 9503 2024-07-03 14:03:01.089303 2023-07-09 Closed Customer 9503 602106.8652547290 +9908 t 91 282912 87.15121 0.8907508620889573 Product description 9908 2022-12-01 14:03:01.089303 2023-10-06 Closed Customer 9908 372437.9428416180 +9550 t 16 384171 75.7064 0.12414417271085298 Product description 9550 2022-04-24 14:03:01.089303 2025-04-29 Processing Customer 9550 97022.2935646703 +9508 t 50 760498 10.091609 0.8103064770275523 Product description 9508 2022-11-15 14:03:01.089303 2025-02-01 Closed Customer 9508 456748.5120321600 +9917 f 44 728109 87.012924 0.8786836554263573 Product description 9917 2024-07-18 14:03:01.089303 2025-09-07 Processing Customer 9917 276707.3883740030 +9552 t 95 471222 20.271767 0.53871358251644 Product description 9552 2021-10-14 14:03:01.089303 2024-05-18 Processing Customer 9552 608490.1929370260 +9512 t 44 895131 48.771835 0.4487085997354896 Product description 9512 2024-05-27 14:03:01.089303 2025-04-03 Processing Customer 9512 54172.7001677579 +9918 f 64 614797 46.876717 0.725062253987069 Product description 9918 2024-03-16 14:03:01.089303 2024-08-24 Processing Customer 9918 746284.9633616070 +9553 t 68 492318 66.975266 0.7046258516056518 Product description 9553 2022-07-30 14:03:01.089303 2025-05-24 Processing Customer 9553 677231.8245944500 +9518 f 29 824687 47.745335 0.8038164278455753 Product description 9518 2024-06-28 14:03:01.089303 2025-07-11 Cancelled Customer 9518 344936.3051111900 +9925 f 57 965769 48.772133 0.610229129868074 Product description 9925 2021-08-28 14:03:01.089303 2023-05-13 Closed Customer 9925 416783.5718790340 +9557 f 56 92828 58.740833 0.1697020387378707 Product description 9557 2023-09-15 14:03:01.089303 2025-10-07 Cancelled Customer 9557 51078.3457747586 +9523 f 8 538744 71.8744 0.2720059379655275 Product description 9523 2022-08-17 14:03:01.089303 2023-02-03 Closed Customer 9523 713741.0002295400 +9926 t 72 832097 40.38785 0.2249372901155411 Product description 9926 2022-09-30 14:03:01.089303 2024-07-18 Processing Customer 9926 663814.3635144510 +9558 f 5 736925 38.35229 0.22354986226515905 Product description 9558 2022-07-26 14:03:01.089303 2025-04-20 Closed Customer 9558 672494.1671336180 +9528 t 27 924385 78.516624 0.2744645486115509 Product description 9528 2021-12-31 14:03:01.089303 2024-12-25 Closed Customer 9528 631333.7596865690 +9927 f 37 951469 13.92366 0.48278921100373395 Product description 9927 2022-09-20 14:03:01.089303 2023-07-31 Closed Customer 9927 537659.9902215520 +9561 t 17 708263 30.338661 0.07737399267593759 Product description 9561 2021-08-05 14:03:01.089303 2025-01-20 Processing Customer 9561 565516.3279118830 +9535 t 12 528722 55.284542 0.1257215457671741 Product description 9535 2022-02-21 14:03:01.089303 2024-01-15 Closed Customer 9535 225043.4653747600 +9930 t 76 164856 16.348263 0.635412222160916 Product description 9930 2023-03-01 14:03:01.089303 2024-06-29 Closed Customer 9930 184545.2235161280 +9563 f 26 644179 47.93503 0.4399594947472849 Product description 9563 2023-04-26 14:03:01.089303 2024-03-10 Closed Customer 9563 185977.2081129130 +9538 f 38 514866 38.91162 0.7836227545363563 Product description 9538 2022-03-01 14:03:01.089303 2024-02-05 Processing Customer 9538 797741.4533672800 +9931 t 32 553945 60.348026 0.7326819720578754 Product description 9931 2024-02-12 14:03:01.089303 2025-06-11 Closed Customer 9931 47495.6556420629 +9564 t 15 720633 53.82667 0.849166560583491 Product description 9564 2022-08-30 14:03:01.089303 2023-12-24 Processing Customer 9564 854660.2285286480 +9544 t 57 526407 1.6269294 0.4776178780757583 Product description 9544 2022-06-04 14:03:01.089303 2023-12-01 Processing Customer 9544 189226.7383341350 +9933 t 38 865067 33.14504 0.3312813874577998 Product description 9933 2023-11-15 14:03:01.089303 2024-05-11 Processing Customer 9933 329366.2137761150 +9565 t 97 941130 45.929325 0.16448227705056695 Product description 9565 2021-12-14 14:03:01.089303 2023-10-14 Processing Customer 9565 996640.0090645320 +9548 f 67 569864 90.90759 0.5826234867542759 Product description 9548 2023-09-13 14:03:01.089303 2025-01-22 Processing Customer 9548 55903.1384980955 +9934 f 10 630994 41.97722 0.6941037934173551 Product description 9934 2023-04-05 14:03:01.089303 2025-04-25 Processing Customer 9934 117482.9441745790 +9567 t 20 422901 23.070578 0.4618461769985558 Product description 9567 2023-03-26 14:03:01.089303 2024-09-21 Processing Customer 9567 639332.9908285810 +9554 f 30 153099 39.636642 0.4470121001506975 Product description 9554 2024-06-24 14:03:01.089303 2025-06-09 Closed Customer 9554 652177.8183548220 +9936 t 27 559908 57.279552 0.33785355516244664 Product description 9936 2023-04-11 14:03:01.089303 2025-11-24 Processing Customer 9936 937905.0112907270 +9569 f 35 809361 60.893047 0.9077625359072954 Product description 9569 2023-07-11 14:03:01.089303 2024-04-06 Processing Customer 9569 34395.3334943272 +9555 f 60 714535 13.056798 0.9399227856266528 Product description 9555 2021-08-31 14:03:01.089303 2024-08-17 Processing Customer 9555 26189.3529838346 +9937 f 79 530025 40.301003 0.913834050711003 Product description 9937 2022-04-22 14:03:01.089303 2023-07-21 Processing Customer 9937 654221.1417477790 +9572 t 29 95274 7.5606313 0.879300531283441 Product description 9572 2023-02-25 14:03:01.089303 2023-09-06 Processing Customer 9572 254728.7742308730 +9559 t 63 552646 66.3841 0.26391021432189277 Product description 9559 2022-01-24 14:03:01.089303 2025-06-05 Closed Customer 9559 929177.7583540930 +9947 f 72 746702 94.760185 0.3943802061965229 Product description 9947 2024-07-20 14:03:01.089303 2023-03-29 Processing Customer 9947 454813.4103924220 +9575 t 12 783651 16.257439 0.6610284158060296 Product description 9575 2021-09-21 14:03:01.089303 2024-11-09 Cancelled Customer 9575 867374.8515205660 +9562 f 34 542295 29.220562 0.3200134999985984 Product description 9562 2022-10-07 14:03:01.089303 2024-11-12 Closed Customer 9562 220812.5632621290 +9950 t 78 435689 36.35793 0.3113889554781224 Product description 9950 2024-01-01 14:03:01.089303 2023-08-25 Cancelled Customer 9950 581275.2401741220 +9579 t 12 234553 72.05713 0.29068650183281974 Product description 9579 2022-07-16 14:03:01.089303 2024-01-16 Closed Customer 9579 610144.6574396970 +9568 t 2 48118 48.13943 0.338194135820725 Product description 9568 2024-07-20 14:03:01.089303 2025-09-16 Closed Customer 9568 252177.9146335280 +9952 t 52 64827 5.95739 0.00810710707495943 Product description 9952 2021-10-08 14:03:01.089303 2023-11-17 Closed Customer 9952 607166.1806234870 +9582 f 73 10968 76.79531 0.40890191399393316 Product description 9582 2022-02-01 14:03:01.089303 2023-02-15 Closed Customer 9582 812413.3495279440 +9570 t 42 108557 20.691326 0.15601858519461942 Product description 9570 2021-09-29 14:03:01.089303 2024-03-14 Closed Customer 9570 35284.3332476027 +9955 t 90 957699 43.87155 0.05924131146334233 Product description 9955 2023-03-12 14:03:01.089303 2024-06-08 Processing Customer 9955 107158.2518925990 +9584 t 95 507218 66.03393 0.1374939420079322 Product description 9584 2021-11-21 14:03:01.089303 2023-06-06 Closed Customer 9584 715562.4366806070 +9571 f 52 86328 62.277287 0.647734462242223 Product description 9571 2024-02-01 14:03:01.089303 2025-10-06 Closed Customer 9571 157432.1799697100 +9956 t 57 845671 65.89786 0.7169709035138645 Product description 9956 2023-06-06 14:03:01.089303 2024-03-27 Closed Customer 9956 896778.2995776550 +9589 f 15 338405 26.688759 0.7597170529262094 Product description 9589 2022-09-01 14:03:01.089303 2024-12-20 Processing Customer 9589 869992.4950631160 +9574 t 41 478004 84.46827 0.22320837135592697 Product description 9574 2023-12-17 14:03:01.089303 2024-01-03 Cancelled Customer 9574 70678.6036565639 +9960 f 38 441691 14.252779 0.6510823042470157 Product description 9960 2022-08-25 14:03:01.089303 2025-07-31 Closed Customer 9960 524855.5450458670 +9590 f 70 408816 53.917316 0.045531554761961246 Product description 9590 2023-01-17 14:03:01.089303 2024-08-28 Processing Customer 9590 438993.9485336140 +9576 t 6 219883 44.498867 0.3123909749046163 Product description 9576 2022-04-26 14:03:01.089303 2023-11-14 Processing Customer 9576 958238.5938893160 +9963 f 83 243278 20.44578 0.5704454422828569 Product description 9963 2024-06-06 14:03:01.089303 2023-09-28 Closed Customer 9963 925618.4553542180 +9592 t 100 623508 69.922134 0.28334526766704826 Product description 9592 2022-11-27 14:03:01.089303 2025-10-05 Closed Customer 9592 750869.4997807910 +9577 t 86 371332 22.581882 0.2088979647573197 Product description 9577 2022-02-25 14:03:01.089303 2025-12-08 Closed Customer 9577 51455.3615912554 +9965 f 83 854365 31.640745 0.12935175488944495 Product description 9965 2024-06-28 14:03:01.089303 2025-11-14 Processing Customer 9965 47290.4034863575 +9595 t 18 60861 1.8283676 0.879754173651019 Product description 9595 2024-01-07 14:03:01.089303 2024-09-11 Closed Customer 9595 465039.6321723850 +9580 f 47 295640 67.53454 0.9079317488176315 Product description 9580 2022-09-12 14:03:01.089303 2023-09-15 Closed Customer 9580 167673.7443465690 +9968 t 14 467238 4.8858147 0.10904533569404506 Product description 9968 2024-03-22 14:03:01.089303 2023-01-15 Closed Customer 9968 564750.4476268990 +9597 f 29 392869 98.167145 0.15351853761022838 Product description 9597 2023-08-18 14:03:01.089303 2024-04-11 Processing Customer 9597 366369.4970174730 +9581 t 60 447911 47.173733 0.1406640816677438 Product description 9581 2022-02-11 14:03:01.089303 2025-08-04 Closed Customer 9581 267973.7519846590 +9970 f 72 297608 29.704237 0.6739998727287606 Product description 9970 2021-10-24 14:03:01.089303 2023-11-22 Closed Customer 9970 467372.5930520480 +9599 t 2 930173 20.272734 0.334859303978444 Product description 9599 2022-12-31 14:03:01.089303 2023-02-17 Closed Customer 9599 659294.3019719900 +9583 f 72 476726 93.34149 0.46302005747048725 Product description 9583 2022-04-21 14:03:01.089303 2025-11-25 Closed Customer 9583 646524.7112280930 +9975 t 79 778692 92.25442 0.5833846312963082 Product description 9975 2022-03-20 14:03:01.089303 2025-07-27 Processing Customer 9975 703294.7067502210 +9600 t 49 485446 70.26333 0.35592604529233896 Product description 9600 2022-10-11 14:03:01.089303 2023-01-28 Closed Customer 9600 597151.2790940640 +9585 f 28 476035 63.292343 0.8178714142987431 Product description 9585 2024-07-29 14:03:01.089303 2025-02-07 Closed Customer 9585 470458.6588577830 +9977 t 96 452550 61.31898 0.8410122941374603 Product description 9977 2022-07-07 14:03:01.089303 2025-06-25 Processing Customer 9977 906236.2145049290 +9607 t 32 394336 21.98642 0.8996229527456698 Product description 9607 2024-07-23 14:03:01.089303 2025-10-14 Processing Customer 9607 390009.8985353610 +9591 t 52 945951 49.36932 0.36111759054519155 Product description 9591 2023-08-01 14:03:01.089303 2024-05-13 Processing Customer 9591 544425.7560657880 +9980 f 20 428823 79.5828 0.13774724248935044 Product description 9980 2023-12-27 14:03:01.089303 2023-06-29 Closed Customer 9980 700970.0446152540 +9610 t 35 564856 91.26834 0.8874465544360142 Product description 9610 2022-11-10 14:03:01.089303 2025-07-11 Closed Customer 9610 942460.8491640920 +9593 t 33 23155 74.7502 0.8351478752904526 Product description 9593 2021-10-13 14:03:01.089303 2024-04-07 Processing Customer 9593 626342.3266040500 +9986 f 90 876976 31.824156 0.9569313720274728 Product description 9986 2022-01-30 14:03:01.089303 2025-11-17 Closed Customer 9986 286982.0889258820 +9611 t 9 776171 55.397682 0.9721542552616107 Product description 9611 2021-10-25 14:03:01.089303 2024-11-21 Processing Customer 9611 966693.5077642120 +9596 t 30 345090 63.443756 0.9452530425967041 Product description 9596 2023-08-10 14:03:01.089303 2025-05-28 Processing Customer 9596 427722.7891430720 +9987 t 84 729472 35.6924 0.8429397183530334 Product description 9987 2024-04-21 14:03:01.089303 2025-01-20 Closed Customer 9987 850715.5195123560 +9612 t 50 88222 18.66693 0.6526411230809437 Product description 9612 2022-04-13 14:03:01.089303 2023-07-31 Processing Customer 9612 119013.4602912990 +9598 t 12 566382 71.55642 0.34274239271483253 Product description 9598 2022-10-30 14:03:01.089303 2023-03-11 Closed Customer 9598 107900.8779088930 +9991 t 98 260558 24.799257 0.5635671541569884 Product description 9991 2022-01-20 14:03:01.089303 2024-10-11 Cancelled Customer 9991 26152.2845613094 +9614 t 37 595333 75.1102 0.32411868211722705 Product description 9614 2023-09-19 14:03:01.089303 2025-08-01 Processing Customer 9614 85271.2040810033 +9601 t 46 883527 29.286676 0.8742348379844742 Product description 9601 2022-07-28 14:03:01.089303 2023-12-01 Processing Customer 9601 791942.6323108890 +9992 t 93 619935 1.458554 0.6143965367071331 Product description 9992 2024-07-25 14:03:01.089303 2023-04-07 Closed Customer 9992 392443.5353340920 +9616 f 5 138749 33.37299 0.6491888243032697 Product description 9616 2022-03-14 14:03:01.089303 2025-04-18 Closed Customer 9616 479490.9142937910 +9603 t 24 216362 78.97399 0.3502255033758317 Product description 9603 2021-11-16 14:03:01.089303 2024-11-08 Processing Customer 9603 95599.7579894365 +9993 t 56 489838 83.815956 0.4393812876928038 Product description 9993 2024-04-13 14:03:01.089303 2024-11-07 Closed Customer 9993 662065.6078211660 +9621 f 91 492184 29.965754 0.4010917012963908 Product description 9621 2024-04-21 14:03:01.089303 2025-04-05 Processing Customer 9621 492785.8288401480 +9604 t 74 153251 98.70949 0.5108876582036146 Product description 9604 2021-08-20 14:03:01.089303 2023-08-02 Processing Customer 9604 828251.3375564770 +9994 f 30 346739 42.778652 0.2235869567213058 Product description 9994 2022-02-14 14:03:01.089303 2025-01-21 Processing Customer 9994 463021.3453495990 +9623 f 47 338433 19.766628 0.6950389978540592 Product description 9623 2023-03-20 14:03:01.089303 2023-07-24 Closed Customer 9623 634682.7935267780 +9605 f 72 85601 92.47632 0.8562860189025585 Product description 9605 2024-04-17 14:03:01.089303 2024-07-19 Closed Customer 9605 671883.6035825890 +9995 f 5 317834 14.193038 0.1419887478344961 Product description 9995 2021-10-06 14:03:01.089303 2025-01-11 Closed Customer 9995 217362.8475712550 +9625 f 40 387091 73.01847 0.740260708914871 Product description 9625 2022-02-18 14:03:01.089303 2023-06-22 Processing Customer 9625 209509.0769295710 +9608 f 30 561956 33.01241 0.641021925744738 Product description 9608 2023-07-23 14:03:01.089303 2024-11-14 Processing Customer 9608 395628.7131956170 +9999 f 15 296436 62.79894 0.8952993991221803 Product description 9999 2022-02-24 14:03:01.089303 2024-02-11 Closed Customer 9999 834721.3959174380 +9627 f 44 764106 97.97989 0.5072015357838673 Product description 9627 2023-07-22 14:03:01.089303 2025-10-12 Closed Customer 9627 836827.0626918960 +9615 t 1 331696 35.722694 0.41857377874983825 Product description 9615 2023-07-13 14:03:01.089303 2024-04-09 Closed Customer 9615 130580.1476587370 +10000 f 76 183682 98.78065 0.6973791958494857 Product description 10000 2024-05-29 14:03:01.089303 2025-05-17 Processing Customer 10000 715538.9384201850 +9629 f 71 225532 9.837678 0.8093256409562137 Product description 9629 2023-10-06 14:03:01.089303 2024-03-30 Processing Customer 9629 714436.7960578460 +9619 f 66 506585 87.62186 0.08582626409000227 Product description 9619 2022-11-02 14:03:01.089303 2025-12-06 Closed Customer 9619 690819.0037485400 +9635 t 30 24190 58.70411 0.032997126262987564 Product description 9635 2023-10-25 14:03:01.089303 2025-03-11 Closed Customer 9635 414131.1674583930 +9624 f 36 944408 86.59335 0.4253389497771778 Product description 9624 2022-03-22 14:03:01.089303 2024-04-14 Processing Customer 9624 480414.9497932750 +9636 t 31 919883 5.9577756 0.6859157499064956 Product description 9636 2024-06-10 14:03:01.089303 2024-09-17 Processing Customer 9636 231127.7667475550 +9633 t 64 106433 66.35364 0.6108308697126716 Product description 9633 2023-07-24 14:03:01.089303 2024-02-15 Processing Customer 9633 813550.5614053890 +9644 t 49 685620 64.4731 0.4625625548558112 Product description 9644 2023-09-19 14:03:01.089303 2025-06-01 Closed Customer 9644 940318.4346599860 +9638 t 66 329674 28.353691 0.0495247346650487 Product description 9638 2024-04-21 14:03:01.089303 2024-08-28 Closed Customer 9638 911924.2999895680 +9646 t 87 391948 20.32643 0.46002438687937897 Product description 9646 2022-09-01 14:03:01.089303 2024-03-17 Cancelled Customer 9646 43431.2182904755 +9639 f 98 655014 28.670202 0.9603137614885213 Product description 9639 2024-04-09 14:03:01.089303 2025-07-04 Closed Customer 9639 831183.1489890520 +9648 t 65 216583 23.155115 0.08027908701927089 Product description 9648 2022-05-20 14:03:01.089303 2025-03-13 Processing Customer 9648 764099.7433840830 +9640 t 22 713438 85.57969 0.3600842735465406 Product description 9640 2023-02-03 14:03:01.089303 2024-02-02 Closed Customer 9640 75502.8930144910 +9650 t 89 255044 52.15285 0.3889650063007366 Product description 9650 2021-09-29 14:03:01.089303 2025-05-04 Closed Customer 9650 343538.0503632320 +9642 f 37 918780 55.238293 0.8189260782496746 Product description 9642 2024-01-06 14:03:01.089303 2023-12-20 Closed Customer 9642 731598.0389814280 +9651 f 22 297531 98.238754 0.9715025166232252 Product description 9651 2022-04-03 14:03:01.089303 2024-05-14 Processing Customer 9651 485476.0575040910 +9647 f 14 836789 23.060448 0.616840527382827 Product description 9647 2024-05-18 14:03:01.089303 2023-12-17 Closed Customer 9647 600251.1234815310 +9660 f 21 496078 15.631961 0.6600365277547127 Product description 9660 2024-06-14 14:03:01.089303 2024-09-28 Closed Customer 9660 698606.8899442550 +9649 f 41 71790 15.882994 0.1874360388149796 Product description 9649 2023-09-06 14:03:01.089303 2025-03-29 Closed Customer 9649 883176.1329936080 +9662 f 63 281319 61.78111 0.6323614426556432 Product description 9662 2023-06-16 14:03:01.089303 2024-09-20 Closed Customer 9662 61714.4234210976 +9654 t 8 537626 10.050508 0.4945415802925268 Product description 9654 2024-06-23 14:03:01.089303 2024-07-25 Closed Customer 9654 100139.4214965250 +9667 f 15 889481 49.362988 0.2612431307852887 Product description 9667 2022-05-29 14:03:01.089303 2024-12-29 Closed Customer 9667 277926.2772670810 +9655 t 2 800288 58.132755 0.6749979232157983 Product description 9655 2024-05-28 14:03:01.089303 2024-02-09 Closed Customer 9655 4120.7335311633 +9671 t 1 44199 42.880894 0.4765339005657907 Product description 9671 2021-09-17 14:03:01.089303 2023-05-22 Closed Customer 9671 266416.0194514160 +9656 t 88 762305 60.58676 0.057359653757934836 Product description 9656 2023-12-07 14:03:01.089303 2025-12-05 Closed Customer 9656 462854.2471674170 +9675 t 60 875327 22.699196 0.1558414757647455 Product description 9675 2022-07-07 14:03:01.089303 2023-12-14 Closed Customer 9675 701675.8252524760 +9657 f 36 909543 63.97697 0.8775315415020941 Product description 9657 2024-04-02 14:03:01.089303 2023-01-23 Processing Customer 9657 778807.1675327010 +9677 f 81 638224 42.98401 0.9318447339303404 Product description 9677 2022-09-28 14:03:01.089303 2025-09-22 Processing Customer 9677 286536.1462823050 +9658 t 47 676036 45.788956 0.253541750875236 Product description 9658 2023-10-15 14:03:01.089303 2023-07-09 Processing Customer 9658 10227.5021720040 +9678 t 51 675846 99.82473 0.7366431102395268 Product description 9678 2022-02-28 14:03:01.089303 2025-10-20 Closed Customer 9678 983167.0397747380 +9661 f 28 415012 53.79503 0.6050631899609726 Product description 9661 2022-11-07 14:03:01.089303 2024-12-11 Closed Customer 9661 885539.0014430320 +9680 t 47 359340 33.652023 0.7800995515964999 Product description 9680 2023-12-27 14:03:01.089303 2023-02-23 Closed Customer 9680 354034.7875074620 +9663 t 69 648845 67.86637 0.6159698060912078 Product description 9663 2023-07-02 14:03:01.089303 2025-12-23 Closed Customer 9663 935698.5103764720 +9683 t 22 162174 31.1564 0.6152283246810981 Product description 9683 2022-01-14 14:03:01.089303 2024-10-09 Closed Customer 9683 691197.9687062730 +9664 t 28 477044 47.808025 0.7177701163083441 Product description 9664 2023-12-18 14:03:01.089303 2024-03-28 Processing Customer 9664 447942.9130217590 +9690 f 92 136366 91.84007 0.549594662174421 Product description 9690 2024-07-07 14:03:01.089303 2024-11-07 Closed Customer 9690 760439.5228436720 +9668 t 1 493442 83.75777 0.6608800676755564 Product description 9668 2024-04-15 14:03:01.089303 2023-12-10 Processing Customer 9668 557760.6797026000 +9691 t 59 727907 6.8975635 0.11915531866256401 Product description 9691 2023-10-05 14:03:01.089303 2025-04-08 Closed Customer 9691 670971.3963084280 +9670 t 79 846877 1.5586369 0.6616510879241417 Product description 9670 2022-10-31 14:03:01.089303 2023-05-05 Cancelled Customer 9670 315680.0577453400 +9696 f 83 959508 76.509514 0.6018294465264731 Product description 9696 2022-10-30 14:03:01.089303 2024-01-17 Closed Customer 9696 149153.6435311820 +9672 f 81 664604 88.43547 0.5380001742948899 Product description 9672 2024-01-24 14:03:01.089303 2024-01-21 Closed Customer 9672 823837.0761521380 +9699 f 88 923504 96.19995 0.5468122471174155 Product description 9699 2022-06-23 14:03:01.089303 2025-11-27 Processing Customer 9699 707547.0820072770 +9673 t 81 746360 51.394684 0.8911029496307243 Product description 9673 2024-04-22 14:03:01.089303 2025-05-14 Processing Customer 9673 986421.8972284820 +9702 f 4 857079 34.32871 0.018215359613854787 Product description 9702 2023-02-27 14:03:01.089303 2025-11-01 Processing Customer 9702 238173.8929066910 +9674 t 48 585845 5.909779 0.6647891262118826 Product description 9674 2023-02-03 14:03:01.089303 2023-08-10 Processing Customer 9674 101433.0393959070 +9709 t 2 730130 80.089645 0.1447856990027958 Product description 9709 2021-11-09 14:03:01.089303 2024-02-14 Processing Customer 9709 782083.4852200240 +9682 t 14 724356 59.081253 0.1870616969380201 Product description 9682 2022-01-22 14:03:01.089303 2023-12-19 Cancelled Customer 9682 384383.0857483150 +9711 f 82 739946 79.88044 0.3234572533051576 Product description 9711 2023-07-20 14:03:01.089303 2023-09-04 Closed Customer 9711 847153.7700304200 +9685 t 67 482797 87.45357 0.8102732772321559 Product description 9685 2021-10-28 14:03:01.089303 2025-11-21 Processing Customer 9685 424563.6566802030 +9713 t 61 921234 44.79921 0.9576815691369376 Product description 9713 2021-12-24 14:03:01.089303 2023-07-09 Processing Customer 9713 297431.3331808500 +9686 f 5 322872 70.01133 0.8307932408866279 Product description 9686 2022-01-15 14:03:01.089303 2024-12-08 Closed Customer 9686 531979.5658548010 +9717 t 85 570552 8.933969 0.07450454402688678 Product description 9717 2024-07-14 14:03:01.089303 2024-10-04 Closed Customer 9717 565780.1030475760 +9689 f 28 289303 17.967098 0.24347103580862495 Product description 9689 2023-02-16 14:03:01.089303 2024-08-17 Closed Customer 9689 828842.1762372270 +9718 t 27 350891 82.56382 0.13277218070894037 Product description 9718 2023-04-23 14:03:01.089303 2024-08-15 Cancelled Customer 9718 415217.6143890500 +9694 t 43 551618 63.223686 0.5613343810387121 Product description 9694 2023-12-28 14:03:01.089303 2025-09-07 Processing Customer 9694 107833.8441363690 +9722 t 47 355108 78.59991 0.17755245693409094 Product description 9722 2022-02-16 14:03:01.089303 2025-12-16 Closed Customer 9722 152931.6118392710 +9695 f 50 897257 73.81447 0.5742040166313274 Product description 9695 2024-03-30 14:03:01.089303 2024-02-04 Cancelled Customer 9695 393924.0625478250 +9724 t 83 433238 92.39761 0.7399164250153554 Product description 9724 2023-06-22 14:03:01.089303 2023-06-15 Closed Customer 9724 416151.7456409460 +9700 f 55 937832 36.461212 0.9059295816482198 Product description 9700 2022-02-08 14:03:01.089303 2024-02-07 Closed Customer 9700 844236.4554567590 +9725 t 95 80928 67.439835 0.5198304682637591 Product description 9725 2023-05-23 14:03:01.089303 2025-06-14 Processing Customer 9725 93657.0854917207 +9701 f 57 411557 26.598679 0.9556691500656065 Product description 9701 2023-07-21 14:03:01.089303 2025-03-17 Closed Customer 9701 193575.8655046560 +9728 f 54 348521 72.66174 0.26078331683490674 Product description 9728 2024-02-22 14:03:01.089303 2025-06-14 Closed Customer 9728 459120.1857393370 +9703 t 89 545675 72.8537 0.7179838083140844 Product description 9703 2022-10-14 14:03:01.089303 2023-07-15 Processing Customer 9703 802052.9071553070 +9730 f 20 911484 63.574417 0.4421767312110312 Product description 9730 2022-02-17 14:03:01.089303 2023-08-10 Cancelled Customer 9730 636377.3720047130 +9705 t 14 679652 8.432995 0.22813448424115634 Product description 9705 2023-09-14 14:03:01.089303 2023-03-15 Closed Customer 9705 267604.5533448810 +9733 t 42 90878 27.82516 0.4366224106146106 Product description 9733 2022-08-15 14:03:01.089303 2023-05-11 Closed Customer 9733 941526.2979693500 +9706 t 93 896642 5.30154 0.5582312695635174 Product description 9706 2023-01-23 14:03:01.089303 2023-03-17 Closed Customer 9706 576612.4558420030 +9734 f 24 649924 29.851068 0.5709194119266812 Product description 9734 2024-05-05 14:03:01.089303 2024-05-09 Processing Customer 9734 4998.4383772248 +9708 t 72 743712 50.794098 0.5832166287936822 Product description 9708 2022-02-06 14:03:01.089303 2025-08-23 Processing Customer 9708 485896.8744338910 +9735 t 64 674207 91.59542 0.8810098392823917 Product description 9735 2023-04-12 14:03:01.089303 2023-07-20 Processing Customer 9735 548448.0864561940 +9712 t 74 703381 63.64043 0.712166843968145 Product description 9712 2022-12-31 14:03:01.089303 2025-09-03 Processing Customer 9712 787394.9321446720 +9737 t 25 935255 86.266685 0.35650678572869765 Product description 9737 2021-11-13 14:03:01.089303 2023-10-02 Processing Customer 9737 890009.4071409480 +9714 f 50 956704 50.903866 0.17042581779729815 Product description 9714 2022-05-21 14:03:01.089303 2024-11-02 Closed Customer 9714 868509.4321789680 +9739 t 17 400723 47.618412 0.978135903389564 Product description 9739 2022-05-20 14:03:01.089303 2024-09-24 Closed Customer 9739 540266.4641344220 +9715 t 67 1452 87.4565 0.01884171993790673 Product description 9715 2021-12-29 14:03:01.089303 2025-12-26 Closed Customer 9715 71344.3560738725 +9743 f 73 512135 28.223799 0.7532172310614698 Product description 9743 2022-01-22 14:03:01.089303 2024-03-10 Closed Customer 9743 278127.9910448230 +9720 t 37 701815 12.004417 0.689999481654926 Product description 9720 2022-06-18 14:03:01.089303 2025-01-19 Processing Customer 9720 30593.0889426094 +9747 f 79 496538 20.376905 0.3898192900598687 Product description 9747 2022-01-12 14:03:01.089303 2025-02-12 Closed Customer 9747 231666.1837900150 +9721 t 46 380506 82.528984 0.49103413892570913 Product description 9721 2021-08-27 14:03:01.089303 2025-03-09 Processing Customer 9721 429992.6465301880 +9751 t 59 251275 13.834494 0.6395136128732304 Product description 9751 2023-12-14 14:03:01.089303 2025-10-21 Processing Customer 9751 369585.1596451370 +9726 t 9 135981 67.99304 0.336659342472462 Product description 9726 2023-12-24 14:03:01.089303 2023-07-13 Processing Customer 9726 923435.5250776500 +9753 f 67 475357 14.690228 0.9372381252857522 Product description 9753 2023-04-20 14:03:01.089303 2024-07-27 Closed Customer 9753 99479.9600569003 +9731 t 84 81547 72.44897 0.25228971043707915 Product description 9731 2021-11-01 14:03:01.089303 2024-02-24 Processing Customer 9731 379015.8827915280 +9755 f 0 394426 43.152817 0.0900631111100978 Product description 9755 2024-04-07 14:03:01.089303 2025-03-02 Processing Customer 9755 777097.2760190880 +9732 f 5 476698 29.955725 0.5684631645890796 Product description 9732 2023-03-10 14:03:01.089303 2023-04-04 Processing Customer 9732 385525.8093616530 +9759 f 83 611008 77.128204 0.20415743747923187 Product description 9759 2021-08-26 14:03:01.089303 2025-03-18 Processing Customer 9759 251118.3114494490 +9736 f 65 648011 26.979038 0.1194352817702331 Product description 9736 2024-03-06 14:03:01.089303 2025-05-03 Closed Customer 9736 753659.8264307700 +9761 f 83 535340 79.07956 0.16478607590903493 Product description 9761 2021-11-15 14:03:01.089303 2024-05-20 Processing Customer 9761 12384.2274024888 +9738 f 55 625704 7.266685 0.08460912573302792 Product description 9738 2022-01-04 14:03:01.089303 2024-12-28 Closed Customer 9738 696320.6244615490 +9764 t 0 756169 35.84485 0.09135092227035813 Product description 9764 2022-04-05 14:03:01.089303 2023-02-23 Closed Customer 9764 980060.7628733680 +9744 t 57 430722 85.35278 0.001993373976429069 Product description 9744 2023-09-24 14:03:01.089303 2025-08-17 Processing Customer 9744 123176.1545456960 +9765 f 77 532851 99.109436 0.925395918848281 Product description 9765 2021-10-05 14:03:01.089303 2025-07-06 Processing Customer 9765 771271.6147082790 +9745 f 11 254803 7.352894 0.4155400626023642 Product description 9745 2024-01-15 14:03:01.089303 2023-10-12 Closed Customer 9745 701738.3791942820 +9769 f 10 757369 50.92058 0.3041327209098412 Product description 9769 2022-04-26 14:03:01.089303 2025-02-23 Processing Customer 9769 629485.6123656030 +9746 t 27 431944 7.4041533 0.6845660717511741 Product description 9746 2024-06-15 14:03:01.089303 2024-05-06 Closed Customer 9746 528065.3046460700 +9772 f 95 297100 82.26139 0.9424832190424866 Product description 9772 2022-12-19 14:03:01.089303 2023-11-30 Processing Customer 9772 481589.6569469620 +9748 f 77 255259 22.956263 0.866116261906388 Product description 9748 2021-10-29 14:03:01.089303 2023-11-18 Closed Customer 9748 850613.8907652030 +9773 t 99 229246 48.303825 0.5860649795640498 Product description 9773 2022-02-10 14:03:01.089303 2025-05-02 Closed Customer 9773 622768.8166439440 +9749 t 68 759992 36.85793 0.9783507913438108 Product description 9749 2022-01-09 14:03:01.089303 2024-06-08 Processing Customer 9749 567127.5505368460 +9774 t 88 199669 92.492714 0.6405516235045496 Product description 9774 2022-12-14 14:03:01.089303 2025-07-20 Closed Customer 9774 161199.9052907830 +9750 t 62 52540 64.48448 0.5956743265461206 Product description 9750 2022-07-15 14:03:01.089303 2025-04-22 Closed Customer 9750 294826.6973632630 +9776 t 33 46243 45.787327 0.7696317187534802 Product description 9776 2022-01-21 14:03:01.089303 2023-03-26 Closed Customer 9776 178293.0297833510 +9752 t 77 897231 28.306206 0.28775335960621007 Product description 9752 2023-10-18 14:03:01.089303 2023-10-03 Closed Customer 9752 196807.4795618900 +9777 t 35 42056 23.59222 0.19725238511216503 Product description 9777 2024-07-31 14:03:01.089303 2023-03-02 Processing Customer 9777 570175.9604004300 +9754 t 21 733390 61.35963 0.020786259161003073 Product description 9754 2022-12-22 14:03:01.089303 2025-12-15 Closed Customer 9754 915109.4269705310 +9781 t 18 565019 14.316603 0.5405705736799362 Product description 9781 2022-07-01 14:03:01.089303 2023-11-06 Closed Customer 9781 543470.7504785800 +9756 f 58 370320 96.659615 0.34245913149075236 Product description 9756 2024-06-21 14:03:01.089303 2024-01-23 Closed Customer 9756 260929.9871292380 +9787 t 78 497216 80.05886 0.26580257121436546 Product description 9787 2024-05-27 14:03:01.089303 2025-04-13 Processing Customer 9787 795693.9581662360 +9757 f 61 133301 21.499245 0.6564225842240639 Product description 9757 2024-02-11 14:03:01.089303 2023-12-22 Processing Customer 9757 45313.0645033610 +9789 t 32 736503 96.54614 0.9263578297130479 Product description 9789 2021-08-31 14:03:01.089303 2024-02-15 Processing Customer 9789 462421.2084015550 +9758 f 56 577361 89.823845 0.8398182651534789 Product description 9758 2022-10-30 14:03:01.089303 2023-06-09 Closed Customer 9758 120644.8070267850 +9792 t 41 216897 94.44455 0.6287481538918485 Product description 9792 2023-06-20 14:03:01.089303 2023-06-05 Processing Customer 9792 35435.4457052999 +9762 t 1 41241 16.357853 0.9035763877291352 Product description 9762 2023-10-23 14:03:01.089303 2024-09-16 Processing Customer 9762 788942.4889435190 +9795 f 57 36457 35.234146 0.46890043536340187 Product description 9795 2023-08-10 14:03:01.089303 2024-11-20 Closed Customer 9795 452294.3616169680 +9763 f 54 63184 51.954136 0.5631295758202519 Product description 9763 2024-03-15 14:03:01.089303 2024-05-11 Cancelled Customer 9763 397595.8162881280 +9798 t 30 202244 11.28052 0.5725114216446485 Product description 9798 2024-02-15 14:03:01.089303 2024-06-15 Processing Customer 9798 340777.2238016770 +9770 f 78 26691 93.7319 0.22290371105903972 Product description 9770 2024-04-19 14:03:01.089303 2024-10-24 Closed Customer 9770 587495.6766790440 +9800 t 38 624640 44.161884 0.4527778901574422 Product description 9800 2024-05-27 14:03:01.089303 2023-09-21 Closed Customer 9800 489377.4973809460 +9778 t 4 490351 54.759605 0.46136074843505526 Product description 9778 2021-12-29 14:03:01.089303 2025-10-01 Cancelled Customer 9778 429360.4905699770 +9804 f 61 973928 89.78494 0.5543314943217297 Product description 9804 2023-02-14 14:03:01.089303 2024-09-07 Closed Customer 9804 230872.5964787150 +9779 t 15 64423 2.7338915 0.2709952468593251 Product description 9779 2023-01-09 14:03:01.089303 2024-08-31 Closed Customer 9779 601412.4966931650 +9805 t 32 625136 95.20495 0.3874986394484452 Product description 9805 2022-08-10 14:03:01.089303 2025-12-18 Closed Customer 9805 98045.7404151913 +9780 f 55 432338 95.1985 0.37423284078473174 Product description 9780 2021-09-02 14:03:01.089303 2023-11-25 Processing Customer 9780 341838.2269961740 +9814 t 17 786112 7.397538 0.8281812409293394 Product description 9814 2021-11-26 14:03:01.089303 2024-07-05 Closed Customer 9814 319674.0555508310 +9782 f 96 44 50.875717 0.18603234426779736 Product description 9782 2024-02-02 14:03:01.089303 2023-07-25 Processing Customer 9782 844776.7746328120 +9815 t 57 647353 47.459217 0.7174164248482597 Product description 9815 2024-07-04 14:03:01.089303 2023-08-14 Closed Customer 9815 59147.5884228210 +9783 f 87 51190 44.517418 0.6473690876624438 Product description 9783 2023-11-09 14:03:01.089303 2024-01-30 Processing Customer 9783 123243.6377742520 +9819 t 8 919546 50.699337 0.5190626560584803 Product description 9819 2023-05-03 14:03:01.089303 2025-11-07 Processing Customer 9819 727391.5503164650 +9785 f 81 533223 66.447876 0.9179696399707034 Product description 9785 2022-11-02 14:03:01.089303 2025-06-16 Processing Customer 9785 636653.9225528740 +9832 t 85 84861 22.484722 0.8165435001461461 Product description 9832 2023-11-18 14:03:01.089303 2023-04-17 Closed Customer 9832 990995.7266922370 +9786 f 7 480951 67.57583 0.3138990443439873 Product description 9786 2022-04-10 14:03:01.089303 2023-12-20 Processing Customer 9786 670439.4201570100 +9833 f 49 604401 2.9095657 0.05390980755662156 Product description 9833 2022-06-02 14:03:01.089303 2024-03-29 Closed Customer 9833 33830.9625246716 +9788 t 47 485964 70.45237 0.3353034234193295 Product description 9788 2022-11-29 14:03:01.089303 2024-06-13 Closed Customer 9788 235815.0883415320 +9835 t 95 737058 37.38949 0.15597629079393727 Product description 9835 2022-06-29 14:03:01.089303 2024-12-27 Processing Customer 9835 652832.1346216510 +9809 f 24 462827 48.812103 0.49674876745087104 Product description 9809 2024-02-07 14:03:01.089303 2025-08-16 Closed Customer 9809 972846.0025399810 +9837 t 0 582977 22.92612 0.4434528882347877 Product description 9837 2022-12-02 14:03:01.089303 2025-04-28 Closed Customer 9837 722147.0368747270 +9810 t 91 288562 85.33504 0.4123208327340926 Product description 9810 2023-06-27 14:03:01.089303 2023-01-28 Processing Customer 9810 915822.3754104640 +9839 f 17 499143 62.30817 0.875616512780887 Product description 9839 2021-11-12 14:03:01.089303 2023-06-21 Processing Customer 9839 740150.1993894930 +9812 t 57 487287 3.0846586 0.9287179896368976 Product description 9812 2022-07-16 14:03:01.089303 2024-10-30 Closed Customer 9812 27951.7863349952 +9842 f 65 773921 31.373737 0.18723275034842857 Product description 9842 2024-02-19 14:03:01.089303 2024-01-13 Closed Customer 9842 447031.6200913760 +9813 f 54 886597 10.478945 0.8457781978590297 Product description 9813 2024-04-05 14:03:01.089303 2023-01-24 Processing Customer 9813 836176.6960171690 +9845 t 39 314760 27.575531 0.1940535364969591 Product description 9845 2023-01-06 14:03:01.089303 2025-07-14 Cancelled Customer 9845 146571.9834339790 +9816 f 89 534298 56.53751 0.8224033470548058 Product description 9816 2024-07-27 14:03:01.089303 2024-03-01 Closed Customer 9816 680784.6845213280 +9847 t 14 492415 6.9085917 0.9748879650775883 Product description 9847 2023-10-11 14:03:01.089303 2025-01-17 Processing Customer 9847 151470.4241980520 +9817 t 79 92331 18.477446 0.7360993404242429 Product description 9817 2024-02-05 14:03:01.089303 2023-05-17 Closed Customer 9817 724915.4056475150 +9852 t 70 106863 4.1643248 0.8935318679177549 Product description 9852 2023-08-14 14:03:01.089303 2025-02-15 Processing Customer 9852 256239.3548919810 +9818 t 32 968690 88.344925 0.6582359858712614 Product description 9818 2023-03-23 14:03:01.089303 2025-02-09 Processing Customer 9818 68702.5790210498 +9854 t 78 795021 43.575214 0.566091850201321 Product description 9854 2024-07-08 14:03:01.089303 2024-08-15 Cancelled Customer 9854 509862.2153954330 +9820 f 5 37535 85.98178 0.8138775312592905 Product description 9820 2021-11-12 14:03:01.089303 2024-10-15 Closed Customer 9820 696559.2259810830 +9855 t 77 919060 89.19146 0.05566859724810058 Product description 9855 2022-03-05 14:03:01.089303 2023-03-22 Processing Customer 9855 475146.2890225860 +9821 f 80 979415 51.316574 0.41022225670775825 Product description 9821 2023-02-01 14:03:01.089303 2023-09-14 Closed Customer 9821 831257.6884299430 +9856 t 16 948992 71.66537 0.24278405410463932 Product description 9856 2022-02-08 14:03:01.089303 2024-02-16 Processing Customer 9856 972506.0858620970 +9823 t 51 541123 48.596252 0.3122043389712239 Product description 9823 2022-09-13 14:03:01.089303 2024-05-05 Closed Customer 9823 20919.4446747958 +9857 f 75 25779 66.895004 0.2278479509742226 Product description 9857 2023-02-02 14:03:01.089303 2025-02-04 Closed Customer 9857 84049.8475531284 +9825 t 11 530784 24.205185 0.6547765293713219 Product description 9825 2023-12-22 14:03:01.089303 2023-03-14 Closed Customer 9825 906209.5703013710 +9859 t 51 628879 44.925034 0.9398720143545702 Product description 9859 2023-11-27 14:03:01.089303 2023-07-18 Closed Customer 9859 978567.0440587100 +9826 f 37 782704 23.127136 0.3633522956279158 Product description 9826 2023-10-02 14:03:01.089303 2025-11-02 Processing Customer 9826 804001.6304444250 +9864 t 40 78049 72.89736 0.7202218520325658 Product description 9864 2021-10-25 14:03:01.089303 2025-11-07 Processing Customer 9864 939802.8820043970 +9827 f 87 580185 0.10043934 0.8347754251314861 Product description 9827 2021-09-13 14:03:01.089303 2023-11-17 Closed Customer 9827 351417.6406277580 +9868 f 59 202219 57.135136 0.8326722301442757 Product description 9868 2023-04-06 14:03:01.089303 2025-01-28 Processing Customer 9868 297819.0778674910 +9828 t 83 841382 63.984497 0.9738639708705357 Product description 9828 2022-05-28 14:03:01.089303 2023-02-24 Processing Customer 9828 936807.6841990030 +9869 t 70 91851 87.8357 0.9315479619303915 Product description 9869 2024-02-18 14:03:01.089303 2025-01-12 Processing Customer 9869 175307.7490304770 +9829 f 99 955832 69.55013 0.9569632825988386 Product description 9829 2022-02-09 14:03:01.089303 2025-02-20 Closed Customer 9829 185875.7398928500 +9871 f 44 405928 22.855646 0.9800840572531868 Product description 9871 2023-12-03 14:03:01.089303 2024-11-24 Closed Customer 9871 532603.5450270620 +9831 f 55 352229 50.50462 0.8350304962184758 Product description 9831 2021-11-06 14:03:01.089303 2023-05-06 Processing Customer 9831 734095.5237897690 +9872 f 15 171322 4.949702 0.9066018820168011 Product description 9872 2024-07-06 14:03:01.089303 2025-05-23 Closed Customer 9872 82597.2303032465 +9838 t 98 315829 7.8711658 0.9800447584655139 Product description 9838 2024-05-21 14:03:01.089303 2025-10-21 Closed Customer 9838 162222.4725776820 +9881 f 50 922487 3.1855752 0.037789552143259186 Product description 9881 2023-07-07 14:03:01.089303 2024-12-10 Cancelled Customer 9881 898465.9218807350 +9843 t 17 701177 45.53416 0.7265856294257382 Product description 9843 2023-04-05 14:03:01.089303 2025-12-30 Closed Customer 9843 924081.6337731910 +9883 f 72 347703 97.897156 0.7294477653524076 Product description 9883 2022-02-04 14:03:01.089303 2024-04-07 Closed Customer 9883 279683.7926602360 +9844 t 13 703108 50.157986 0.6627824284793356 Product description 9844 2021-08-23 14:03:01.089303 2024-10-28 Closed Customer 9844 801460.8577942110 +9885 t 4 843464 16.817476 0.8435704117641585 Product description 9885 2022-01-07 14:03:01.089303 2024-10-08 Closed Customer 9885 605486.9141790320 +9846 f 13 38327 25.236666 0.23132990699974343 Product description 9846 2024-03-16 14:03:01.089303 2025-04-14 Processing Customer 9846 890767.6649567480 +9886 t 87 72076 0.40027824 0.1967171573160904 Product description 9886 2022-12-09 14:03:01.089303 2024-06-28 Processing Customer 9886 557251.0214876730 +9848 t 96 436905 19.237862 0.2613704095408913 Product description 9848 2023-08-18 14:03:01.089303 2025-01-30 Closed Customer 9848 25263.3152928325 +9887 t 75 740278 7.178116 0.529503656310677 Product description 9887 2022-11-13 14:03:01.089303 2024-04-25 Closed Customer 9887 859652.5741995790 +9853 f 80 671388 78.50166 0.1990911139017264 Product description 9853 2022-04-23 14:03:01.089303 2025-06-04 Processing Customer 9853 720264.8038965190 +9888 t 30 78373 80.47648 0.31089054864353116 Product description 9888 2022-05-04 14:03:01.089303 2025-10-07 Processing Customer 9888 450999.2383567150 +9860 t 6 148453 28.54577 0.03409968323665069 Product description 9860 2023-05-09 14:03:01.089303 2024-03-04 Closed Customer 9860 602162.2359434960 +9891 f 35 943713 43.599426 0.031037078920927996 Product description 9891 2022-01-09 14:03:01.089303 2023-06-30 Closed Customer 9891 856960.8965865070 +9862 f 97 602126 79.622574 0.5723050155123381 Product description 9862 2023-07-04 14:03:01.089303 2025-03-04 Processing Customer 9862 896530.3124473180 +9892 t 10 91840 73.88757 0.25223009930197193 Product description 9892 2021-12-19 14:03:01.089303 2023-02-08 Processing Customer 9892 758631.7009601370 +9863 t 52 275091 88.69441 0.3853122769513142 Product description 9863 2023-06-27 14:03:01.089303 2024-06-10 Processing Customer 9863 124296.4114249360 +9895 t 65 281375 67.76268 0.88219744250571 Product description 9895 2022-10-10 14:03:01.089303 2024-08-08 Processing Customer 9895 648175.3941449500 +9866 t 14 602112 88.44105 0.14557186066677374 Product description 9866 2022-05-24 14:03:01.089303 2024-11-19 Closed Customer 9866 743796.0244289390 +9902 f 95 899785 9.143852 0.4528386429367437 Product description 9902 2022-12-04 14:03:01.089303 2023-09-05 Closed Customer 9902 810545.7786270880 +9867 f 5 12267 11.307119 0.7819300634389101 Product description 9867 2023-04-24 14:03:01.089303 2025-05-30 Closed Customer 9867 797488.4867725220 +9907 t 75 540200 92.66313 0.33467137344454656 Product description 9907 2024-01-24 14:03:01.089303 2023-09-25 Cancelled Customer 9907 30852.6298874732 +9870 f 66 67928 61.62347 0.8014423884407016 Product description 9870 2022-12-17 14:03:01.089303 2024-12-01 Closed Customer 9870 564260.2429662770 +9910 t 74 71252 68.87339 0.7346421119839377 Product description 9910 2024-06-01 14:03:01.089303 2023-10-23 Processing Customer 9910 177107.4048578820 +9874 f 99 716882 92.1859 0.4421349858747341 Product description 9874 2024-01-23 14:03:01.089303 2023-09-26 Closed Customer 9874 358682.4141325020 +9912 t 20 292855 19.275877 0.15184507356532606 Product description 9912 2023-12-06 14:03:01.089303 2024-12-31 Processing Customer 9912 707334.8328040190 +9875 t 15 244341 21.14437 0.1086697679014712 Product description 9875 2023-08-20 14:03:01.089303 2025-05-08 Processing Customer 9875 90058.9705864476 +9915 t 46 243752 71.49137 0.8456318129887777 Product description 9915 2022-07-30 14:03:01.089303 2025-09-05 Closed Customer 9915 355702.6896786400 +9876 t 45 828504 16.638418 0.6303913154590539 Product description 9876 2023-05-10 14:03:01.089303 2025-06-19 Processing Customer 9876 533711.6890489430 +9921 t 98 262071 80.19413 0.9011500792215941 Product description 9921 2023-06-25 14:03:01.089303 2025-12-16 Processing Customer 9921 411810.1933513820 +9877 f 21 316334 20.717043 0.6421138817285303 Product description 9877 2022-12-02 14:03:01.089303 2023-04-02 Closed Customer 9877 405981.2872126610 +9923 t 79 801481 12.245338 0.9466885528426374 Product description 9923 2023-11-02 14:03:01.089303 2023-11-08 Closed Customer 9923 977625.1580901810 +9882 t 18 188403 19.134687 0.11488241509858099 Product description 9882 2023-03-14 14:03:01.089303 2024-01-19 Processing Customer 9882 670663.0043694160 +9924 t 6 650320 84.918655 0.575887210906771 Product description 9924 2024-06-16 14:03:01.089303 2024-07-30 Closed Customer 9924 15559.1826581194 +9884 f 98 422481 47.463985 0.3809094439526852 Product description 9884 2023-07-22 14:03:01.089303 2025-01-08 Closed Customer 9884 29823.5312825383 +9929 f 86 433033 36.107502 0.8634551141764106 Product description 9929 2022-10-15 14:03:01.089303 2023-03-13 Processing Customer 9929 792325.2842005190 +9894 f 98 991815 36.565697 0.6371547280530372 Product description 9894 2024-03-25 14:03:01.089303 2025-07-06 Closed Customer 9894 288534.9238965200 +9935 t 27 515820 29.25874 0.7877279527436372 Product description 9935 2024-02-03 14:03:01.089303 2025-11-06 Processing Customer 9935 563265.2702745950 +9896 f 26 173758 59.49873 0.3495424315657907 Product description 9896 2022-01-19 14:03:01.089303 2023-10-02 Closed Customer 9896 814789.2988376460 +9939 f 98 29630 43.99415 0.7022926737686888 Product description 9939 2022-07-08 14:03:01.089303 2024-06-12 Processing Customer 9939 267465.5005935480 +9898 f 14 698724 66.20617 0.8095156472017244 Product description 9898 2023-02-02 14:03:01.089303 2024-09-22 Closed Customer 9898 979381.3207345610 +9940 f 42 759589 65.15444 0.1076830993282698 Product description 9940 2024-06-12 14:03:01.089303 2025-07-30 Closed Customer 9940 435.3147565546 +9899 t 57 630052 75.551384 0.7118780219106604 Product description 9899 2024-04-14 14:03:01.089303 2023-04-15 Closed Customer 9899 795163.7170814580 +9941 f 42 574027 81.66379 0.7840665959172597 Product description 9941 2022-11-03 14:03:01.089303 2025-03-19 Cancelled Customer 9941 909935.6509370080 +9903 t 12 885796 5.8259645 0.6593398612588324 Product description 9903 2023-09-20 14:03:01.089303 2024-05-14 Processing Customer 9903 309713.7063842580 +9945 t 55 990395 97.7098 0.628237907532597 Product description 9945 2023-03-27 14:03:01.089303 2024-04-25 Closed Customer 9945 107665.7313840170 +9905 t 49 513267 30.878508 0.6283304750754404 Product description 9905 2024-02-20 14:03:01.089303 2025-07-17 Closed Customer 9905 892972.5350845740 +9946 t 31 497895 50.735535 0.33047896268230303 Product description 9946 2022-09-19 14:03:01.089303 2025-11-07 Closed Customer 9946 982631.9601996760 +9909 f 1 970526 51.847828 0.5623460313462978 Product description 9909 2023-01-30 14:03:01.089303 2024-11-01 Cancelled Customer 9909 321756.1730616760 +9948 t 66 247746 94.1966 0.7725401423328044 Product description 9948 2021-09-30 14:03:01.089303 2024-09-24 Processing Customer 9948 602504.5024690030 +9911 t 35 52680 35.887726 0.953326687538663 Product description 9911 2022-03-11 14:03:01.089303 2023-02-26 Closed Customer 9911 147680.7382941240 +9954 t 64 934864 40.846947 0.40859974606661 Product description 9954 2022-11-06 14:03:01.089303 2024-08-08 Closed Customer 9954 196590.8837144710 +9913 t 31 556012 84.23695 0.32423139868814843 Product description 9913 2022-03-15 14:03:01.089303 2025-09-13 Closed Customer 9913 518805.1686165270 +9959 f 61 801042 26.383211 0.05131786767268309 Product description 9959 2022-10-24 14:03:01.089303 2023-06-14 Closed Customer 9959 566398.3973833100 +9914 t 62 617455 23.02893 0.10820261227537742 Product description 9914 2024-04-24 14:03:01.089303 2024-05-02 Processing Customer 9914 164512.9874397750 +9962 f 32 773543 35.143974 0.1033528580426939 Product description 9962 2024-04-22 14:03:01.089303 2024-07-01 Processing Customer 9962 573236.8179287950 +9916 t 69 534320 94.9647 0.8401451921607972 Product description 9916 2022-08-06 14:03:01.089303 2024-05-20 Closed Customer 9916 112404.8253855570 +9967 f 47 464062 25.166636 0.23619638413417832 Product description 9967 2023-02-17 14:03:01.089303 2025-01-06 Closed Customer 9967 94212.7188459097 +9919 f 5 827050 96.13708 0.6295065947791443 Product description 9919 2023-03-02 14:03:01.089303 2024-12-17 Processing Customer 9919 526429.4882406060 +9969 t 97 449250 65.65574 0.05278832740654238 Product description 9969 2023-02-07 14:03:01.089303 2025-04-30 Processing Customer 9969 176702.1711579910 +9920 t 10 660714 21.065327 0.5357012402695105 Product description 9920 2022-10-01 14:03:01.089303 2025-11-25 Processing Customer 9920 612015.8771101990 +9971 f 92 887979 75.36664 0.13221141881951226 Product description 9971 2023-10-18 14:03:01.089303 2024-08-30 Processing Customer 9971 830997.6444293600 +9922 t 88 348323 83.664444 0.1729322962277564 Product description 9922 2023-01-01 14:03:01.089303 2024-04-22 Processing Customer 9922 510018.2150094770 +9979 f 75 948076 30.241852 0.5254388331414752 Product description 9979 2021-10-27 14:03:01.089303 2024-08-17 Processing Customer 9979 267708.3443824630 +9928 t 5 686982 2.898393 0.4249644791162197 Product description 9928 2024-06-05 14:03:01.089303 2023-04-30 Closed Customer 9928 42872.1725712258 +9983 t 33 626109 81.46928 0.9554394569047027 Product description 9983 2023-07-02 14:03:01.089303 2024-04-03 Processing Customer 9983 701759.1300353840 +9932 t 17 767035 36.602116 0.5643898450887264 Product description 9932 2022-08-30 14:03:01.089303 2024-07-15 Closed Customer 9932 44640.0900304944 +9988 f 81 305196 35.820496 0.5399062177958704 Product description 9988 2021-11-06 14:03:01.089303 2023-01-29 Processing Customer 9988 665588.5306873940 +9938 f 47 527726 62.32391 0.5504497122474348 Product description 9938 2023-03-18 14:03:01.089303 2023-12-15 Closed Customer 9938 636076.9877912600 +9989 f 59 668492 4.911381 0.7683629947676742 Product description 9989 2023-04-03 14:03:01.089303 2025-12-16 Closed Customer 9989 189183.0762956060 +9942 f 84 615130 82.74509 0.7745277320585302 Product description 9942 2021-11-13 14:03:01.089303 2024-02-01 Closed Customer 9942 5722.4605950630 +9996 f 81 286036 96.624344 0.0031028986699190853 Product description 9996 2022-02-10 14:03:01.089303 2024-06-07 Closed Customer 9996 452116.7029282300 +9943 t 11 406219 14.743483 0.8189547401272748 Product description 9943 2022-07-19 14:03:01.089303 2023-07-18 Processing Customer 9943 705216.7705693260 +9997 f 52 664200 15.632137 0.20071600926188538 Product description 9997 2024-02-29 14:03:01.089303 2023-01-07 Cancelled Customer 9997 998622.2442276510 +9944 f 92 170818 51.791862 0.980534874131223 Product description 9944 2023-02-17 14:03:01.089303 2025-11-02 Cancelled Customer 9944 575498.5383997990 +9998 f 5 958991 98.847946 0.6484592546719767 Product description 9998 2022-08-29 14:03:01.089303 2023-11-12 Closed Customer 9998 322336.1460889970 +9949 t 97 800530 2.958148 0.6386183767078641 Product description 9949 2023-08-19 14:03:01.089303 2023-08-28 Closed Customer 9949 826879.2130550580 +9951 t 24 904152 49.315006 0.917877896693728 Product description 9951 2022-07-30 14:03:01.089303 2024-07-06 Closed Customer 9951 909564.8617731060 +9953 f 65 900942 99.31319 0.5309939352252933 Product description 9953 2023-12-11 14:03:01.089303 2023-08-25 Processing Customer 9953 38759.1848432365 +9957 f 39 396800 94.06871 0.9991986004137949 Product description 9957 2023-04-14 14:03:01.089303 2023-05-21 Processing Customer 9957 309276.4156859430 +9958 t 8 510305 67.58213 0.3105691267164836 Product description 9958 2022-05-12 14:03:01.089303 2024-03-30 Closed Customer 9958 913093.9832434350 +9961 f 10 53803 78.57494 0.7203227812159305 Product description 9961 2022-10-31 14:03:01.089303 2025-04-22 Cancelled Customer 9961 267852.7279937870 +9964 t 13 190973 35.446613 0.9373976500182124 Product description 9964 2023-11-24 14:03:01.089303 2024-12-08 Closed Customer 9964 493393.6536753940 +9966 f 71 74852 75.043396 0.16017579988379538 Product description 9966 2021-11-23 14:03:01.089303 2025-07-03 Processing Customer 9966 276990.7569023250 +9972 t 79 730495 38.169636 0.7845608776462996 Product description 9972 2021-12-03 14:03:01.089303 2023-12-21 Closed Customer 9972 870981.3050954800 +9973 t 75 171592 76.12424 0.4720456862583049 Product description 9973 2023-04-11 14:03:01.089303 2023-07-19 Closed Customer 9973 482297.4118685330 +9974 f 80 312810 23.166714 0.6123441203506701 Product description 9974 2022-03-30 14:03:01.089303 2025-05-23 Closed Customer 9974 743304.5047639660 +9976 f 65 126528 15.176216 0.21020380149339957 Product description 9976 2022-08-28 14:03:01.089303 2025-09-10 Processing Customer 9976 77066.8813112145 +9978 t 78 579966 78.29242 0.6258006116037507 Product description 9978 2022-03-23 14:03:01.089303 2024-08-07 Processing Customer 9978 348909.1924473340 +9981 t 26 385448 9.542533 0.12749335870027068 Product description 9981 2022-07-17 14:03:01.089303 2025-07-18 Closed Customer 9981 131268.3562171100 +9982 t 29 924647 2.0210328 0.03645847754499698 Product description 9982 2023-10-26 14:03:01.089303 2025-08-10 Closed Customer 9982 436718.6580007390 +9984 t 10 672174 75.940315 0.6653436677933016 Product description 9984 2024-01-05 14:03:01.089303 2024-11-25 Closed Customer 9984 61380.1576042938 +9985 t 95 499232 79.460785 0.7417185034592535 Product description 9985 2024-01-12 14:03:01.089303 2025-06-24 Processing Customer 9985 149772.7604151430 +9990 t 84 482141 24.7572 0.9808657932633835 Product description 9990 2022-10-07 14:03:01.089303 2024-06-27 Cancelled Customer 9990 183420.6347966400 +\. + +INSERT INTO sales_ao SELECT * FROM sales_heap; +INSERT INTO sales_aocs SELECT * FROM sales_heap; +INSERT INTO sales_partition_heap SELECT * FROM sales_heap; +INSERT INTO sales_partition_ao SELECT * FROM sales_heap; +INSERT INTO sales_partition_aocs SELECT * FROM sales_heap; +ANALYZE sales_heap; +ANALYZE sales_ao; +ANALYZE sales_aocs; +ANALYZE rootpartition sales_partition_heap; +ANALYZE rootpartition sales_partition_ao; +ANALYZE rootpartition sales_partition_aocs; + + + diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_ao.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_ao.sql new file mode 100644 index 00000000000..e2e7b8bb709 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_ao.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_ao +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_ao +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_ao +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_ao +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_ao + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_ao +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_ao +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_ao +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_aocs.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_aocs.sql new file mode 100644 index 00000000000..b99cb7777a3 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_aocs.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_aocs +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_aocs +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_aocs +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_aocs +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_aocs + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_aocs +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_aocs +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_aocs +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_heap.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_heap.sql new file mode 100644 index 00000000000..971256d5c2d --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_heap.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_heap +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_heap +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_heap +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_heap +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_heap + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_heap +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_heap +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_heap +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_ao.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_ao.sql new file mode 100644 index 00000000000..5ddcccf74fd --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_ao.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_ao +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_ao +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_ao +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_ao +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_ao + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_ao +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_ao +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_ao +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_aocs.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_aocs.sql new file mode 100644 index 00000000000..3fa6e71298a --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_aocs.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_aocs +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_aocs +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_aocs +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_aocs +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_aocs + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_aocs +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_aocs +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_aocs +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_heap.sql b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_heap.sql new file mode 100644 index 00000000000..c43f5f99c74 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/query_sales_partition_heap.sql @@ -0,0 +1,106 @@ + +set extra_float_digits=-1; +show enable_indexscan; +show enable_bitmapscan; + +-- Q1: Select the top 10 products that have not been audited. +SELECT product_id, description +FROM sales_partition_heap +WHERE is_audited = false +ORDER BY product_id DESC +LIMIT 10; + +-- Q2: Select the top 10 cancelled orders, ordered by product_id in descending order. +SELECT product_id, quantity, total_sales, unit_price, discount, description +FROM sales_partition_heap +WHERE status = 'Cancelled' +ORDER BY product_id DESC +LIMIT 10; + +-- Q3: Select details of the product with ID 1. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE product_id = 1; + +-- Q4: Select details of the product with ID 1 sold on 2023-08-24 14:03:01.089303. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE product_id = 1 AND sale_date = '2023-08-24 14:03:01.089303'; + +-- Q5: Select details of orders placed by a specific customer. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE customer_name = 'Customer 100'; + +-- Q6: Select details of orders placed by a specific customer and product ID. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE customer_name = 'Customer 10000' AND product_id = 10000; + +-- Q7: Select sales data within a specific date range. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE sale_date BETWEEN '2023-01-02' AND '2023-01-05' +ORDER BY product_id ASC +LIMIT 10; + +-- Q8: Select sales data for a specific date. +SELECT product_id, quantity, total_sales, unit_price, discount, description, sale_date, customer_name, price +FROM sales_partition_heap +WHERE sale_date = '2023-01-02 14:03:01.089303' +ORDER BY product_id ASC +LIMIT 10; + +-- Q9: Summarize total sales by status. +SELECT status, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY status +ORDER BY total_sales DESC +LIMIT 10; + +-- Q10: Compute the cumulative total sales over time for each product. +SELECT product_id, sale_date, SUM(total_sales) OVER (PARTITION BY product_id ORDER BY sale_date) AS cumulative_sales +FROM sales_partition_heap +ORDER BY product_id, sale_date +LIMIT 20; + +-- Q11: Calculate the monthly sales growth rate for each product. +WITH monthly_sales AS ( + SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales + FROM sales_partition_heap + GROUP BY sale_year, sale_month, product_id +) +SELECT ms1.product_id, ms1.sale_year, ms1.sale_month, ms1.monthly_sales, + (ms1.monthly_sales - COALESCE(ms2.monthly_sales, 0)) / COALESCE(ms2.monthly_sales, 1) AS growth_rate +FROM monthly_sales ms1 +LEFT JOIN monthly_sales ms2 ON ms1.product_id = ms2.product_id AND ms1.sale_year = ms2.sale_year AND ms1.sale_month = ms2.sale_month + 1 +ORDER BY product_id, sale_year, sale_month +LIMIT 20; + +-- Q12: Determine the average discount applied per product. +SELECT product_id, AVG(discount) AS avg_discount +FROM sales_partition_heap +GROUP BY product_id +ORDER BY avg_discount DESC +LIMIT 20; + +-- Q13: Summarize total sales by customer. +SELECT customer_name, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY customer_name +ORDER BY total_sales DESC +LIMIT 20; + +-- Q14: Summarize product sales by month and year. +SELECT EXTRACT(YEAR FROM sale_date) AS sale_year, EXTRACT(MONTH FROM sale_date) AS sale_month, product_id, SUM(total_sales) AS monthly_sales +FROM sales_partition_heap +GROUP BY sale_year, sale_month, product_id +ORDER BY sale_year, sale_month, monthly_sales DESC +LIMIT 20; + +-- Q15: Summarize total sales by customer and product. +SELECT customer_name, product_id, SUM(total_sales) AS total_sales +FROM sales_partition_heap +GROUP BY customer_name, product_id +ORDER BY total_sales DESC +LIMIT 20; diff --git a/src/test/binary_swap/sql/upgrading_compatibility/update.sql b/src/test/binary_swap/sql/upgrading_compatibility/update.sql new file mode 100644 index 00000000000..1c2ca59f5f9 --- /dev/null +++ b/src/test/binary_swap/sql/upgrading_compatibility/update.sql @@ -0,0 +1,54 @@ +UPDATE sales_heap +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +UPDATE sales_ao +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +UPDATE sales_aocs +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +UPDATE sales_partition_heap +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +UPDATE sales_partition_ao +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +UPDATE sales_partition_aocs +SET status = 'Closed', + is_audited = TRUE, + description = description || ' Audited' +WHERE is_audited = FALSE + AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_heap WHERE is_audited = 'TRUE' AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_ao WHERE is_audited = 'TRUE' AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_aocs WHERE is_audited = 'TRUE' AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_partition_heap WHERE is_audited = 'TRUE' AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_partition_ao WHERE is_audited = 'TRUE' AND product_id > 1000000; + +SELECT COUNT(*) FROM sales_partition_aocs WHERE is_audited = 'TRUE' AND product_id > 1000000; + diff --git a/src/test/binary_swap/test_binary_swap.sh b/src/test/binary_swap/test_binary_swap.sh index 3ed0f59eb72..3e83148fbf9 100755 --- a/src/test/binary_swap/test_binary_swap.sh +++ b/src/test/binary_swap/test_binary_swap.sh @@ -29,7 +29,11 @@ clean_output() run_tests() { SCHEDULE_NAME=$1 - ../regress/pg_regress --dbname=binswap_connect --init-file=../regress/init_file --schedule=${SCHEDULE_NAME} + IF_USE_EXISTING_DB="" + if [ ! -z "$2" ]; then + IF_USE_EXISTING_DB="--use-existing" + fi + ../regress/pg_regress --dbname=binswap_connect ${IF_USE_EXISTING_DB} --init-file=../regress/init_file --schedule=${SCHEDULE_NAME} if [ $? != 0 ]; then exit 1 fi @@ -132,9 +136,11 @@ echo "==================================================" ## Clean our directory of any previous test output clean_output +run_tests schedule0${VARIANT} + ## Start/restart current Cloudberry and do initial dump to compare against start_binary $GPHOME_CURRENT -run_tests schedule1${VARIANT} +run_tests schedule1${VARIANT} use-existing ## Change the binary, dump, and then compare the two dumps generated ## by both binaries. Then we do some inserts and dump again. We source @@ -145,14 +151,13 @@ run_tests schedule1${VARIANT} ## gpcheckcat should be from $GPHOME_CURRENT during the pg_regress ## test. start_binary $GPHOME_OTHER -source $GPHOME_CURRENT/greenplum_path.sh -run_tests schedule2${VARIANT} +run_tests schedule2${VARIANT} use-existing ## Change the binary back, dump, and then compare the two new dumps ## generated by both binaries. Then we do some inserts and check to see ## if dump still works fine. start_binary $GPHOME_CURRENT -run_tests schedule3${VARIANT} +run_tests schedule3${VARIANT} use-existing ## Print unnecessary success output echo "SUCCESS! Provided binaries are swappable."