hard

Writable CTE Salary Adjustment

Increase the salary of all employees working as 'Sales Associate' by 5% and return their updated details. Write a single UPDATE statement that matches role = 'Sales Associate', increases salary by 5% (i.e. `salary = salary * 1.05`), and returns the `employee_id`, full name (`first_name` and `last_name` concatenated) as `employee_name`, and the updated `salary`.
1
2
3
4
5
Preparing...
Writable CTE Salary Adjustment

Increase the salary of all employees working as 'Sales Associate' by 5% and return their updated details. Write a single UPDATE statement that matches role = 'Sales Associate', increases salary by 5% (i.e. `salary = salary * 1.05`), and returns the `employee_id`, full name (`first_name` and `last_name` concatenated) as `employee_name`, and the updated `salary`.

Table Setup (SQL Schema)

-- =============================================================================
-- NORUJ SQL TUTORIAL — Retail Database DDL
-- PostgreSQL 14+
-- =============================================================================
-- Tables:
--   categories       → product categories (self-referencing for sub-categories)
--   products         → product catalog
--   customers        → registered customers
--   addresses        → customer shipping/billing addresses
--   employees        → store employees with manager hierarchy
--   stores           → physical/online store locations
--   orders           → customer orders
--   order_items      → line items per order
--   payments         → payment records per order
--   reviews          → product reviews by customers
--   inventory        → stock levels per product per store
--   suppliers        → product suppliers
--   product_suppliers→ many-to-many: products ↔ suppliers
-- =============================================================================

-- Drop schema cleanly (for re-runs during practice)
DROP TABLE IF EXISTS product_suppliers  CASCADE;
DROP TABLE IF EXISTS inventory          CASCADE;
DROP TABLE IF EXISTS reviews            CASCADE;
DROP TABLE IF EXISTS payments           CASCADE;
DROP TABLE IF EXISTS order_items        CASCADE;
DROP TABLE IF EXISTS orders             CASCADE;
DROP TABLE IF EXISTS addresses          CASCADE;
DROP TABLE IF EXISTS products           CASCADE;
DROP TABLE IF EXISTS categories         CASCADE;
DROP TABLE IF EXISTS customers          CASCADE;
DROP TABLE IF EXISTS employees          CASCADE;
DROP TABLE IF EXISTS stores             CASCADE;
DROP TABLE IF EXISTS suppliers          CASCADE;

-- ─────────────────────────────────────────────
-- 1. CATEGORIES
-- ─────────────────────────────────────────────
CREATE TABLE categories (
    category_id     SERIAL          PRIMARY KEY,
    category_name   VARCHAR(100)    NOT NULL,
    parent_id       INT             REFERENCES categories(category_id) ON DELETE SET NULL,
    description     TEXT,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

COMMENT ON TABLE  categories              IS 'Product categories with optional self-referencing parent for sub-categories';
COMMENT ON COLUMN categories.parent_id   IS 'NULL = top-level category; non-NULL = sub-category';

-- ─────────────────────────────────────────────
-- 2. SUPPLIERS
-- ─────────────────────────────────────────────
CREATE TABLE suppliers (
    supplier_id     SERIAL          PRIMARY KEY,
    supplier_name   VARCHAR(150)    NOT NULL,
    contact_name    VARCHAR(100),
    email           VARCHAR(150)    UNIQUE,
    phone           VARCHAR(30),
    country         VARCHAR(60),
    city            VARCHAR(80),
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

-- ─────────────────────────────────────────────
-- 3. STORES
-- ─────────────────────────────────────────────
CREATE TABLE stores (
    store_id        SERIAL          PRIMARY KEY,
    store_name      VARCHAR(120)    NOT NULL,
    store_type      VARCHAR(20)     NOT NULL CHECK (store_type IN ('physical', 'online', 'warehouse')),
    city            VARCHAR(80),
    country         VARCHAR(60),
    phone           VARCHAR(30),
    opened_date     DATE,
    is_active       BOOLEAN         NOT NULL DEFAULT TRUE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

-- ─────────────────────────────────────────────
-- 4. EMPLOYEES
-- ─────────────────────────────────────────────
CREATE TABLE employees (
    employee_id     SERIAL          PRIMARY KEY,
    store_id        INT             NOT NULL REFERENCES stores(store_id),
    manager_id      INT             REFERENCES employees(employee_id) ON DELETE SET NULL,
    first_name      VARCHAR(60)     NOT NULL,
    last_name       VARCHAR(60)     NOT NULL,
    email           VARCHAR(150)    UNIQUE NOT NULL,
    phone           VARCHAR(30),
    role            VARCHAR(60)     NOT NULL,
    department      VARCHAR(60),
    hire_date       DATE            NOT NULL,
    salary          NUMERIC(10,2)   NOT NULL CHECK (salary >= 0),
    is_active       BOOLEAN         NOT NULL DEFAULT TRUE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

CREATE INDEX idx_employees_store    ON employees(store_id);
CREATE INDEX idx_employees_manager  ON employees(manager_id);

-- ─────────────────────────────────────────────
-- 5. CUSTOMERS
-- ─────────────────────────────────────────────
CREATE TABLE customers (
    customer_id     SERIAL          PRIMARY KEY,
    first_name      VARCHAR(60)     NOT NULL,
    last_name       VARCHAR(60)     NOT NULL,
    email           VARCHAR(150)    UNIQUE NOT NULL,
    phone           VARCHAR(30),
    gender          CHAR(1)         CHECK (gender IN ('M', 'F', 'O')),
    date_of_birth   DATE,
    loyalty_tier    VARCHAR(20)     NOT NULL DEFAULT 'bronze'
                                    CHECK (loyalty_tier IN ('bronze', 'silver', 'gold', 'platinum')),
    registered_at   TIMESTAMP       NOT NULL DEFAULT NOW(),
    is_active       BOOLEAN         NOT NULL DEFAULT TRUE
);

CREATE INDEX idx_customers_email ON customers(email);

-- ─────────────────────────────────────────────
-- 6. ADDRESSES
-- ─────────────────────────────────────────────
CREATE TABLE addresses (
    address_id      SERIAL          PRIMARY KEY,
    customer_id     INT             NOT NULL REFERENCES customers(customer_id) ON DELETE CASCADE,
    address_type    VARCHAR(20)     NOT NULL CHECK (address_type IN ('shipping', 'billing', 'both')),
    street          VARCHAR(200)    NOT NULL,
    city            VARCHAR(80)     NOT NULL,
    state           VARCHAR(80),
    postal_code     VARCHAR(20),
    country         VARCHAR(60)     NOT NULL,
    is_default      BOOLEAN         NOT NULL DEFAULT FALSE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

CREATE INDEX idx_addresses_customer ON addresses(customer_id);

-- ─────────────────────────────────────────────
-- 7. PRODUCTS
-- ─────────────────────────────────────────────
CREATE TABLE products (
    product_id      SERIAL          PRIMARY KEY,
    category_id     INT             NOT NULL REFERENCES categories(category_id),
    product_name    VARCHAR(200)    NOT NULL,
    sku             VARCHAR(50)     UNIQUE NOT NULL,
    description     TEXT,
    unit_price      NUMERIC(10,2)   NOT NULL CHECK (unit_price >= 0),
    cost_price      NUMERIC(10,2)   NOT NULL CHECK (cost_price >= 0),
    weight_kg       NUMERIC(8,3),
    brand           VARCHAR(100),
    is_active       BOOLEAN         NOT NULL DEFAULT TRUE,
    launch_date     DATE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW(),
    CONSTRAINT chk_margin CHECK (unit_price >= cost_price)
);

CREATE INDEX idx_products_category ON products(category_id);
CREATE INDEX idx_products_sku      ON products(sku);
CREATE INDEX idx_products_brand    ON products(brand);

-- ─────────────────────────────────────────────
-- 8. PRODUCT_SUPPLIERS (junction)
-- ─────────────────────────────────────────────
CREATE TABLE product_suppliers (
    product_id      INT             NOT NULL REFERENCES products(product_id)  ON DELETE CASCADE,
    supplier_id     INT             NOT NULL REFERENCES suppliers(supplier_id) ON DELETE CASCADE,
    supply_price    NUMERIC(10,2)   CHECK (supply_price >= 0),
    lead_time_days  INT,
    is_primary      BOOLEAN         NOT NULL DEFAULT FALSE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW(),
    PRIMARY KEY (product_id, supplier_id)
);

-- ─────────────────────────────────────────────
-- 9. INVENTORY
-- ─────────────────────────────────────────────
CREATE TABLE inventory (
    inventory_id    SERIAL          PRIMARY KEY,
    product_id      INT             NOT NULL REFERENCES products(product_id)  ON DELETE CASCADE,
    store_id        INT             NOT NULL REFERENCES stores(store_id)      ON DELETE CASCADE,
    quantity        INT             NOT NULL DEFAULT 0 CHECK (quantity >= 0),
    reorder_level   INT             NOT NULL DEFAULT 10,
    last_restocked  TIMESTAMP,
    UNIQUE (product_id, store_id)
);

CREATE INDEX idx_inventory_product ON inventory(product_id);
CREATE INDEX idx_inventory_store   ON inventory(store_id);

-- ─────────────────────────────────────────────
-- 10. ORDERS
-- ─────────────────────────────────────────────
CREATE TABLE orders (
    order_id        SERIAL          PRIMARY KEY,
    customer_id     INT             NOT NULL REFERENCES customers(customer_id),
    store_id        INT             NOT NULL REFERENCES stores(store_id),
    employee_id     INT             REFERENCES employees(employee_id) ON DELETE SET NULL,
    order_date      TIMESTAMP       NOT NULL DEFAULT NOW(),
    status          VARCHAR(20)     NOT NULL DEFAULT 'pending'
                                    CHECK (status IN ('pending','confirmed','processing',
                                                      'shipped','delivered','cancelled','refunded')),
    shipping_address_id INT         REFERENCES addresses(address_id),
    subtotal        NUMERIC(12,2)   NOT NULL DEFAULT 0 CHECK (subtotal >= 0),
    discount_amount NUMERIC(12,2)   NOT NULL DEFAULT 0 CHECK (discount_amount >= 0),
    tax_amount      NUMERIC(12,2)   NOT NULL DEFAULT 0 CHECK (tax_amount >= 0),
    shipping_fee    NUMERIC(10,2)   NOT NULL DEFAULT 0 CHECK (shipping_fee >= 0),
    total_amount    NUMERIC(12,2)   NOT NULL DEFAULT 0 CHECK (total_amount >= 0),
    notes           TEXT,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

CREATE INDEX idx_orders_customer    ON orders(customer_id);
CREATE INDEX idx_orders_store       ON orders(store_id);
CREATE INDEX idx_orders_employee    ON orders(employee_id);
CREATE INDEX idx_orders_date        ON orders(order_date);
CREATE INDEX idx_orders_status      ON orders(status);

-- ─────────────────────────────────────────────
-- 11. ORDER_ITEMS
-- ─────────────────────────────────────────────
CREATE TABLE order_items (
    order_item_id   SERIAL          PRIMARY KEY,
    order_id        INT             NOT NULL REFERENCES orders(order_id) ON DELETE CASCADE,
    product_id      INT             NOT NULL REFERENCES products(product_id),
    quantity        INT             NOT NULL CHECK (quantity > 0),
    unit_price      NUMERIC(10,2)   NOT NULL CHECK (unit_price >= 0),
    discount_pct    NUMERIC(5,2)    NOT NULL DEFAULT 0 CHECK (discount_pct BETWEEN 0 AND 100),
    line_total      NUMERIC(12,2)   NOT NULL CHECK (line_total >= 0),
    UNIQUE (order_id, product_id)
);

CREATE INDEX idx_order_items_order   ON order_items(order_id);
CREATE INDEX idx_order_items_product ON order_items(product_id);

-- ─────────────────────────────────────────────
-- 12. PAYMENTS
-- ─────────────────────────────────────────────
CREATE TABLE payments (
    payment_id      SERIAL          PRIMARY KEY,
    order_id        INT             NOT NULL REFERENCES orders(order_id) ON DELETE CASCADE,
    payment_date    TIMESTAMP       NOT NULL DEFAULT NOW(),
    amount          NUMERIC(12,2)   NOT NULL CHECK (amount > 0),
    payment_method  VARCHAR(30)     NOT NULL CHECK (payment_method IN (
                        'credit_card', 'debit_card', 'paypal',
                        'bank_transfer', 'cash', 'gift_card', 'crypto')),
    payment_status  VARCHAR(20)     NOT NULL DEFAULT 'pending'
                                    CHECK (payment_status IN ('pending','completed','failed','refunded')),
    transaction_ref VARCHAR(100)    UNIQUE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW()
);

CREATE INDEX idx_payments_order  ON payments(order_id);
CREATE INDEX idx_payments_date   ON payments(payment_date);
CREATE INDEX idx_payments_status ON payments(payment_status);

-- ─────────────────────────────────────────────
-- 13. REVIEWS
-- ─────────────────────────────────────────────
CREATE TABLE reviews (
    review_id       SERIAL          PRIMARY KEY,
    product_id      INT             NOT NULL REFERENCES products(product_id) ON DELETE CASCADE,
    customer_id     INT             NOT NULL REFERENCES customers(customer_id) ON DELETE CASCADE,
    order_id        INT             REFERENCES orders(order_id) ON DELETE SET NULL,
    rating          SMALLINT        NOT NULL CHECK (rating BETWEEN 1 AND 5),
    title           VARCHAR(200),
    body            TEXT,
    is_verified     BOOLEAN         NOT NULL DEFAULT FALSE,
    created_at      TIMESTAMP       NOT NULL DEFAULT NOW(),
    UNIQUE (product_id, customer_id, order_id)
);

CREATE INDEX idx_reviews_product  ON reviews(product_id);
CREATE INDEX idx_reviews_customer ON reviews(customer_id);

-- =============================================================================
-- USEFUL VIEWS (introduced in the tutorial's Views chapter)
-- =============================================================================

-- Quick order summary (used in CTE and OVER/PARTITION BY lessons)
CREATE OR REPLACE VIEW vw_order_summary AS
SELECT
    o.order_id,
    o.order_date,
    o.status,
    c.customer_id,
    c.first_name || ' ' || c.last_name  AS customer_name,
    c.loyalty_tier,
    s.store_name,
    s.store_type,
    o.subtotal,
    o.discount_amount,
    o.tax_amount,
    o.shipping_fee,
    o.total_amount
FROM orders       o
JOIN customers    c ON c.customer_id = o.customer_id
JOIN stores       s ON s.store_id    = o.store_id;

-- Product performance view
CREATE OR REPLACE VIEW vw_product_performance AS
SELECT
    p.product_id,
    p.product_name,
    p.brand,
    cat.category_name,
    p.unit_price,
    p.cost_price,
    ROUND((p.unit_price - p.cost_price) / NULLIF(p.unit_price, 0) * 100, 2) AS margin_pct,
    COALESCE(SUM(oi.quantity),  0)  AS total_units_sold,
    COALESCE(SUM(oi.line_total), 0) AS total_revenue,
    COALESCE(AVG(r.rating)::NUMERIC(3,2), 0) AS avg_rating,
    COUNT(DISTINCT r.review_id)     AS review_count
FROM products     p
JOIN categories   cat ON cat.category_id = p.category_id
LEFT JOIN order_items oi ON oi.product_id = p.product_id
LEFT JOIN reviews r    ON r.product_id    = p.product_id
GROUP BY p.product_id, p.product_name, p.brand, cat.category_name,
         p.unit_price, p.cost_price;

-- =============================================================================
-- END OF DDL
-- =============================================================================


-- =============================================================================
-- NORUJ SQL Tutorial — Retail Database Seed Data
-- Generated: 2026-06-04 04:03:57
-- Records: ~300 customers | 1200 orders
--
-- Usage:
--   psql -U postgres -d retail_db -f seed_data.sql
-- =============================================================================

SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;

-- Truncate all tables and reset sequences before loading fresh data
TRUNCATE
    product_suppliers, inventory, reviews, payments,
    order_items, orders, addresses, products, categories,
    customers, employees, stores, suppliers
RESTART IDENTITY CASCADE;


-- ──────────────────────────────────────────────────────────────────
-- 1. CATEGORIES
-- ──────────────────────────────────────────────────────────────────

INSERT INTO categories (category_name, parent_id, description)
VALUES
    ('Electronics', NULL, 'Gadgets, devices and accessories'),
    ('Clothing', NULL, 'Apparel for men, women and kids'),
    ('Home & Garden', NULL, 'Furniture, decor and outdoor'),
    ('Sports', NULL, 'Fitness, outdoor sports gear'),
    ('Beauty', NULL, 'Cosmetics and personal care'),
    ('Smartphones', 1, 'Sub-category of Electronics'),
    ('Laptops', 1, 'Sub-category of Electronics'),
    ('Headphones', 1, 'Sub-category of Electronics'),
    ('Cameras', 1, 'Sub-category of Electronics'),
    ('Men''s Wear', 2, 'Sub-category of Clothing'),
    ('Women''s Wear', 2, 'Sub-category of Clothing'),
    ('Kids'' Wear', 2, 'Sub-category of Clothing'),
    ('Furniture', 3, 'Sub-category of Home & Garden'),
    ('Kitchen', 3, 'Sub-category of Home & Garden'),
    ('Garden', 3, 'Sub-category of Home & Garden'),
    ('Running', 4, 'Sub-category of Sports'),
    ('Gym Equipment', 4, 'Sub-category of Sports'),
    ('Skincare', 5, 'Sub-category of Beauty'),
    ('Makeup', 5, 'Sub-category of Beauty');


-- ──────────────────────────────────────────────────────────────────
-- 2. SUPPLIERS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO suppliers (supplier_name, contact_name, email, phone, country, city)
VALUES
    ('TechParts Global', 'Allison Hill', '[email protected]', '833-589-0838', 'China', 'Lawrencetown'),
    ('FashionLink Co.', 'Caitlin Henderson', '[email protected]', '+1-540-378-1618x495', 'USA', 'Lake Jeremyport'),
    ('HomeGoods Direct', 'Dr. Sharon James', '[email protected]', '001-719-228-3276x483', 'India', 'Port Antonio'),
    ('SportsPro Supply', 'Derek Clark', '[email protected]', '+1-949-369-6532', 'UK', 'Port Danielburgh'),
    ('BeautySource Ltd.', 'Jennifer Brown', '[email protected]', '+1-384-651-4627x04828', 'UK', 'East Nathaniel'),
    ('EcoManufacture', 'Troy Nielsen', '[email protected]', '4399117182', 'Germany', 'West Allison'),
    ('PrimeVendor Inc.', 'Tracey Hickman', '[email protected]', '531.250.9839', 'China', 'Lake Crystalbury'),
    ('AsiaPacific Goods', 'Andre Rivera', '[email protected]', '876.931.1656', 'France', 'Lake Deniseville'),
    ('EuroTrade GmbH', 'Nicholas Mcbride', '[email protected]', '517.481.0801', 'China', 'Tuckerborough'),
    ('LocalCraft Supplies', 'Stephanie Martin', '[email protected]', '+1-972-434-3098x05009', 'Brazil', 'New Christopherburgh'),
    ('QuickShip Partners', 'Barry Hensley', '[email protected]', '569-698-5435', 'South Korea', 'Andersonport'),
    ('ValueGoods Corp.', 'Timothy Walls', '[email protected]', '225-613-5427x849', 'USA', 'East Josephville'),
    ('LuxeSupply Co.', 'Brittney Campbell', '[email protected]', '964-800-5242', 'USA', 'North Charlesberg'),
    ('GreenSource LLC', 'Sandra Aguilar', '[email protected]', '(833)215-8692x322', 'China', 'Lake Sandra'),
    ('RapidParts Ltd.', 'Jennifer Santiago', '[email protected]', '837.754.3303', 'UK', 'Michelleview');


-- ──────────────────────────────────────────────────────────────────
-- 3. STORES
-- ──────────────────────────────────────────────────────────────────

INSERT INTO stores (store_name, store_type, city, country, phone, opened_date)
VALUES
    ('Downtown Flagship', 'physical', 'New York', 'USA', '(386)885-0142x940', '2017-08-10'),
    ('Mall Branch East', 'physical', 'Los Angeles', 'USA', '(256)598-1693x406', '2020-08-31'),
    ('Mall Branch West', 'physical', 'Chicago', 'USA', '(861)659-5148x465', '2021-10-01'),
    ('Online Store', 'online', NULL, 'USA', NULL, '2015-04-19'),
    ('Warehouse Central', 'warehouse', 'Atlanta', 'USA', '+1-823-266-2994', '2021-04-17'),
    ('London Outlet', 'physical', 'London', 'UK', '443-369-9577x7387', '2017-03-25'),
    ('Dubai Mall', 'physical', 'Dubai', 'UAE', '989-351-3433x2003', '2022-04-15'),
    ('Online International', 'online', NULL, 'Global', NULL, '2022-11-12');


-- ──────────────────────────────────────────────────────────────────
-- 4. EMPLOYEES
-- ──────────────────────────────────────────────────────────────────

INSERT INTO employees (store_id, manager_id, first_name, last_name, email, phone, role, department, hire_date, salary)
VALUES
    (1, NULL, 'Stanley', 'Mercado', '[email protected]', '220.516.3287', 'Store Manager', 'Operations', '2019-09-15', 67715.42),
    (2, NULL, 'Samantha', 'Martinez', '[email protected]', '+1-557-698-6872x774', 'Store Manager', 'Operations', '2018-02-13', 88330.07),
    (3, NULL, 'Katie', 'Boyd', '[email protected]', '845.458.1223', 'Store Manager', 'Operations', '2015-01-27', 86558.26),
    (4, NULL, 'Jasmine', 'Brown', '[email protected]', '2367690967', 'Store Manager', 'Operations', '2016-10-15', 84434.88),
    (5, NULL, 'Kenneth', 'Price', '[email protected]', '+1-937-434-6706x562', 'Store Manager', 'Operations', '2018-10-25', 69725.5),
    (6, NULL, 'Tina', 'Ferguson', '[email protected]', '562-972-0465', 'Store Manager', 'Operations', '2017-05-31', 93502.46),
    (7, NULL, 'Mark', 'Juarez', '[email protected]', '270-580-5310', 'Store Manager', 'Operations', '2018-10-10', 63577.36),
    (8, NULL, 'James', 'Smith', '[email protected]', '001-437-645-2991', 'Store Manager', 'Operations', '2019-04-06', 63385.07),
    (1, 1, 'Daniel', 'Johnson', '[email protected]', '219.731.4919', 'Warehouse Staff', 'Logistics', '2018-06-27', 49891.95),
    (1, 1, 'Amanda', 'Stanley', '[email protected]', '916.857.2628x4987', 'Warehouse Staff', 'Sales', '2022-03-31', 30364.01),
    (1, 1, 'Margaret', 'Vargas', '[email protected]', '479.996.5075', 'Inventory Clerk', 'Finance', '2022-01-21', 45320.56),
    (1, 1, 'Jason', 'Salinas', '[email protected]', '9839136783', 'Shift Supervisor', 'Sales', '2018-07-07', 47837.9),
    (1, 1, 'Shane', 'Smith', '[email protected]', '001-757-988-5685', 'Analyst', 'Logistics', '2018-11-23', 53659.53),
    (1, 1, 'Joseph', 'King', '[email protected]', '+1-623-337-4989', 'Analyst', 'Sales', '2022-04-06', 36339.21),
    (1, 1, 'Marissa', 'Phillips', '[email protected]', '900-984-2710x947', 'Shift Supervisor', 'Logistics', '2019-10-29', 39105.43),
    (2, 2, 'Matthew', 'Sheppard', '[email protected]', '(871)590-2294x1318', 'Shift Supervisor', 'Logistics', '2018-10-20', 46273.93),
    (2, 2, 'Kimberly', 'James', '[email protected]', '399-409-1334x1232', 'Cashier', 'Finance', '2020-09-29', 32902.07),
    (2, 2, 'Aaron', 'Hayes', '[email protected]', '001-447-613-4936x183', 'Customer Service', 'Logistics', '2020-06-18', 48538.43),
    (2, 2, 'Margaret', 'Jones', '[email protected]', '271-874-6488x7719', 'Analyst', 'Sales', '2020-07-27', 52654.08),
    (2, 2, 'Jessica', 'Munoz', '[email protected]', '001-604-490-2787', 'Analyst', 'Logistics', '2022-07-02', 36032.23),
    (2, 2, 'Wendy', 'Graham', '[email protected]', '(755)612-5674x68071', 'Cashier', 'Finance', '2021-07-12', 34378.8),
    (3, 3, 'Marcus', 'Cordova', '[email protected]', '+1-976-203-8597', 'Customer Service', 'Customer Experience', '2019-08-09', 35946.4),
    (3, 3, 'James', 'Dunn', '[email protected]', '+1-393-424-8086x1317', 'Cashier', 'Finance', '2020-12-12', 50410.41),
    (3, 3, 'Tyrone', 'Moran', '[email protected]', '682.263.9821x465', 'Customer Service', 'Finance', '2022-06-24', 38859.89),
    (3, 3, 'Justin', 'Evans', '[email protected]', '855.288.6753x3963', 'Cashier', 'Finance', '2023-07-15', 30727.28),
    (3, 3, 'Louis', 'Kennedy', '[email protected]', '(370)928-9517', 'Sales Associate', 'Sales', '2019-09-19', 46823.38),
    (3, 3, 'Alexis', 'Thomas', '[email protected]', '696-515-8657x80913', 'Analyst', 'Customer Experience', '2018-09-18', 39543.02),
    (3, 3, 'Julie', 'Hamilton', '[email protected]', '524.800.5045x562', 'Warehouse Staff', 'Customer Experience', '2023-12-08', 35542.42),
    (4, 4, 'Ashlee', 'Sparks', '[email protected]', '+1-637-492-3747x407', 'Analyst', 'Sales', '2019-04-15', 48451.31),
    (4, 4, 'Charles', 'Landry', '[email protected]', '836-671-3695x9440', 'Warehouse Staff', 'Logistics', '2021-10-25', 31346.57),
    (4, 4, 'Alan', 'Grimes', '[email protected]', '001-739-453-3942x10470', 'Customer Service', 'Operations', '2023-02-02', 28097.36),
    (4, 4, 'Christopher', 'Phillips', '[email protected]', '(488)542-4745x171', 'Shift Supervisor', 'Logistics', '2023-08-13', 50858.87),
    (4, 4, 'Michelle', 'Ramsey', '[email protected]', '(716)304-8175x496', 'Warehouse Staff', 'Sales', '2021-05-07', 53250.08),
    (4, 4, 'Emily', 'Ruiz', '[email protected]', '446.812.0047x113', 'Warehouse Staff', 'Finance', '2020-03-25', 32585.18),
    (4, 4, 'Shawn', 'Santiago', '[email protected]', '(717)796-4053x77351', 'Analyst', 'Operations', '2023-12-13', 55554.8),
    (4, 4, 'Bruce', 'Hill', '[email protected]', '+1-539-500-5329x31839', 'Warehouse Staff', 'Logistics', '2023-06-25', 28584.3),
    (5, 5, 'Mark', 'Hernandez', '[email protected]', '+1-742-210-2053', 'Analyst', 'Logistics', '2020-09-07', 29737.75),
    (5, 5, 'Grant', 'Williams', '[email protected]', '975.289.1783x9084', 'Warehouse Staff', 'Sales', '2018-12-17', 49957.23),
    (5, 5, 'Bruce', 'Mendoza', '[email protected]', '001-771-815-9212x499', 'Analyst', 'Sales', '2023-12-22', 50975.03),
    (5, 5, 'Virginia', 'Schmidt', '[email protected]', '001-318-736-7365x766', 'Cashier', 'Customer Experience', '2019-11-08', 35951.7),
    (5, 5, 'Ronald', 'Ortega', '[email protected]', '716-315-2809', 'Analyst', 'Finance', '2022-09-30', 56930.89),
    (5, 5, 'Robert', 'Russo', '[email protected]', '794-351-9832x7315', 'Warehouse Staff', 'Operations', '2021-06-30', 39969.77),
    (5, 5, 'Kathryn', 'Andrews', '[email protected]', '+1-480-494-0244x550', 'Shift Supervisor', 'Logistics', '2022-11-30', 54988.42),
    (6, 6, 'Ashley', 'Morales', '[email protected]', '001-383-266-7525x4599', 'Sales Associate', 'Operations', '2020-07-09', 29920.78),
    (6, 6, 'Eric', 'Webster', '[email protected]', '(979)676-4381x56149', 'Sales Associate', 'Finance', '2020-07-31', 45653.2),
    (6, 6, 'Brandon', 'Foster', '[email protected]', '001-724-345-1076x22683', 'Sales Associate', 'Sales', '2018-08-30', 34868.25),
    (6, 6, 'Randy', 'Harmon', '[email protected]', '001-769-466-4160', 'Sales Associate', 'Logistics', '2018-10-18', 43424.68),
    (6, 6, 'Laurie', 'Montgomery', '[email protected]', '001-468-316-4535', 'Inventory Clerk', 'Customer Experience', '2020-05-27', 44177.02),
    (6, 6, 'William', 'Wilson', '[email protected]', '+1-923-912-4329x2127', 'Shift Supervisor', 'Finance', '2023-04-21', 35289.92),
    (6, 6, 'Erin', 'Macias', '[email protected]', '377-644-9058', 'Customer Service', 'Customer Experience', '2020-02-19', 30829.77),
    (7, 7, 'Steven', 'Johnson', '[email protected]', '+1-986-479-8079x359', 'Customer Service', 'Logistics', '2022-10-01', 40333.07),
    (7, 7, 'Susan', 'Hayes', '[email protected]', '(703)777-8892', 'Analyst', 'Sales', '2019-02-08', 29818.38),
    (7, 7, 'Samantha', 'Hughes', '[email protected]', '818-464-4925x19254', 'Shift Supervisor', 'Logistics', '2019-03-24', 35459.69),
    (7, 7, 'Brooke', 'Hurley', '[email protected]', '001-981-568-5054x235', 'Cashier', 'Finance', '2023-01-12', 32205.47),
    (7, 7, 'Jeremy', 'Taylor', '[email protected]', '001-988-205-9296x22292', 'Cashier', 'Logistics', '2023-03-10', 35494.19),
    (7, 7, 'Robert', 'Rhodes', '[email protected]', '838.834.7359x774', 'Sales Associate', 'Customer Experience', '2019-02-06', 29517.65),
    (7, 7, 'Tammy', 'Montoya', '[email protected]', '(881)381-4124x782', 'Warehouse Staff', 'Sales', '2019-01-18', 55791.01),
    (7, 7, 'Stacey', 'Walker', '[email protected]', '2687536153', 'Analyst', 'Operations', '2019-11-13', 40192.42),
    (8, 8, 'Sarah', 'Combs', '[email protected]', '827.379.0104x3289', 'Cashier', 'Customer Experience', '2018-08-29', 32939.11),
    (8, 8, 'Kimberly', 'Young', '[email protected]', '811.279.8089x324', 'Sales Associate', 'Customer Experience', '2020-12-22', 55795.54),
    (8, 8, 'Christina', 'Allen', '[email protected]', '651.288.8880x67065', 'Analyst', 'Customer Experience', '2021-03-14', 40690.22),
    (8, 8, 'Michael', 'Jones', '[email protected]', '001-952-205-8527x7221', 'Shift Supervisor', 'Finance', '2023-06-17', 32643.9),
    (8, 8, 'Kelly', 'Williams', '[email protected]', '868.874.0345x05415', 'Inventory Clerk', 'Operations', '2018-08-28', 45375.41),
    (8, 8, 'Julia', 'Kline', '[email protected]', '001-675-784-1616x928', 'Warehouse Staff', 'Sales', '2021-07-08', 29714.96),
    (8, 8, 'Curtis', 'Murphy', '[email protected]', '001-775-470-5964x016', 'Warehouse Staff', 'Customer Experience', '2023-08-22', 55581.61);


-- ──────────────────────────────────────────────────────────────────
-- 5. CUSTOMERS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO customers (first_name, last_name, email, phone, gender, date_of_birth, loyalty_tier, registered_at)
VALUES
    ('Stephanie', 'Thomas', '[email protected]', '001-455-769-0927x55719', 'O', '1969-02-14', 'bronze', '2025-04-27 18:26:14'),
    ('Raymond', 'Banks', '[email protected]', '386.481.4473x9473', 'M', '1971-09-03', 'bronze', '2021-07-31 03:31:45'),
    ('Melissa', 'Hayes', '[email protected]', '451-588-4422x58313', 'O', '1976-02-07', 'bronze', '2025-11-05 22:04:39'),
    ('Kristy', 'Johnson', '[email protected]', '314-467-8669', 'M', '1958-07-26', 'silver', '2024-07-26 11:40:30'),
    ('Teresa', 'Day', '[email protected]', '(489)622-6801', 'O', '2001-11-25', 'bronze', '2023-03-22 04:05:58'),
    ('Fred', 'Morris', '[email protected]', '343-484-2498', 'M', '1983-03-10', 'bronze', '2024-05-14 15:55:54'),
    ('Brittany', 'Carpenter', '[email protected]', '690-601-0943x96907', 'M', '1981-11-30', 'bronze', '2021-08-14 09:12:24'),
    ('Timothy', 'Ballard', '[email protected]', '4277677359', 'M', '1996-02-12', 'silver', '2025-10-16 03:50:54'),
    ('Michelle', 'Flores', '[email protected]', '+1-415-337-1473', 'M', '1961-07-28', 'silver', '2025-04-21 17:29:48'),
    ('Brent', 'Dougherty', '[email protected]', '001-953-227-8774', 'F', '1966-11-19', 'gold', '2021-08-02 17:27:06'),
    ('Christopher', 'Long', '[email protected]', '(400)647-9748x016', 'M', '1988-02-25', 'bronze', '2024-09-23 09:24:34'),
    ('Jessica', 'Gallagher', '[email protected]', '658.341.6878', 'O', '1982-02-20', 'silver', '2025-07-02 08:40:36'),
    ('David', 'Davis', '[email protected]', '001-923-498-6800x02578', 'M', '2004-10-03', 'bronze', '2021-11-18 19:58:09'),
    ('Catherine', 'Robertson', '[email protected]', '+1-749-758-8879x470', 'M', '1978-09-23', 'bronze', '2021-11-29 13:10:50'),
    ('Emily', 'Whitney', '[email protected]', '599-230-9728x962', 'O', '2004-08-19', 'bronze', '2023-05-26 09:16:13'),
    ('Ashley', 'Graves', '[email protected]', '(836)789-7028x38578', 'O', '1973-11-23', 'silver', '2022-09-25 13:18:56'),
    ('Sue', 'Stevens', '[email protected]', '934.784.3443', 'O', '1978-09-07', 'silver', '2023-02-20 04:57:27'),
    ('Timothy', 'Castro', '[email protected]', '(652)640-4157x4733', 'M', '1963-04-13', 'silver', '2023-05-10 14:46:23'),
    ('Derrick', 'Gilbert', '[email protected]', '230.416.5712', 'M', '1955-04-27', 'bronze', '2022-02-11 10:37:14'),
    ('Richard', 'Donovan', '[email protected]', '440-619-3802x62067', 'O', '1978-07-02', 'bronze', '2024-10-04 17:38:36'),
    ('Nancy', 'Smith', '[email protected]', '+1-688-472-8743x1527', 'O', '1993-05-15', 'silver', '2021-12-14 13:55:16'),
    ('Alexis', 'Rogers', '[email protected]', '+1-266-685-1612x2753', 'M', '1968-05-16', 'silver', '2024-02-22 02:44:21'),
    ('Patrick', 'Griffin', '[email protected]', '001-404-853-0174', 'O', '2004-07-27', 'bronze', '2022-01-31 23:01:36'),
    ('Gina', 'Leblanc', '[email protected]', '932.572.7956', 'M', '1982-08-28', 'bronze', '2021-05-04 22:46:38'),
    ('Kathleen', 'Becker', '[email protected]', '491-408-8398', 'F', '1973-11-05', 'silver', '2021-11-16 08:50:52'),
    ('Mark', 'Meyer', '[email protected]', '287-907-2867', 'F', '1991-06-17', 'platinum', '2022-04-26 04:19:55'),
    ('Emily', 'Parker', '[email protected]', '391.906.5180', 'M', '1969-07-30', 'platinum', '2022-07-05 01:58:53'),
    ('Anthony', 'Ortiz', '[email protected]', '(456)576-6182x51286', 'F', '1957-03-23', 'bronze', '2023-10-30 01:32:36'),
    ('Mary', 'Avila', '[email protected]', '(533)575-2431x0690', 'F', '1977-04-06', 'bronze', '2021-12-02 20:11:38'),
    ('Carlos', 'Wheeler', '[email protected]', '606.573.8302', 'F', '1958-06-22', 'gold', '2022-11-23 01:51:36'),
    ('Lisa', 'Dennis', '[email protected]', '(483)864-4089', 'M', '1996-04-18', 'bronze', '2022-12-09 02:44:59'),
    ('Angela', 'Williams', '[email protected]', '001-466-924-6287x334', 'M', '1957-02-14', 'silver', '2024-05-22 23:46:37'),
    ('Robin', 'Hart', '[email protected]', '543.251.7518', 'F', '1979-12-30', 'gold', '2023-05-18 05:04:05'),
    ('Joseph', 'Nunez', '[email protected]', '001-583-873-5403x3173', 'F', '2000-09-13', 'bronze', '2025-07-24 23:08:34'),
    ('Rose', 'Arnold', '[email protected]', '258-577-1753x556', 'F', '1957-06-23', 'bronze', '2023-03-23 13:37:00'),
    ('Joyce', 'Smith', '[email protected]', '969.937.8547', 'M', '1978-10-25', 'bronze', '2026-01-28 11:34:36'),
    ('Gary', 'Norton', '[email protected]', '+1-508-301-0062', 'F', '1986-01-05', 'silver', '2023-09-02 13:28:33'),
    ('Jasmine', 'Smith', '[email protected]', '+1-697-270-0886x00848', 'F', '2000-11-18', 'bronze', '2025-11-27 09:31:14'),
    ('Wayne', 'Wolfe', '[email protected]', '682-833-9845', 'M', '1977-11-07', 'bronze', '2024-09-16 18:48:19'),
    ('Christian', 'Chung', '[email protected]', '910-816-6687x0021', 'M', '2001-08-23', 'gold', '2025-07-31 21:53:26'),
    ('Deanna', 'Rivera', '[email protected]', '297.440.1489', 'O', '1972-09-04', 'bronze', '2021-08-06 09:37:30'),
    ('Sarah', 'Edwards', '[email protected]', '(714)229-3968x5621', 'O', '1984-08-15', 'silver', '2022-01-23 04:44:13'),
    ('Connor', 'Hall', '[email protected]', '(850)347-7358x6629', 'O', '1981-12-10', 'silver', '2024-06-22 19:58:57'),
    ('Kelsey', 'Phillips', '[email protected]', '(426)355-1104x7541', 'F', '1991-02-06', 'silver', '2025-09-19 11:59:27'),
    ('Jacob', 'Cole', '[email protected]', '+1-819-395-6046', 'M', '1972-03-18', 'bronze', '2024-03-23 23:07:15'),
    ('Jenny', 'Hansen', '[email protected]', '(824)644-7212', 'O', '1970-08-12', 'silver', '2023-07-25 00:26:57'),
    ('Robert', 'Washington', '[email protected]', '+1-879-793-7124x0659', 'F', '2004-02-27', 'gold', '2023-08-03 02:33:31'),
    ('Scott', 'Jordan', '[email protected]', '575.726.5479', 'F', '1973-11-09', 'bronze', '2025-12-07 22:47:58'),
    ('Nicholas', 'Velasquez', '[email protected]', '001-382-880-7374', 'O', '1983-11-29', 'bronze', '2024-10-05 17:49:26'),
    ('Emily', 'Taylor', '[email protected]', '279-779-6886', 'O', '1974-03-04', 'silver', '2022-06-12 05:06:26'),
    ('Jacqueline', 'Burnett', '[email protected]', '(529)509-6561x014', 'O', '1962-08-10', 'bronze', '2026-05-21 11:29:27'),
    ('Sean', 'Myers', '[email protected]', '961-312-5457x3875', 'O', '1985-01-26', 'bronze', '2022-12-31 17:04:18'),
    ('Samuel', 'Horton', '[email protected]', '412-438-2825x86736', 'O', '1982-11-06', 'bronze', '2022-09-11 16:12:14'),
    ('Danielle', 'Reynolds', '[email protected]', '001-366-403-3419', 'M', '1957-03-11', 'bronze', '2025-01-16 04:44:00'),
    ('Michael', 'Gonzalez', '[email protected]', '+1-659-369-6915x5792', 'O', '1961-07-14', 'bronze', '2026-05-11 14:42:37'),
    ('Emily', 'Edwards', '[email protected]', '(486)969-2966', 'O', '1972-06-11', 'silver', '2024-04-07 23:30:35'),
    ('Cynthia', 'Steele', '[email protected]', '(557)890-5072', 'F', '1990-11-08', 'bronze', '2021-01-18 05:27:04'),
    ('Tamara', 'Wagner', '[email protected]', '001-677-421-9034x043', 'M', '1993-02-21', 'bronze', '2025-05-29 05:43:45'),
    ('Kimberly', 'Cunningham', '[email protected]', '848-358-0783', 'F', '1959-07-04', 'silver', '2022-01-13 01:09:11'),
    ('Jill', 'Valdez', '[email protected]', '451-571-3395x962', 'F', '1966-12-18', 'gold', '2025-07-09 04:03:48'),
    ('Lisa', 'Trujillo', '[email protected]', '444-794-8126x04223', 'O', '1983-06-20', 'platinum', '2024-10-07 00:39:59'),
    ('Maria', 'Juarez', '[email protected]', '766-271-1684x577', 'O', '2000-04-14', 'bronze', '2025-08-30 04:17:37'),
    ('Misty', 'Boone', '[email protected]', '001-751-486-3637x454', 'F', '1969-04-12', 'silver', '2025-01-14 18:17:28'),
    ('Ashlee', 'Washington', '[email protected]', '+1-670-312-7706x3242', 'F', '1978-04-03', 'silver', '2023-05-12 13:49:58'),
    ('Diamond', 'Wright', '[email protected]', '+1-943-261-1037x1293', 'O', '1998-06-23', 'silver', '2023-05-04 03:28:10'),
    ('Alan', 'Cooper', '[email protected]', '413.361.1155x4262', 'F', '1961-12-13', 'silver', '2022-12-30 13:06:31'),
    ('Alyssa', 'Smith', '[email protected]', '001-826-797-3112x1965', 'F', '1985-02-17', 'bronze', '2025-08-06 04:40:08'),
    ('Kylie', 'Wright', '[email protected]', '+1-540-943-8983x640', 'M', '1967-06-01', 'bronze', '2024-04-05 01:10:53'),
    ('Paul', 'Allen', '[email protected]', '626-596-5827x10910', 'O', '1968-09-16', 'silver', '2021-07-19 13:15:01'),
    ('Bill', 'Brown', '[email protected]', '566.461.8892x41418', 'F', '1991-07-27', 'bronze', '2024-12-18 13:50:03'),
    ('Amanda', 'Myers', '[email protected]', '6314617990', 'F', '1960-08-02', 'bronze', '2024-07-29 08:10:17'),
    ('David', 'Zimmerman', '[email protected]', '342.952.4105x64814', 'F', '1956-10-02', 'gold', '2025-11-24 14:35:01'),
    ('Spencer', 'Ward', '[email protected]', '(241)591-3800', 'F', '1997-10-16', 'bronze', '2023-12-29 21:02:15'),
    ('Brandon', 'Cox', '[email protected]', '+1-763-353-6541', 'F', '1989-12-27', 'gold', '2024-07-25 20:29:28'),
    ('Wayne', 'Winters', '[email protected]', '(617)544-5187x0534', 'O', '2003-12-30', 'silver', '2022-11-17 04:33:24'),
    ('Steven', 'Vargas', '[email protected]', '001-883-620-6038x5050', 'F', '1974-09-08', 'bronze', '2025-02-17 20:05:31'),
    ('Dalton', 'Moreno', '[email protected]', '001-441-803-8657x191', 'M', '1989-11-20', 'bronze', '2024-06-10 04:02:09'),
    ('Charles', 'Bradley', '[email protected]', '345-465-5743x1329', 'O', '1969-10-22', 'gold', '2022-02-01 12:37:04'),
    ('Daniel', 'Cole', '[email protected]', '447.341.1249x035', 'O', '2002-12-02', 'bronze', '2024-05-09 04:16:46'),
    ('Jennifer', 'Schmitt', '[email protected]', '320-267-8831x712', 'O', '1957-06-07', 'bronze', '2024-08-24 15:41:04'),
    ('Bryan', 'Norman', '[email protected]', '+1-219-994-1013x72151', 'M', '1996-06-02', 'bronze', '2023-03-20 06:39:38'),
    ('Brent', 'Glass', '[email protected]', '9664253244', 'F', '1984-05-14', 'bronze', '2023-10-13 11:23:23'),
    ('Austin', 'Harvey', '[email protected]', '701.946.2638x3806', 'F', '1989-01-05', 'bronze', '2024-08-02 18:09:07'),
    ('Amy', 'Washington', '[email protected]', '+1-530-540-7859x321', 'F', '1962-05-07', 'bronze', '2025-08-03 21:59:59'),
    ('Joseph', 'Velasquez', '[email protected]', '(452)523-9559x0599', 'M', '1986-05-25', 'bronze', '2021-08-02 04:33:23'),
    ('Mary', 'Cochran', '[email protected]', '2107393087', 'O', '1958-08-12', 'silver', '2023-02-08 06:46:46'),
    ('Samantha', 'Harris', '[email protected]', '7028921851', 'M', '1956-10-29', 'silver', '2023-01-12 03:12:00'),
    ('Brenda', 'Rogers', '[email protected]', '452.289.5392x6442', 'M', '1997-06-26', 'silver', '2025-10-19 04:37:10'),
    ('Stacy', 'Fry', '[email protected]', '4297593917', 'M', '1996-09-20', 'silver', '2024-02-21 02:49:04'),
    ('Julie', 'Young', '[email protected]', '2438315410', 'M', '1965-04-11', 'silver', '2022-05-24 19:15:48'),
    ('Samuel', 'Barnes', '[email protected]', '(286)717-9327x104', 'F', '1964-09-12', 'silver', '2023-08-28 05:13:05'),
    ('Jose', 'Garcia', '[email protected]', '481-859-9706', 'O', '1988-09-02', 'bronze', '2022-09-09 04:32:24'),
    ('Eric', 'Garcia', '[email protected]', '001-284-744-3106x9872', 'M', '1976-10-14', 'bronze', '2023-07-26 23:38:04'),
    ('Adam', 'Miller', '[email protected]', '(641)371-4677', 'O', '1965-11-10', 'silver', '2025-10-25 06:59:22'),
    ('Darlene', 'Hughes', '[email protected]', '4473743490', 'M', '1986-02-24', 'silver', '2024-02-26 07:46:03'),
    ('Christopher', 'Cooper', '[email protected]', '+1-906-686-8793', 'M', '2000-05-23', 'silver', '2021-02-09 07:24:44'),
    ('Christian', 'Orr', '[email protected]', '+1-592-417-2233x20616', 'F', '1998-12-23', 'bronze', '2024-01-31 06:41:50'),
    ('Mary', 'Scott', '[email protected]', '348-370-9986x16229', 'O', '1996-03-30', 'silver', '2024-09-15 00:16:30'),
    ('Anna', 'Garcia', '[email protected]', '(279)897-0246x2996', 'M', '2001-10-22', 'platinum', '2023-04-20 02:48:10'),
    ('Pamela', 'Rivera', '[email protected]', '(705)644-4713x247', 'O', '2003-04-13', 'silver', '2024-12-15 07:30:03'),
    ('Jessica', 'Jacobs', '[email protected]', '001-278-450-8214x8628', 'F', '1979-01-29', 'bronze', '2023-02-02 17:26:46'),
    ('James', 'Whitaker', '[email protected]', '001-934-457-8610x357', 'M', '1980-01-09', 'gold', '2023-01-28 15:46:32'),
    ('Susan', 'Wells', '[email protected]', '6608293333', 'F', '1988-12-31', 'bronze', '2025-03-16 18:09:50'),
    ('William', 'Hancock', '[email protected]', '+1-503-949-4466x574', 'F', '1971-04-25', 'bronze', '2024-01-08 09:40:00'),
    ('Kevin', 'Meyer', '[email protected]', '+1-658-699-4417x15454', 'F', '1985-07-14', 'bronze', '2026-01-27 04:32:20'),
    ('Jacob', 'Holmes', '[email protected]', '(552)707-4466x6099', 'O', '1979-10-14', 'silver', '2025-05-25 02:31:11'),
    ('Jessica', 'Walker', '[email protected]', '542.782.4172x48251', 'M', '1962-09-06', 'bronze', '2024-06-16 17:28:38'),
    ('Jeffrey', 'Savage', '[email protected]', '594-371-7099x917', 'F', '2004-10-22', 'silver', '2025-01-19 04:04:30'),
    ('Mikayla', 'James', '[email protected]', '969-672-5217x52500', 'O', '1999-01-13', 'bronze', '2021-02-23 13:45:03'),
    ('Jason', 'Ayala', '[email protected]', '(296)566-6760', 'M', '1981-05-25', 'bronze', '2023-01-26 22:08:52'),
    ('Jessica', 'Dodson', '[email protected]', '+1-203-635-4216x89421', 'F', '1988-02-09', 'bronze', '2025-07-08 12:24:31'),
    ('Stacy', 'Bryant', '[email protected]', '(432)360-3323x098', 'F', '1993-03-04', 'platinum', '2025-09-06 23:56:20'),
    ('Michael', 'Santos', '[email protected]', '+1-609-901-0016x761', 'F', '1986-07-25', 'silver', '2023-04-22 16:59:34'),
    ('Jacqueline', 'Harris', '[email protected]', '549.592.6189x14117', 'F', '1977-07-21', 'bronze', '2022-08-22 08:07:32'),
    ('Kimberly', 'Decker', '[email protected]', '3873375300', 'F', '1965-09-22', 'silver', '2022-07-30 05:46:23'),
    ('Mary', 'Caldwell', '[email protected]', '001-714-737-4470x1204', 'M', '1974-05-31', 'silver', '2023-05-10 01:18:23'),
    ('Ronald', 'Wilson', '[email protected]', '(455)379-4155', 'O', '2002-01-25', 'silver', '2021-11-09 07:46:11'),
    ('Richard', 'Rivers', '[email protected]', '(912)402-1697', 'M', '1981-07-30', 'bronze', '2022-07-12 12:07:53'),
    ('Cheryl', 'Maxwell', '[email protected]', '(777)216-7014', 'F', '1956-04-08', 'silver', '2022-01-29 06:42:34'),
    ('Janet', 'Gregory', '[email protected]', '489.916.3756x28900', 'F', '1959-01-31', 'platinum', '2025-09-16 05:26:06'),
    ('Melissa', 'Booth', '[email protected]', '908-338-6631x779', 'F', '1966-04-30', 'silver', '2025-03-06 02:34:07'),
    ('Melissa', 'West', '[email protected]', '666-508-8019', 'M', '1956-02-06', 'silver', '2024-12-29 08:46:22'),
    ('Diamond', 'Bryant', '[email protected]', '789-397-5711x30554', 'F', '1994-07-08', 'bronze', '2021-06-09 14:55:33'),
    ('Brandon', 'Martin', '[email protected]', '549-733-1637', 'F', '1997-11-10', 'bronze', '2021-07-23 00:21:34'),
    ('Daniel', 'Perry', '[email protected]', '001-982-470-8086', 'F', '1999-02-12', 'bronze', '2026-05-10 14:52:24'),
    ('Heather', 'Thompson', '[email protected]', '686-769-3465x47226', 'O', '1959-10-23', 'bronze', '2025-10-15 16:21:42'),
    ('Jennifer', 'Walls', '[email protected]', '+1-652-828-8515x87996', 'F', '1962-08-23', 'platinum', '2022-01-04 00:23:19'),
    ('Lindsey', 'Mills', '[email protected]', '242.744.2043', 'O', '1992-05-03', 'silver', '2026-04-06 08:36:52'),
    ('Lisa', 'Garcia', '[email protected]', '540.766.6580x04397', 'M', '2001-11-18', 'bronze', '2024-10-07 11:40:14'),
    ('Kari', 'Payne', '[email protected]', '621.422.8160x648', 'F', '1993-06-21', 'bronze', '2026-04-14 11:09:12'),
    ('Eugene', 'Singleton', '[email protected]', '7253909479', 'M', '1963-11-26', 'gold', '2022-10-08 13:47:20'),
    ('Kristen', 'Stewart', '[email protected]', '(768)786-1533', 'O', '1973-12-06', 'bronze', '2021-09-10 05:46:35'),
    ('Michael', 'Robinson', '[email protected]', '7158739930', 'M', '1976-07-08', 'bronze', '2021-08-22 05:14:33'),
    ('Ruth', 'Landry', '[email protected]', '5857887704', 'M', '1955-03-29', 'bronze', '2026-01-19 21:46:18'),
    ('Willie', 'Vaughan', '[email protected]', '3134361386', 'F', '1981-02-16', 'bronze', '2023-06-15 02:39:26'),
    ('Andrew', 'Love', '[email protected]', '+1-819-734-6676', 'O', '1980-05-13', 'silver', '2024-11-11 15:01:46'),
    ('Andre', 'Nunez', '[email protected]', '001-301-658-1449', 'M', '1975-12-10', 'gold', '2026-04-26 23:42:10'),
    ('Kathy', 'Kim', '[email protected]', '(783)226-8424', 'O', '1972-09-30', 'bronze', '2025-08-19 21:30:51'),
    ('Angela', 'Peters', '[email protected]', '+1-481-443-5368', 'M', '1968-05-14', 'gold', '2022-03-18 21:54:22'),
    ('Jack', 'Jensen', '[email protected]', '001-487-581-4141x39755', 'M', '1960-05-08', 'bronze', '2023-08-14 17:11:56'),
    ('Craig', 'Harvey', '[email protected]', '+1-849-629-9556x20533', 'O', '1980-11-22', 'bronze', '2024-12-27 04:39:12'),
    ('Mary', 'Taylor', '[email protected]', '001-347-281-2914x28341', 'O', '1982-04-13', 'silver', '2023-04-26 20:08:50'),
    ('Melissa', 'Welch', '[email protected]', '+1-648-487-2563', 'O', '2003-06-12', 'bronze', '2021-09-07 22:10:45'),
    ('Steven', 'Dixon', '[email protected]', '492.982.7229', 'O', '1958-07-30', 'gold', '2023-09-29 10:02:20'),
    ('Sheila', 'Williams', '[email protected]', '203.785.6770', 'O', '1977-06-18', 'bronze', '2022-12-13 05:50:29'),
    ('Dakota', 'Schmitt', '[email protected]', '001-826-565-9184', 'O', '1956-11-10', 'platinum', '2023-04-18 08:11:54'),
    ('Zachary', 'Gomez', '[email protected]', '327.523.1843x22259', 'O', '1958-08-11', 'silver', '2022-06-29 07:10:03'),
    ('Robert', 'Rivera', '[email protected]', '001-426-403-0299', 'F', '2001-07-23', 'silver', '2023-05-15 04:51:27'),
    ('Crystal', 'Williams', '[email protected]', '869.490.4137x97723', 'M', '1994-02-08', 'silver', '2025-03-08 17:43:59'),
    ('Laura', 'Hoover', '[email protected]', '001-857-499-1366x2103', 'M', '1997-03-02', 'bronze', '2023-11-02 13:16:31'),
    ('Catherine', 'Thompson', '[email protected]', '772-298-0686', 'F', '1964-05-20', 'gold', '2023-10-22 15:56:37'),
    ('Heidi', 'Patterson', '[email protected]', '001-691-862-4731', 'F', '1999-06-14', 'bronze', '2024-05-29 03:53:02'),
    ('Jonathan', 'Smith', '[email protected]', '(735)665-1269x4486', 'O', '1958-04-17', 'bronze', '2023-09-05 04:05:56'),
    ('Victoria', 'Sanders', '[email protected]', '(858)487-4495', 'F', '1984-01-02', 'bronze', '2024-06-09 17:28:35'),
    ('Melissa', 'Hopkins', '[email protected]', '838-265-8902', 'O', '1955-02-07', 'silver', '2025-08-13 18:42:38'),
    ('Linda', 'Morrow', '[email protected]', '643-251-9066', 'F', '1992-01-28', 'bronze', '2025-05-30 17:38:35'),
    ('Sonya', 'Wilkins', '[email protected]', '443.309.8839x20530', 'F', '1999-09-21', 'silver', '2021-06-10 08:27:11'),
    ('Wendy', 'Chan', '[email protected]', '901.818.4895x54393', 'M', '1978-12-16', 'silver', '2023-06-14 21:00:35'),
    ('Bailey', 'Green', '[email protected]', '745.918.4894x76973', 'F', '1998-06-27', 'bronze', '2026-05-12 09:51:56'),
    ('Erin', 'Mosley', '[email protected]', '+1-833-756-5880x4341', 'O', '1976-06-20', 'silver', '2023-08-24 11:12:35'),
    ('Charles', 'Velazquez', '[email protected]', '723-473-3343x333', 'O', '1956-03-24', 'silver', '2021-10-17 14:10:55'),
    ('Kimberly', 'Wilson', '[email protected]', '6809759579', 'M', '1965-03-06', 'bronze', '2021-12-31 22:54:38'),
    ('Ian', 'Duran', '[email protected]', '267.280.8562x71875', 'O', '1968-10-24', 'bronze', '2023-06-26 18:46:30'),
    ('Emily', 'Gray', '[email protected]', '(484)934-7955', 'O', '1979-07-13', 'bronze', '2025-02-08 01:46:33'),
    ('Rodney', 'Barnes', '[email protected]', '(892)893-1438', 'F', '1976-11-12', 'bronze', '2022-03-26 09:17:12'),
    ('James', 'Marsh', '[email protected]', '428.285.7448x9061', 'F', '1972-02-06', 'gold', '2025-04-29 01:11:15'),
    ('Jason', 'King', '[email protected]', '(488)645-0615x939', 'O', '1967-04-01', 'gold', '2023-05-09 06:29:57'),
    ('Michael', 'Nunez', '[email protected]', '(494)772-2569x9611', 'F', '1985-06-29', 'gold', '2025-04-27 11:39:55'),
    ('Jeremy', 'Stewart', '[email protected]', '359.587.6220x234', 'F', '1955-03-26', 'bronze', '2023-07-17 13:56:15'),
    ('Garrett', 'Garcia', '[email protected]', '8686114921', 'O', '1998-12-05', 'gold', '2024-10-19 08:59:13'),
    ('Jerome', 'Rojas', '[email protected]', '(900)455-7784', 'O', '1998-06-14', 'bronze', '2025-09-11 17:56:43'),
    ('Tara', 'Wolfe', '[email protected]', '+1-796-888-4578x3174', 'O', '1988-11-03', 'bronze', '2023-09-27 17:27:29'),
    ('Jordan', 'Torres', '[email protected]', '(547)280-7740x649', 'M', '1976-06-04', 'silver', '2022-12-27 15:40:40'),
    ('Amy', 'Lopez', '[email protected]', '001-666-834-1638x9448', 'F', '1958-12-01', 'bronze', '2025-01-09 11:39:54'),
    ('Jacob', 'Jones', '[email protected]', '349.673.5020x802', 'O', '1989-03-15', 'bronze', '2022-04-18 13:47:40'),
    ('Joseph', 'Espinoza', '[email protected]', '356.447.5705', 'F', '1958-04-28', 'bronze', '2026-01-08 15:02:32'),
    ('Brian', 'Rowe', '[email protected]', '(901)836-7303x7183', 'F', '1964-01-02', 'gold', '2024-09-29 23:36:38'),
    ('Erin', 'Collins', '[email protected]', '547-843-5031', 'M', '2002-03-09', 'gold', '2021-02-17 16:23:59'),
    ('Mark', 'Jackson', '[email protected]', '9973925132', 'O', '1967-12-07', 'bronze', '2022-04-25 14:00:24'),
    ('Gina', 'Morgan', '[email protected]', '+1-512-273-5857', 'M', '1997-02-13', 'silver', '2023-04-04 09:31:51'),
    ('Hannah', 'Howard', '[email protected]', '684.487.3928x557', 'F', '1990-08-29', 'silver', '2023-10-18 19:37:32'),
    ('Casey', 'Moore', '[email protected]', '7863209593', 'O', '2002-11-15', 'bronze', '2023-09-11 19:58:01'),
    ('Dominique', 'Ryan', '[email protected]', '001-482-294-5651x18102', 'O', '1998-10-11', 'gold', '2021-04-22 12:49:51'),
    ('James', 'Washington', '[email protected]', '+1-378-999-4053x91037', 'O', '1961-02-20', 'bronze', '2023-06-12 20:31:53'),
    ('Laurie', 'Brown', '[email protected]', '3943801413', 'M', '1963-02-09', 'bronze', '2021-11-02 20:27:04'),
    ('Jessica', 'Schmidt', '[email protected]', '+1-828-786-1957x6122', 'O', '1964-01-07', 'bronze', '2023-07-20 09:48:32'),
    ('Diane', 'Ferguson', '[email protected]', '956-965-9398x36845', 'M', '1959-02-16', 'bronze', '2021-06-24 08:33:10'),
    ('Susan', 'Smith', '[email protected]', '(440)343-3504', 'F', '1987-02-28', 'bronze', '2022-03-29 06:28:14'),
    ('Benjamin', 'Kelly', '[email protected]', '744.919.6931', 'M', '2002-08-27', 'bronze', '2022-07-14 10:00:53'),
    ('Gerald', 'Petersen', '[email protected]', '001-561-205-5661', 'M', '1970-09-15', 'bronze', '2024-04-03 12:34:13'),
    ('Cynthia', 'Chen', '[email protected]', '001-325-583-2067', 'O', '1976-08-09', 'bronze', '2025-12-17 19:20:51'),
    ('Ryan', 'Hartman', '[email protected]', '001-508-964-1686x2278', 'M', '1975-10-31', 'bronze', '2023-03-01 01:55:23'),
    ('Randall', 'Duncan', '[email protected]', '491-716-6553x55904', 'F', '1977-11-27', 'silver', '2024-12-16 11:47:49'),
    ('Christina', 'Branch', '[email protected]', '435.621.1039', 'F', '2004-01-14', 'bronze', '2024-10-04 09:45:35'),
    ('Alexander', 'Benson', '[email protected]', '483.238.8487', 'F', '1981-11-02', 'silver', '2024-08-11 06:46:03'),
    ('Nicholas', 'Escobar', '[email protected]', '001-694-807-0164x510', 'O', '1977-06-09', 'bronze', '2023-07-28 15:49:28'),
    ('Jerry', 'James', '[email protected]', '+1-512-638-7800', 'M', '1989-07-06', 'gold', '2021-11-28 08:38:39'),
    ('Matthew', 'Long', '[email protected]', '+1-743-884-0460x8432', 'M', '1989-03-19', 'silver', '2025-11-21 21:05:03'),
    ('Diane', 'Miller', '[email protected]', '+1-536-439-2649x5782', 'F', '1981-06-27', 'bronze', '2024-05-14 17:24:55'),
    ('Bianca', 'Sutton', '[email protected]', '226.729.2518x81252', 'F', '1955-09-23', 'silver', '2021-06-02 09:00:14'),
    ('Nicole', 'Gutierrez', '[email protected]', '001-542-531-2209x9499', 'O', '1999-07-25', 'gold', '2023-06-09 04:10:57'),
    ('Jerry', 'Johnson', '[email protected]', '+1-875-226-7722x330', 'M', '1986-08-10', 'bronze', '2022-08-14 17:16:07'),
    ('Sara', 'Clements', '[email protected]', '827-297-5736', 'O', '1977-06-26', 'silver', '2022-03-01 22:59:56'),
    ('Cathy', 'Holloway', '[email protected]', '208.517.7038x86086', 'O', '1963-09-19', 'gold', '2021-05-03 11:33:37'),
    ('Kelly', 'Sanders', '[email protected]', '(449)808-2771x81298', 'F', '1994-07-19', 'bronze', '2024-02-08 14:01:31'),
    ('Robert', 'Hayes', '[email protected]', '814.452.1117x518', 'O', '1966-10-16', 'bronze', '2023-07-06 21:01:49'),
    ('Nicholas', 'James', '[email protected]', '(622)420-6447', 'F', '1992-04-11', 'bronze', '2022-02-15 14:32:55'),
    ('David', 'Anderson', '[email protected]', '877.980.9733x977', 'O', '1987-10-28', 'silver', '2023-04-27 17:06:43'),
    ('Christopher', 'Greene', '[email protected]', '+1-230-622-0502', 'M', '1978-01-20', 'gold', '2025-02-06 01:10:41'),
    ('Mark', 'Miller', '[email protected]', '799-898-2795x0145', 'F', '1985-05-22', 'gold', '2024-12-26 01:19:08'),
    ('Lori', 'Chang', '[email protected]', '358-968-3390x198', 'M', '1967-08-18', 'silver', '2022-12-02 23:03:02'),
    ('Jennifer', 'Jacobs', '[email protected]', '001-995-429-9787', 'O', '1990-08-27', 'platinum', '2025-09-28 12:14:27'),
    ('Nicole', 'Hall', '[email protected]', '513.696.6055x830', 'F', '1963-02-07', 'silver', '2021-02-13 05:51:01'),
    ('Jonathan', 'Jones', '[email protected]', '+1-455-969-9023x55770', 'F', '2003-02-20', 'bronze', '2024-02-20 03:44:19'),
    ('Eric', 'Murray', '[email protected]', '295-788-0395x5124', 'O', '1978-07-09', 'silver', '2024-02-29 03:04:56'),
    ('Tonya', 'Sims', '[email protected]', '745-904-6173', 'M', '1975-12-23', 'bronze', '2026-04-09 20:45:44'),
    ('Maria', 'Turner', '[email protected]', '978-607-8235', 'O', '1984-06-05', 'gold', '2022-11-19 18:20:04'),
    ('Kimberly', 'Thomas', '[email protected]', '(230)376-8104', 'O', '1960-09-02', 'silver', '2024-12-13 10:17:46'),
    ('Mathew', 'Small', '[email protected]', '7949353344', 'O', '1982-02-10', 'silver', '2021-12-29 11:59:18'),
    ('Emily', 'Nelson', '[email protected]', '+1-481-638-5854', 'M', '1959-01-25', 'gold', '2023-08-04 15:04:04'),
    ('Audrey', 'Jackson', '[email protected]', '8208701601', 'F', '1965-06-02', 'bronze', '2025-07-29 02:22:48'),
    ('Harold', 'Carlson', '[email protected]', '981.679.2171', 'M', '1989-11-13', 'bronze', '2025-08-06 07:40:18'),
    ('Gabrielle', 'Mckinney', '[email protected]', '+1-345-762-5577x017', 'F', '1968-11-11', 'gold', '2021-11-04 15:35:17'),
    ('Timothy', 'Singleton', '[email protected]', '516.415.8148x76963', 'F', '1991-08-13', 'gold', '2023-05-20 02:56:13'),
    ('Terri', 'Reyes', '[email protected]', '001-958-732-1971', 'M', '1988-03-29', 'bronze', '2024-10-13 14:55:34'),
    ('Angela', 'Short', '[email protected]', '296-457-0132', 'M', '1987-07-16', 'bronze', '2024-02-16 06:28:46'),
    ('Donna', 'Chavez', '[email protected]', '254.894.6519', 'O', '1987-03-07', 'bronze', '2023-05-08 03:12:41'),
    ('Melanie', 'Phelps', '[email protected]', '8857140369', 'M', '1965-12-16', 'gold', '2024-11-13 18:11:05'),
    ('Jennifer', 'Sullivan', '[email protected]', '223.486.5624x2201', 'M', '1974-01-11', 'silver', '2026-01-30 06:25:47'),
    ('Jennifer', 'Tucker', '[email protected]', '(867)996-9278', 'M', '1959-07-16', 'silver', '2023-01-27 17:48:46'),
    ('Paul', 'Perez', '[email protected]', '001-338-946-8950x0975', 'M', '1973-05-30', 'bronze', '2025-09-18 20:43:40'),
    ('Suzanne', 'Miller', '[email protected]', '737-218-9490', 'M', '1974-05-17', 'gold', '2022-12-25 21:38:26'),
    ('Taylor', 'Hunt', '[email protected]', '(444)220-9494x079', 'F', '1968-03-28', 'silver', '2026-01-26 15:36:42'),
    ('Diana', 'Carter', '[email protected]', '344-429-4440', 'M', '1979-11-16', 'gold', '2022-03-26 12:43:03'),
    ('Renee', 'Stevenson', '[email protected]', '001-837-828-0512x927', 'M', '2003-06-19', 'bronze', '2022-06-27 03:26:54'),
    ('John', 'Alexander', '[email protected]', '9415027674', 'M', '1957-04-24', 'bronze', '2024-01-19 00:28:48'),
    ('Noah', 'Thornton', '[email protected]', '7478658018', 'M', '1984-01-18', 'bronze', '2023-04-05 11:14:09'),
    ('Cheryl', 'Pearson', '[email protected]', '+1-296-373-9385x2580', 'M', '1966-05-16', 'silver', '2025-06-23 11:46:48'),
    ('Alexander', 'Davis', '[email protected]', '343-400-9109x3911', 'M', '1960-09-13', 'bronze', '2024-01-30 19:34:57'),
    ('Nicholas', 'Gallagher', '[email protected]', '871-774-6542x1406', 'O', '1964-10-13', 'bronze', '2022-11-20 07:56:48'),
    ('Wendy', 'Scott', '[email protected]', '+1-662-371-2863x917', 'O', '1958-11-21', 'silver', '2025-06-09 02:13:15'),
    ('Austin', 'Jones', '[email protected]', '+1-800-864-2569x0877', 'F', '1996-02-04', 'silver', '2021-04-07 18:45:36'),
    ('Megan', 'Norman', '[email protected]', '001-371-998-5546x01585', 'M', '1997-12-21', 'gold', '2024-08-17 09:15:53'),
    ('Kathleen', 'Roberts', '[email protected]', '+1-534-961-5717x32030', 'O', '1964-09-07', 'bronze', '2024-10-10 02:24:16'),
    ('Paul', 'Sparks', '[email protected]', '205-406-1387x82931', 'M', '1962-04-01', 'bronze', '2022-04-06 20:34:19'),
    ('Tracy', 'Smith', '[email protected]', '(304)317-9291', 'M', '1966-04-28', 'bronze', '2026-05-21 21:37:19'),
    ('Tyler', 'Lloyd', '[email protected]', '001-365-319-8253x0925', 'O', '2004-03-12', 'silver', '2024-03-29 10:17:24'),
    ('Joshua', 'Todd', '[email protected]', '990.321.9620', 'O', '2002-08-07', 'bronze', '2025-04-20 16:37:13'),
    ('Adam', 'White', '[email protected]', '(472)932-4876x32909', 'O', '1993-08-05', 'bronze', '2021-12-22 11:19:52'),
    ('Cheryl', 'Miller', '[email protected]', '918.519.5883', 'O', '2004-06-18', 'silver', '2022-10-31 01:16:54'),
    ('Joshua', 'Lee', '[email protected]', '222.300.5436x4597', 'F', '1995-07-06', 'gold', '2024-07-09 16:10:35'),
    ('Joy', 'Buckley', '[email protected]', '713-579-9563', 'F', '1995-09-08', 'bronze', '2021-10-23 10:06:50'),
    ('Kimberly', 'Nguyen', '[email protected]', '(831)779-7062x3972', 'F', '1993-04-15', 'bronze', '2023-03-03 21:57:38'),
    ('Derek', 'Cortez', '[email protected]', '4907421776', 'F', '1968-09-10', 'silver', '2025-01-13 11:58:37'),
    ('Jeffrey', 'Phillips', '[email protected]', '(998)931-6873', 'M', '1963-03-09', 'gold', '2021-10-17 15:44:24'),
    ('Joshua', 'Blair', '[email protected]', '001-229-806-0078', 'F', '1963-08-31', 'silver', '2024-03-03 18:33:48'),
    ('Amanda', 'Mendoza', '[email protected]', '001-206-932-5431x07427', 'M', '2004-11-30', 'bronze', '2025-10-11 18:55:05'),
    ('Steven', 'Taylor', '[email protected]', '501.365.8046x498', 'O', '1984-07-28', 'silver', '2024-06-30 08:06:43'),
    ('Christine', 'Rogers', '[email protected]', '4163579055', 'F', '1992-12-10', 'gold', '2021-06-09 20:05:50'),
    ('Ann', 'Ayala', '[email protected]', '+1-779-733-5548x6401', 'F', '1983-01-12', 'bronze', '2025-12-01 12:43:40'),
    ('Shaun', 'Mason', '[email protected]', '379-451-3711x6241', 'O', '1974-02-01', 'bronze', '2025-02-07 02:38:51'),
    ('Joshua', 'Terry', '[email protected]', '+1-304-268-2756x7043', 'M', '1964-09-16', 'bronze', '2025-09-25 06:09:36'),
    ('Monica', 'Hall', '[email protected]', '001-488-677-4924', 'F', '1965-04-22', 'silver', '2025-11-19 15:59:57'),
    ('Jeremy', 'Watson', '[email protected]', '272-792-8422x2231', 'M', '1993-07-01', 'gold', '2026-04-16 15:05:12'),
    ('Autumn', 'Alexander', '[email protected]', '952-757-8284x10672', 'O', '2004-12-12', 'bronze', '2023-04-11 22:20:52'),
    ('Eric', 'Cordova', '[email protected]', '001-892-597-5170x28140', 'M', '1971-03-09', 'bronze', '2023-08-18 23:34:04'),
    ('Sean', 'Davis', '[email protected]', '843.501.8718', 'F', '1986-06-29', 'bronze', '2022-03-22 01:36:19'),
    ('Tracy', 'Morrison', '[email protected]', '001-365-565-0455x478', 'O', '1990-12-15', 'bronze', '2026-05-22 04:43:36'),
    ('Jessica', 'Wallace', '[email protected]', '001-366-829-9123x4785', 'M', '1963-03-26', 'silver', '2022-10-31 09:28:13'),
    ('Christopher', 'Ortiz', '[email protected]', '001-623-626-4870', 'F', '1992-08-31', 'bronze', '2022-05-05 01:17:10'),
    ('Troy', 'Singh', '[email protected]', '771-946-2730x1471', 'F', '1982-12-16', 'silver', '2025-10-30 10:50:34'),
    ('Ariana', 'Oneill', '[email protected]', '690.742.9025x72520', 'O', '1962-08-15', 'gold', '2022-04-29 08:52:43'),
    ('Robert', 'Barr', '[email protected]', '783-621-9285', 'M', '1959-06-19', 'silver', '2023-04-26 09:27:30'),
    ('Joseph', 'Wolfe', '[email protected]', '3285457652', 'F', '1993-01-15', 'bronze', '2024-10-05 09:12:12'),
    ('Eric', 'Walker', '[email protected]', '488.916.7112x07545', 'F', '1979-07-05', 'bronze', '2025-05-11 19:18:35'),
    ('Pamela', 'Harper', '[email protected]', '332-823-4232', 'M', '1985-12-19', 'bronze', '2023-05-31 00:23:15'),
    ('Hannah', 'Bowers', '[email protected]', '6312089071', 'O', '1998-08-28', 'silver', '2023-08-17 05:25:00'),
    ('Carl', 'Contreras', '[email protected]', '001-732-750-1249', 'M', '1974-10-13', 'bronze', '2026-02-06 00:54:29'),
    ('Ethan', 'Mason', '[email protected]', '001-408-933-4280x13875', 'M', '1955-09-09', 'bronze', '2022-10-19 06:44:49'),
    ('Emily', 'Rodriguez', '[email protected]', '961.751.7182', 'M', '1977-12-03', 'bronze', '2022-01-08 18:40:53'),
    ('Janet', 'Hawkins', '[email protected]', '779-447-3864x6317', 'M', '1999-08-16', 'silver', '2022-06-30 20:45:15'),
    ('Alexander', 'Craig', '[email protected]', '712-566-9121', 'M', '1989-02-09', 'silver', '2022-12-16 22:17:54'),
    ('Matthew', 'Larson', '[email protected]', '449.994.6579x6784', 'O', '1986-10-10', 'bronze', '2021-05-12 10:17:07'),
    ('Daniel', 'King', '[email protected]', '401-670-2695', 'F', '1956-09-06', 'bronze', '2021-08-30 21:51:24'),
    ('Christy', 'Davis', '[email protected]', '234.877.8485x880', 'F', '1993-07-06', 'silver', '2024-07-21 17:31:08'),
    ('Nicole', 'Wilson', '[email protected]', '900.328.4276x246', 'F', '1965-05-02', 'bronze', '2023-10-07 00:28:15'),
    ('Ashley', 'Henry', '[email protected]', '7642796954', 'M', '1996-04-11', 'gold', '2024-01-30 05:41:32'),
    ('Anthony', 'Williams', '[email protected]', '361-365-5650x33349', 'M', '1994-03-07', 'gold', '2023-01-26 22:59:28'),
    ('Misty', 'Wilson', '[email protected]', '+1-769-386-4079x05696', 'F', '1990-12-04', 'silver', '2024-05-14 14:30:12'),
    ('Lindsey', 'Garcia', '[email protected]', '629-845-6371x83440', 'F', '1985-06-17', 'bronze', '2022-06-07 08:53:01'),
    ('Linda', 'Weber', '[email protected]', '741-598-7635x14846', 'M', '2000-10-18', 'silver', '2025-07-07 12:45:47'),
    ('Robert', 'King', '[email protected]', '8822973748', 'O', '1972-05-24', 'gold', '2023-12-22 11:18:29'),
    ('Alexa', 'Diaz', '[email protected]', '(365)413-6442x49363', 'F', '1968-04-01', 'bronze', '2022-03-31 23:40:21'),
    ('James', 'Sanchez', '[email protected]', '+1-203-224-2044x8207', 'F', '1972-09-12', 'bronze', '2022-04-20 22:47:50'),
    ('Michele', 'Miller', '[email protected]', '+1-316-523-1981x89847', 'O', '1961-10-05', 'bronze', '2026-05-05 23:15:15'),
    ('Carol', 'Mejia', '[email protected]', '001-236-932-1234x7649', 'F', '1996-08-15', 'silver', '2025-12-06 08:16:20'),
    ('Amanda', 'Lyons', '[email protected]', '242.257.5409', 'F', '1983-12-30', 'gold', '2026-05-03 16:43:10'),
    ('Hannah', 'Mccormick', '[email protected]', '001-551-683-7606x441', 'F', '1968-07-17', 'bronze', '2024-12-27 21:17:25'),
    ('Jason', 'Zamora', '[email protected]', '(704)817-7656x12481', 'F', '1982-03-02', 'silver', '2026-01-12 11:27:12'),
    ('Carrie', 'Li', '[email protected]', '+1-527-420-6345x9112', 'M', '1986-07-29', 'silver', '2023-08-23 09:41:12');


-- ──────────────────────────────────────────────────────────────────
-- 6. ADDRESSES
-- ──────────────────────────────────────────────────────────────────

INSERT INTO addresses (customer_id, address_type, street, city, state, postal_code, country, is_default)
VALUES
    (1, 'both', '7724 Grace Views Suite 431', 'Richardsonfurt', 'Missouri', '75263', 'Czech Republic', TRUE),
    (2, 'both', '89317 Jose Walk', 'North Richard', 'Nevada', '79195', 'Eritrea', TRUE),
    (2, 'billing', '52910 Ayala Motorway', 'Wilsonborough', 'Illinois', '35392', 'France', FALSE),
    (3, 'both', '2639 Wanda Haven Apt. 626', 'North Kelly', 'Kentucky', '31366', 'Niger', TRUE),
    (3, 'billing', '59710 Anderson Islands Suite 366', 'Charlesside', 'Arkansas', '07331', 'Grenada', FALSE),
    (4, 'both', '5990 Jon River', 'Turnerfurt', 'Texas', '49115', 'Bulgaria', TRUE),
    (4, 'billing', '242 Conrad Wells', 'Andersonmouth', 'Virginia', '70024', 'Jersey', FALSE),
    (5, 'both', '1502 Savage Village', 'Juliechester', 'Maine', '35001', 'New Zealand', TRUE),
    (6, 'both', '562 Doyle Overpass Apt. 870', 'East Brian', 'Idaho', '05201', 'Latvia', TRUE),
    (7, 'both', '76170 Kelly Station Suite 771', 'North Michael', 'Indiana', '37740', 'Cocos (Keeling) Islands', TRUE),
    (7, 'billing', '849 Brandy Avenue', 'South Samantha', 'Kansas', '65789', 'Philippines', FALSE),
    (8, 'both', '0416 Garza Coves', 'Ericland', 'New Jersey', '93261', 'Palestinian Territory', TRUE),
    (9, 'both', '4905 Diana Mission Suite 923', 'Port Dawnmouth', 'Arkansas', '97992', 'Barbados', TRUE),
    (9, 'billing', '64236 Andrew Fords Apt. 664', 'North Kenneth', 'Nevada', '96955', 'Sri Lanka', FALSE),
    (10, 'both', '925 Marilyn Passage Apt. 776', 'Adamschester', 'Colorado', '99655', 'Jamaica', TRUE),
    (11, 'both', '266 Billy Junctions Suite 327', 'West Taylorland', 'New Mexico', '39874', 'Canada', TRUE),
    (12, 'both', '438 Phillips Causeway', 'North Williamhaven', 'Nevada', '54636', 'Bhutan', TRUE),
    (13, 'both', '945 Richards Trafficway Apt. 172', 'Port Phillip', 'Colorado', '55059', 'Turkey', TRUE),
    (13, 'billing', '9779 Peterson Well Apt. 321', 'Monicaville', 'Nevada', '70542', 'Andorra', FALSE),
    (14, 'both', '1027 Holt Ways', 'Turnerstad', 'Vermont', '88817', 'Portugal', TRUE),
    (15, 'both', '1220 Daniel Brook Apt. 037', 'Lake John', 'South Dakota', '71094', 'Comoros', TRUE),
    (16, 'both', '7276 Darren Drives', 'Maynardfort', 'Alaska', '59419', 'Myanmar', TRUE),
    (16, 'billing', '49605 Curtis Vista', 'Pettyfort', 'West Virginia', '76347', 'Nepal', FALSE),
    (17, 'both', '76789 Hall Circle Apt. 695', 'West Patriciachester', 'New Mexico', '15828', 'Lithuania', TRUE),
    (18, 'both', '6024 Taylor Mill Apt. 839', 'Sandramouth', 'Florida', '38956', 'Saint Kitts and Nevis', TRUE),
    (19, 'both', '5729 Justin Summit Apt. 722', 'East Catherine', 'Connecticut', '55024', 'Western Sahara', TRUE),
    (20, 'both', '3380 Michael Green Suite 228', 'Port Brycechester', 'Delaware', '81446', 'Denmark', TRUE),
    (21, 'both', '374 Glover Trafficway', 'Port Natalieview', 'Georgia', '90958', 'Tunisia', TRUE),
    (22, 'both', '077 Theresa Tunnel', 'Port Annahaven', 'Connecticut', '22396', 'Norfolk Island', TRUE),
    (23, 'both', '52478 Oconnor Courts', 'Lake Michael', 'Florida', '16620', 'Thailand', TRUE),
    (24, 'both', '6037 Mitchell Extension', 'West Nathanchester', 'Mississippi', '83003', 'Papua New Guinea', TRUE),
    (24, 'billing', '86326 Hardin Mount', 'Sherrymouth', 'Georgia', '01804', 'Saint Barthelemy', FALSE),
    (25, 'both', '55626 Phillip Camp', 'New Brian', 'South Dakota', '94003', 'South Georgia and the South Sandwich Islands', TRUE),
    (26, 'both', '6845 Smith Harbors Apt. 673', 'Terryfurt', 'Wyoming', '26360', 'Turkmenistan', TRUE),
    (26, 'billing', '08562 Lewis Pass Suite 852', 'North Pamelaside', 'Pennsylvania', '34408', 'Dominican Republic', FALSE),
    (27, 'both', '681 Mckenzie Green Suite 101', 'Evanstown', 'New Jersey', '44931', 'Dominica', TRUE),
    (28, 'both', '4492 Stone Gateway', 'West Zacharyborough', 'Wyoming', '47853', 'Korea', TRUE),
    (29, 'both', '66110 Beasley Mountains', 'South Christian', 'Utah', '69478', 'Iraq', TRUE),
    (30, 'both', '9767 Dennis Mall Apt. 282', 'Dawsonberg', 'Virginia', '67765', 'Tokelau', TRUE),
    (31, 'both', '377 Julie Points', 'Sandraville', 'Rhode Island', '54059', 'Bouvet Island (Bouvetoya)', TRUE),
    (31, 'billing', '9408 David Inlet', 'Kevinfort', 'Alaska', '19227', 'Cambodia', FALSE),
    (32, 'both', '44327 David Keys Apt. 067', 'Arielmouth', 'Missouri', '62790', 'Syrian Arab Republic', TRUE),
    (33, 'both', '87772 Davis Road', 'Hughesfurt', 'Michigan', '71410', 'Aruba', TRUE),
    (33, 'billing', '412 Ashley Underpass Suite 818', 'East Stephanieside', 'Oregon', '99803', 'Austria', FALSE),
    (34, 'both', '8018 Suzanne Harbor', 'East Maria', 'Pennsylvania', '58727', 'Belize', TRUE),
    (35, 'both', '9070 Kim Mall Apt. 856', 'Christopherville', 'Ohio', '22541', 'France', TRUE),
    (36, 'both', '41246 Brian Islands', 'North Jennifer', 'Maryland', '51611', 'Bolivia', TRUE),
    (36, 'billing', '65461 James Terrace Apt. 788', 'Averyview', 'Arkansas', '42225', 'Kyrgyz Republic', FALSE),
    (37, 'both', '70630 Spencer Radial Apt. 382', 'Ashleymouth', 'Colorado', '83836', 'Macao', TRUE),
    (38, 'both', '58238 Ali Point', 'Williamsmouth', 'South Carolina', '38413', 'Palau', TRUE),
    (38, 'billing', '07494 Kidd Ville', 'New Mary', 'Maine', '06462', 'Central African Republic', FALSE),
    (39, 'both', '1612 Johns Fords', 'Nicolemouth', 'South Dakota', '34758', 'Sao Tome and Principe', TRUE),
    (39, 'billing', '3553 Haley Isle Apt. 209', 'Smithtown', 'Utah', '23246', 'Isle of Man', FALSE),
    (40, 'both', '8118 Patricia Via Suite 156', 'Paultown', 'Delaware', '61147', 'Heard Island and McDonald Islands', TRUE),
    (41, 'both', '0304 Lee Via', 'Lindseybury', 'Iowa', '65225', 'Guyana', TRUE),
    (41, 'billing', '7930 Tracey Route', 'Rodriguezview', 'Oregon', '66079', 'Lithuania', FALSE),
    (42, 'both', '399 Cameron Crossroad', 'East Jordanshire', 'Iowa', '69062', 'Saint Lucia', TRUE),
    (42, 'billing', '08948 Smith Meadow Apt. 566', 'Davidhaven', 'New Jersey', '65456', 'Guyana', FALSE),
    (43, 'both', '304 Patel Island', 'South Jamesland', 'Oregon', '03826', 'Saint Pierre and Miquelon', TRUE),
    (44, 'both', '613 Frank Inlet', 'Lake Colleentown', 'New Mexico', '57117', 'Sri Lanka', TRUE),
    (45, 'both', '543 Thomas Junctions', 'Port Matthewbury', 'California', '79139', 'Niger', TRUE),
    (46, 'both', '79110 Nicholas Vista Apt. 207', 'West Cherylchester', 'California', '13847', 'Philippines', TRUE),
    (46, 'billing', '046 Davis Terrace', 'Halltown', 'New Jersey', '50822', 'Kyrgyz Republic', FALSE),
    (47, 'both', '915 Shawn Isle Apt. 110', 'New Kristineborough', 'Oregon', '17013', 'Northern Mariana Islands', TRUE),
    (47, 'billing', '6797 John Union Apt. 024', 'Palmerstad', 'Maryland', '77003', 'Turks and Caicos Islands', FALSE),
    (48, 'both', '74954 Cordova Path', 'North John', 'Oklahoma', '07658', 'Jamaica', TRUE),
    (49, 'both', '33153 Neal Mountain Suite 995', 'Robertburgh', 'Connecticut', '60047', 'Turkey', TRUE),
    (50, 'both', '3033 Hanson Garden', 'Navarromouth', 'West Virginia', '49772', 'Costa Rica', TRUE),
    (50, 'billing', '05015 Angela Divide Suite 739', 'Bradleytown', 'Illinois', '26430', 'Finland', FALSE),
    (51, 'both', '42583 James Fall', 'Reneetown', 'Utah', '18489', 'Hong Kong', TRUE),
    (52, 'both', '3473 Pacheco Shore', 'New Tiffany', 'South Carolina', '57349', 'Turkey', TRUE),
    (53, 'both', '22338 Benson Island', 'Rowlandbury', 'Arizona', '81245', 'Namibia', TRUE),
    (53, 'billing', '425 Brian Underpass', 'Moniquehaven', 'Pennsylvania', '64593', 'Cote d''Ivoire', FALSE),
    (54, 'both', '9128 Potter Rue', 'Victormouth', 'Idaho', '42683', 'Rwanda', TRUE),
    (55, 'both', '777 Perkins Route Apt. 333', 'Royfurt', 'Indiana', '40608', 'Jamaica', TRUE),
    (55, 'billing', '254 Dennis Corner Suite 785', 'New Blake', 'North Carolina', '81913', 'Guadeloupe', FALSE),
    (56, 'both', '7665 Stewart Light Apt. 273', 'Deannastad', 'Colorado', '39104', 'Tajikistan', TRUE),
    (57, 'both', '3111 Johnson Flats', 'Jamesmouth', 'Kentucky', '40178', 'Samoa', TRUE),
    (58, 'both', '92840 Campbell Key Suite 690', 'Valdezberg', 'Montana', '30330', 'Denmark', TRUE),
    (58, 'billing', '3898 Sharp Mountain', 'Latoyamouth', 'Illinois', '56703', 'Sierra Leone', FALSE),
    (59, 'both', '77805 Barbara Crossroad Suite 075', 'Jeremiahchester', 'Utah', '99149', 'Iraq', TRUE),
    (59, 'billing', '9090 Eric Isle Suite 636', 'New Paulfort', 'Connecticut', '43602', 'Montenegro', FALSE),
    (60, 'both', '412 Emily Fall Apt. 970', 'East Chad', 'Missouri', '37701', 'Costa Rica', TRUE),
    (61, 'both', '8170 Stone Extension', 'Michelechester', 'Montana', '21083', 'Bouvet Island (Bouvetoya)', TRUE),
    (62, 'both', '671 Friedman Way', 'East Monica', 'Maryland', '57150', 'Svalbard & Jan Mayen Islands', TRUE),
    (63, 'both', '99493 Hill Avenue Apt. 716', 'New Mark', 'Oregon', '64851', 'Kuwait', TRUE),
    (64, 'both', '014 Reed Ville Suite 692', 'Wrightchester', 'New Jersey', '50919', 'United States Minor Outlying Islands', TRUE),
    (64, 'billing', '916 John Ways', 'West Nicole', 'Ohio', '38759', 'Papua New Guinea', FALSE),
    (65, 'both', '376 Wanda Club', 'New Katiemouth', 'Nebraska', '59606', 'Chad', TRUE),
    (66, 'both', '80701 James Summit Suite 360', 'West Dannyberg', 'Massachusetts', '88357', 'San Marino', TRUE),
    (67, 'both', '7118 Jennifer Mill Apt. 742', 'Port Andrew', 'Connecticut', '23731', 'French Polynesia', TRUE),
    (67, 'billing', '621 Erica Drives', 'Howardborough', 'Virginia', '05015', 'Uganda', FALSE),
    (68, 'both', '0816 Wallace Rapid', 'North Kelseyborough', 'Kansas', '49606', 'United States of America', TRUE),
    (68, 'billing', '10600 Hoover Springs', 'East Susanville', 'Texas', '22505', 'Saint Kitts and Nevis', FALSE),
    (69, 'both', '68155 Colleen Plains', 'Mcmillanville', 'Iowa', '28521', 'Botswana', TRUE),
    (70, 'both', '2065 Paul Mount Apt. 149', 'Bradleyborough', 'Nebraska', '40023', 'Seychelles', TRUE),
    (70, 'billing', '89241 Jarvis Square Suite 252', 'Tiffanyfort', 'California', '44423', 'Andorra', FALSE),
    (71, 'both', '8389 Jesse Ridges Apt. 436', 'New Christopher', 'Florida', '49590', 'Luxembourg', TRUE),
    (72, 'both', '26303 Stevenson Isle Apt. 450', 'Wongport', 'Wisconsin', '03606', 'Denmark', TRUE),
    (72, 'billing', '3380 Laurie Square Apt. 968', 'Isaiahtown', 'California', '64941', 'Bangladesh', FALSE),
    (73, 'both', '23212 Joel Common', 'Hardyport', 'Hawaii', '95092', 'Congo', TRUE),
    (74, 'both', '2934 Ray Roads', 'West Michelle', 'New Mexico', '10988', 'Zambia', TRUE),
    (74, 'billing', '6277 Wagner Street Suite 270', 'Simmonsland', 'Wisconsin', '39852', 'Nepal', FALSE),
    (75, 'both', '246 Torres Haven', 'Hartfort', 'California', '44178', 'Burkina Faso', TRUE),
    (75, 'billing', '23008 Henry Mall Suite 567', 'Danielleshire', 'California', '54081', 'Turks and Caicos Islands', FALSE),
    (76, 'both', '69236 Wise Terrace', 'Williamfort', 'South Dakota', '90742', 'Heard Island and McDonald Islands', TRUE),
    (77, 'both', '663 Tim Via', 'Crystaltown', 'Vermont', '87752', 'Oman', TRUE),
    (78, 'both', '9724 Carrie Shore', 'North Darryl', 'Colorado', '84963', 'Rwanda', TRUE),
    (79, 'both', '9183 Martin Meadow Suite 488', 'Willischester', 'Wisconsin', '95875', 'Trinidad and Tobago', TRUE),
    (80, 'both', '95243 Hale Avenue', 'Port Travis', 'Connecticut', '09655', 'Singapore', TRUE),
    (81, 'both', '646 Gregory Ferry Apt. 372', 'South Ashleyborough', 'Idaho', '26838', 'Bahamas', TRUE),
    (82, 'both', '46791 Christopher Corner', 'Martinezland', 'Michigan', '04389', 'Myanmar', TRUE),
    (83, 'both', '7100 Walton Avenue', 'North Jasontown', 'Missouri', '79535', 'Mali', TRUE),
    (84, 'both', '7596 Wood Junctions Suite 356', 'Bishopstad', 'Michigan', '13631', 'Afghanistan', TRUE),
    (85, 'both', '620 Misty Harbors Apt. 579', 'Robertsonborough', 'Alabama', '84134', 'Western Sahara', TRUE),
    (85, 'billing', '50573 Ross Ridge Apt. 567', 'Lake Paulborough', 'Virginia', '19265', 'Trinidad and Tobago', FALSE),
    (86, 'both', '71487 Peggy Crescent', 'Batesbury', 'Kansas', '28241', 'Chile', TRUE),
    (86, 'billing', '60256 Robinson Glens', 'Lynnville', 'Texas', '18294', 'Uzbekistan', FALSE),
    (87, 'both', '53991 Bennett Stravenue Suite 863', 'West Darrell', 'Colorado', '15100', 'Benin', TRUE),
    (88, 'both', '931 Anderson Island Suite 904', 'New Amandafurt', 'Nevada', '42397', 'Sierra Leone', TRUE),
    (89, 'both', '289 Daniel Branch Suite 524', 'South Erin', 'Georgia', '79336', 'Finland', TRUE),
    (90, 'both', '095 Shaw Spurs', 'West Wendyshire', 'New Mexico', '83217', 'Switzerland', TRUE),
    (91, 'both', '4605 Maria Fords', 'Lake Jill', 'Wyoming', '23965', 'Togo', TRUE),
    (91, 'billing', '642 Amy Junction Suite 756', 'Jonesport', 'Maine', '91776', 'Uzbekistan', FALSE),
    (92, 'both', '861 Marcus Turnpike', 'Port Sarahport', 'New Jersey', '86305', 'Central African Republic', TRUE),
    (92, 'billing', '7423 Linda Flat', 'West Jessicashire', 'Connecticut', '89409', 'Solomon Islands', FALSE),
    (93, 'both', '6201 Mccann Fall', 'North Tinamouth', 'Pennsylvania', '57362', 'Canada', TRUE),
    (94, 'both', '01367 Watts Extensions Suite 176', 'Cynthiamouth', 'Mississippi', '02021', 'British Indian Ocean Territory (Chagos Archipelago)', TRUE),
    (95, 'both', '17830 Hill Summit', 'Port Brittanyfurt', 'New Mexico', '84989', 'Reunion', TRUE),
    (96, 'both', '9215 Jennifer Wall Apt. 606', 'Brownshire', 'Ohio', '94053', 'Svalbard & Jan Mayen Islands', TRUE),
    (97, 'both', '12920 Mcbride Crossing', 'East Baileyburgh', 'Colorado', '74228', 'Equatorial Guinea', TRUE),
    (98, 'both', '18458 Rodney Shoals', 'East Kevinhaven', 'Maine', '86898', 'Martinique', TRUE),
    (98, 'billing', '97585 Hailey Shore Apt. 303', 'West Melissa', 'Indiana', '18091', 'Netherlands', FALSE),
    (99, 'both', '542 Jones Glens', 'Patrickburgh', 'Montana', '60278', 'Belize', TRUE),
    (99, 'billing', '628 Chad Street Suite 359', 'South Lorraine', 'Massachusetts', '57337', 'Hong Kong', FALSE),
    (100, 'both', '314 Amanda Spur', 'Jonesland', 'Mississippi', '44215', 'Slovakia (Slovak Republic)', TRUE),
    (101, 'both', '34016 Nicholas Cove Apt. 284', 'Davisstad', 'Vermont', '75494', 'Tonga', TRUE),
    (102, 'both', '491 George Terrace Suite 258', 'Woodsberg', 'Kentucky', '01745', 'Poland', TRUE),
    (103, 'both', '226 Brown Stream', 'Jasminebury', 'Utah', '80284', 'Italy', TRUE),
    (103, 'billing', '75784 Cisneros Pike Apt. 414', 'Townsendland', 'South Dakota', '10917', 'Belarus', FALSE),
    (104, 'both', '29014 Stokes Branch', 'Rhodesberg', 'New Mexico', '65749', 'Malaysia', TRUE),
    (105, 'both', '0930 Park Summit', 'Johnhaven', 'Utah', '80349', 'Armenia', TRUE),
    (106, 'both', '83215 Willie Center Suite 762', 'Taramouth', 'Utah', '33238', 'Switzerland', TRUE),
    (107, 'both', '4744 Aaron Roads', 'Robinsonport', 'Tennessee', '68072', 'Sweden', TRUE),
    (108, 'both', '9705 Christina Isle', 'Michaeltown', 'Minnesota', '95191', 'Colombia', TRUE),
    (109, 'both', '0167 Christopher Passage Apt. 617', 'East Kaylaview', 'Iowa', '62196', 'Indonesia', TRUE),
    (110, 'both', '5628 Rodriguez Mill Suite 225', 'Smithborough', 'Delaware', '25347', 'Finland', TRUE),
    (111, 'both', '66502 Stacy Shores', 'Davidfort', 'Oklahoma', '65456', 'South Georgia and the South Sandwich Islands', TRUE),
    (111, 'billing', '6862 Susan Turnpike', 'East Erichaven', 'Alabama', '90211', 'Dominica', FALSE),
    (112, 'both', '569 Ryan Highway', 'Toddchester', 'Kansas', '81452', 'Cape Verde', TRUE),
    (112, 'billing', '41436 Thomas Tunnel', 'Lake Jessicaburgh', 'Illinois', '77990', 'Norfolk Island', FALSE),
    (113, 'both', '12604 Sarah Meadow', 'New Jameston', 'Missouri', '53886', 'Malta', TRUE),
    (114, 'both', '335 Mendoza Pass Suite 041', 'Michaelstad', 'Virginia', '55298', 'Egypt', TRUE),
    (115, 'both', '20005 Justin Harbors Apt. 624', 'Coxport', 'Delaware', '13200', 'Paraguay', TRUE),
    (115, 'billing', '825 Figueroa Lake', 'Johnview', 'Indiana', '77089', 'Hungary', FALSE),
    (116, 'both', '29109 James Mission', 'North Shellymouth', 'Maryland', '95574', 'Lebanon', TRUE),
    (117, 'both', '202 Robert Station', 'Patriciaside', 'Minnesota', '48474', 'Kiribati', TRUE),
    (117, 'billing', '1768 Gary Harbor', 'West Brandon', 'Oregon', '08469', 'South Africa', FALSE),
    (118, 'both', '678 Gabriel Terrace', 'Hartfurt', 'Montana', '80090', 'Faroe Islands', TRUE),
    (119, 'both', '02939 Natasha Turnpike', 'Gordonhaven', 'Kentucky', '40269', 'Timor-Leste', TRUE),
    (120, 'both', '4812 Brandon Freeway', 'Benjaminberg', 'Louisiana', '17929', 'Faroe Islands', TRUE),
    (121, 'both', '338 Aaron Key', 'Markside', 'Kentucky', '95145', 'Burkina Faso', TRUE),
    (121, 'billing', '450 Madison Forges Suite 240', 'Lake Juliefurt', 'Tennessee', '34231', 'Trinidad and Tobago', FALSE),
    (122, 'both', '3543 Moore Fort', 'Richardsonfort', 'Colorado', '65507', 'Cocos (Keeling) Islands', TRUE),
    (122, 'billing', '23972 Smith Estates Apt. 693', 'East Charlesbury', 'New Jersey', '85058', 'Iraq', FALSE),
    (123, 'both', '820 Nicholas Brooks', 'Port Alexanderton', 'Florida', '33051', 'Sierra Leone', TRUE),
    (123, 'billing', '2900 Amy Viaduct', 'Melissaland', 'Illinois', '18750', 'Lesotho', FALSE),
    (124, 'both', '45723 Amy Grove Apt. 001', 'Curtischester', 'Georgia', '00659', 'United States Minor Outlying Islands', TRUE),
    (125, 'both', '36625 Perez Spur', 'Mcdanielville', 'New York', '22725', 'Bouvet Island (Bouvetoya)', TRUE),
    (126, 'both', '45195 Michael Corner', 'New Edwardchester', 'North Dakota', '44389', 'Netherlands Antilles', TRUE),
    (127, 'both', '624 Bailey Cove', 'Sabrinastad', 'Kentucky', '93733', 'South Georgia and the South Sandwich Islands', TRUE),
    (127, 'billing', '22526 Griffith Turnpike', 'Briggsville', 'Oregon', '56528', 'Saint Lucia', FALSE),
    (128, 'both', '15226 Flores Manors Suite 695', 'Port Sherry', 'Kansas', '50725', 'Italy', TRUE),
    (129, 'both', '878 Patrick Prairie Suite 893', 'East Michaelborough', 'Alaska', '48001', 'Moldova', TRUE),
    (130, 'both', '10552 Stevens Village Suite 333', 'Lake Devinberg', 'Missouri', '96587', 'Anguilla', TRUE),
    (131, 'both', '0191 Monroe Ways Apt. 025', 'North John', 'Alabama', '75104', 'Switzerland', TRUE),
    (132, 'both', '27284 Jenkins Junction Suite 041', 'North Nicole', 'Arizona', '79691', 'Sao Tome and Principe', TRUE),
    (133, 'both', '206 Frazier Wells', 'Spencerview', 'Oregon', '66282', 'Gambia', TRUE),
    (133, 'billing', '2418 Spence Crossroad', 'South Christine', 'Iowa', '51919', 'Colombia', FALSE),
    (134, 'both', '775 Wilcox Expressway', 'Port Nathanchester', 'Illinois', '35879', 'Botswana', TRUE),
    (134, 'billing', '59503 Martin Coves', 'East Carlaport', 'Illinois', '72812', 'Cook Islands', FALSE),
    (135, 'both', '41990 Williams Island', 'West Alanstad', 'Wisconsin', '37516', 'Indonesia', TRUE),
    (135, 'billing', '6521 Russell Streets', 'New Lindseyberg', 'Alaska', '77463', 'South Africa', FALSE),
    (136, 'both', '9042 Faith Common Apt. 332', 'New Zachary', 'Washington', '80289', 'Pakistan', TRUE),
    (136, 'billing', '2545 Williams Station Suite 339', 'East Ashleyfort', 'Connecticut', '02459', 'Cambodia', FALSE),
    (137, 'both', '171 Edwards Hill Apt. 149', 'Michaelland', 'Idaho', '93647', 'Sierra Leone', TRUE),
    (137, 'billing', '7472 Teresa Oval Apt. 546', 'Vincentberg', 'New Hampshire', '48569', 'Malaysia', FALSE),
    (138, 'both', '1687 Rich Springs Apt. 903', 'East Melissaport', 'Missouri', '21237', 'Montenegro', TRUE),
    (138, 'billing', '36715 Mcdonald Place Suite 112', 'South Kaylaborough', 'Montana', '43587', 'Bahrain', FALSE),
    (139, 'both', '9737 Joshua Camp Apt. 723', 'Ashleyfurt', 'Arkansas', '47882', 'Somalia', TRUE),
    (139, 'billing', '3030 Nelson Roads Apt. 121', 'Richardport', 'Virginia', '59669', 'Tunisia', FALSE),
    (140, 'both', '342 Christopher Meadow Suite 423', 'Sherifort', 'New Mexico', '70690', 'Portugal', TRUE),
    (141, 'both', '659 Morrow Points', 'North Jennifer', 'Pennsylvania', '81308', 'Cameroon', TRUE),
    (141, 'billing', '502 Peck Parks Suite 164', 'South Sherryberg', 'South Dakota', '59395', 'Northern Mariana Islands', FALSE),
    (142, 'both', '33682 Robinson Fords', 'Lake Barbara', 'Alabama', '49031', 'Suriname', TRUE),
    (142, 'billing', '44817 Gutierrez Knoll Suite 868', 'Danielburgh', 'New Jersey', '56650', 'Holy See (Vatican City State)', FALSE),
    (143, 'both', '928 James Vista', 'Waltersville', 'Colorado', '14107', 'Benin', TRUE),
    (143, 'billing', '617 Cynthia Parkway', 'Lake Kellychester', 'Indiana', '29714', 'Singapore', FALSE),
    (144, 'both', '613 Sampson Keys Suite 660', 'Kimberlyhaven', 'Maine', '35577', 'Turkmenistan', TRUE),
    (145, 'both', '6306 Alexis Drives Suite 895', 'Georgeshire', 'Nevada', '32198', 'Moldova', TRUE),
    (146, 'both', '96096 Sheila Loaf Apt. 658', 'South Jerry', 'Virginia', '17059', 'Madagascar', TRUE),
    (147, 'both', '964 Stacy Ford', 'North Anthonytown', 'South Dakota', '78264', 'Cape Verde', TRUE),
    (148, 'both', '819 Johnson Street', 'South Cynthia', 'Wyoming', '47440', 'Colombia', TRUE),
    (149, 'both', '343 Jessica Valley', 'Townsendton', 'Louisiana', '11375', 'Vietnam', TRUE),
    (150, 'both', '091 Stephen Ranch', 'North Donaldview', 'Idaho', '12661', 'Belarus', TRUE),
    (151, 'both', '3617 Robert Oval Apt. 366', 'Cynthiamouth', 'Hawaii', '24068', 'French Southern Territories', TRUE),
    (151, 'billing', '99015 Webb Ridges', 'East Aimeeview', 'Delaware', '25777', 'New Caledonia', FALSE),
    (152, 'both', '088 Javier Lakes', 'East Anthonyberg', 'Iowa', '11438', 'Saint Lucia', TRUE),
    (152, 'billing', '4731 Erickson Run', 'Stuartfort', 'Nevada', '67695', 'Yemen', FALSE),
    (153, 'both', '42346 Brandy Trafficway Suite 237', 'Andradechester', 'Rhode Island', '98422', 'Faroe Islands', TRUE),
    (153, 'billing', '196 Gonzalez Knoll Suite 172', 'New Johnnychester', 'Maine', '79653', 'Sweden', FALSE),
    (154, 'both', '0125 Gibbs Knolls Apt. 135', 'Dustinmouth', 'Delaware', '01763', 'Ghana', TRUE),
    (155, 'both', '537 Roach Points', 'South Justinborough', 'North Dakota', '29004', 'Bosnia and Herzegovina', TRUE),
    (156, 'both', '919 Fleming Mews Suite 533', 'Port Troyton', 'Louisiana', '55713', 'British Indian Ocean Territory (Chagos Archipelago)', TRUE),
    (157, 'both', '2959 Young Brooks', 'Andrewshire', 'Alabama', '61026', 'Finland', TRUE),
    (158, 'both', '0880 Newman Cliff', 'Davischester', 'Washington', '39953', 'Falkland Islands (Malvinas)', TRUE),
    (158, 'billing', '6185 Salazar Lock Suite 771', 'Sharonville', 'Alaska', '29863', 'Australia', FALSE),
    (159, 'both', '15632 James Valleys', 'Lisaside', 'Alabama', '90710', 'Trinidad and Tobago', TRUE),
    (159, 'billing', '0104 Joseph Spurs', 'Nelsonburgh', 'Florida', '76975', 'Kuwait', FALSE),
    (160, 'both', '52967 Aimee Garden', 'Stanleyview', 'Massachusetts', '96296', 'Liberia', TRUE),
    (160, 'billing', '44158 Donna Street', 'Lake Christian', 'New York', '08400', 'Croatia', FALSE),
    (161, 'both', '376 Tony Junctions', 'Port Brittany', 'North Dakota', '67862', 'Togo', TRUE),
    (162, 'both', '7281 Jeffery Lakes Suite 798', 'Port Ricardo', 'California', '36917', 'Jamaica', TRUE),
    (163, 'both', '491 Steven Coves', 'East Allenmouth', 'Idaho', '35465', 'Antarctica (the territory South of 60 deg S)', TRUE),
    (163, 'billing', '875 Wilson Plaza Apt. 563', 'South Wayne', 'North Carolina', '44244', 'Austria', FALSE),
    (164, 'both', '5106 Lee Field Suite 294', 'Stoneville', 'Utah', '07037', 'Oman', TRUE),
    (165, 'both', '31009 Allen Place', 'West Jeremyfurt', 'Montana', '51997', 'Bolivia', TRUE),
    (166, 'both', '473 Kristi Key', 'Janiceport', 'Washington', '00908', 'Bhutan', TRUE),
    (167, 'both', '974 George Springs', 'East Jacobmouth', 'Georgia', '02170', 'Papua New Guinea', TRUE),
    (168, 'both', '5024 George Trace Apt. 957', 'South Morganfort', 'Delaware', '06422', 'Svalbard & Jan Mayen Islands', TRUE),
    (169, 'both', '438 Kari Trail', 'North Kevinmouth', 'New Hampshire', '64813', 'Saint Pierre and Miquelon', TRUE),
    (170, 'both', '474 Ellis Views Suite 458', 'Rodriguezhaven', 'Washington', '84360', 'Angola', TRUE),
    (170, 'billing', '3257 John Streets', 'Howardland', 'Illinois', '50017', 'Northern Mariana Islands', FALSE),
    (171, 'both', '8782 Lozano Keys', 'Peterchester', 'Louisiana', '41044', 'Comoros', TRUE),
    (171, 'billing', '859 Ryan Motorway', 'Keithtown', 'New York', '90354', 'Cameroon', FALSE),
    (172, 'both', '284 Kevin Heights Apt. 407', 'East Justinshire', 'Delaware', '07473', 'Liechtenstein', TRUE),
    (172, 'billing', '65004 Michael Haven Apt. 142', 'South Brenda', 'Colorado', '38617', 'Cyprus', FALSE),
    (173, 'both', '5366 Rasmussen Courts', 'Samanthaport', 'Idaho', '74413', 'Jordan', TRUE),
    (174, 'both', '234 Robert Flats Suite 414', 'Gardnerfurt', 'Nevada', '13089', 'Burundi', TRUE),
    (174, 'billing', '585 Gomez Mountain Suite 670', 'Port Robertberg', 'South Carolina', '40135', 'Solomon Islands', FALSE),
    (175, 'both', '852 Brown Vista', 'Martineztown', 'New Jersey', '68397', 'Kuwait', TRUE),
    (176, 'both', '04159 Lynn Port', 'Vaughnton', 'Delaware', '97556', 'Myanmar', TRUE),
    (177, 'both', '382 Taylor Spring', 'West Courtney', 'Washington', '01346', 'Sri Lanka', TRUE),
    (177, 'billing', '311 Eric Crest Apt. 331', 'Johnsonhaven', 'New Hampshire', '51712', 'Azerbaijan', FALSE),
    (178, 'both', '6723 Underwood Springs', 'Villarrealville', 'Nevada', '19669', 'North Macedonia', TRUE),
    (179, 'both', '23288 Thomas Highway', 'Elizabethshire', 'New York', '48648', 'Papua New Guinea', TRUE),
    (180, 'both', '6176 Hernandez Haven Suite 196', 'New Kevinmouth', 'Arizona', '46995', 'Burundi', TRUE),
    (181, 'both', '740 Michael Walks Apt. 586', 'East Dianastad', 'Tennessee', '94769', 'Mongolia', TRUE),
    (182, 'both', '2446 Sabrina Rue Suite 679', 'New Jeanette', 'North Carolina', '86865', 'Malta', TRUE),
    (182, 'billing', '59959 Jones Burgs Apt. 311', 'Villafort', 'Massachusetts', '30848', 'Sierra Leone', FALSE),
    (183, 'both', '26610 Wilson Vista', 'South Kathryntown', 'Idaho', '42595', 'Botswana', TRUE),
    (184, 'both', '2983 Johnny Mill Suite 332', 'Cervantesborough', 'Colorado', '76799', 'Anguilla', TRUE),
    (184, 'billing', '02056 Matthew Springs', 'Leeborough', 'Oregon', '62594', 'Macao', FALSE),
    (185, 'both', '9821 Patterson Lane Apt. 912', 'Craigfort', 'Iowa', '07248', 'Netherlands Antilles', TRUE),
    (185, 'billing', '34465 Monique Estate Suite 189', 'Port April', 'South Carolina', '66043', 'Georgia', FALSE),
    (186, 'both', '081 Giles Greens Apt. 056', 'Jameston', 'Florida', '27270', 'Mexico', TRUE),
    (186, 'billing', '037 Linda Port Apt. 516', 'New Timothyberg', 'Louisiana', '95309', 'Armenia', FALSE),
    (187, 'both', '78356 Turner Vista', 'North Sarah', 'Alaska', '26213', 'Martinique', TRUE),
    (188, 'both', '087 Paul Lane Apt. 668', 'North Samuel', 'South Carolina', '48697', 'Guinea', TRUE),
    (188, 'billing', '6033 Brianna Forks', 'Burgessside', 'Oregon', '06501', 'Spain', FALSE),
    (189, 'both', '301 David Falls', 'Bradleystad', 'Rhode Island', '86380', 'Tuvalu', TRUE),
    (189, 'billing', '2967 Diane Club', 'Shawnaborough', 'New York', '92940', 'Saint Pierre and Miquelon', FALSE),
    (190, 'both', '74584 Alison Grove Suite 881', 'West Rachelfort', 'Louisiana', '10783', 'Costa Rica', TRUE),
    (190, 'billing', '348 David Stream', 'North Tiffany', 'Vermont', '58209', 'Pakistan', FALSE),
    (191, 'both', '07044 Evans Corner Apt. 496', 'Smithfurt', 'Missouri', '58699', 'Aruba', TRUE),
    (192, 'both', '62680 Johnson Track', 'Sharonmouth', 'Kentucky', '99239', 'Nauru', TRUE),
    (192, 'billing', '59660 Angela Stravenue', 'Micheleside', 'New Jersey', '56053', 'Montserrat', FALSE),
    (193, 'both', '67320 Marsh Harbor Apt. 384', 'Ashleyton', 'South Carolina', '36450', 'Guyana', TRUE),
    (194, 'both', '490 Kurt Shore Suite 427', 'Smithtown', 'New Jersey', '05351', 'Guinea-Bissau', TRUE),
    (195, 'both', '836 Bethany Common Suite 985', 'South Hectorview', 'Kentucky', '65372', 'Brunei Darussalam', TRUE),
    (195, 'billing', '229 Jesse Shoal', 'East Gabriellemouth', 'Pennsylvania', '42094', 'Armenia', FALSE),
    (196, 'both', '44058 Caroline Keys', 'North Williamville', 'North Carolina', '10652', 'Dominica', TRUE),
    (196, 'billing', '9561 Liu Divide', 'West Catherinestad', 'Michigan', '53996', 'Ukraine', FALSE),
    (197, 'both', '4902 Williams Drive Apt. 193', 'Williamhaven', 'Pennsylvania', '93934', 'Guatemala', TRUE),
    (197, 'billing', '9026 Stephanie Fork', 'Ryanville', 'North Dakota', '07242', 'New Caledonia', FALSE),
    (198, 'both', '887 Adams Villages Suite 353', 'Jerrymouth', 'West Virginia', '15628', 'Puerto Rico', TRUE),
    (199, 'both', '6515 Robin Shoal', 'Jacobsmouth', 'Nebraska', '30616', 'Montenegro', TRUE),
    (200, 'both', '369 Catherine Underpass', 'Matthewville', 'Colorado', '54044', 'Italy', TRUE),
    (201, 'both', '732 Smith Crest', 'Bakerside', 'Virginia', '62086', 'Samoa', TRUE),
    (202, 'both', '06021 Zachary Pines', 'Strongstad', 'Florida', '53233', 'Qatar', TRUE),
    (203, 'both', '415 Vargas Ridges', 'Lake Brandonstad', 'New Hampshire', '54093', 'Norfolk Island', TRUE),
    (203, 'billing', '647 Jessica Stream Apt. 209', 'Emilymouth', 'Missouri', '42501', 'Kazakhstan', FALSE),
    (204, 'both', '941 Kenneth Junctions', 'New Zacharyhaven', 'Pennsylvania', '67115', 'Tanzania', TRUE),
    (204, 'billing', '5652 Bobby Street Apt. 684', 'Coryport', 'Hawaii', '16039', 'France', FALSE),
    (205, 'both', '7324 Zhang Terrace Apt. 342', 'East Andreahaven', 'Wisconsin', '22632', 'Antarctica (the territory South of 60 deg S)', TRUE),
    (206, 'both', '830 Wall Burg', 'Jamesshire', 'Nevada', '96457', 'Kenya', TRUE),
    (207, 'both', '4117 Snyder Corners', 'West Jessica', 'Delaware', '46863', 'Spain', TRUE),
    (207, 'billing', '315 William Harbor', 'Mccoyhaven', 'Utah', '10211', 'Romania', FALSE),
    (208, 'both', '61853 Stacy Road Apt. 329', 'Wigginsbury', 'Utah', '26148', 'Estonia', TRUE),
    (208, 'billing', '72742 Cynthia Corners Apt. 061', 'Grantborough', 'Virginia', '23846', 'Argentina', FALSE),
    (209, 'both', '496 Dana Orchard Apt. 434', 'Henryfurt', 'Rhode Island', '47310', 'Mayotte', TRUE),
    (210, 'both', '1314 Montes Islands Apt. 612', 'Huberville', 'Minnesota', '91854', 'Indonesia', TRUE),
    (211, 'both', '7963 Kelly Parkways', 'Port Kirsten', 'Arkansas', '74197', 'Sierra Leone', TRUE),
    (211, 'billing', '5667 Ross Center Suite 735', 'West Sethbury', 'Oregon', '22329', 'Mauritania', FALSE),
    (212, 'both', '199 Anderson Plains', 'Lake Andrewfurt', 'Colorado', '92871', 'Grenada', TRUE),
    (212, 'billing', '108 Michael Flat Apt. 863', 'Lauriestad', 'Michigan', '54685', 'Cuba', FALSE),
    (213, 'both', '00818 Moody Canyon', 'West Kevin', 'Iowa', '83280', 'Sierra Leone', TRUE),
    (213, 'billing', '41662 Atkins Club', 'New Jenniferchester', 'Alaska', '02433', 'Samoa', FALSE),
    (214, 'both', '96394 Coleman Summit', 'West Joshuaborough', 'Connecticut', '35139', 'Palau', TRUE),
    (215, 'both', '4613 Hoffman Orchard Suite 883', 'Smithfort', 'Washington', '52096', 'Zambia', TRUE),
    (216, 'both', '173 Ray Fort Suite 579', 'Lake Lanceberg', 'South Dakota', '11463', 'Bhutan', TRUE),
    (216, 'billing', '79312 Jensen Mountains', 'North Katrina', 'Kentucky', '54484', 'Georgia', FALSE),
    (217, 'both', '05996 Joseph Fords Suite 875', 'West Steven', 'New Mexico', '67928', 'Moldova', TRUE),
    (218, 'both', '61620 April Crossing', 'East Samuel', 'Delaware', '05620', 'Turks and Caicos Islands', TRUE),
    (218, 'billing', '2872 Ross Hill Apt. 644', 'Christinastad', 'Oregon', '85726', 'Chad', FALSE),
    (219, 'both', '8395 Kennedy Fords', 'Saraberg', 'Hawaii', '69232', 'Saint Barthelemy', TRUE),
    (220, 'both', '56227 Victoria Avenue Suite 331', 'Riveraton', 'South Carolina', '61933', 'Nepal', TRUE),
    (220, 'billing', '58350 Joshua View', 'Silvaport', 'Mississippi', '82355', 'Seychelles', FALSE),
    (221, 'both', '8831 Dakota Forge Suite 249', 'East Laurashire', 'Tennessee', '50694', 'Greenland', TRUE),
    (222, 'both', '973 Aaron Fort Apt. 192', 'East Thomas', 'Alabama', '42881', 'Belarus', TRUE),
    (222, 'billing', '87675 Mason Crest', 'New Phillip', 'Wyoming', '51033', 'Romania', FALSE),
    (223, 'both', '4858 Nicole Ville Apt. 242', 'Castrofort', 'Vermont', '33339', 'Poland', TRUE),
    (224, 'both', '652 Michelle Walk', 'Townsendstad', 'Washington', '56085', 'Croatia', TRUE),
    (225, 'both', '5203 Ward Fields', 'New Lanceville', 'Mississippi', '33761', 'Macao', TRUE),
    (226, 'both', '404 Sanders Square', 'Joshuaton', 'Oregon', '04489', 'Tokelau', TRUE),
    (227, 'both', '772 Brady Rue Apt. 050', 'Lake Jill', 'Florida', '11356', 'Italy', TRUE),
    (228, 'both', '70518 Lucero Fields', 'West Marymouth', 'Virginia', '22680', 'United Kingdom', TRUE),
    (228, 'billing', '066 Calvin Views Apt. 412', 'Williamsborough', 'Vermont', '66753', 'Ireland', FALSE),
    (229, 'both', '044 Wilson Mountain', 'New Sarahland', 'Delaware', '12371', 'Cocos (Keeling) Islands', TRUE),
    (229, 'billing', '59020 Dana Mount', 'Lake Sherryport', 'Utah', '84690', 'Western Sahara', FALSE),
    (230, 'both', '240 Mccarthy Fall', 'Donaldmouth', 'Nebraska', '30118', 'Syrian Arab Republic', TRUE),
    (231, 'both', '3244 Baker Overpass', 'Bethstad', 'Wyoming', '84626', 'Mali', TRUE),
    (231, 'billing', '209 Moore Port Apt. 654', 'West Holly', 'North Carolina', '72801', 'Switzerland', FALSE),
    (232, 'both', '83437 Johnson Crescent Apt. 727', 'Nathanfurt', 'Texas', '77622', 'United Arab Emirates', TRUE),
    (233, 'both', '1502 Alvarez Junction', 'East Robinport', 'Hawaii', '61690', 'Mayotte', TRUE),
    (233, 'billing', '79799 Simon Mountains', 'West Jennifer', 'Rhode Island', '44787', 'Liberia', FALSE),
    (234, 'both', '0381 Simmons Grove Suite 902', 'West Olivia', 'Vermont', '69193', 'Congo', TRUE),
    (234, 'billing', '50142 Ellis Expressway', 'Smithberg', 'Illinois', '23054', 'Gabon', FALSE),
    (235, 'both', '23361 Eric Point Suite 072', 'Coryside', 'Utah', '52149', 'Qatar', TRUE),
    (236, 'both', '6731 Anderson Track', 'South Kerri', 'Maine', '88941', 'Saint Lucia', TRUE),
    (237, 'both', '681 Freeman Streets Apt. 392', 'West Michael', 'North Carolina', '00709', 'New Zealand', TRUE),
    (238, 'both', '32730 Kevin Course Suite 626', 'West Larry', 'Utah', '63501', 'Antigua and Barbuda', TRUE),
    (238, 'billing', '2268 Steven Corner Suite 160', 'West David', 'North Carolina', '50831', 'Poland', FALSE),
    (239, 'both', '76604 Green Roads Apt. 978', 'Kimberlymouth', 'Ohio', '48324', 'Bouvet Island (Bouvetoya)', TRUE),
    (239, 'billing', '8612 Matthew Station', 'Jamesmouth', 'Nevada', '06863', 'Kyrgyz Republic', FALSE),
    (240, 'both', '17750 King Junction Suite 084', 'West Michael', 'Alaska', '59060', 'Greece', TRUE),
    (240, 'billing', '091 Dennis Place Suite 321', 'East Jessicafort', 'Nevada', '36505', 'Guatemala', FALSE),
    (241, 'both', '938 Williams Islands Suite 029', 'South Williamland', 'Michigan', '83959', 'San Marino', TRUE),
    (241, 'billing', '6024 Mary Meadows Apt. 394', 'Christinaside', 'Kansas', '91498', 'South Georgia and the South Sandwich Islands', FALSE),
    (242, 'both', '9736 Burgess Tunnel', 'West Walter', 'Arizona', '79750', 'Iran', TRUE),
    (242, 'billing', '440 Clark Tunnel', 'Sandovalview', 'Louisiana', '61114', 'Netherlands Antilles', FALSE),
    (243, 'both', '33053 Cheryl Stream Suite 969', 'Amberfort', 'Oklahoma', '02148', 'Guam', TRUE),
    (244, 'both', '5727 Clark Square Apt. 646', 'Lake Melissaland', 'South Dakota', '64272', 'Monaco', TRUE),
    (245, 'both', '38544 Hayes Mountain Apt. 299', 'New Michael', 'Nevada', '54947', 'Serbia', TRUE),
    (245, 'billing', '8736 Nicholas Vista', 'North Randyborough', 'Delaware', '75309', 'French Guiana', FALSE),
    (246, 'both', '68653 Lester Harbors', 'Kayleeville', 'Texas', '90527', 'North Macedonia', TRUE),
    (247, 'both', '886 Michele Park Suite 472', 'South Keith', 'Ohio', '44286', 'Serbia', TRUE),
    (248, 'both', '216 Mccann Loop Apt. 093', 'New Christine', 'Colorado', '79087', 'Montserrat', TRUE),
    (249, 'both', '59329 Cohen Land Apt. 968', 'Port Robin', 'New Jersey', '48874', 'Saint Kitts and Nevis', TRUE),
    (250, 'both', '73524 Patricia Ford', 'Stevensmouth', 'Kansas', '23684', 'Kyrgyz Republic', TRUE),
    (251, 'both', '523 Bowen Cliff', 'Lake Antoniochester', 'North Dakota', '62132', 'Tokelau', TRUE),
    (252, 'both', '64819 Samuel Views Apt. 460', 'Reginaldhaven', 'South Dakota', '85649', 'Kazakhstan', TRUE),
    (253, 'both', '12491 Michael Shoals Suite 237', 'West Colton', 'Tennessee', '91427', 'Barbados', TRUE),
    (254, 'both', '734 Phillips Mills Suite 749', 'Brookeberg', 'Georgia', '68891', 'France', TRUE),
    (254, 'billing', '59544 Ashley Inlet', 'Marquezport', 'Georgia', '97983', 'Sri Lanka', FALSE),
    (255, 'both', '94643 Melissa Prairie', 'Eddietown', 'Kentucky', '48232', 'Saint Helena', TRUE),
    (256, 'both', '9252 Mills Lane Suite 287', 'South Penny', 'Alabama', '88154', 'Yemen', TRUE),
    (257, 'both', '3433 Joshua Tunnel', 'Lake Jamesfort', 'New Jersey', '75134', 'United States Minor Outlying Islands', TRUE),
    (258, 'both', '833 Beck Locks', 'West Williamview', 'Oklahoma', '70592', 'Tanzania', TRUE),
    (259, 'both', '79833 Robles Falls', 'East Hannah', 'New Jersey', '23757', 'Armenia', TRUE),
    (259, 'billing', '413 Rebecca Curve Suite 033', 'New Kathleen', 'New Mexico', '61353', 'Bolivia', FALSE),
    (260, 'both', '1371 Miller Flat', 'New Bridgetfort', 'Maryland', '75124', 'Algeria', TRUE),
    (260, 'billing', '73997 Johnathan Lodge Suite 725', 'Palmerport', 'Kentucky', '70256', 'Egypt', FALSE),
    (261, 'both', '8847 Tiffany Falls Suite 058', 'Simpsonburgh', 'California', '57126', 'Peru', TRUE),
    (262, 'both', '75823 Kathryn Forest Suite 845', 'Garciaport', 'South Carolina', '28064', 'Montserrat', TRUE),
    (263, 'both', '2362 Chelsea Estate', 'Suefort', 'Tennessee', '78518', 'Solomon Islands', TRUE),
    (264, 'both', '434 Michael Village Suite 524', 'Jessicamouth', 'New Hampshire', '40873', 'Jamaica', TRUE),
    (264, 'billing', '0606 Brewer Dam Suite 403', 'Lake Jennifer', 'Maine', '49453', 'Anguilla', FALSE),
    (265, 'both', '6588 Lauren River Suite 411', 'East Mark', 'New Mexico', '95038', 'Nauru', TRUE),
    (265, 'billing', '67349 Brown Centers Suite 485', 'Mcleanville', 'New Mexico', '18101', 'Turkmenistan', FALSE),
    (266, 'both', '6229 Andrews Points', 'South Johnshire', 'Ohio', '87099', 'Eritrea', TRUE),
    (267, 'both', '021 Krueger Lake Suite 325', 'Perezstad', 'Michigan', '26582', 'Philippines', TRUE),
    (267, 'billing', '9021 Simmons Valley Suite 080', 'Allenchester', 'Arizona', '66589', 'Tunisia', FALSE),
    (268, 'both', '749 Walters Street Apt. 918', 'New Erichaven', 'Colorado', '75726', 'Uzbekistan', TRUE),
    (269, 'both', '316 Owens Streets Apt. 512', 'Shawnchester', 'Alaska', '53121', 'Morocco', TRUE),
    (269, 'billing', '96003 Simmons Green Apt. 958', 'Valdezborough', 'Wyoming', '75793', 'Uzbekistan', FALSE),
    (270, 'both', '923 Jamie Falls Apt. 089', 'Port Davidstad', 'California', '43421', 'Trinidad and Tobago', TRUE),
    (270, 'billing', '33426 Hall Forge Suite 027', 'Port Stacytown', 'New Hampshire', '98011', 'Timor-Leste', FALSE),
    (271, 'both', '0776 Jamie Light', 'North Tanyahaven', 'Pennsylvania', '95465', 'Maldives', TRUE),
    (272, 'both', '31795 Perry Fords', 'Port Williamfort', 'Kentucky', '67181', 'Bouvet Island (Bouvetoya)', TRUE),
    (272, 'billing', '06661 Ward Inlet Apt. 643', 'Lake Dawnfurt', 'New Mexico', '02578', 'Zambia', FALSE),
    (273, 'both', '502 Gregory Branch Apt. 822', 'Farmerton', 'Rhode Island', '28003', 'Tonga', TRUE),
    (274, 'both', '9626 Greg Path Apt. 251', 'North Tyler', 'Maryland', '53408', 'Niue', TRUE),
    (274, 'billing', '9500 Johnson Mountains Apt. 260', 'Farmerhaven', 'Hawaii', '21232', 'Bolivia', FALSE),
    (275, 'both', '3161 Tanya Mountain', 'Chaseside', 'New Hampshire', '18117', 'Togo', TRUE),
    (275, 'billing', '7742 Douglas Lakes', 'South Trevorshire', 'Illinois', '16994', 'Cyprus', FALSE),
    (276, 'both', '31164 John Glen', 'Lake Donna', 'Michigan', '93622', 'Kyrgyz Republic', TRUE),
    (276, 'billing', '56529 Julie Union Suite 032', 'East Cynthiabury', 'Hawaii', '52505', 'Gibraltar', FALSE),
    (277, 'both', '775 Courtney Viaduct', 'Hayesborough', 'New Jersey', '81937', 'Estonia', TRUE),
    (277, 'billing', '48552 Peterson Well Suite 871', 'Kathrynview', 'California', '48397', 'Japan', FALSE),
    (278, 'both', '213 Greer Crest', 'Davidstad', 'Maryland', '59819', 'Jordan', TRUE),
    (278, 'billing', '268 Donald Springs', 'Port Alvin', 'Washington', '98096', 'Guinea', FALSE),
    (279, 'both', '880 Ryan Square', 'West Erik', 'Utah', '22211', 'North Macedonia', TRUE),
    (280, 'both', '289 Garrison Harbors', 'South Kennethhaven', 'Nebraska', '62962', 'Lao People''s Democratic Republic', TRUE),
    (280, 'billing', '40148 Clark Street Apt. 062', 'South Lynn', 'Wisconsin', '32281', 'India', FALSE),
    (281, 'both', '669 John Keys', 'East Tabithaview', 'Florida', '53118', 'British Virgin Islands', TRUE),
    (281, 'billing', '72450 Abigail Pine', 'Port Courtneyfort', 'Iowa', '87063', 'Kazakhstan', FALSE),
    (282, 'both', '89721 Hutchinson Canyon Suite 417', 'Richardsfort', 'Wisconsin', '38656', 'Czech Republic', TRUE),
    (283, 'both', '99537 Fisher Route', 'Port Kaylaview', 'Kentucky', '84421', 'Malawi', TRUE),
    (284, 'both', '4510 Jennifer Oval Apt. 973', 'Wadeville', 'Wyoming', '93369', 'Libyan Arab Jamahiriya', TRUE),
    (284, 'billing', '860 Brittany Underpass Apt. 911', 'West Betty', 'Virginia', '79643', 'Italy', FALSE),
    (285, 'both', '057 Berry Pike Apt. 660', 'New Henry', 'South Dakota', '43618', 'Bolivia', TRUE),
    (286, 'both', '0745 Gomez Gateway Suite 705', 'Lyonsview', 'Wyoming', '21550', 'Cote d''Ivoire', TRUE),
    (287, 'both', '652 Gates Isle Suite 983', 'Mariaville', 'Washington', '12354', 'Northern Mariana Islands', TRUE),
    (287, 'billing', '9726 Joseph Station Suite 557', 'Kariburgh', 'Massachusetts', '02588', 'Bouvet Island (Bouvetoya)', FALSE),
    (288, 'both', '488 Sherman Plain', 'South Christine', 'California', '26534', 'Bermuda', TRUE),
    (289, 'both', '964 Jennifer Place', 'Randyfurt', 'Connecticut', '97007', 'Suriname', TRUE),
    (290, 'both', '915 Scott Canyon Apt. 824', 'South Jeffreybury', 'Kansas', '30101', 'Kazakhstan', TRUE),
    (291, 'both', '04309 Massey Mall', 'South Jacob', 'North Dakota', '76640', 'Iran', TRUE),
    (291, 'billing', '454 Wood Freeway Suite 851', 'West Michelle', 'Vermont', '32862', 'South Africa', FALSE),
    (292, 'both', '87851 Jennifer Stravenue', 'South Joseph', 'Arkansas', '60825', 'Niger', TRUE),
    (292, 'billing', '9612 Ann Points Apt. 572', 'Lake Michaelview', 'Oregon', '33532', 'Yemen', FALSE),
    (293, 'both', '976 Valerie Forge', 'Collinsport', 'Michigan', '30983', 'Montenegro', TRUE),
    (293, 'billing', '89509 Jennifer Knolls Apt. 191', 'Crossborough', 'Kansas', '79344', 'Singapore', FALSE),
    (294, 'both', '07151 Sophia Ports', 'Ballardfurt', 'Vermont', '62682', 'Burundi', TRUE),
    (294, 'billing', '14526 Porter Ferry Suite 633', 'Valerieland', 'Michigan', '59709', 'Sao Tome and Principe', FALSE),
    (295, 'both', '409 Tina Circle', 'Codytown', 'North Dakota', '02149', 'Albania', TRUE),
    (296, 'both', '4099 Villarreal Extensions Apt. 972', 'West Collin', 'Utah', '20774', 'Netherlands Antilles', TRUE),
    (297, 'both', '272 Lisa Mills Apt. 908', 'Port Sarahport', 'Connecticut', '46252', 'Pitcairn Islands', TRUE),
    (298, 'both', '821 Lee Drives', 'Sharonside', 'Missouri', '59212', 'Western Sahara', TRUE),
    (299, 'both', '815 Michael Garden', 'Lopezfurt', 'Arizona', '47466', 'Bahamas', TRUE),
    (300, 'both', '918 Elizabeth Islands Suite 834', 'Derekborough', 'Maine', '82596', 'Japan', TRUE);


-- ──────────────────────────────────────────────────────────────────
-- 7. PRODUCTS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO products (category_id, product_name, sku, description, unit_price, cost_price, weight_kg, brand, launch_date)
VALUES
    (6, 'Google International Smartphones 2952', 'SMA-GOO-30644', 'Help make make focus machine home marriage skill expert range area story could.', 1201.2, 215.36, 11.926, 'Google', '2023-09-15'),
    (6, 'Samsung Behind Smartphones 3978', 'SMA-SAM-28202', 'Throughout security number community finish answer agreement whom his goal Mrs.', 579.88, 156.6, 11.877, 'Samsung', '2018-04-18'),
    (6, 'Xiaomi Than Smartphones 2226', 'SMA-XIA-82305', 'School model condition he recognize treat better wear throughout Republican authority data deal.', 731.02, 217.02, 9.218, 'Xiaomi', '2018-12-20'),
    (6, 'Apple Push Smartphones 8712', 'SMA-APP-72739', 'Administration two deal ready under above drive sport story worker would step head study and center.', 1298.64, 182.84, 6.221, 'Apple', '2022-08-05'),
    (6, 'Google Employee Smartphones 1315', 'SMA-GOO-94192', 'Protect think institution now tell phone daughter these say evening real indeed including everything too stage.', 1274.14, 149.95, 6.805, 'Google', '2025-08-17'),
    (6, 'Google Method Smartphones 9730', 'SMA-GOO-82260', 'Outside phone house receive last production development point boy total major.', 1189.16, 187.76, 2.811, 'Google', '2019-06-13'),
    (7, 'Asus Cover Laptops 8588', 'LAP-ASU-26274', 'Force want either race us huge movie expect now board budget statement this wear never.', 609.83, 333.71, 2.38, 'Asus', '2019-11-06'),
    (7, 'HP Modern Laptops 8601', 'LAP-HP-55353', 'Camera yet light body director strategy continue several southern drop.', 1917.66, 231.0, 13.434, 'HP', '2018-11-20'),
    (7, 'Apple Power Laptops 2150', 'LAP-APP-45972', 'Just central others American value short country decision fish notice we game.', 2411.7, 208.93, 9.413, 'Apple', '2024-11-21'),
    (7, 'Asus Enough Laptops 9613', 'LAP-ASU-87569', 'Glass customer popular hospital check factor as contain create.', 1780.97, 190.97, 2.397, 'Asus', '2025-05-22'),
    (7, 'Asus Really Laptops 774', 'LAP-ASU-83874', 'Agent key successful own explain claim natural fish born assume million admit result.', 1709.28, 300.51, 12.396, 'Asus', '2018-04-27'),
    (7, 'Dell Shake Laptops 4436', 'LAP-DEL-85598', 'Have century billion do high none sport shoulder build different pick nor.', 1781.91, 182.59, 9.802, 'Dell', '2024-06-01'),
    (7, 'Lenovo Back Laptops 9038', 'LAP-LEN-92203', 'Power treat visit population executive pattern last.', 559.57, 282.6, 4.416, 'Lenovo', '2021-05-22'),
    (7, 'Lenovo Smile Laptops 4973', 'LAP-LEN-63227', 'Raise partner generation write lawyer try check movie growth certain.', 2113.7, 217.42, 6.858, 'Lenovo', '2025-09-21'),
    (7, 'Dell Public Laptops 3442', 'LAP-DEL-70875', 'White home either civil science it feel amount improve.', 1330.24, 202.26, 5.169, 'Dell', '2019-08-12'),
    (8, 'JBL Until Headphones 2242', 'HEA-JBL-62260', 'Surface would by phone decade image third leave laugh weight less full program card morning.', 519.64, 17.6, 11.434, 'JBL', '2023-10-11'),
    (8, 'Sennheiser Else Headphones 4482', 'HEA-SEN-26059', 'Republican nothing way role six guy leg television society hear.', 166.79, 11.23, 6.799, 'Sennheiser', '2019-08-01'),
    (8, 'Sony Food Headphones 6950', 'HEA-SON-90658', 'Hotel like myself laugh toward what thank include current front.', 567.87, 10.66, 3.799, 'Sony', '2019-10-17'),
    (8, 'JBL Voice Headphones 2710', 'HEA-JBL-34881', 'Process view it wall agency deal note common worker.', 440.04, 19.63, 7.524, 'JBL', '2023-10-10'),
    (8, 'Beats Response Headphones 1575', 'HEA-BEA-13037', 'Shoulder political offer song character first early school several main particular shake most physical along.', 204.87, 15.21, 14.184, 'Beats', '2023-09-02'),
    (8, 'Beats Bill Headphones 897', 'HEA-BEA-56254', 'Beat across television apply system finish top data.', 151.63, 19.96, 0.853, 'Beats', '2023-07-21'),
    (8, 'Sennheiser City Headphones 4781', 'HEA-SEN-71680', 'Film at perhaps firm toward land full compare field sort.', 401.93, 19.11, 8.097, 'Sennheiser', '2019-03-17'),
    (8, 'Beats Collection Headphones 6706', 'HEA-BEA-57943', 'Clear budget travel important no pick record example summer.', 179.75, 11.51, 5.552, 'Beats', '2022-06-29'),
    (9, 'Panasonic Enjoy Cameras 1304', 'CAM-PAN-47827', 'Professional chair knowledge sense career herself here color.', 1277.81, 163.44, 5.857, 'Panasonic', '2023-01-19'),
    (9, 'Panasonic Again Cameras 2046', 'CAM-PAN-99181', 'Read stand us once consider thus wife water note those write though attention career feel hour.', 2969.54, 133.92, 2.017, 'Panasonic', '2019-02-01'),
    (9, 'Fujifilm Citizen Cameras 6090', 'CAM-FUJ-83116', 'Year social protect which fly represent we bar.', 2963.33, 143.71, 11.349, 'Fujifilm', '2020-03-26'),
    (9, 'Panasonic Player Cameras 737', 'CAM-PAN-15938', 'Administration through individual college surface court exactly minute trouble majority town appear draw fill.', 1649.21, 157.93, 2.142, 'Panasonic', '2021-09-26'),
    (9, 'Fujifilm List Cameras 2390', 'CAM-FUJ-77568', 'Front evening yet prevent process four all the unit action off few current.', 701.14, 159.0, 4.987, 'Fujifilm', '2024-11-16'),
    (9, 'Sony Many Cameras 9827', 'CAM-SON-49221', 'Home receive establish heart happen mention year interesting religious car get energy.', 2973.66, 121.66, 5.112, 'Sony', '2023-09-19'),
    (10, 'Ralph Lauren Data Men''s 6135', 'MEN-RAL-12180', 'Example bar last public south tree technology time age campaign seven drug computer assume.', 85.45, 8.97, 5.035, 'Ralph Lauren', '2019-03-25'),
    (10, 'Ralph Lauren Owner Men''s 536', 'MEN-RAL-92478', 'Single tell act add southern thank pay choose personal the.', 202.24, 8.31, 8.994, 'Ralph Lauren', '2020-12-23'),
    (10, 'Gap Magazine Men''s 7971', 'MEN-GAP-86483', 'Them skill black business region current second ball begin week about social do anyone bag fly.', 184.53, 8.28, 2.641, 'Gap', '2025-01-20'),
    (10, 'Gap Next Men''s 4068', 'MEN-GAP-99224', 'Live culture write painting control explain put ten article continue.', 104.34, 9.32, 0.57, 'Gap', '2025-11-09'),
    (10, 'Levi''s According Men''s 2581', 'MEN-LEV-64890', 'Compare culture century my win record reflect away.', 118.64, 6.25, 6.253, 'Levi''s', '2020-04-15'),
    (10, 'Ralph Lauren Culture Men''s 1120', 'MEN-RAL-71814', 'Series direction house structure father include political design economy general drive according.', 158.7, 7.88, 10.616, 'Ralph Lauren', '2023-10-26'),
    (10, 'H&M Voice Men''s 8709', 'MEN-HM-72701', 'Example claim article management total art sense involve purpose together knowledge.', 249.56, 8.19, 5.715, 'H&M', '2019-12-11'),
    (10, 'Ralph Lauren Size Men''s 4431', 'MEN-RAL-56437', 'Five sign trial recently painting where notice road.', 95.45, 10.04, 9.19, 'Ralph Lauren', '2020-02-27'),
    (10, 'H&M From Men''s 4835', 'MEN-HM-49008', 'Group specific have feel major national seat direction color real important they food someone.', 85.15, 6.71, 10.603, 'H&M', '2025-09-28'),
    (10, 'Ralph Lauren You Men''s 4815', 'MEN-RAL-45842', 'Less tonight laugh center seek information agency cause first wrong place human add.', 96.97, 6.91, 1.916, 'Ralph Lauren', '2025-08-03'),
    (11, 'Calvin Klein Strong Women''s 2499', 'WOM-CAL-55237', 'Character watch describe administration line even cup market citizen.', 127.44, 9.95, 4.428, 'Calvin Klein', '2021-03-24'),
    (11, 'Zara Themselves Women''s 7949', 'WOM-ZAR-43612', 'Everyone couple parent material itself surface maintain program government black well relationship part center million.', 141.08, 7.07, 3.288, 'Zara', '2024-01-16'),
    (11, 'Mango Miss Women''s 1889', 'WOM-MAN-27992', 'Indicate actually final city piece range investment business can example.', 213.41, 10.15, 9.274, 'Mango', '2024-07-31'),
    (11, 'H&M Share Women''s 3797', 'WOM-HM-79604', 'Southern ten hard wife as language indicate decide for do the fine.', 205.9, 6.52, 9.605, 'H&M', '2018-08-04'),
    (11, 'Zara Whole Women''s 2352', 'WOM-ZAR-23178', 'Skill never officer former create camera focus plan wife director or down standard major.', 219.45, 7.42, 0.177, 'Zara', '2024-03-04'),
    (11, 'H&M Many Women''s 7922', 'WOM-HM-72350', 'Finish thing his chance focus more leg.', 281.48, 7.39, 9.793, 'H&M', '2021-03-22'),
    (11, 'Mango Wear Women''s 9506', 'WOM-MAN-21725', 'At hope cover show Republican hair sing listen development able green.', 31.86, 6.75, 3.56, 'Mango', '2026-04-14'),
    (11, 'Zara Pressure Women''s 695', 'WOM-ZAR-33040', 'No situation what machine fire third customer specific could type painting fast art those.', 64.89, 10.04, 14.958, 'Zara', '2022-06-15'),
    (11, 'Calvin Klein Need Women''s 713', 'WOM-CAL-47941', 'Executive so institution stand action end century agent prepare several bad let travel challenge.', 228.47, 6.23, 0.238, 'Calvin Klein', '2024-05-15'),
    (11, 'Gucci Process Women''s 7544', 'WOM-GUC-47298', 'New order serve blue event every relationship law clear campaign what buy.', 295.15, 5.81, 14.838, 'Gucci', '2024-02-04'),
    (12, 'Nike Kids Trip Kids'' 7768', 'KID-NIK-76088', 'Need hard firm result nearly pick position how force structure alone executive.', 19.39, 6.61, 4.165, 'Nike Kids', '2019-04-07'),
    (12, 'Gap Kids Others Kids'' 3150', 'KID-GAP-43720', 'Always memory reveal require market until cause bill clear research begin growth ground ball gas.', 42.12, 4.07, 0.31, 'Gap Kids', '2021-10-12'),
    (12, 'Gap Kids Available Kids'' 6743', 'KID-GAP-33002', 'Hundred artist indicate smile reason nature become debate city several than dinner argue raise.', 63.01, 5.49, 12.422, 'Gap Kids', '2023-10-12'),
    (12, 'Gap Kids Agent Kids'' 2403', 'KID-GAP-34219', 'Poor recently long among serve wear west.', 56.85, 3.8, 7.214, 'Gap Kids', '2020-10-13'),
    (12, 'Carter''s Certain Kids'' 5500', 'KID-CAR-44995', 'Floor hold plant how member face age resource increase attack customer along director man.', 26.49, 4.41, 4.599, 'Carter''s', '2026-02-08'),
    (12, 'Adidas Kids Happy Kids'' 1117', 'KID-ADI-40972', 'Ok happy together clearly defense movie trip season.', 55.76, 3.54, 10.05, 'Adidas Kids', '2023-03-22'),
    (12, 'Gap Kids Father Kids'' 2023', 'KID-GAP-50760', 'News memory civil cut parent free force employee budget experience agreement.', 58.03, 4.06, 9.617, 'Gap Kids', '2021-04-23'),
    (12, 'Gap Kids Player Kids'' 7934', 'KID-GAP-27507', 'Show daughter both hold blood value day service save fear ready Democrat order field less.', 25.34, 5.65, 2.382, 'Gap Kids', '2026-05-21'),
    (12, 'Adidas Kids Raise Kids'' 8906', 'KID-ADI-71712', 'Discover three such describe agency actually stop team deal water home force worker own close man.', 59.14, 4.81, 12.05, 'Adidas Kids', '2020-06-13'),
    (12, 'OshKosh Option Kids'' 8709', 'KID-OSH-20730', 'Experience would tax eat pattern this system people tax water us field high nothing city apply.', 51.71, 5.88, 6.757, 'OshKosh', '2025-11-22'),
    (13, 'IKEA Dinner Furniture 8381', 'FUR-IKE-81781', 'Wife score health evidence president father alone build center lead.', 267.81, 32.88, 3.112, 'IKEA', '2024-01-08'),
    (13, 'Ashley Work Furniture 2004', 'FUR-ASH-67912', 'Build PM weight society they usually company both right lay.', 1715.25, 19.97, 10.236, 'Ashley', '2026-01-15'),
    (13, 'CB2 Various Furniture 1011', 'FUR-CB-68390', 'Reason event against none as reality democratic huge help also it letter company actually today prevent.', 1801.83, 25.53, 6.856, 'CB2', '2023-10-04'),
    (13, 'West Elm Speech Furniture 5149', 'FUR-WES-70604', 'Report rest dark environment provide white could ready special yet analysis.', 161.59, 24.98, 10.877, 'West Elm', '2022-06-10'),
    (13, 'Wayfair Order Furniture 1296', 'FUR-WAY-85800', 'Next reflect social resource score expert because happen star name health top risk.', 1503.32, 31.15, 0.775, 'Wayfair', '2021-11-12'),
    (13, 'IKEA Now Furniture 7834', 'FUR-IKE-19046', 'Fly police imagine oil head work should challenge pull.', 166.5, 26.43, 0.573, 'IKEA', '2022-08-02'),
    (13, 'Ashley Visit Furniture 6987', 'FUR-ASH-94656', 'Put imagine which beat education case under population late much quite threat gas truth.', 1542.36, 30.34, 5.679, 'Ashley', '2022-04-16'),
    (13, 'West Elm Process Furniture 1414', 'FUR-WES-59236', 'Out music story city sometimes cause staff day really.', 1817.2, 32.06, 10.273, 'West Elm', '2025-06-03'),
    (14, 'Cuisinart Beat Kitchen 8902', 'KIT-CUI-33392', 'Thing wrong name mind offer effort nearly walk science range skin major for.', 189.84, 14.47, 5.957, 'Cuisinart', '2019-06-06'),
    (14, 'Cuisinart Think Kitchen 7685', 'KIT-CUI-49107', 'Nature house prevent hotel officer seek reach write difficult popular choose really.', 383.43, 16.05, 10.135, 'Cuisinart', '2024-02-09'),
    (14, 'Breville Some Kitchen 7646', 'KIT-BRE-42441', 'Respond throw wide son manager trouble reason fill sense field.', 415.27, 13.4, 5.258, 'Breville', '2021-02-03'),
    (14, 'Cuisinart Determine Kitchen 627', 'KIT-CUI-24790', 'Point week course administration fast debate still quite attack laugh budget war product action our.', 368.66, 16.95, 12.161, 'Cuisinart', '2022-09-14'),
    (14, 'Ninja Gun Kitchen 4043', 'KIT-NIN-12050', 'Heart field people try play order quickly with matter goal eight list something.', 443.9, 15.45, 3.171, 'Ninja', '2019-02-18'),
    (14, 'Ninja Soldier Kitchen 4109', 'KIT-NIN-16380', 'Show institution onto thing we range yes here while service beautiful edge begin early store.', 308.35, 9.04, 11.134, 'Ninja', '2022-07-06'),
    (14, 'Breville Program Kitchen 2395', 'KIT-BRE-17398', 'Lawyer see drop worker alone finally since take.', 127.99, 10.8, 7.608, 'Breville', '2021-03-30'),
    (14, 'Cuisinart Direction Kitchen 9561', 'KIT-CUI-51799', 'Improve act campaign television sit very know maybe leg recent hold understand president any one recently.', 371.74, 15.89, 9.009, 'Cuisinart', '2025-07-17'),
    (14, 'Instant Pot Military Kitchen 8640', 'KIT-INS-96535', 'Total fall clear face former body choice study current.', 440.35, 10.82, 3.394, 'Instant Pot', '2021-05-15'),
    (14, 'Instant Pot Mention Kitchen 7099', 'KIT-INS-32955', 'Accept simply southern town significant analysis consumer future raise suffer.', 474.6, 9.28, 8.382, 'Instant Pot', '2018-07-12'),
    (15, 'Fiskars Drop Garden 6788', 'GAR-FIS-64568', 'Space way break clearly car without painting age many some involve remain today.', 105.52, 9.38, 2.323, 'Fiskars', '2022-03-22'),
    (15, 'Miracle-Gro Home Garden 5027', 'GAR-MIR-39536', 'Blood list everything newspaper institution assume enjoy we group husband try trade then building class.', 149.48, 9.21, 12.877, 'Miracle-Gro', '2019-08-15'),
    (15, 'Fiskars Own Garden 9230', 'GAR-FIS-64592', 'Professor land you health enjoy at so control including.', 174.72, 10.05, 7.997, 'Fiskars', '2022-05-10'),
    (15, 'Miracle-Gro Opportunity Garden 7469', 'GAR-MIR-20363', 'Discussion challenge card reduce action art small.', 108.79, 6.59, 12.722, 'Miracle-Gro', '2019-01-14'),
    (15, 'DeWalt Budget Garden 6279', 'GAR-DEW-45187', 'Program one across they case TV team song country listen long between hold plant must.', 69.1, 9.05, 10.138, 'DeWalt', '2024-10-05'),
    (15, 'Scotts Summer Garden 9256', 'GAR-SCO-87015', 'Certainly camera member technology attention message would not.', 68.44, 9.84, 3.334, 'Scotts', '2020-05-05'),
    (15, 'Black+Decker Employee Garden 3213', 'GAR-BLA-37762', 'Send style gun different energy arrive it that sister agree public us hospital paper term security.', 273.15, 6.84, 14.435, 'Black+Decker', '2019-04-26'),
    (15, 'Fiskars Care Garden 6598', 'GAR-FIS-36805', 'Past so thousand position sense church out explain significant item all at be through.', 212.56, 10.05, 13.735, 'Fiskars', '2024-03-11'),
    (16, 'Brooks Child Running 5153', 'RUN-BRO-57088', 'Hard hotel let southern true field movement.', 160.39, 28.51, 3.997, 'Brooks', '2023-10-02'),
    (16, 'ASICS General Running 5346', 'RUN-ASI-71537', 'Talk like maintain serious style operation nice radio out skill case.', 211.54, 30.27, 13.724, 'ASICS', '2022-02-27'),
    (16, 'Brooks Green Running 2490', 'RUN-BRO-39002', 'Reality window mouth pattern as pick various themselves.', 165.88, 29.2, 0.342, 'Brooks', '2024-03-16'),
    (16, 'New Balance Phone Running 3314', 'RUN-NEW-29976', 'Direction unit food dream course win court friend put everything our prove could party skin.', 138.34, 32.61, 5.015, 'New Balance', '2022-04-05'),
    (16, 'New Balance Suffer Running 5630', 'RUN-NEW-95800', 'Couple rather Republican need daughter leg minute bring reveal factor east.', 153.87, 37.86, 3.934, 'New Balance', '2023-06-25'),
    (16, 'ASICS Piece Running 2873', 'RUN-ASI-56160', 'Consumer positive market early machine establish nothing Mr chair paper education whom.', 198.23, 30.17, 2.185, 'ASICS', '2024-02-17'),
    (16, 'ASICS Tax Running 1062', 'RUN-ASI-94123', 'Worker about country various until lawyer yard on everyone note current anything into word other.', 227.98, 24.45, 7.907, 'ASICS', '2018-11-01'),
    (16, 'Nike Maybe Running 3891', 'RUN-NIK-92667', 'Hit budget Congress guess soon approach suggest everyone nature environmental six understand rather.', 137.35, 36.43, 1.113, 'Nike', '2019-09-11'),
    (17, 'NordicTrack Democratic Gym 8016', 'GYM-NOR-90980', 'Through note act front person everyone involve.', 1181.28, 52.17, 9.923, 'NordicTrack', '2018-03-06'),
    (17, 'Bowflex During Gym 8773', 'GYM-BOW-12192', 'Peace number environment need subject charge network first detail south.', 1291.88, 53.09, 10.861, 'Bowflex', '2024-01-04'),
    (17, 'Life Fitness Thank Gym 7154', 'GYM-LIF-98346', 'Data pattern west before science without especially main believe suddenly determine least close.', 2457.16, 35.24, 12.112, 'Life Fitness', '2020-01-05'),
    (17, 'Bowflex Consumer Gym 3244', 'GYM-BOW-41584', 'Evidence about provide itself team support land discussion suggest impact.', 1619.72, 66.46, 9.335, 'Bowflex', '2020-10-30'),
    (17, 'Life Fitness Life Gym 6752', 'GYM-LIF-58896', 'Character thousand sure seek age share day pull job themselves garden again medical.', 1250.0, 43.91, 6.939, 'Life Fitness', '2020-09-23'),
    (17, 'NordicTrack Important Gym 619', 'GYM-NOR-20566', 'Paper health region over recognize help small debate fire if eat fact discuss.', 2500.38, 45.04, 1.493, 'NordicTrack', '2022-04-03'),
    (18, 'La Roche-Posay Plan Skincare 1454', 'SKI-LAR-32463', 'Whether rather none population ask require against occur growth after job knowledge interest join.', 79.32, 4.13, 7.548, 'La Roche-Posay', '2022-11-13'),
    (18, 'The Ordinary Happen Skincare 8753', 'SKI-THE-22499', 'Especially treatment employee citizen despite one military most cultural already.', 104.09, 4.38, 13.795, 'The Ordinary', '2020-07-30'),
    (18, 'Neutrogena I Skincare 7890', 'SKI-NEU-84289', 'Answer direction religious city past need economy moment effort chance center job.', 85.54, 5.32, 4.139, 'Neutrogena', '2018-11-01'),
    (18, 'The Ordinary Truth Skincare 3038', 'SKI-THE-14312', 'Director find minute discussion begin appear pressure six west.', 71.11, 5.32, 13.939, 'The Ordinary', '2021-07-12'),
    (18, 'Cetaphil Year Skincare 1360', 'SKI-CET-62205', 'Explain like institution collection admit which owner baby significant.', 73.75, 5.49, 4.559, 'Cetaphil', '2024-04-28'),
    (18, 'Neutrogena Exist Skincare 8956', 'SKI-NEU-98740', 'Move single network hard condition move cost skin for.', 103.14, 4.39, 5.043, 'Neutrogena', '2026-04-18'),
    (18, 'Neutrogena Congress Skincare 8304', 'SKI-NEU-20279', 'Message again mean arm career answer choose car technology strong off.', 85.2, 5.01, 11.207, 'Neutrogena', '2021-11-17'),
    (18, 'Cetaphil Family Skincare 5680', 'SKI-CET-19963', 'Early compare body eat policy senior attack help a leave sometimes quality house must.', 34.0, 3.07, 9.117, 'Cetaphil', '2024-11-19'),
    (18, 'La Roche-Posay International Skincare 4578', 'SKI-LAR-13883', 'Level positive mind skill officer study if edge view cold teach call already available yes.', 94.64, 3.91, 11.775, 'La Roche-Posay', '2023-01-20'),
    (19, 'NYX Thousand Makeup 3143', 'MAK-NYX-66603', 'Break tough him federal agency maintain seek democratic simple seek last.', 188.7, 3.8, 10.227, 'NYX', '2025-05-30'),
    (19, 'L''Oreal Performance Makeup 1304', 'MAK-LOR-42302', 'Power few each administration dinner keep main letter let.', 126.77, 3.04, 1.322, 'L''Oreal', '2019-09-24'),
    (19, 'L''Oreal Us Makeup 5288', 'MAK-LOR-61068', 'Leg indeed anything way today two far apply let hit.', 129.71, 4.79, 5.474, 'L''Oreal', '2019-01-10'),
    (19, 'MAC Ready Makeup 1774', 'MAK-MAC-45358', 'Back family start necessary American wonder suggest attack former financial medical action big.', 93.39, 5.44, 2.074, 'MAC', '2020-02-07'),
    (19, 'L''Oreal Size Makeup 1792', 'MAK-LOR-63483', 'Especially agency despite minute agency idea sometimes least perform expect anything military but just maintain.', 114.51, 4.06, 0.491, 'L''Oreal', '2021-12-20'),
    (19, 'Fenty Beauty Source Makeup 6411', 'MAK-FEN-52523', 'Already single rock not attack why usually help produce key reveal environment central trip behavior.', 122.82, 3.06, 0.284, 'Fenty Beauty', '2022-08-22'),
    (19, 'L''Oreal If Makeup 4077', 'MAK-LOR-83339', 'Hour among field well create notice individual stay charge natural effort.', 147.17, 4.98, 8.622, 'L''Oreal', '2019-11-26'),
    (19, 'L''Oreal Whom Makeup 8179', 'MAK-LOR-45180', 'A at teach enter lot at life wonder understand management.', 59.63, 3.27, 2.274, 'L''Oreal', '2019-11-16'),
    (19, 'L''Oreal Base Makeup 6016', 'MAK-LOR-20082', 'Speech garden road head light what officer nature top score place force choose radio.', 65.55, 3.57, 3.85, 'L''Oreal', '2020-10-07');


-- ──────────────────────────────────────────────────────────────────
-- 8. PRODUCT_SUPPLIERS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO product_suppliers (product_id, supplier_id, supply_price, lead_time_days, is_primary)
VALUES
    (1, 11, 310.25, 32, TRUE),
    (1, 8, 57.95, 22, FALSE),
    (1, 10, 8.35, 28, FALSE),
    (2, 14, 193.05, 24, TRUE),
    (2, 10, 222.91, 30, FALSE),
    (3, 10, 163.73, 15, TRUE),
    (3, 3, 242.11, 14, FALSE),
    (3, 5, 482.46, 23, FALSE),
    (4, 12, 318.29, 39, TRUE),
    (4, 15, 392.08, 23, FALSE),
    (5, 5, 394.0, 26, TRUE),
    (5, 14, 61.37, 39, FALSE),
    (6, 10, 498.65, 14, TRUE),
    (7, 13, 476.74, 32, TRUE),
    (7, 9, 471.77, 16, FALSE),
    (7, 1, 222.04, 21, FALSE),
    (8, 2, 398.55, 34, TRUE),
    (8, 14, 73.89, 22, FALSE),
    (8, 13, 124.8, 45, FALSE),
    (9, 12, 214.45, 27, TRUE),
    (10, 8, 495.4, 33, TRUE),
    (11, 7, 462.13, 29, TRUE),
    (11, 9, 274.1, 26, FALSE),
    (11, 14, 352.31, 37, FALSE),
    (12, 11, 385.63, 45, TRUE),
    (12, 2, 334.02, 13, FALSE),
    (12, 14, 325.26, 5, FALSE),
    (13, 11, 202.81, 24, TRUE),
    (13, 15, 483.03, 30, FALSE),
    (13, 14, 57.44, 9, FALSE),
    (14, 4, 374.69, 38, TRUE),
    (14, 9, 292.36, 39, FALSE),
    (15, 8, 190.19, 32, TRUE),
    (16, 10, 79.62, 4, TRUE),
    (16, 12, 243.97, 21, FALSE),
    (16, 9, 210.91, 8, FALSE),
    (17, 14, 470.63, 12, TRUE),
    (18, 5, 230.39, 16, TRUE),
    (18, 6, 262.95, 25, FALSE),
    (19, 2, 362.39, 31, TRUE),
    (19, 8, 162.86, 22, FALSE),
    (20, 13, 356.84, 4, TRUE),
    (21, 11, 340.18, 13, TRUE),
    (21, 2, 465.31, 18, FALSE),
    (22, 3, 168.84, 30, TRUE),
    (22, 9, 479.44, 17, FALSE),
    (22, 15, 399.89, 43, FALSE),
    (23, 3, 322.04, 30, TRUE),
    (24, 1, 308.98, 15, TRUE),
    (24, 12, 227.54, 30, FALSE),
    (25, 1, 111.32, 20, TRUE),
    (25, 12, 377.4, 7, FALSE),
    (26, 2, 97.55, 23, TRUE),
    (26, 13, 102.55, 10, FALSE),
    (26, 9, 134.86, 34, FALSE),
    (27, 11, 197.38, 28, TRUE),
    (27, 6, 295.57, 25, FALSE),
    (27, 10, 179.23, 32, FALSE),
    (28, 3, 354.46, 22, TRUE),
    (28, 14, 459.75, 40, FALSE),
    (28, 11, 46.95, 11, FALSE),
    (29, 2, 156.16, 14, TRUE),
    (29, 4, 189.79, 12, FALSE),
    (30, 7, 73.24, 27, TRUE),
    (30, 15, 214.4, 34, FALSE),
    (30, 10, 319.57, 44, FALSE),
    (31, 9, 87.6, 21, TRUE),
    (32, 3, 160.72, 31, TRUE),
    (33, 1, 476.16, 34, TRUE),
    (33, 14, 72.58, 27, FALSE),
    (33, 6, 482.1, 35, FALSE),
    (34, 8, 248.4, 31, TRUE),
    (34, 7, 246.91, 8, FALSE),
    (34, 11, 284.87, 17, FALSE),
    (35, 1, 116.3, 21, TRUE),
    (35, 5, 88.26, 32, FALSE),
    (36, 12, 250.18, 35, TRUE),
    (36, 13, 61.04, 10, FALSE),
    (36, 14, 137.61, 37, FALSE),
    (37, 9, 379.61, 31, TRUE),
    (37, 14, 275.44, 30, FALSE),
    (38, 12, 415.89, 18, TRUE),
    (39, 14, 227.62, 25, TRUE),
    (39, 1, 431.79, 8, FALSE),
    (40, 14, 388.94, 18, TRUE),
    (40, 2, 108.89, 40, FALSE),
    (41, 6, 307.08, 30, TRUE),
    (41, 14, 87.16, 11, FALSE),
    (41, 12, 393.5, 16, FALSE),
    (42, 10, 178.65, 20, TRUE),
    (43, 9, 489.61, 21, TRUE),
    (43, 3, 148.22, 20, FALSE),
    (43, 6, 476.44, 35, FALSE),
    (44, 14, 481.57, 29, TRUE),
    (44, 2, 459.79, 20, FALSE),
    (44, 3, 434.19, 11, FALSE),
    (45, 14, 77.39, 23, TRUE),
    (45, 3, 415.1, 28, FALSE),
    (45, 4, 247.28, 39, FALSE),
    (46, 5, 190.71, 7, TRUE),
    (46, 11, 318.65, 8, FALSE),
    (46, 7, 204.41, 20, FALSE),
    (47, 15, 475.38, 23, TRUE),
    (47, 6, 293.07, 8, FALSE),
    (47, 8, 366.81, 32, FALSE),
    (48, 11, 425.8, 37, TRUE),
    (48, 12, 201.87, 30, FALSE),
    (48, 6, 413.3, 34, FALSE),
    (49, 6, 145.38, 38, TRUE),
    (49, 14, 291.08, 39, FALSE),
    (50, 13, 447.61, 6, TRUE),
    (50, 6, 27.74, 43, FALSE),
    (51, 1, 465.07, 13, TRUE),
    (51, 2, 223.44, 3, FALSE),
    (52, 4, 455.16, 44, TRUE),
    (52, 12, 154.42, 20, FALSE),
    (53, 11, 183.42, 8, TRUE),
    (54, 11, 86.93, 28, TRUE),
    (54, 15, 314.67, 17, FALSE),
    (55, 11, 353.33, 3, TRUE),
    (55, 2, 110.64, 7, FALSE),
    (56, 10, 116.96, 31, TRUE),
    (57, 1, 349.32, 10, TRUE),
    (58, 12, 241.46, 17, TRUE),
    (58, 3, 194.62, 9, FALSE),
    (59, 6, 186.94, 22, TRUE),
    (60, 7, 387.86, 11, TRUE),
    (61, 11, 267.6, 3, TRUE),
    (61, 3, 307.11, 13, FALSE),
    (61, 2, 222.85, 16, FALSE),
    (62, 12, 309.96, 31, TRUE),
    (62, 3, 430.68, 8, FALSE),
    (62, 7, 448.81, 11, FALSE),
    (63, 10, 366.35, 25, TRUE),
    (64, 6, 74.22, 20, TRUE),
    (64, 13, 324.09, 18, FALSE),
    (65, 10, 305.76, 4, TRUE),
    (65, 15, 424.71, 45, FALSE),
    (65, 12, 438.53, 16, FALSE),
    (66, 10, 375.18, 21, TRUE),
    (66, 9, 324.85, 18, FALSE),
    (66, 4, 249.97, 10, FALSE),
    (67, 8, 320.85, 7, TRUE),
    (68, 15, 467.29, 11, TRUE),
    (68, 1, 196.48, 39, FALSE),
    (68, 6, 213.33, 37, FALSE),
    (69, 3, 477.45, 7, TRUE),
    (69, 13, 13.26, 7, FALSE),
    (69, 8, 11.83, 16, FALSE),
    (70, 15, 34.93, 28, TRUE),
    (71, 5, 253.02, 29, TRUE),
    (71, 11, 214.67, 28, FALSE),
    (71, 12, 45.8, 37, FALSE),
    (72, 10, 46.38, 8, TRUE),
    (72, 3, 258.1, 16, FALSE),
    (72, 5, 487.29, 12, FALSE),
    (73, 6, 318.98, 44, TRUE),
    (73, 7, 342.12, 7, FALSE),
    (73, 10, 158.53, 30, FALSE),
    (74, 14, 126.02, 30, TRUE),
    (74, 4, 62.41, 42, FALSE),
    (74, 1, 306.37, 22, FALSE),
    (75, 12, 91.94, 3, TRUE),
    (75, 11, 355.41, 3, FALSE),
    (75, 15, 86.1, 25, FALSE),
    (76, 9, 133.33, 26, TRUE),
    (76, 13, 67.83, 20, FALSE),
    (76, 12, 367.8, 10, FALSE),
    (77, 6, 404.52, 20, TRUE),
    (78, 2, 487.65, 43, TRUE),
    (78, 5, 43.15, 32, FALSE),
    (78, 12, 257.84, 6, FALSE),
    (79, 14, 87.61, 13, TRUE),
    (79, 10, 131.28, 9, FALSE),
    (80, 11, 118.06, 35, TRUE),
    (80, 12, 6.27, 3, FALSE),
    (80, 2, 126.05, 33, FALSE),
    (81, 7, 93.59, 5, TRUE),
    (81, 3, 278.67, 44, FALSE),
    (82, 4, 127.89, 23, TRUE),
    (82, 6, 139.27, 7, FALSE),
    (83, 6, 338.3, 6, TRUE),
    (83, 2, 93.78, 36, FALSE),
    (83, 9, 490.8, 28, FALSE),
    (84, 15, 235.22, 21, TRUE),
    (85, 6, 278.78, 3, TRUE),
    (85, 2, 187.62, 21, FALSE),
    (86, 13, 313.25, 32, TRUE),
    (86, 5, 187.3, 34, FALSE),
    (86, 12, 498.9, 15, FALSE),
    (87, 15, 399.01, 12, TRUE),
    (87, 9, 8.16, 29, FALSE),
    (87, 13, 16.84, 37, FALSE),
    (88, 11, 348.26, 3, TRUE),
    (88, 14, 475.74, 3, FALSE),
    (89, 7, 364.97, 9, TRUE),
    (89, 14, 106.57, 18, FALSE),
    (89, 12, 212.81, 6, FALSE),
    (90, 12, 143.51, 5, TRUE),
    (91, 15, 423.52, 29, TRUE),
    (92, 15, 487.4, 8, TRUE),
    (92, 6, 292.48, 35, FALSE),
    (92, 8, 71.09, 28, FALSE),
    (93, 10, 286.07, 30, TRUE),
    (94, 3, 134.19, 23, TRUE),
    (94, 4, 463.39, 28, FALSE),
    (94, 5, 351.86, 23, FALSE),
    (95, 8, 120.64, 15, TRUE),
    (95, 5, 72.38, 40, FALSE),
    (96, 3, 57.3, 31, TRUE),
    (97, 6, 64.76, 25, TRUE),
    (97, 7, 482.49, 16, FALSE),
    (98, 5, 136.18, 10, TRUE),
    (98, 8, 49.76, 22, FALSE),
    (99, 12, 111.44, 23, TRUE),
    (99, 10, 78.42, 18, FALSE),
    (99, 1, 484.36, 28, FALSE),
    (100, 1, 133.78, 14, TRUE),
    (100, 11, 20.39, 28, FALSE),
    (100, 5, 428.03, 38, FALSE),
    (101, 9, 233.71, 11, TRUE),
    (101, 4, 65.12, 6, FALSE),
    (101, 2, 416.03, 17, FALSE),
    (102, 4, 412.72, 26, TRUE),
    (103, 11, 293.25, 19, TRUE),
    (103, 15, 459.13, 7, FALSE),
    (103, 2, 15.79, 7, FALSE),
    (104, 15, 324.76, 11, TRUE),
    (105, 15, 424.4, 24, TRUE),
    (106, 1, 471.43, 6, TRUE),
    (107, 15, 289.07, 28, TRUE),
    (108, 1, 343.19, 14, TRUE),
    (108, 7, 180.2, 14, FALSE),
    (109, 5, 442.29, 5, TRUE),
    (109, 8, 308.98, 42, FALSE),
    (110, 11, 151.08, 29, TRUE),
    (111, 8, 143.49, 11, TRUE),
    (111, 1, 212.52, 44, FALSE),
    (111, 2, 442.9, 36, FALSE),
    (112, 11, 497.07, 37, TRUE),
    (113, 7, 392.05, 25, TRUE),
    (114, 9, 244.92, 39, TRUE),
    (114, 13, 253.68, 27, FALSE),
    (115, 3, 162.84, 17, TRUE),
    (115, 1, 19.51, 20, FALSE),
    (116, 13, 495.81, 36, TRUE),
    (117, 13, 499.8, 13, TRUE),
    (117, 10, 54.57, 45, FALSE);


-- ──────────────────────────────────────────────────────────────────
-- 9. INVENTORY
-- ──────────────────────────────────────────────────────────────────

INSERT INTO inventory (product_id, store_id, quantity, reorder_level, last_restocked)
VALUES
    (1, 1, 61, 29, '2022-06-23 16:51:04'),
    (1, 2, 56, 16, '2025-04-21 18:52:57'),
    (1, 3, 44, 30, '2024-09-15 00:07:27'),
    (1, 4, 188, 27, '2022-03-29 15:14:02'),
    (1, 5, 179, 23, '2023-03-18 11:54:53'),
    (1, 6, 48, 22, '2026-03-10 07:05:05'),
    (1, 7, 79, 7, '2022-04-28 22:46:55'),
    (1, 8, 14, 5, '2023-11-11 19:34:38'),
    (2, 1, 134, 24, '2024-10-27 15:52:44'),
    (2, 2, 51, 27, '2024-11-24 16:50:09'),
    (2, 3, 45, 6, '2024-10-02 08:31:51'),
    (2, 4, 5, 29, '2023-03-17 02:23:17'),
    (2, 5, 28, 7, '2025-02-07 16:09:32'),
    (2, 6, 95, 23, '2025-05-14 01:44:35'),
    (2, 7, 25, 9, '2024-09-29 07:02:19'),
    (2, 8, 40, 30, '2025-09-19 07:16:03'),
    (3, 1, 163, 10, '2024-09-12 18:21:52'),
    (3, 2, 181, 12, '2025-01-13 14:50:28'),
    (3, 3, 170, 17, '2023-06-29 19:09:54'),
    (3, 4, 78, 9, '2024-07-04 00:47:56'),
    (3, 5, 45, 29, '2025-05-01 15:55:06'),
    (3, 6, 145, 24, NULL),
    (3, 7, 81, 25, '2023-11-18 07:08:37'),
    (3, 8, 144, 9, '2026-03-22 14:14:23'),
    (4, 1, 84, 16, '2024-01-10 10:15:45'),
    (4, 2, 81, 27, '2022-10-03 15:53:26'),
    (4, 3, 171, 19, '2024-11-09 03:17:41'),
    (4, 4, 2, 27, '2024-02-15 07:06:55'),
    (4, 5, 17, 28, '2022-12-02 15:38:36'),
    (4, 6, 0, 19, NULL),
    (4, 7, 187, 18, '2023-06-01 19:05:35'),
    (4, 8, 126, 22, '2024-12-27 05:41:39'),
    (5, 1, 96, 30, '2026-01-29 17:18:35'),
    (5, 2, 147, 10, '2023-12-02 20:40:03'),
    (5, 3, 115, 6, NULL),
    (5, 4, 75, 13, NULL),
    (5, 5, 26, 10, NULL),
    (5, 6, 96, 22, '2022-08-22 00:35:08'),
    (5, 7, 23, 27, '2026-02-08 19:27:48'),
    (5, 8, 7, 24, '2023-05-28 15:04:56'),
    (6, 1, 111, 15, '2022-11-11 14:19:46'),
    (6, 2, 52, 27, '2025-06-25 14:07:07'),
    (6, 3, 141, 26, '2024-04-04 03:34:28'),
    (6, 4, 72, 6, '2022-10-26 00:00:35'),
    (6, 5, 100, 9, '2026-03-06 07:45:24'),
    (6, 6, 13, 7, '2025-08-21 12:36:41'),
    (6, 7, 75, 11, '2026-02-01 07:52:52'),
    (6, 8, 24, 10, NULL),
    (7, 1, 163, 20, '2022-09-12 13:35:53'),
    (7, 2, 29, 20, '2025-05-19 21:18:49'),
    (7, 3, 125, 7, '2024-04-03 08:09:37'),
    (7, 4, 164, 16, '2023-07-29 09:44:35'),
    (7, 5, 97, 6, '2025-10-16 23:24:49'),
    (7, 6, 67, 12, '2024-03-29 08:35:16'),
    (7, 7, 68, 29, '2023-04-15 13:07:11'),
    (7, 8, 178, 26, '2022-09-24 06:48:01'),
    (8, 1, 88, 29, '2025-07-10 05:04:54'),
    (8, 2, 150, 17, '2022-07-09 11:16:39'),
    (8, 3, 133, 23, '2026-01-15 05:28:21'),
    (8, 4, 60, 17, '2022-09-03 07:18:55'),
    (8, 5, 182, 23, NULL),
    (8, 6, 132, 8, '2023-04-04 02:29:39'),
    (8, 7, 193, 11, '2023-06-04 08:42:35'),
    (8, 8, 49, 7, '2025-08-08 09:07:14'),
    (9, 1, 174, 24, '2023-04-05 10:36:04'),
    (9, 2, 66, 7, '2022-07-28 04:46:24'),
    (9, 3, 99, 13, '2024-10-10 05:46:37'),
    (9, 4, 133, 30, '2022-02-08 09:54:41'),
    (9, 5, 179, 8, '2025-07-27 15:11:02'),
    (9, 6, 106, 8, '2022-11-08 07:45:04'),
    (9, 7, 144, 22, '2024-06-07 20:37:45'),
    (9, 8, 88, 17, '2024-03-31 15:27:16'),
    (10, 1, 167, 6, '2026-01-09 16:54:45'),
    (10, 2, 44, 24, '2023-03-23 22:25:57'),
    (10, 3, 155, 6, '2025-06-02 02:24:25'),
    (10, 4, 101, 27, '2024-10-26 21:59:22'),
    (10, 5, 60, 20, NULL),
    (10, 6, 68, 15, '2022-03-04 20:40:25'),
    (10, 7, 77, 27, '2026-03-08 09:47:07'),
    (10, 8, 175, 12, NULL),
    (11, 1, 34, 29, '2025-10-08 16:43:19'),
    (11, 2, 82, 24, '2025-07-18 20:49:37'),
    (11, 3, 165, 19, NULL),
    (11, 4, 54, 28, '2025-06-19 00:49:20'),
    (11, 5, 124, 6, '2025-03-07 16:45:56'),
    (11, 6, 131, 14, '2022-07-23 20:45:20'),
    (11, 7, 181, 29, '2023-02-26 10:47:00'),
    (11, 8, 134, 10, '2022-03-31 22:31:52'),
    (12, 1, 49, 6, '2023-09-16 15:16:23'),
    (12, 2, 63, 6, NULL),
    (12, 3, 92, 16, '2024-05-01 05:14:34'),
    (12, 4, 118, 26, '2023-01-20 20:37:46'),
    (12, 5, 7, 24, '2026-02-27 14:34:50'),
    (12, 6, 114, 23, '2026-01-14 11:25:12'),
    (12, 7, 141, 13, '2023-05-24 00:27:31'),
    (12, 8, 191, 14, '2022-10-08 20:06:37'),
    (13, 1, 7, 23, '2023-05-22 03:15:23'),
    (13, 2, 199, 25, '2023-11-19 17:07:57'),
    (13, 3, 57, 25, '2024-04-16 00:19:32'),
    (13, 4, 104, 20, '2022-01-28 15:28:54'),
    (13, 5, 33, 12, '2022-01-27 07:06:05'),
    (13, 6, 64, 27, '2024-08-07 00:43:32'),
    (13, 7, 181, 17, '2025-08-09 17:19:30'),
    (13, 8, 89, 19, '2023-11-09 22:50:47'),
    (14, 1, 77, 23, '2025-05-18 21:50:23'),
    (14, 2, 26, 26, NULL),
    (14, 3, 95, 14, '2024-05-28 05:54:57'),
    (14, 4, 175, 15, '2022-07-18 08:02:08'),
    (14, 5, 70, 13, '2024-05-10 06:02:12'),
    (14, 6, 167, 11, '2024-07-17 07:28:49'),
    (14, 7, 38, 6, '2024-01-17 14:13:16'),
    (14, 8, 153, 26, '2024-09-19 22:02:23'),
    (15, 1, 35, 14, '2026-03-26 06:48:20'),
    (15, 2, 66, 17, '2025-06-11 01:04:48'),
    (15, 3, 188, 27, NULL),
    (15, 4, 146, 28, '2024-12-02 04:23:23'),
    (15, 5, 182, 26, '2026-01-18 01:23:15'),
    (15, 6, 91, 26, '2023-06-13 03:07:27'),
    (15, 7, 142, 20, '2022-10-31 05:48:43'),
    (15, 8, 32, 26, '2023-07-23 18:33:56'),
    (16, 1, 85, 16, '2023-11-22 12:25:22'),
    (16, 2, 57, 18, '2024-08-12 01:56:14'),
    (16, 3, 84, 19, '2024-07-02 14:02:27'),
    (16, 4, 30, 20, '2022-08-10 06:13:48'),
    (16, 5, 49, 21, '2025-03-31 19:19:10'),
    (16, 6, 76, 9, '2023-04-14 10:51:22'),
    (16, 7, 51, 9, '2025-11-22 14:59:56'),
    (16, 8, 80, 29, '2023-07-15 08:22:30'),
    (17, 1, 20, 15, '2023-07-04 08:58:23'),
    (17, 2, 162, 19, NULL),
    (17, 3, 70, 23, '2023-06-08 20:09:23'),
    (17, 4, 195, 9, '2022-10-01 12:50:19'),
    (17, 5, 157, 17, '2025-08-27 03:06:34'),
    (17, 6, 109, 5, '2025-04-05 22:08:39'),
    (17, 7, 9, 5, '2025-03-05 04:27:25'),
    (17, 8, 82, 5, '2023-08-16 02:25:47'),
    (18, 1, 173, 28, NULL),
    (18, 2, 63, 14, '2024-12-05 20:34:48'),
    (18, 3, 33, 23, '2026-04-13 19:29:16'),
    (18, 4, 78, 14, '2022-05-23 01:00:27'),
    (18, 5, 74, 18, '2024-11-15 14:48:52'),
    (18, 6, 175, 20, '2024-11-30 20:00:44'),
    (18, 7, 91, 30, '2023-05-28 06:36:19'),
    (18, 8, 103, 12, NULL),
    (19, 1, 186, 28, '2023-10-19 03:29:05'),
    (19, 2, 5, 8, '2023-06-10 00:24:57'),
    (19, 3, 93, 17, '2022-04-27 02:01:08'),
    (19, 4, 163, 24, '2022-05-31 22:54:22'),
    (19, 5, 12, 6, '2022-03-03 08:03:11'),
    (19, 6, 176, 17, '2025-10-12 10:28:28'),
    (19, 7, 31, 27, '2026-01-13 21:33:16'),
    (19, 8, 39, 14, '2022-01-29 21:47:51'),
    (20, 1, 107, 24, '2024-04-18 18:57:19'),
    (20, 2, 155, 8, '2025-07-25 05:54:40'),
    (20, 3, 130, 14, '2023-01-01 18:55:32'),
    (20, 4, 29, 11, '2026-03-27 10:06:52'),
    (20, 5, 155, 21, '2024-03-28 02:14:51'),
    (20, 6, 51, 14, '2025-06-27 01:38:20'),
    (20, 7, 41, 20, NULL),
    (20, 8, 53, 15, '2026-02-02 08:54:05'),
    (21, 1, 60, 26, NULL),
    (21, 2, 22, 9, '2026-03-16 03:04:01'),
    (21, 3, 23, 28, '2022-08-22 04:00:00'),
    (21, 4, 185, 25, '2024-03-06 00:41:52'),
    (21, 5, 59, 13, '2024-07-08 17:00:49'),
    (21, 6, 118, 10, NULL),
    (21, 7, 10, 30, '2025-01-24 03:33:07'),
    (21, 8, 173, 8, '2022-12-27 02:12:32'),
    (22, 1, 194, 9, '2022-01-31 01:13:14'),
    (22, 2, 169, 16, '2024-10-18 02:43:39'),
    (22, 3, 112, 28, '2024-04-13 14:35:55'),
    (22, 4, 23, 10, '2024-11-30 19:15:31'),
    (22, 5, 29, 13, '2025-11-19 09:59:31'),
    (22, 6, 98, 30, '2026-01-25 20:31:57'),
    (22, 7, 107, 8, '2023-06-03 03:55:24'),
    (22, 8, 33, 10, '2022-07-02 04:59:31'),
    (23, 1, 26, 30, '2026-02-08 14:50:42'),
    (23, 2, 145, 24, '2023-07-18 03:46:00'),
    (23, 3, 97, 26, '2022-03-31 12:41:37'),
    (23, 4, 186, 20, '2023-02-10 22:22:02'),
    (23, 5, 124, 19, '2025-07-01 19:34:38'),
    (23, 6, 11, 25, NULL),
    (23, 7, 80, 26, NULL),
    (23, 8, 134, 26, '2023-11-27 21:31:32'),
    (24, 1, 86, 18, '2022-10-23 21:46:07'),
    (24, 2, 169, 16, '2026-02-06 07:16:52'),
    (24, 3, 169, 9, '2025-04-10 18:28:50'),
    (24, 4, 142, 5, '2022-06-19 12:44:40'),
    (24, 5, 164, 20, '2026-04-20 17:51:01'),
    (24, 6, 126, 29, '2022-08-21 14:21:25'),
    (24, 7, 125, 13, '2024-10-25 01:18:27'),
    (24, 8, 12, 17, '2025-03-22 09:15:55'),
    (25, 1, 60, 19, NULL),
    (25, 2, 146, 19, '2026-03-29 15:35:03'),
    (25, 3, 80, 28, '2026-03-26 06:50:40'),
    (25, 4, 167, 17, NULL),
    (25, 5, 105, 22, NULL),
    (25, 6, 0, 21, '2024-08-04 08:28:11'),
    (25, 7, 143, 15, '2025-11-18 09:19:41'),
    (25, 8, 93, 19, '2023-11-24 13:58:44'),
    (26, 1, 84, 27, '2026-01-09 23:24:15'),
    (26, 2, 168, 8, '2025-11-06 23:15:56'),
    (26, 3, 24, 5, '2023-11-20 22:39:47'),
    (26, 4, 87, 22, '2024-06-26 03:52:21'),
    (26, 5, 133, 6, '2022-11-27 07:57:37'),
    (26, 6, 42, 8, '2025-06-25 08:57:56'),
    (26, 7, 65, 8, '2023-08-06 16:14:59'),
    (26, 8, 100, 27, '2023-08-16 02:34:57'),
    (27, 1, 86, 6, '2025-07-11 17:08:57'),
    (27, 2, 162, 29, '2023-01-18 19:53:19'),
    (27, 3, 115, 9, '2026-04-16 11:41:46'),
    (27, 4, 127, 28, NULL),
    (27, 5, 12, 23, '2025-09-06 16:40:51'),
    (27, 6, 123, 27, '2023-07-05 13:10:17'),
    (27, 7, 148, 8, '2023-02-03 20:50:23'),
    (27, 8, 99, 21, '2024-09-26 22:24:37'),
    (28, 1, 98, 13, '2024-02-11 06:01:33'),
    (28, 2, 101, 19, '2024-07-02 23:10:08'),
    (28, 3, 34, 14, '2026-05-11 15:27:21'),
    (28, 4, 179, 27, '2024-09-02 06:53:06'),
    (28, 5, 188, 11, '2023-11-07 06:14:08'),
    (28, 6, 53, 26, '2024-06-21 19:10:39'),
    (28, 7, 88, 27, '2023-02-17 04:43:15'),
    (28, 8, 166, 21, '2023-07-07 10:40:33'),
    (29, 1, 138, 27, '2024-09-28 14:29:56'),
    (29, 2, 29, 23, '2026-02-01 10:58:39'),
    (29, 3, 146, 26, '2025-07-21 01:24:38'),
    (29, 4, 191, 18, '2024-06-07 08:20:06'),
    (29, 5, 3, 17, '2022-03-20 12:25:39'),
    (29, 6, 37, 6, NULL),
    (29, 7, 51, 14, '2023-05-16 00:12:44'),
    (29, 8, 174, 27, '2022-07-12 17:30:09'),
    (30, 1, 200, 16, '2022-04-11 08:56:18'),
    (30, 2, 115, 28, '2023-11-28 21:34:15'),
    (30, 3, 165, 21, '2024-01-09 04:24:09'),
    (30, 4, 200, 27, '2024-06-12 15:53:33'),
    (30, 5, 170, 17, NULL),
    (30, 6, 99, 22, '2024-08-29 09:10:12'),
    (30, 7, 13, 13, NULL),
    (30, 8, 51, 12, '2025-10-08 13:14:07'),
    (31, 1, 162, 29, '2025-02-16 12:45:54'),
    (31, 2, 150, 29, '2023-09-03 09:47:47'),
    (31, 3, 185, 19, '2024-07-02 23:28:50'),
    (31, 4, 45, 10, '2022-08-20 08:48:38'),
    (31, 5, 44, 17, '2023-01-06 19:39:54'),
    (31, 6, 10, 9, '2024-03-31 23:07:57'),
    (31, 7, 41, 5, '2024-03-03 07:22:57'),
    (31, 8, 84, 6, '2023-04-26 23:08:58'),
    (32, 1, 39, 29, '2022-06-08 00:03:23'),
    (32, 2, 160, 20, '2024-07-24 15:43:51'),
    (32, 3, 146, 30, '2022-08-15 10:23:08'),
    (32, 4, 181, 10, '2023-11-15 09:33:23'),
    (32, 5, 133, 21, NULL),
    (32, 6, 40, 7, '2025-06-07 08:57:24'),
    (32, 7, 89, 26, '2023-10-25 20:48:47'),
    (32, 8, 84, 11, '2024-07-01 02:29:27'),
    (33, 1, 192, 22, '2026-01-15 07:55:05'),
    (33, 2, 192, 8, '2022-01-28 08:27:05'),
    (33, 3, 171, 25, '2024-01-17 17:38:11'),
    (33, 4, 157, 6, '2024-01-28 13:04:15'),
    (33, 5, 174, 30, '2025-03-30 21:12:09'),
    (33, 6, 29, 5, '2024-05-28 17:15:31'),
    (33, 7, 132, 21, '2025-03-10 22:53:53'),
    (33, 8, 130, 14, '2022-05-17 05:49:00'),
    (34, 1, 166, 7, '2026-05-16 14:45:58'),
    (34, 2, 24, 25, '2022-01-23 18:36:29'),
    (34, 3, 16, 26, '2023-10-25 07:29:23'),
    (34, 4, 108, 22, '2023-10-01 17:07:25'),
    (34, 5, 179, 25, '2025-09-14 05:40:47'),
    (34, 6, 18, 5, '2023-04-23 16:46:21'),
    (34, 7, 117, 7, '2022-04-28 17:00:30'),
    (34, 8, 18, 30, NULL),
    (35, 1, 64, 13, '2023-12-09 06:29:18'),
    (35, 2, 104, 18, '2025-06-10 13:49:49'),
    (35, 3, 80, 26, NULL),
    (35, 4, 30, 29, '2022-07-16 11:20:11'),
    (35, 5, 190, 16, '2022-08-14 12:39:41'),
    (35, 6, 128, 24, '2024-07-25 06:20:14'),
    (35, 7, 22, 17, '2025-09-21 19:29:56'),
    (35, 8, 101, 20, '2022-04-06 18:02:33'),
    (36, 1, 40, 28, '2023-02-28 17:20:18'),
    (36, 2, 100, 25, '2024-07-05 11:11:19'),
    (36, 3, 36, 5, '2025-03-05 06:37:38'),
    (36, 4, 141, 8, '2023-03-16 05:35:59'),
    (36, 5, 10, 24, NULL),
    (36, 6, 100, 14, '2022-09-22 11:31:06'),
    (36, 7, 53, 11, '2024-12-04 07:26:14'),
    (36, 8, 105, 9, '2026-05-12 10:41:57'),
    (37, 1, 41, 11, '2024-02-25 05:47:35'),
    (37, 2, 29, 29, '2022-06-18 23:29:08'),
    (37, 3, 140, 14, '2022-08-16 06:03:17'),
    (37, 4, 171, 8, NULL),
    (37, 5, 50, 15, '2026-02-22 15:32:58'),
    (37, 6, 91, 8, '2023-12-30 16:02:12'),
    (37, 7, 72, 15, '2023-08-25 04:17:56'),
    (37, 8, 124, 27, '2024-08-07 16:48:59'),
    (38, 1, 149, 30, '2025-02-06 10:36:00'),
    (38, 2, 80, 5, '2023-06-08 22:40:24'),
    (38, 3, 80, 27, '2023-11-20 06:09:13'),
    (38, 4, 189, 16, '2024-05-09 14:44:36'),
    (38, 5, 34, 20, '2024-10-27 03:07:31'),
    (38, 6, 118, 20, '2024-08-07 01:37:40'),
    (38, 7, 141, 13, '2022-09-12 16:24:05'),
    (38, 8, 35, 13, '2023-09-03 07:01:35'),
    (39, 1, 187, 28, '2022-08-26 13:26:53'),
    (39, 2, 19, 25, '2026-04-25 17:57:21'),
    (39, 3, 7, 29, '2025-06-12 17:00:54'),
    (39, 4, 151, 22, '2022-04-24 21:17:32'),
    (39, 5, 66, 25, '2026-01-06 18:37:18'),
    (39, 6, 198, 12, '2025-05-04 10:47:53'),
    (39, 7, 197, 9, '2024-06-23 02:28:12'),
    (39, 8, 118, 17, '2022-10-09 08:11:50'),
    (40, 1, 93, 30, '2024-01-13 04:14:37'),
    (40, 2, 157, 9, '2026-05-17 08:48:34'),
    (40, 3, 114, 28, '2023-03-31 05:23:29'),
    (40, 4, 187, 6, '2025-01-19 17:44:05'),
    (40, 5, 56, 7, '2023-12-22 00:31:32'),
    (40, 6, 67, 26, '2022-05-14 00:01:42'),
    (40, 7, 52, 17, '2025-01-27 08:51:15'),
    (40, 8, 120, 6, '2022-05-25 06:37:40'),
    (41, 1, 166, 28, '2024-04-29 17:17:18'),
    (41, 2, 67, 17, '2023-06-25 03:10:55'),
    (41, 3, 167, 21, '2022-08-30 19:58:56'),
    (41, 4, 64, 21, '2023-11-24 12:34:23'),
    (41, 5, 103, 20, '2024-12-07 23:28:29'),
    (41, 6, 123, 21, '2022-01-21 11:57:32'),
    (41, 7, 35, 7, '2023-12-16 13:21:17'),
    (41, 8, 131, 9, '2023-10-20 03:51:30'),
    (42, 1, 47, 26, '2023-01-03 15:20:26'),
    (42, 2, 58, 28, '2024-10-22 23:20:35'),
    (42, 3, 29, 20, '2026-01-27 15:00:27'),
    (42, 4, 53, 5, '2025-06-30 14:51:56'),
    (42, 5, 62, 23, NULL),
    (42, 6, 151, 6, '2026-05-12 17:25:09'),
    (42, 7, 146, 13, '2023-06-01 19:18:40'),
    (42, 8, 46, 24, '2025-06-13 17:00:51'),
    (43, 1, 144, 7, '2024-05-30 15:54:30'),
    (43, 2, 55, 20, '2026-01-04 15:08:05'),
    (43, 3, 43, 24, '2025-06-30 04:59:47'),
    (43, 4, 36, 24, '2023-07-20 02:15:54'),
    (43, 5, 168, 28, '2023-06-06 02:14:11'),
    (43, 6, 175, 24, '2025-11-09 21:11:04'),
    (43, 7, 151, 17, NULL),
    (43, 8, 98, 11, '2022-02-21 10:59:57'),
    (44, 1, 133, 26, '2026-04-16 23:46:18'),
    (44, 2, 107, 10, '2022-10-27 04:32:32'),
    (44, 3, 121, 30, '2022-05-02 06:46:37'),
    (44, 4, 136, 7, '2023-01-01 02:39:30'),
    (44, 5, 123, 29, '2022-01-04 17:29:37'),
    (44, 6, 173, 16, '2025-07-31 00:28:27'),
    (44, 7, 11, 12, '2025-08-25 17:17:51'),
    (44, 8, 123, 16, '2025-03-30 11:03:13'),
    (45, 1, 150, 18, '2022-10-31 14:18:03'),
    (45, 2, 34, 7, '2023-12-24 09:25:02'),
    (45, 3, 72, 13, '2025-06-23 14:54:24'),
    (45, 4, 48, 28, NULL),
    (45, 5, 1, 21, '2023-01-02 01:56:15'),
    (45, 6, 1, 27, '2023-10-01 05:07:41'),
    (45, 7, 80, 9, '2022-11-28 03:25:15'),
    (45, 8, 109, 13, '2024-02-28 00:13:37'),
    (46, 1, 137, 24, '2025-02-10 00:23:59'),
    (46, 2, 70, 29, '2025-05-19 20:19:44'),
    (46, 3, 52, 10, '2026-02-07 23:24:12'),
    (46, 4, 94, 13, '2026-02-11 23:46:19'),
    (46, 5, 78, 28, '2025-05-21 22:42:21'),
    (46, 6, 35, 28, '2023-01-05 23:40:41'),
    (46, 7, 58, 8, '2023-05-18 16:19:07'),
    (46, 8, 54, 30, '2024-11-17 11:45:16'),
    (47, 1, 140, 10, '2022-06-11 17:20:17'),
    (47, 2, 99, 30, '2022-01-17 10:29:53'),
    (47, 3, 23, 24, '2026-01-05 10:09:51'),
    (47, 4, 111, 13, NULL),
    (47, 5, 56, 28, '2022-04-28 07:14:31'),
    (47, 6, 98, 24, '2025-05-29 18:14:45'),
    (47, 7, 167, 29, '2022-06-28 12:45:14'),
    (47, 8, 44, 5, '2025-09-25 20:07:42'),
    (48, 1, 51, 14, '2026-05-29 20:18:32'),
    (48, 2, 49, 24, NULL),
    (48, 3, 130, 24, '2023-12-21 18:38:23'),
    (48, 4, 43, 12, '2025-01-22 16:09:31'),
    (48, 5, 167, 10, NULL),
    (48, 6, 22, 16, '2025-05-25 23:56:05'),
    (48, 7, 171, 21, '2023-09-15 08:13:29'),
    (48, 8, 3, 7, '2022-08-02 04:28:01'),
    (49, 1, 140, 16, '2024-12-17 11:51:46'),
    (49, 2, 70, 19, '2023-08-28 08:50:59'),
    (49, 3, 103, 10, '2024-03-22 05:35:13'),
    (49, 4, 104, 21, '2022-08-13 21:29:21'),
    (49, 5, 75, 30, '2022-12-30 12:49:23'),
    (49, 6, 131, 27, '2024-02-17 03:54:04'),
    (49, 7, 113, 29, '2026-02-11 14:03:31'),
    (49, 8, 62, 26, '2025-11-26 14:13:07'),
    (50, 1, 117, 20, '2022-03-26 23:24:57'),
    (50, 2, 29, 25, '2025-04-03 22:11:07'),
    (50, 3, 56, 30, '2023-12-16 08:50:00'),
    (50, 4, 80, 21, '2025-01-02 00:45:57'),
    (50, 5, 137, 13, NULL),
    (50, 6, 63, 26, '2025-05-24 10:25:26'),
    (50, 7, 191, 22, '2022-08-25 05:07:11'),
    (50, 8, 45, 11, '2025-01-03 09:41:54'),
    (51, 1, 146, 20, '2023-08-14 19:54:58'),
    (51, 2, 188, 13, '2024-01-23 01:02:30'),
    (51, 3, 52, 24, '2024-02-15 18:38:27'),
    (51, 4, 91, 8, '2022-11-28 11:19:49'),
    (51, 5, 20, 24, '2026-03-11 15:45:16'),
    (51, 6, 1, 20, '2022-05-12 07:22:00'),
    (51, 7, 95, 23, '2026-03-10 15:33:32'),
    (51, 8, 70, 13, '2026-05-08 00:53:11'),
    (52, 1, 101, 6, '2023-02-03 10:42:41'),
    (52, 2, 134, 22, '2026-01-26 02:07:47'),
    (52, 3, 8, 26, '2025-05-08 05:39:40'),
    (52, 4, 198, 27, '2023-01-09 23:18:06'),
    (52, 5, 132, 5, '2022-01-27 03:44:13'),
    (52, 6, 172, 15, '2022-11-10 00:18:09'),
    (52, 7, 92, 10, '2024-03-17 20:41:35'),
    (52, 8, 140, 20, '2024-04-17 00:32:01'),
    (53, 1, 156, 20, '2023-07-26 09:35:51'),
    (53, 2, 108, 16, '2025-03-02 17:25:05'),
    (53, 3, 102, 23, '2023-07-13 21:30:46'),
    (53, 4, 33, 8, '2023-12-12 03:10:19'),
    (53, 5, 184, 22, '2024-01-03 14:54:28'),
    (53, 6, 110, 9, '2023-09-02 03:31:59'),
    (53, 7, 189, 10, '2022-01-31 06:26:17'),
    (53, 8, 107, 22, '2026-05-26 06:50:03'),
    (54, 1, 184, 14, '2026-02-20 21:01:55'),
    (54, 2, 64, 17, '2022-05-29 05:27:48'),
    (54, 3, 25, 11, '2022-07-06 12:38:12'),
    (54, 4, 65, 19, '2022-10-27 04:47:21'),
    (54, 5, 190, 16, '2025-01-26 11:16:45'),
    (54, 6, 143, 16, '2024-03-11 16:36:36'),
    (54, 7, 5, 26, '2024-12-26 19:12:14'),
    (54, 8, 155, 29, '2023-06-27 06:33:30'),
    (55, 1, 72, 20, '2026-05-05 21:30:09'),
    (55, 2, 198, 17, '2022-09-01 14:29:19'),
    (55, 3, 157, 10, '2023-03-27 00:40:28'),
    (55, 4, 163, 18, '2024-11-14 05:29:45'),
    (55, 5, 161, 7, '2025-06-11 14:02:28'),
    (55, 6, 20, 15, '2023-12-11 01:09:46'),
    (55, 7, 81, 24, '2024-04-11 00:11:13'),
    (55, 8, 165, 29, '2025-10-14 06:01:40'),
    (56, 1, 92, 18, '2025-10-30 23:57:20'),
    (56, 2, 42, 9, '2022-03-13 18:32:32'),
    (56, 3, 186, 28, '2024-02-21 20:09:38'),
    (56, 4, 179, 10, '2023-10-17 05:20:54'),
    (56, 5, 101, 20, '2022-07-18 04:42:21'),
    (56, 6, 140, 29, NULL),
    (56, 7, 101, 8, '2022-09-16 15:39:35'),
    (56, 8, 67, 25, '2022-09-19 22:42:12'),
    (57, 1, 99, 28, '2024-02-08 15:13:16'),
    (57, 2, 72, 9, '2023-01-28 17:56:25'),
    (57, 3, 134, 6, '2022-03-30 18:25:49'),
    (57, 4, 169, 20, '2024-10-07 08:46:03'),
    (57, 5, 119, 22, '2024-04-26 08:41:31'),
    (57, 6, 113, 23, '2023-07-05 00:48:31'),
    (57, 7, 152, 21, '2025-09-13 10:15:49'),
    (57, 8, 163, 16, '2024-08-20 02:01:19'),
    (58, 1, 123, 19, '2022-10-06 05:37:55'),
    (58, 2, 78, 9, '2024-03-18 04:37:02'),
    (58, 3, 77, 21, NULL),
    (58, 4, 194, 14, '2024-12-04 09:55:05'),
    (58, 5, 120, 29, '2026-03-09 09:04:56'),
    (58, 6, 122, 30, '2025-08-30 07:34:59'),
    (58, 7, 74, 22, '2022-01-23 10:12:43'),
    (58, 8, 95, 17, '2025-09-20 01:00:47'),
    (59, 1, 63, 17, '2025-04-25 19:52:22'),
    (59, 2, 56, 25, '2025-08-04 20:27:01'),
    (59, 3, 61, 14, '2024-04-24 15:43:56'),
    (59, 4, 166, 18, '2024-04-15 04:49:22'),
    (59, 5, 48, 9, '2023-07-21 17:15:54'),
    (59, 6, 74, 24, '2025-11-15 16:50:09'),
    (59, 7, 115, 11, '2026-03-09 13:52:55'),
    (59, 8, 82, 6, NULL),
    (60, 1, 136, 8, NULL),
    (60, 2, 72, 28, '2025-09-24 02:42:48'),
    (60, 3, 2, 5, '2023-04-14 03:47:26'),
    (60, 4, 126, 14, '2025-07-29 15:35:29'),
    (60, 5, 127, 27, '2025-12-11 14:49:11'),
    (60, 6, 8, 6, '2023-03-30 21:05:53'),
    (60, 7, 68, 22, '2022-08-10 18:49:43'),
    (60, 8, 120, 17, '2024-02-16 23:16:35'),
    (61, 1, 3, 17, '2024-02-13 11:58:45'),
    (61, 2, 197, 28, '2024-02-07 21:44:55'),
    (61, 3, 8, 21, '2022-10-19 22:11:17'),
    (61, 4, 170, 17, '2026-01-09 00:25:41'),
    (61, 5, 174, 10, '2024-09-30 17:20:14'),
    (61, 6, 161, 13, '2023-01-15 11:31:52'),
    (61, 7, 123, 16, '2023-09-10 09:54:28'),
    (61, 8, 13, 8, '2023-11-08 15:28:07'),
    (62, 1, 60, 5, '2024-10-05 05:28:46'),
    (62, 2, 42, 17, '2023-01-07 17:43:12'),
    (62, 3, 62, 6, NULL),
    (62, 4, 148, 27, '2026-01-16 14:45:01'),
    (62, 5, 152, 12, '2022-10-06 00:06:19'),
    (62, 6, 40, 29, '2024-11-17 10:34:49'),
    (62, 7, 160, 16, NULL),
    (62, 8, 165, 9, '2022-11-30 15:42:08'),
    (63, 1, 124, 30, '2024-12-15 01:53:14'),
    (63, 2, 112, 27, '2022-03-08 08:10:56'),
    (63, 3, 96, 13, '2023-02-23 14:21:32'),
    (63, 4, 10, 22, '2025-09-21 06:21:52'),
    (63, 5, 75, 11, '2026-03-03 15:54:29'),
    (63, 6, 145, 15, '2024-12-16 03:45:26'),
    (63, 7, 187, 7, '2023-05-14 04:04:17'),
    (63, 8, 135, 13, '2024-07-07 14:57:04'),
    (64, 1, 138, 29, '2022-01-03 05:40:26'),
    (64, 2, 163, 5, '2023-07-31 10:26:21'),
    (64, 3, 158, 15, '2024-01-12 21:12:58'),
    (64, 4, 184, 22, NULL),
    (64, 5, 99, 29, '2026-03-26 19:57:14'),
    (64, 6, 141, 15, '2024-05-29 15:38:05'),
    (64, 7, 104, 8, '2022-12-10 04:48:10'),
    (64, 8, 133, 9, '2022-05-17 00:16:08'),
    (65, 1, 45, 8, '2023-09-20 20:06:16'),
    (65, 2, 124, 23, '2022-04-09 20:27:31'),
    (65, 3, 164, 21, '2026-03-03 02:18:36'),
    (65, 4, 159, 6, '2024-03-06 04:09:36'),
    (65, 5, 93, 5, '2022-08-09 04:44:45'),
    (65, 6, 53, 19, '2022-09-06 10:00:41'),
    (65, 7, 163, 22, NULL),
    (65, 8, 190, 16, '2025-07-16 07:43:07'),
    (66, 1, 181, 24, NULL),
    (66, 2, 68, 14, '2022-08-07 16:31:09'),
    (66, 3, 19, 8, '2026-06-02 23:37:47'),
    (66, 4, 25, 11, '2025-04-12 04:22:06'),
    (66, 5, 49, 23, '2024-02-12 21:06:56'),
    (66, 6, 160, 28, '2025-07-13 22:24:26'),
    (66, 7, 27, 26, '2025-01-17 03:40:59'),
    (66, 8, 117, 8, '2025-08-19 21:01:09'),
    (67, 1, 42, 21, '2025-06-01 14:16:23'),
    (67, 2, 86, 16, '2025-10-08 09:22:53'),
    (67, 3, 80, 16, '2024-10-05 15:57:53'),
    (67, 4, 105, 28, '2025-08-30 18:58:24'),
    (67, 5, 82, 17, '2023-10-27 15:38:16'),
    (67, 6, 196, 16, '2024-02-29 10:15:30'),
    (67, 7, 115, 5, '2025-05-18 17:13:07'),
    (67, 8, 185, 14, NULL),
    (68, 1, 152, 9, NULL),
    (68, 2, 77, 12, NULL),
    (68, 3, 54, 29, '2022-03-09 10:10:17'),
    (68, 4, 176, 22, '2026-05-08 11:09:54'),
    (68, 5, 146, 8, '2023-04-26 16:22:15'),
    (68, 6, 9, 9, '2023-05-01 00:11:22'),
    (68, 7, 67, 12, '2024-02-16 06:40:52'),
    (68, 8, 65, 23, '2022-10-13 12:56:33'),
    (69, 1, 102, 28, '2023-11-07 13:17:54'),
    (69, 2, 19, 10, '2026-02-08 04:16:52'),
    (69, 3, 124, 24, '2022-10-24 06:51:33'),
    (69, 4, 164, 7, '2025-03-31 10:08:24'),
    (69, 5, 199, 29, NULL),
    (69, 6, 85, 18, '2025-09-11 08:04:59'),
    (69, 7, 30, 28, '2023-12-06 09:17:41'),
    (69, 8, 167, 25, '2022-02-05 12:36:33'),
    (70, 1, 199, 14, '2022-06-18 04:04:21'),
    (70, 2, 134, 22, NULL),
    (70, 3, 144, 27, '2026-04-10 21:46:44'),
    (70, 4, 56, 19, '2025-05-05 15:27:26'),
    (70, 5, 192, 7, '2026-04-18 03:20:53'),
    (70, 6, 56, 9, '2025-05-10 02:48:34'),
    (70, 7, 33, 23, '2026-01-18 10:17:40'),
    (70, 8, 190, 17, NULL),
    (71, 1, 67, 21, NULL),
    (71, 2, 111, 29, '2023-02-10 01:28:38'),
    (71, 3, 34, 20, '2023-09-08 12:02:32'),
    (71, 4, 101, 22, '2023-09-02 06:13:25'),
    (71, 5, 157, 12, '2024-02-05 01:25:14'),
    (71, 6, 18, 15, '2025-08-29 04:01:31'),
    (71, 7, 175, 8, '2022-10-06 08:39:41'),
    (71, 8, 171, 16, '2025-02-08 20:19:47'),
    (72, 1, 48, 29, '2022-03-17 04:59:31'),
    (72, 2, 78, 24, '2024-12-22 12:44:40'),
    (72, 3, 113, 6, '2025-09-30 11:20:00'),
    (72, 4, 59, 9, '2025-03-07 10:05:55'),
    (72, 5, 193, 8, '2022-09-24 14:47:18'),
    (72, 6, 189, 24, NULL),
    (72, 7, 37, 5, '2024-06-12 19:21:18'),
    (72, 8, 87, 14, '2022-12-12 17:29:18'),
    (73, 1, 115, 11, '2024-10-28 02:31:19'),
    (73, 2, 189, 22, '2023-09-26 04:31:48'),
    (73, 3, 133, 24, '2026-02-09 17:03:12'),
    (73, 4, 186, 17, '2022-02-27 03:08:49'),
    (73, 5, 149, 13, '2022-05-16 02:15:12'),
    (73, 6, 43, 11, NULL),
    (73, 7, 178, 19, '2022-06-14 22:19:23'),
    (73, 8, 167, 17, '2022-07-26 21:53:29'),
    (74, 1, 169, 8, '2025-01-24 03:53:09'),
    (74, 2, 4, 12, '2025-04-15 21:15:38'),
    (74, 3, 97, 15, '2022-11-06 10:59:27'),
    (74, 4, 124, 10, '2022-10-01 11:17:48'),
    (74, 5, 50, 22, '2025-11-23 21:55:50'),
    (74, 6, 182, 12, NULL),
    (74, 7, 135, 17, '2026-03-03 04:02:26'),
    (74, 8, 190, 26, '2024-12-13 09:47:01'),
    (75, 1, 90, 12, '2024-07-28 07:04:35'),
    (75, 2, 128, 25, '2022-07-12 15:46:41'),
    (75, 3, 65, 22, '2022-04-02 13:08:10'),
    (75, 4, 71, 17, '2024-11-27 21:25:21'),
    (75, 5, 168, 21, '2025-04-02 11:25:42'),
    (75, 6, 173, 18, '2023-12-08 14:15:32'),
    (75, 7, 61, 14, '2025-08-17 23:32:04'),
    (75, 8, 154, 11, '2023-02-14 09:38:32'),
    (76, 1, 167, 9, '2023-09-21 13:20:38'),
    (76, 2, 79, 18, '2023-02-25 05:09:25'),
    (76, 3, 197, 15, '2023-05-07 00:54:24'),
    (76, 4, 17, 10, '2023-01-03 19:35:47'),
    (76, 5, 81, 28, '2023-03-29 02:58:07'),
    (76, 6, 7, 18, '2025-07-10 09:04:16'),
    (76, 7, 77, 9, '2024-04-30 15:43:18'),
    (76, 8, 199, 10, '2023-02-13 16:46:19'),
    (77, 1, 6, 24, '2024-04-09 02:43:06'),
    (77, 2, 145, 12, '2023-12-23 08:47:05'),
    (77, 3, 175, 7, NULL),
    (77, 4, 176, 21, '2023-02-21 14:13:24'),
    (77, 5, 154, 10, '2025-03-07 20:26:02'),
    (77, 6, 99, 10, '2023-03-04 05:41:31'),
    (77, 7, 49, 29, '2025-06-23 10:36:56'),
    (77, 8, 3, 12, '2025-07-07 06:47:41'),
    (78, 1, 190, 29, '2023-09-23 04:22:03'),
    (78, 2, 52, 19, NULL),
    (78, 3, 157, 19, '2024-10-06 09:58:24'),
    (78, 4, 63, 24, '2022-05-10 22:47:35'),
    (78, 5, 188, 17, '2024-08-30 03:19:40'),
    (78, 6, 156, 21, '2022-04-30 15:39:39'),
    (78, 7, 27, 12, '2022-05-12 18:45:35'),
    (78, 8, 132, 22, '2022-05-02 22:48:46'),
    (79, 1, 99, 11, '2022-06-03 03:44:06'),
    (79, 2, 74, 29, '2024-08-04 05:12:10'),
    (79, 3, 73, 14, '2025-08-05 13:03:49'),
    (79, 4, 156, 9, '2026-05-26 04:03:03'),
    (79, 5, 118, 7, '2025-11-04 09:03:03'),
    (79, 6, 184, 29, '2023-07-13 12:43:35'),
    (79, 7, 149, 17, '2023-02-25 09:11:49'),
    (79, 8, 105, 10, '2022-03-19 09:34:54'),
    (80, 1, 116, 19, '2023-09-20 09:08:29'),
    (80, 2, 23, 27, '2023-05-25 12:16:50'),
    (80, 3, 187, 27, '2022-12-21 16:45:16'),
    (80, 4, 115, 21, '2022-09-23 00:55:01'),
    (80, 5, 181, 24, '2026-05-09 16:36:57'),
    (80, 6, 40, 6, '2025-03-28 12:06:56'),
    (80, 7, 196, 23, '2024-11-07 09:48:43'),
    (80, 8, 168, 9, '2023-05-19 16:50:55'),
    (81, 1, 45, 18, '2022-06-09 09:59:15'),
    (81, 2, 78, 14, '2025-10-18 11:25:32'),
    (81, 3, 160, 11, '2023-02-13 18:38:49'),
    (81, 4, 0, 5, '2024-02-26 09:19:20'),
    (81, 5, 117, 22, '2026-03-30 05:27:36'),
    (81, 6, 1, 12, '2026-03-14 03:33:04'),
    (81, 7, 55, 19, '2026-01-17 23:39:24'),
    (81, 8, 104, 12, '2022-01-21 10:07:12'),
    (82, 1, 140, 6, '2023-10-08 02:34:54'),
    (82, 2, 47, 6, '2024-12-20 08:48:18'),
    (82, 3, 37, 15, '2024-07-16 05:24:52'),
    (82, 4, 22, 18, NULL),
    (82, 5, 45, 24, '2024-06-02 12:57:00'),
    (82, 6, 169, 19, '2023-07-06 05:20:21'),
    (82, 7, 191, 7, '2022-04-22 08:25:39'),
    (82, 8, 196, 17, '2025-02-19 02:31:40'),
    (83, 1, 17, 14, '2022-07-21 17:13:24'),
    (83, 2, 120, 15, '2024-05-02 14:07:46'),
    (83, 3, 134, 27, '2023-10-14 23:12:16'),
    (83, 4, 53, 23, '2022-12-06 14:09:55'),
    (83, 5, 186, 20, '2022-09-30 09:07:47'),
    (83, 6, 185, 18, '2024-06-11 06:14:15'),
    (83, 7, 155, 21, '2024-03-17 17:39:21'),
    (83, 8, 147, 9, '2025-01-04 09:13:03'),
    (84, 1, 157, 28, '2026-06-03 16:04:23'),
    (84, 2, 161, 24, '2023-07-13 22:51:19'),
    (84, 3, 59, 5, '2023-08-25 08:32:23'),
    (84, 4, 30, 25, NULL),
    (84, 5, 30, 30, '2023-10-07 03:42:27'),
    (84, 6, 157, 6, '2025-07-10 09:08:42'),
    (84, 7, 85, 5, '2023-10-22 17:03:50'),
    (84, 8, 163, 13, '2024-05-24 23:36:32'),
    (85, 1, 17, 22, '2026-04-24 05:31:01'),
    (85, 2, 82, 26, '2022-12-20 16:17:02'),
    (85, 3, 85, 10, '2022-04-01 11:08:57'),
    (85, 4, 49, 26, '2024-11-15 22:23:52'),
    (85, 5, 122, 25, '2022-04-21 11:24:55'),
    (85, 6, 34, 22, '2025-12-02 02:09:44'),
    (85, 7, 85, 28, '2025-07-10 02:34:38'),
    (85, 8, 14, 23, '2024-07-19 00:41:15'),
    (86, 1, 185, 11, '2022-02-28 03:44:51'),
    (86, 2, 147, 7, '2025-01-03 13:59:41'),
    (86, 3, 38, 15, '2022-04-07 20:26:23'),
    (86, 4, 96, 23, '2023-05-31 15:34:54'),
    (86, 5, 155, 30, '2022-12-30 00:34:02'),
    (86, 6, 192, 27, '2024-09-04 02:46:28'),
    (86, 7, 8, 20, '2022-09-27 16:06:43'),
    (86, 8, 60, 11, '2024-07-29 05:37:54'),
    (87, 1, 134, 16, '2022-12-15 16:34:12'),
    (87, 2, 200, 11, NULL),
    (87, 3, 23, 30, '2022-03-19 11:16:16'),
    (87, 4, 123, 11, '2023-04-24 16:52:18'),
    (87, 5, 87, 29, '2024-08-22 06:01:21'),
    (87, 6, 83, 21, '2022-11-02 06:10:02'),
    (87, 7, 173, 28, '2023-09-30 11:51:34'),
    (87, 8, 9, 5, '2022-12-26 21:21:26'),
    (88, 1, 79, 15, '2022-09-28 12:50:57'),
    (88, 2, 119, 21, '2022-11-17 07:54:15'),
    (88, 3, 196, 5, '2024-08-28 20:15:27'),
    (88, 4, 147, 15, '2023-10-14 23:13:42'),
    (88, 5, 51, 22, '2024-05-09 12:29:04'),
    (88, 6, 81, 13, '2023-01-01 12:40:57'),
    (88, 7, 38, 5, '2022-12-22 14:47:09'),
    (88, 8, 159, 11, '2022-11-15 01:39:19'),
    (89, 1, 138, 13, '2024-09-16 11:57:22'),
    (89, 2, 36, 23, '2024-05-30 01:58:13'),
    (89, 3, 62, 24, '2024-08-25 09:59:37'),
    (89, 4, 86, 9, '2022-06-07 14:25:06'),
    (89, 5, 7, 8, '2022-06-06 18:16:23'),
    (89, 6, 98, 18, NULL),
    (89, 7, 100, 24, '2025-10-17 03:57:40'),
    (89, 8, 91, 27, '2023-09-08 14:55:16'),
    (90, 1, 194, 29, '2022-09-02 00:47:05'),
    (90, 2, 195, 7, '2023-02-14 11:22:06'),
    (90, 3, 178, 14, '2025-11-16 10:49:04'),
    (90, 4, 175, 20, '2025-12-16 22:28:58'),
    (90, 5, 59, 24, '2023-03-23 12:39:55'),
    (90, 6, 66, 10, '2025-05-03 03:22:27'),
    (90, 7, 179, 30, '2024-10-23 07:02:15'),
    (90, 8, 83, 7, '2022-04-05 00:39:26'),
    (91, 1, 121, 19, '2026-01-27 02:53:10'),
    (91, 2, 43, 24, '2024-12-19 02:39:04'),
    (91, 3, 147, 17, '2022-11-16 19:10:54'),
    (91, 4, 182, 22, '2024-10-09 10:36:29'),
    (91, 5, 166, 14, NULL),
    (91, 6, 136, 12, '2025-07-08 12:27:46'),
    (91, 7, 158, 20, '2023-05-10 01:24:43'),
    (91, 8, 98, 11, NULL),
    (92, 1, 177, 23, '2025-09-14 14:19:31'),
    (92, 2, 87, 10, '2024-01-04 16:56:33'),
    (92, 3, 169, 8, '2026-02-20 21:47:08'),
    (92, 4, 151, 22, '2024-10-07 21:56:56'),
    (92, 5, 24, 14, '2023-07-02 08:29:09'),
    (92, 6, 103, 8, NULL),
    (92, 7, 175, 15, '2025-03-23 05:39:11'),
    (92, 8, 126, 7, '2022-07-11 00:26:48'),
    (93, 1, 55, 29, '2022-01-01 13:44:42'),
    (93, 2, 37, 22, '2025-11-08 08:13:14'),
    (93, 3, 74, 11, '2025-10-21 06:38:57'),
    (93, 4, 52, 14, '2024-09-10 15:14:12'),
    (93, 5, 145, 18, '2024-08-04 04:54:12'),
    (93, 6, 183, 7, '2024-12-05 14:13:51'),
    (93, 7, 149, 21, NULL),
    (93, 8, 103, 6, '2024-07-02 23:59:54'),
    (94, 1, 94, 5, '2022-06-15 01:27:35'),
    (94, 2, 180, 8, '2025-01-21 03:13:16'),
    (94, 3, 72, 18, '2024-01-01 20:51:11'),
    (94, 4, 179, 27, '2024-09-15 09:17:28'),
    (94, 5, 97, 22, '2025-09-14 02:07:18'),
    (94, 6, 54, 9, '2026-01-15 08:58:45'),
    (94, 7, 48, 18, '2025-01-24 09:00:43'),
    (94, 8, 39, 9, '2023-01-26 01:37:24'),
    (95, 1, 2, 5, NULL),
    (95, 2, 36, 26, '2026-02-21 03:04:54'),
    (95, 3, 111, 7, '2023-02-26 20:10:24'),
    (95, 4, 35, 19, '2025-07-16 00:25:50'),
    (95, 5, 178, 24, '2025-08-15 14:48:13'),
    (95, 6, 46, 22, '2025-08-10 17:01:42'),
    (95, 7, 115, 10, '2023-12-03 08:27:46'),
    (95, 8, 108, 28, '2026-03-28 17:16:31'),
    (96, 1, 60, 18, '2024-04-16 12:46:06'),
    (96, 2, 139, 6, '2022-04-14 23:05:52'),
    (96, 3, 145, 8, '2025-02-19 03:12:45'),
    (96, 4, 148, 9, '2022-09-06 17:56:17'),
    (96, 5, 186, 19, '2024-05-18 03:05:34'),
    (96, 6, 132, 24, NULL),
    (96, 7, 22, 26, '2022-08-31 14:12:34'),
    (96, 8, 162, 24, '2024-08-28 21:40:05'),
    (97, 1, 13, 20, '2022-02-03 12:04:06'),
    (97, 2, 116, 23, '2025-12-28 20:30:11'),
    (97, 3, 187, 30, '2025-01-01 11:12:54'),
    (97, 4, 75, 27, '2022-04-20 18:06:54'),
    (97, 5, 152, 6, '2024-03-20 04:02:53'),
    (97, 6, 161, 23, '2023-06-10 07:27:42'),
    (97, 7, 13, 30, '2024-06-25 10:41:45'),
    (97, 8, 188, 20, '2024-06-10 02:31:31'),
    (98, 1, 21, 30, '2022-08-27 19:15:54'),
    (98, 2, 71, 13, '2024-05-22 22:47:09'),
    (98, 3, 65, 8, NULL),
    (98, 4, 154, 26, '2023-04-15 13:29:16'),
    (98, 5, 114, 13, '2023-06-29 22:43:28'),
    (98, 6, 200, 10, '2026-02-15 14:08:43'),
    (98, 7, 135, 7, '2024-12-01 04:35:56'),
    (98, 8, 37, 20, '2023-04-24 22:16:45'),
    (99, 1, 192, 12, '2025-04-05 11:00:07'),
    (99, 2, 169, 11, '2023-06-04 17:32:38'),
    (99, 3, 147, 6, '2024-12-08 02:42:39'),
    (99, 4, 164, 6, '2022-12-27 09:10:00'),
    (99, 5, 42, 14, '2026-01-19 14:25:38'),
    (99, 6, 121, 17, '2023-12-27 23:03:00'),
    (99, 7, 174, 13, '2026-01-14 11:57:50'),
    (99, 8, 37, 5, '2025-09-12 16:08:28'),
    (100, 1, 73, 17, '2025-10-26 10:29:29'),
    (100, 2, 173, 8, '2022-05-08 10:29:42'),
    (100, 3, 136, 24, '2025-09-03 12:17:19'),
    (100, 4, 166, 13, '2024-11-06 16:58:48'),
    (100, 5, 68, 25, '2024-03-04 07:49:20'),
    (100, 6, 149, 28, '2024-01-22 05:41:19'),
    (100, 7, 172, 21, '2023-08-29 14:42:44'),
    (100, 8, 86, 15, '2023-07-13 23:33:28'),
    (101, 1, 140, 5, NULL),
    (101, 2, 17, 8, NULL),
    (101, 3, 134, 16, '2025-10-17 11:51:38'),
    (101, 4, 56, 11, '2024-02-22 14:44:07'),
    (101, 5, 8, 7, NULL),
    (101, 6, 14, 24, '2023-11-05 15:37:20'),
    (101, 7, 163, 7, '2023-01-08 18:08:31'),
    (101, 8, 154, 8, '2023-07-29 01:20:47'),
    (102, 1, 178, 19, '2024-07-04 04:37:40'),
    (102, 2, 169, 13, '2025-11-09 19:13:02'),
    (102, 3, 196, 13, '2024-10-01 18:45:34'),
    (102, 4, 41, 29, '2024-05-11 12:03:11'),
    (102, 5, 15, 6, '2024-10-30 12:32:04'),
    (102, 6, 66, 10, '2024-04-02 06:50:30'),
    (102, 7, 112, 11, NULL),
    (102, 8, 156, 8, '2026-03-09 18:27:05'),
    (103, 1, 36, 11, '2025-09-01 20:35:51'),
    (103, 2, 157, 27, '2025-10-03 22:43:06'),
    (103, 3, 66, 7, '2022-08-15 13:16:20'),
    (103, 4, 146, 5, '2025-10-17 07:22:33'),
    (103, 5, 127, 6, '2022-01-03 16:41:44'),
    (103, 6, 170, 27, '2023-04-17 00:40:21'),
    (103, 7, 84, 21, '2022-01-12 12:10:18'),
    (103, 8, 181, 20, '2026-03-05 11:42:43'),
    (104, 1, 111, 22, '2022-08-06 19:00:41'),
    (104, 2, 57, 27, NULL),
    (104, 3, 199, 15, '2025-01-20 02:53:24'),
    (104, 4, 174, 25, '2022-06-21 11:36:46'),
    (104, 5, 165, 22, NULL),
    (104, 6, 87, 19, NULL),
    (104, 7, 194, 10, '2023-09-24 01:45:36'),
    (104, 8, 141, 17, NULL),
    (105, 1, 169, 8, '2025-04-27 00:18:59'),
    (105, 2, 161, 7, '2026-02-20 12:20:01'),
    (105, 3, 161, 9, '2023-08-12 15:29:49'),
    (105, 4, 9, 20, '2024-01-11 22:44:24'),
    (105, 5, 99, 22, NULL),
    (105, 6, 164, 5, '2025-10-27 22:46:42'),
    (105, 7, 9, 30, '2024-11-15 06:07:26'),
    (105, 8, 184, 8, NULL),
    (106, 1, 54, 26, '2025-11-25 02:34:16'),
    (106, 2, 137, 7, '2023-12-25 20:40:11'),
    (106, 3, 9, 25, '2026-02-27 22:37:54'),
    (106, 4, 4, 12, '2022-05-23 07:13:19'),
    (106, 5, 179, 10, '2022-02-14 15:08:50'),
    (106, 6, 161, 14, NULL),
    (106, 7, 24, 23, '2023-06-15 07:31:23'),
    (106, 8, 16, 8, '2022-11-27 08:37:44'),
    (107, 1, 127, 7, '2023-11-17 07:04:47'),
    (107, 2, 51, 15, '2025-06-02 23:56:04'),
    (107, 3, 30, 15, '2023-03-03 16:01:21'),
    (107, 4, 54, 15, '2023-06-23 21:11:39'),
    (107, 5, 16, 29, '2023-03-15 19:22:45'),
    (107, 6, 106, 22, '2025-02-23 07:46:55'),
    (107, 7, 42, 9, '2022-05-07 10:43:47'),
    (107, 8, 25, 29, '2025-03-14 14:21:50'),
    (108, 1, 40, 20, NULL),
    (108, 2, 20, 10, NULL),
    (108, 3, 22, 18, '2024-05-31 12:33:27'),
    (108, 4, 177, 27, '2026-01-18 22:03:44'),
    (108, 5, 32, 21, '2024-04-21 19:28:38'),
    (108, 6, 115, 24, '2023-06-27 07:18:42'),
    (108, 7, 177, 10, NULL),
    (108, 8, 183, 25, '2022-10-01 11:20:08'),
    (109, 1, 200, 5, '2025-07-25 02:56:17'),
    (109, 2, 142, 21, '2023-01-01 02:01:04'),
    (109, 3, 24, 12, '2026-04-26 20:58:54'),
    (109, 4, 118, 13, '2023-10-09 13:42:35'),
    (109, 5, 13, 26, '2023-04-09 14:27:24'),
    (109, 6, 121, 26, '2023-05-12 08:32:19'),
    (109, 7, 11, 16, NULL),
    (109, 8, 72, 15, '2024-02-21 00:23:03'),
    (110, 1, 157, 6, '2025-11-08 21:08:11'),
    (110, 2, 26, 10, '2023-07-01 11:07:50'),
    (110, 3, 7, 7, '2022-12-27 14:26:24'),
    (110, 4, 60, 18, '2024-10-09 18:15:26'),
    (110, 5, 50, 12, '2024-10-08 20:49:50'),
    (110, 6, 199, 8, '2023-12-09 16:39:42'),
    (110, 7, 60, 17, '2023-09-14 05:47:15'),
    (110, 8, 56, 23, NULL),
    (111, 1, 124, 18, NULL),
    (111, 2, 37, 10, '2025-11-14 14:34:42'),
    (111, 3, 99, 28, '2025-11-23 03:34:57'),
    (111, 4, 49, 11, '2024-04-17 21:52:54'),
    (111, 5, 85, 13, '2022-07-05 07:57:17'),
    (111, 6, 34, 19, '2025-12-17 08:45:10'),
    (111, 7, 107, 12, '2024-12-03 10:53:02'),
    (111, 8, 75, 23, '2023-06-12 23:18:28'),
    (112, 1, 141, 18, '2022-09-26 15:59:36'),
    (112, 2, 133, 23, '2023-11-04 11:07:49'),
    (112, 3, 121, 5, '2024-05-17 08:29:22'),
    (112, 4, 186, 12, '2024-02-06 07:52:06'),
    (112, 5, 83, 23, '2023-11-22 23:50:19'),
    (112, 6, 38, 18, '2022-01-16 18:36:42'),
    (112, 7, 11, 20, NULL),
    (112, 8, 187, 18, '2022-04-15 10:55:48'),
    (113, 1, 135, 19, '2022-11-01 11:21:01'),
    (113, 2, 126, 27, '2022-02-08 14:19:31'),
    (113, 3, 187, 9, '2023-11-09 07:44:31'),
    (113, 4, 91, 5, '2022-10-09 21:16:57'),
    (113, 5, 122, 27, '2023-05-18 16:53:36'),
    (113, 6, 117, 19, '2022-03-17 20:24:01'),
    (113, 7, 118, 10, '2025-06-13 09:51:37'),
    (113, 8, 94, 25, '2022-01-05 05:40:50'),
    (114, 1, 18, 21, '2024-10-31 07:16:50'),
    (114, 2, 8, 27, '2024-04-18 04:57:14'),
    (114, 3, 156, 30, '2023-10-06 13:57:25'),
    (114, 4, 175, 15, NULL),
    (114, 5, 188, 26, '2026-05-19 05:32:01'),
    (114, 6, 93, 17, '2022-12-11 18:15:55'),
    (114, 7, 93, 16, '2022-05-07 23:48:41'),
    (114, 8, 93, 22, '2022-07-28 04:19:23'),
    (115, 1, 181, 15, '2023-03-07 00:17:04'),
    (115, 2, 61, 28, '2026-01-26 15:03:31'),
    (115, 3, 192, 29, '2023-10-14 19:22:20'),
    (115, 4, 190, 16, '2024-09-22 15:30:50'),
    (115, 5, 68, 13, '2025-08-06 23:52:52'),
    (115, 6, 13, 16, NULL),
    (115, 7, 115, 20, '2023-01-17 05:52:43'),
    (115, 8, 181, 19, '2024-06-27 00:48:35'),
    (116, 1, 158, 11, '2022-07-23 21:32:53'),
    (116, 2, 117, 17, NULL),
    (116, 3, 45, 8, '2022-08-28 01:36:26'),
    (116, 4, 42, 20, '2023-04-05 16:15:11'),
    (116, 5, 38, 14, '2022-03-12 11:54:33'),
    (116, 6, 106, 20, '2023-02-15 04:40:26'),
    (116, 7, 88, 14, '2022-03-08 17:50:10'),
    (116, 8, 48, 30, NULL),
    (117, 1, 59, 25, '2026-06-03 09:42:41'),
    (117, 2, 85, 25, '2024-12-01 00:27:35'),
    (117, 3, 165, 23, '2026-02-19 09:51:05'),
    (117, 4, 170, 19, '2025-10-15 08:42:59'),
    (117, 5, 77, 10, '2024-08-10 05:55:26'),
    (117, 6, 66, 14, '2025-03-01 11:02:46'),
    (117, 7, 197, 16, '2023-04-06 20:54:28'),
    (117, 8, 72, 24, '2023-06-01 20:55:46');


-- ──────────────────────────────────────────────────────────────────
-- 10. ORDERS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO orders (customer_id, store_id, employee_id, order_date, status, shipping_address_id, subtotal, discount_amount, tax_amount, shipping_fee, total_amount)
VALUES
    (83, 5, 38, '2022-04-22 20:39:22', 'shipped', 113, 3567.48, 178.37, 271.13, 4.99, 3665.23),
    (288, 1, 13, '2022-04-05 15:31:12', 'delivered', 406, 7119.13, 283.95, 546.81, 4.99, 7386.98),
    (294, 3, 28, '2023-11-19 06:08:29', 'delivered', 415, 6163.55, 237.83, 474.06, 9.99, 6409.77),
    (114, 5, 37, '2025-07-31 18:55:49', 'delivered', 153, 6169.44, 0.0, 493.56, 4.99, 6667.99),
    (29, 6, 49, '2024-02-23 09:36:28', 'delivered', 38, 286.35, 0.0, 22.91, 14.99, 324.25),
    (111, 8, 64, '2024-10-06 19:31:01', 'delivered', 148, 3973.74, 0.0, 317.9, 4.99, 4296.63),
    (90, 8, 60, '2022-09-12 01:43:15', 'shipped', 122, 3196.95, 25.55, 253.71, 4.99, 3430.11),
    (242, 2, 17, '2024-07-20 01:27:49', 'shipped', 340, 4415.56, 25.98, 351.17, 4.99, 4745.74),
    (133, 8, 59, '2024-03-05 11:58:27', 'delivered', 178, 3361.69, 187.57, 253.93, 14.99, 3443.04),
    (272, 2, 21, '2026-05-06 05:18:26', 'shipped', 380, 949.2, 47.46, 72.14, 9.99, 983.87),
    (155, 5, 41, '2021-10-25 17:51:24', 'delivered', 213, 3810.04, 140.53, 293.56, 14.99, 3978.06),
    (258, 4, 36, '2026-03-21 20:32:00', 'delivered', 359, 2964.34, 68.39, 231.68, 4.99, 3132.62),
    (176, 3, 3, '2022-01-04 11:13:30', 'shipped', 242, 585.92, 34.18, 44.14, 4.99, 600.87),
    (40, 1, 14, '2021-05-13 02:17:34', 'shipped', 54, 85.54, 0.0, 6.84, 14.99, 107.37),
    (6, 2, 19, '2022-10-01 03:49:20', 'delivered', 9, 4154.21, 32.08, 329.77, 14.99, 4466.89),
    (83, 4, 29, '2021-11-04 21:51:19', 'delivered', 113, 379.68, 37.97, 27.34, 14.99, 384.04),
    (276, 1, 9, '2022-10-27 22:08:37', 'cancelled', 387, 6845.72, 277.19, 525.48, 4.99, 7099.0),
    (161, 2, 19, '2022-02-27 06:21:38', 'delivered', 222, 1911.73, 0.0, 152.94, 9.99, 2074.66),
    (228, 4, 32, '2024-08-22 15:08:05', 'shipped', 317, 588.68, 88.3, 40.03, 4.99, 545.4),
    (252, 2, 19, '2021-09-22 02:30:01', 'processing', 352, 10618.9, 845.48, 781.87, 4.99, 10560.28),
    (140, 7, 56, '2025-02-14 09:23:18', 'delivered', 192, 2707.22, 0.0, 216.58, 9.99, 2933.79),
    (28, 2, 2, '2022-07-11 10:20:33', 'delivered', 37, 942.19, 59.28, 70.63, 4.99, 958.54),
    (176, 1, 1, '2024-08-30 05:25:39', 'cancelled', 242, 77.56, 0.0, 6.2, 4.99, 88.75),
    (91, 5, 38, '2025-03-07 23:22:32', 'delivered', 123, 951.9, 15.28, 74.93, 9.99, 1021.54),
    (135, 8, 64, '2026-04-01 18:21:23', 'delivered', 182, 7265.03, 129.86, 570.81, 9.99, 7715.97),
    (177, 6, 6, '2023-01-29 19:01:32', 'shipped', 243, 2215.18, 69.33, 171.67, 0.0, 2317.52),
    (291, 7, 57, '2026-01-01 19:39:19', 'pending', 409, 1436.19, 44.27, 111.35, 4.99, 1508.26),
    (86, 5, 42, '2022-09-19 20:12:48', 'delivered', 117, 189.28, 0.0, 15.14, 0.0, 204.42),
    (116, 2, 19, '2021-10-22 07:51:00', 'delivered', 156, 10785.18, 103.17, 854.56, 4.99, 11541.56),
    (103, 7, 58, '2024-11-09 03:10:27', 'delivered', 139, 6342.11, 214.42, 490.22, 4.99, 6622.9),
    (154, 7, 51, '2026-05-24 13:03:34', 'shipped', 212, 651.69, 0.0, 52.14, 9.99, 713.82),
    (224, 7, 7, '2022-09-20 13:30:14', 'processing', 313, 4133.2, 206.66, 314.12, 0.0, 4240.66),
    (11, 1, 9, '2023-09-03 06:26:10', 'delivered', 16, 238.52, 35.78, 16.22, 9.99, 228.95),
    (72, 4, NULL, '2025-04-04 05:14:01', 'cancelled', 99, 1884.23, 113.11, 141.69, 9.99, 1922.8),
    (74, 2, 17, '2024-09-27 09:39:43', 'delivered', 102, 4249.43, 199.53, 323.99, 0.0, 4373.89),
    (28, 4, 34, '2023-08-19 20:43:50', 'delivered', 37, 870.65, 25.11, 67.64, 14.99, 928.17),
    (131, 5, NULL, '2023-01-02 13:12:15', 'delivered', 176, 511.18, 54.92, 36.5, 4.99, 497.75),
    (252, 8, 63, '2024-08-05 05:53:28', 'delivered', 352, 170.4, 8.52, 12.95, 4.99, 179.82),
    (281, 6, 6, '2021-06-11 20:46:10', 'delivered', 396, 268.26, 2.53, 21.26, 4.99, 291.98),
    (128, 3, 27, '2023-09-20 08:07:31', 'delivered', 173, 715.42, 35.59, 54.39, 4.99, 739.21),
    (293, 4, NULL, '2021-03-13 08:46:26', 'cancelled', 413, 5017.93, 13.11, 400.39, 4.99, 5410.2),
    (223, 8, 65, '2022-01-04 04:55:16', 'shipped', 312, 9427.46, 0.0, 754.2, 4.99, 10186.65),
    (145, 4, 34, '2022-03-30 10:17:16', 'pending', 200, 1339.92, 0.0, 107.19, 4.99, 1452.1),
    (109, 7, 54, '2021-08-15 23:25:18', 'processing', 146, 1829.49, 274.42, 124.41, 4.99, 1684.47),
    (24, 1, 14, '2023-07-29 20:34:58', 'refunded', 31, 2383.9, 274.68, 168.74, 9.99, 2287.95),
    (272, 7, NULL, '2021-12-30 00:22:31', 'delivered', 380, 4883.52, 451.0, 354.6, 9.99, 4797.11),
    (136, 6, 45, '2023-09-08 08:35:06', 'delivered', 184, 6677.85, 0.0, 534.23, 4.99, 7217.07),
    (254, 1, 15, '2024-11-23 05:02:15', 'delivered', 354, 1364.08, 0.0, 109.13, 0.0, 1473.21),
    (289, 4, 4, '2025-06-23 06:33:05', 'delivered', 407, 1833.95, 272.44, 124.92, 0.0, 1686.43),
    (63, 7, 51, '2023-10-03 04:46:01', 'processing', 86, 206.84, 0.0, 16.55, 14.99, 238.38),
    (169, 1, 15, '2023-10-07 11:27:11', 'cancelled', 231, 3834.28, 70.11, 301.13, 9.99, 4075.29),
    (207, 5, 38, '2022-01-10 16:44:09', 'delivered', 287, 3150.91, 7.38, 251.48, 4.99, 3400.01),
    (217, 6, 49, '2026-05-14 11:22:32', 'delivered', 303, 4627.08, 925.42, 296.13, 9.99, 4007.78),
    (80, 8, 59, '2023-06-23 04:23:18', 'delivered', 110, 262.2, 0.0, 20.98, 14.99, 298.17),
    (128, 7, 7, '2025-09-08 21:06:55', 'confirmed', 173, 1542.36, 77.12, 117.22, 4.99, 1587.45),
    (292, 5, 37, '2025-04-14 03:32:52', 'pending', 411, 5347.35, 100.31, 419.76, 4.99, 5671.79),
    (96, 4, 32, '2021-11-27 08:35:19', 'delivered', 130, 4804.8, 0.0, 384.38, 0.0, 5189.18),
    (208, 8, 63, '2024-05-12 05:07:43', 'delivered', 289, 333.58, 0.0, 26.69, 0.0, 360.27),
    (97, 1, 10, '2023-01-22 04:26:22', 'delivered', 131, 18987.69, 2019.7, 1357.44, 4.99, 18330.42),
    (292, 7, NULL, '2021-01-25 11:08:56', 'processing', 411, 8139.43, 64.59, 645.99, 4.99, 8725.82),
    (138, 7, 51, '2025-03-18 06:07:37', 'delivered', 188, 599.0, 0.0, 47.92, 4.99, 651.91),
    (240, 3, 27, '2024-07-19 03:24:52', 'delivered', 336, 5387.94, 269.4, 409.48, 0.0, 5528.02),
    (252, 2, 18, '2023-08-02 09:55:35', 'shipped', 352, 3904.2, 240.86, 293.07, 4.99, 3961.4),
    (182, 1, 12, '2022-04-15 16:40:35', 'delivered', 249, 4114.06, 356.55, 300.6, 9.99, 4068.1),
    (150, 8, 65, '2021-11-05 11:54:55', 'processing', 205, 1186.33, 103.1, 86.66, 9.99, 1179.88),
    (88, 2, 20, '2024-07-13 09:17:04', 'delivered', 120, 4058.92, 405.89, 292.24, 4.99, 3950.26),
    (265, 6, 50, '2022-03-29 07:33:08', 'delivered', 369, 12429.53, 777.76, 932.14, 9.99, 12593.9),
    (156, 6, 6, '2023-05-20 05:57:51', 'cancelled', 214, 2130.34, 187.99, 155.39, 9.99, 2107.73),
    (277, 5, 40, '2025-06-08 17:37:11', 'delivered', 389, 6088.98, 389.59, 455.95, 14.99, 6170.33),
    (191, 5, 41, '2022-01-20 16:10:04', 'confirmed', 265, 177.42, 8.87, 13.48, 0.0, 182.03),
    (298, 4, 32, '2025-11-15 12:30:31', 'delivered', 420, 12816.35, 953.7, 949.01, 9.99, 12821.65),
    (218, 3, 28, '2021-08-31 13:31:19', 'delivered', 304, 11375.12, 973.26, 832.15, 0.0, 11234.01),
    (235, 3, 22, '2022-10-23 15:46:37', 'delivered', 329, 4914.32, 737.15, 334.17, 4.99, 4516.33),
    (210, 2, NULL, '2025-11-12 09:52:12', 'delivered', 292, 3144.03, 57.35, 246.93, 9.99, 3343.6),
    (179, 2, 18, '2025-02-03 23:06:54', 'delivered', 246, 2535.43, 123.36, 192.97, 9.99, 2615.03),
    (120, 7, 7, '2024-10-08 15:38:51', 'delivered', 161, 259.42, 25.94, 18.68, 4.99, 257.15),
    (159, 2, 2, '2022-08-21 20:22:36', 'refunded', 218, 7654.81, 725.48, 554.35, 9.99, 7493.68),
    (274, 6, 6, '2025-03-07 22:53:09', 'delivered', 383, 877.8, 0.0, 70.22, 0.0, 948.02),
    (132, 2, NULL, '2021-11-05 14:51:08', 'delivered', 177, 5655.62, 260.78, 431.59, 4.99, 5831.42),
    (153, 7, NULL, '2022-03-19 14:37:43', 'delivered', 210, 879.34, 59.03, 65.62, 9.99, 895.92),
    (138, 1, 14, '2021-07-23 08:55:05', 'delivered', 188, 776.93, 0.0, 62.15, 9.99, 849.07),
    (73, 6, 45, '2023-02-01 16:33:54', 'delivered', 101, 6272.17, 73.14, 495.92, 4.99, 6699.94),
    (180, 4, 36, '2023-05-25 00:05:24', 'confirmed', 247, 13209.48, 1933.97, 902.04, 14.99, 12192.54),
    (126, 6, 50, '2026-02-06 14:58:44', 'delivered', 170, 1474.96, 60.06, 113.19, 4.99, 1533.08),
    (251, 7, 51, '2025-08-01 12:36:18', 'confirmed', 351, 2746.36, 131.03, 209.23, 4.99, 2829.55),
    (144, 6, 47, '2022-11-19 01:57:58', 'shipped', 199, 11988.3, 37.43, 956.07, 0.0, 12906.94),
    (290, 3, NULL, '2022-02-03 10:44:38', 'delivered', 408, 1162.33, 35.59, 90.14, 9.99, 1226.87),
    (130, 8, NULL, '2024-08-19 23:57:49', 'delivered', 175, 380.31, 0.0, 30.42, 14.99, 425.72),
    (266, 8, 8, '2022-11-29 15:31:41', 'confirmed', 371, 4136.34, 517.57, 289.5, 4.99, 3913.26),
    (101, 3, 22, '2026-04-29 21:32:49', 'delivered', 137, 7207.32, 720.73, 518.93, 4.99, 7010.51),
    (129, 4, NULL, '2023-01-11 13:21:03', 'refunded', 174, 255.6, 12.78, 19.43, 4.99, 267.24),
    (225, 2, 19, '2022-01-23 19:43:44', 'processing', 314, 5096.56, 0.0, 407.72, 9.99, 5514.27),
    (32, 8, NULL, '2026-03-13 11:58:24', 'delivered', 42, 2113.7, 105.69, 160.64, 4.99, 2173.65),
    (211, 4, 4, '2024-11-09 16:47:35', 'delivered', 293, 1417.69, 37.18, 110.44, 9.99, 1500.94),
    (261, 5, 43, '2026-04-13 21:59:51', 'delivered', 364, 781.2, 10.67, 61.64, 4.99, 837.16),
    (160, 3, NULL, '2023-08-18 00:25:57', 'delivered', 220, 4671.22, 726.88, 315.55, 9.99, 4269.88),
    (175, 4, 35, '2026-02-07 09:31:06', 'delivered', 241, 2048.08, 128.39, 153.58, 4.99, 2078.26),
    (170, 7, 52, '2021-01-21 21:28:52', 'delivered', 232, 31.86, 1.59, 2.42, 0.0, 32.69),
    (300, 6, NULL, '2021-04-03 05:31:00', 'shipped', 422, 9705.87, 946.02, 700.79, 0.0, 9460.64),
    (52, 1, 10, '2024-03-23 06:31:43', 'delivered', 71, 438.9, 0.0, 35.11, 4.99, 479.0),
    (88, 7, 51, '2022-01-04 03:30:09', 'processing', 120, 9079.7, 8.55, 725.69, 4.99, 9801.83),
    (24, 4, 32, '2022-04-07 13:57:09', 'delivered', 31, 326.37, 48.96, 22.19, 9.99, 309.59),
    (108, 2, 21, '2026-03-26 09:15:24', 'confirmed', 145, 13323.78, 44.55, 1062.34, 4.99, 14346.56),
    (299, 1, 11, '2024-11-05 13:31:58', 'delivered', 421, 3365.46, 140.23, 258.02, 4.99, 3488.24),
    (239, 6, 50, '2024-09-05 17:57:34', 'delivered', 334, 5539.63, 546.21, 399.47, 4.99, 5397.88),
    (142, 4, NULL, '2021-08-10 16:08:35', 'delivered', 195, 10540.34, 111.45, 834.31, 4.99, 11268.19),
    (7, 8, 60, '2024-05-20 00:08:32', 'shipped', 10, 7202.8, 686.1, 521.34, 0.0, 7038.04),
    (214, 4, 36, '2021-04-04 12:43:20', 'delivered', 299, 8290.85, 554.11, 618.94, 0.0, 8355.68),
    (72, 3, 26, '2025-11-01 07:22:59', 'delivered', 99, 1494.43, 8.42, 118.88, 4.99, 1609.88),
    (284, 3, NULL, '2026-02-18 14:04:26', 'delivered', 400, 16676.72, 0.0, 1334.14, 4.99, 18015.85),
    (266, 1, 14, '2024-04-30 02:55:22', 'processing', 371, 667.16, 0.0, 53.37, 0.0, 720.53),
    (67, 4, 35, '2022-05-09 07:35:16', 'delivered', 91, 5390.73, 592.67, 383.85, 4.99, 5186.9),
    (169, 8, 8, '2021-10-11 01:06:29', 'delivered', 231, 2253.38, 28.39, 178.0, 14.99, 2417.98),
    (49, 7, 7, '2023-01-15 16:58:24', 'cancelled', 67, 863.19, 43.16, 65.6, 9.99, 895.62),
    (211, 2, 2, '2021-11-23 22:06:42', 'delivered', 293, 631.62, 20.1, 48.92, 9.99, 670.43),
    (205, 4, 4, '2023-02-18 14:31:04', 'processing', 285, 1014.03, 0.0, 81.12, 9.99, 1105.14),
    (72, 8, 60, '2022-06-15 00:02:41', 'delivered', 99, 4011.04, 66.5, 315.56, 4.99, 4265.09),
    (268, 2, 17, '2024-10-11 10:02:48', 'confirmed', 374, 2439.32, 243.93, 175.63, 14.99, 2386.01),
    (103, 2, NULL, '2021-03-28 19:40:04', 'refunded', 139, 3386.5, 330.13, 244.51, 0.0, 3300.88),
    (168, 6, 46, '2026-04-25 19:01:16', 'shipped', 230, 2584.6, 35.06, 203.96, 4.99, 2758.49),
    (35, 4, 35, '2021-11-13 07:46:16', 'delivered', 46, 5606.92, 426.8, 414.41, 4.99, 5599.52),
    (120, 1, 9, '2023-08-18 13:25:22', 'shipped', 161, 4416.56, 0.0, 353.32, 9.99, 4779.87),
    (169, 3, 3, '2025-06-07 07:05:42', 'delivered', 231, 3808.2, 333.49, 277.98, 9.99, 3762.68),
    (196, 6, 6, '2021-07-20 18:11:01', 'delivered', 272, 2969.54, 148.48, 225.69, 0.0, 3046.75),
    (89, 4, 29, '2024-08-17 06:44:39', 'delivered', 121, 12931.88, 2370.66, 844.9, 4.99, 11411.11),
    (41, 6, 45, '2025-01-02 10:56:28', 'delivered', 55, 9983.21, 213.79, 781.55, 0.0, 10550.97),
    (233, 5, 43, '2021-08-12 12:12:33', 'delivered', 325, 19059.7, 2226.22, 1346.68, 4.99, 18185.15),
    (20, 2, 19, '2022-05-20 10:37:00', 'shipped', 27, 16990.07, 1497.39, 1239.41, 9.99, 16742.08),
    (186, 1, 10, '2023-03-23 22:13:44', 'delivered', 256, 393.21, 9.23, 30.72, 14.99, 429.69),
    (42, 4, 30, '2024-08-19 05:50:39', 'shipped', 57, 2412.28, 186.67, 178.05, 4.99, 2408.65),
    (74, 5, 42, '2023-08-16 05:37:37', 'pending', 102, 749.5, 32.32, 57.37, 9.99, 784.54),
    (91, 6, 45, '2022-09-08 05:28:50', 'delivered', 123, 4509.16, 117.0, 351.37, 0.0, 4743.53),
    (64, 5, NULL, '2021-04-03 04:06:20', 'delivered', 87, 2182.7, 10.58, 173.77, 4.99, 2350.88),
    (249, 8, 64, '2023-11-12 15:00:06', 'delivered', 349, 1442.52, 132.8, 104.78, 9.99, 1424.49),
    (206, 3, NULL, '2022-01-17 19:40:51', 'delivered', 286, 6992.9, 323.94, 533.52, 9.99, 7212.47),
    (185, 1, 13, '2024-10-12 09:52:07', 'shipped', 254, 5636.63, 1061.28, 366.03, 9.99, 4951.37),
    (293, 1, NULL, '2021-09-28 13:53:35', 'delivered', 413, 1639.18, 80.39, 124.7, 14.99, 1698.48),
    (144, 4, 35, '2022-01-18 10:51:36', 'delivered', 199, 8460.81, 525.51, 634.82, 4.99, 8575.11),
    (58, 2, 19, '2022-08-08 13:57:20', 'delivered', 79, 383.97, 0.0, 30.72, 4.99, 419.68),
    (1, 5, NULL, '2025-07-23 01:27:27', 'shipped', 1, 3153.62, 130.6, 241.84, 9.99, 3274.86),
    (256, 8, NULL, '2023-05-31 11:18:02', 'processing', 357, 1423.8, 0.0, 113.9, 14.99, 1552.69),
    (294, 8, 61, '2025-03-18 23:46:42', 'delivered', 415, 4598.46, 490.63, 328.63, 9.99, 4446.45),
    (82, 1, 13, '2024-08-05 11:13:14', 'delivered', 112, 12067.28, 8.42, 964.71, 4.99, 13028.56),
    (28, 5, 38, '2025-11-29 03:58:32', 'processing', 37, 2553.89, 128.92, 194.0, 14.99, 2633.96),
    (219, 3, 22, '2024-01-10 18:15:13', 'refunded', 306, 2868.77, 143.44, 218.03, 4.99, 2948.35),
    (204, 8, 60, '2024-03-12 05:44:17', 'delivered', 283, 317.28, 47.59, 21.58, 9.99, 301.26),
    (228, 6, NULL, '2021-12-29 08:23:13', 'processing', 317, 3928.71, 6.56, 313.77, 14.99, 4250.92),
    (293, 3, NULL, '2021-07-17 06:46:35', 'delivered', 413, 6505.18, 327.42, 494.22, 4.99, 6676.97),
    (229, 6, NULL, '2022-02-05 05:12:59', 'delivered', 319, 5789.63, 801.86, 399.02, 0.0, 5386.79),
    (279, 3, 3, '2023-02-11 13:21:19', 'delivered', 393, 1718.88, 54.85, 133.12, 0.0, 1797.15),
    (111, 3, 24, '2026-01-13 14:32:57', 'delivered', 148, 5249.28, 0.0, 419.94, 9.99, 5679.21),
    (43, 5, 38, '2025-07-23 23:55:21', 'shipped', 59, 582.82, 13.82, 45.52, 9.99, 624.51),
    (127, 2, 19, '2021-12-08 17:27:30', 'delivered', 171, 9772.91, 1085.27, 695.01, 14.99, 9397.65),
    (64, 3, 25, '2026-01-04 10:07:37', 'delivered', 87, 3046.99, 112.41, 234.77, 9.99, 3179.34),
    (273, 7, 52, '2023-03-16 20:59:27', 'pending', 382, 4257.95, 302.06, 316.47, 0.0, 4272.36),
    (258, 5, 42, '2025-06-06 10:21:05', 'cancelled', 359, 403.84, 46.76, 28.57, 9.99, 395.64),
    (123, 2, 2, '2021-09-20 19:07:25', 'delivered', 166, 4014.33, 86.01, 314.27, 9.99, 4252.59),
    (271, 1, 10, '2025-06-15 12:12:46', 'cancelled', 379, 3626.83, 178.1, 275.9, 4.99, 3729.62),
    (174, 4, 29, '2023-06-21 04:47:41', 'delivered', 239, 3779.18, 495.69, 262.68, 9.99, 3556.16),
    (183, 1, 13, '2023-07-16 22:38:12', 'delivered', 251, 562.96, 0.0, 45.04, 0.0, 608.0),
    (44, 3, 28, '2021-01-22 11:16:50', 'processing', 60, 15908.34, 1029.15, 1190.34, 4.99, 16074.52),
    (72, 6, 6, '2024-01-22 02:37:58', 'cancelled', 99, 15868.88, 0.0, 1269.51, 4.99, 17143.38),
    (102, 8, 62, '2022-01-05 01:47:47', 'delivered', 138, 6019.48, 488.02, 442.52, 4.99, 5978.97),
    (27, 6, 6, '2024-09-11 09:52:52', 'delivered', 36, 6564.92, 341.86, 497.85, 9.99, 6730.9),
    (127, 7, 51, '2025-04-10 16:44:00', 'delivered', 171, 1134.24, 0.0, 90.74, 4.99, 1229.97),
    (219, 1, 9, '2021-06-08 07:30:26', 'delivered', 306, 9782.62, 899.79, 710.63, 4.99, 9598.45),
    (21, 1, NULL, '2023-09-27 07:11:14', 'shipped', 28, 2136.57, 27.98, 168.69, 9.99, 2287.27),
    (186, 6, 47, '2022-10-15 13:13:04', 'delivered', 256, 122.82, 0.0, 9.83, 9.99, 142.64),
    (98, 4, 29, '2021-08-21 15:25:39', 'cancelled', 132, 9803.29, 1356.31, 675.76, 4.99, 9127.73),
    (224, 2, 19, '2025-04-15 11:13:39', 'delivered', 313, 1198.76, 24.96, 93.9, 9.99, 1277.69),
    (254, 2, 21, '2025-05-02 06:32:51', 'delivered', 354, 7092.6, 364.2, 538.27, 9.99, 7276.66),
    (113, 5, 37, '2022-06-16 14:49:08', 'shipped', 152, 3069.61, 260.43, 224.73, 0.0, 3033.91),
    (189, 6, NULL, '2025-09-03 12:55:04', 'shipped', 261, 317.72, 7.36, 24.83, 0.0, 335.19),
    (144, 3, 3, '2025-07-28 14:36:18', 'delivered', 199, 12987.4, 992.47, 959.59, 4.99, 12959.51),
    (76, 8, NULL, '2022-07-18 22:37:50', 'delivered', 106, 12494.86, 1812.56, 854.58, 0.0, 11536.88),
    (202, 4, NULL, '2021-08-12 20:20:23', 'delivered', 280, 1011.15, 72.49, 75.09, 9.99, 1023.74),
    (68, 4, 32, '2022-03-20 03:40:53', 'cancelled', 93, 15816.7, 1272.53, 1163.53, 0.0, 15707.7),
    (137, 2, NULL, '2021-05-19 08:05:16', 'processing', 186, 12030.8, 0.0, 962.46, 4.99, 12998.25),
    (197, 2, 2, '2022-11-29 13:36:28', 'processing', 274, 2175.51, 267.15, 152.67, 4.99, 2066.02),
    (218, 3, 25, '2026-04-26 01:21:11', 'delivered', 304, 6957.84, 672.88, 502.8, 9.99, 6797.75),
    (76, 6, NULL, '2024-10-19 20:01:20', 'delivered', 106, 11894.36, 906.25, 879.05, 4.99, 11872.15),
    (212, 6, NULL, '2023-02-04 00:14:19', 'delivered', 295, 3417.12, 176.65, 259.24, 0.0, 3499.71),
    (69, 2, NULL, '2023-12-22 09:14:25', 'delivered', 95, 377.14, 17.03, 28.81, 9.99, 398.91),
    (61, 3, 3, '2024-08-12 12:34:45', 'delivered', 84, 212.56, 0.0, 17.0, 4.99, 234.55),
    (188, 3, NULL, '2021-08-28 10:24:18', 'pending', 259, 9708.42, 40.97, 773.4, 0.0, 10440.85),
    (89, 3, NULL, '2024-08-09 03:27:13', 'delivered', 121, 2594.46, 362.7, 178.54, 0.0, 2410.3),
    (29, 4, 36, '2026-02-23 22:17:19', 'delivered', 38, 8445.81, 761.7, 614.73, 0.0, 8298.84),
    (172, 1, 10, '2025-08-10 14:13:50', 'processing', 236, 2583.56, 57.99, 202.05, 0.0, 2727.62),
    (292, 1, 15, '2021-05-22 22:11:36', 'confirmed', 411, 127.44, 25.49, 8.16, 9.99, 120.1),
    (162, 7, 52, '2021-10-30 13:10:01', 'delivered', 223, 1662.83, 66.64, 127.7, 0.0, 1723.89),
    (111, 3, 23, '2025-04-08 11:29:30', 'delivered', 148, 16936.36, 284.41, 1332.16, 4.99, 17989.1),
    (8, 3, 25, '2025-08-27 21:25:14', 'delivered', 12, 1503.32, 0.0, 120.27, 0.0, 1623.59),
    (144, 6, 44, '2022-07-11 17:05:43', 'delivered', 199, 8072.42, 538.3, 602.73, 9.99, 8146.84),
    (226, 6, 48, '2024-03-06 23:49:53', 'processing', 315, 577.43, 26.1, 44.11, 0.0, 595.44),
    (205, 2, 21, '2024-12-07 05:59:19', 'delivered', 285, 2741.84, 167.06, 205.98, 0.0, 2780.76),
    (176, 8, 65, '2021-12-22 04:47:48', 'shipped', 242, 830.54, 124.58, 56.48, 0.0, 762.44),
    (17, 7, NULL, '2024-01-29 02:51:13', 'delivered', 24, 4848.63, 0.0, 387.89, 9.99, 5246.51),
    (110, 5, 5, '2021-10-15 04:55:10', 'cancelled', 147, 8719.44, 38.79, 694.45, 9.99, 9385.09),
    (288, 4, NULL, '2025-12-03 07:17:35', 'delivered', 406, 5547.09, 759.89, 382.98, 0.0, 5170.18),
    (267, 1, 10, '2026-05-25 16:19:04', 'delivered', 372, 14072.7, 1222.19, 1028.04, 4.99, 13883.54),
    (258, 2, 20, '2024-11-17 17:38:13', 'delivered', 359, 1059.98, 6.37, 84.29, 4.99, 1142.89),
    (278, 7, 56, '2026-05-25 02:27:45', 'delivered', 391, 4280.34, 99.12, 334.5, 9.99, 4525.71),
    (233, 7, NULL, '2024-12-29 21:59:35', 'refunded', 325, 1407.79, 131.67, 102.09, 4.99, 1383.2),
    (136, 5, 42, '2023-01-21 11:36:17', 'pending', 184, 11576.1, 382.24, 895.51, 9.99, 12099.36),
    (296, 7, NULL, '2026-05-31 19:59:24', 'delivered', 418, 427.55, 9.45, 33.45, 9.99, 461.54),
    (296, 7, 54, '2025-09-14 19:37:22', 'processing', 418, 11459.3, 64.93, 911.55, 0.0, 12305.92),
    (233, 6, 46, '2023-07-12 12:08:49', 'shipped', 325, 628.72, 54.94, 45.9, 14.99, 634.67),
    (297, 2, NULL, '2026-01-26 09:06:37', 'processing', 419, 665.46, 47.46, 49.44, 14.99, 682.43),
    (252, 1, 15, '2026-04-28 22:17:17', 'confirmed', 352, 1777.5, 132.17, 131.63, 4.99, 1781.95),
    (280, 1, 12, '2022-01-13 18:40:37', 'shipped', 394, 383.43, 19.17, 29.14, 9.99, 403.39),
    (59, 4, NULL, '2022-03-07 12:09:24', 'shipped', 81, 884.36, 0.0, 70.75, 4.99, 960.1),
    (254, 7, 56, '2022-08-23 19:10:03', 'shipped', 354, 686.34, 108.96, 46.19, 9.99, 633.56),
    (106, 8, 65, '2024-08-09 12:08:41', 'delivered', 143, 1191.62, 5.16, 94.92, 9.99, 1291.37),
    (18, 5, 40, '2026-02-20 04:42:45', 'delivered', 25, 9302.61, 0.0, 744.21, 4.99, 10051.81),
    (110, 8, 63, '2022-12-24 19:32:51', 'delivered', 147, 1967.96, 104.68, 149.06, 4.99, 2017.33),
    (101, 1, 15, '2021-05-26 09:03:09', 'refunded', 137, 3357.59, 155.05, 256.2, 4.99, 3463.73),
    (19, 1, 1, '2021-08-04 18:52:27', 'delivered', 26, 1516.84, 0.0, 121.35, 9.99, 1648.18),
    (192, 2, NULL, '2021-05-29 14:46:45', 'delivered', 266, 8668.21, 0.0, 693.46, 14.99, 9376.66),
    (276, 1, 1, '2023-03-18 19:43:03', 'cancelled', 387, 1330.24, 199.54, 90.46, 0.0, 1221.16),
    (195, 5, 38, '2025-12-18 17:25:27', 'delivered', 270, 801.0, 54.16, 59.75, 9.99, 816.58),
    (296, 8, 62, '2023-09-28 03:27:03', 'delivered', 418, 19504.75, 1421.29, 1446.68, 0.0, 19530.14),
    (7, 4, 34, '2022-08-07 20:08:20', 'delivered', 10, 6137.75, 613.78, 441.92, 0.0, 5965.9),
    (187, 7, 58, '2022-09-23 18:19:20', 'delivered', 258, 10395.48, 149.74, 819.66, 4.99, 11070.39),
    (55, 2, 18, '2022-08-05 01:57:01', 'shipped', 75, 1073.24, 6.37, 85.35, 0.0, 1152.22),
    (26, 7, 56, '2022-08-26 12:35:25', 'delivered', 34, 2072.4, 159.5, 153.03, 9.99, 2075.92),
    (34, 2, 19, '2024-06-10 22:08:06', 'delivered', 45, 8920.98, 0.0, 713.68, 0.0, 9634.66),
    (148, 5, 37, '2022-07-30 00:28:38', 'delivered', 203, 5793.6, 108.06, 454.84, 0.0, 6140.38),
    (88, 1, 15, '2025-12-17 19:28:35', 'pending', 120, 5705.97, 570.6, 410.83, 4.99, 5551.19),
    (49, 2, 20, '2023-11-09 21:55:02', 'delivered', 67, 2716.12, 0.0, 217.29, 4.99, 2938.4),
    (248, 2, 19, '2021-03-06 09:32:17', 'processing', 348, 7617.91, 297.37, 585.64, 14.99, 7921.17),
    (141, 8, 60, '2023-04-05 06:53:51', 'cancelled', 193, 1151.1, 75.8, 86.02, 9.99, 1171.31),
    (222, 8, 63, '2023-06-16 01:17:57', 'processing', 310, 3006.64, 0.0, 240.53, 0.0, 3247.17),
    (84, 5, 37, '2023-07-05 16:25:05', 'pending', 114, 2103.42, 210.34, 151.45, 0.0, 2044.53),
    (221, 6, 6, '2021-06-05 00:57:58', 'shipped', 309, 723.55, 45.8, 54.22, 14.99, 746.96),
    (243, 6, 49, '2024-08-05 20:36:09', 'delivered', 342, 441.51, 66.23, 30.02, 4.99, 410.29),
    (166, 3, 24, '2023-02-16 18:52:32', 'processing', 228, 20513.13, 973.31, 1563.19, 4.99, 21108.0),
    (237, 1, 1, '2024-07-31 17:58:02', 'processing', 331, 645.09, 44.84, 48.02, 4.99, 653.26),
    (28, 7, NULL, '2021-01-19 11:52:34', 'delivered', 37, 9614.38, 418.35, 735.68, 4.99, 9936.7),
    (28, 4, 36, '2025-03-19 20:35:30', 'processing', 37, 399.7, 39.97, 28.78, 9.99, 398.5),
    (1, 3, 22, '2025-06-04 00:46:46', 'processing', 1, 8974.7, 211.37, 701.07, 14.99, 9479.39),
    (95, 4, 36, '2023-03-20 15:15:05', 'delivered', 129, 2057.88, 0.0, 164.63, 4.99, 2227.5),
    (253, 6, 49, '2024-04-13 16:52:58', 'delivered', 353, 1071.24, 107.12, 77.13, 0.0, 1041.25),
    (289, 7, NULL, '2023-07-30 15:32:21', 'confirmed', 407, 7324.3, 128.78, 575.64, 0.0, 7771.16),
    (289, 6, 45, '2023-05-15 18:32:42', 'delivered', 407, 10004.56, 491.8, 761.02, 14.99, 10288.77),
    (133, 3, 26, '2025-12-21 22:58:24', 'delivered', 178, 11460.66, 50.71, 912.8, 9.99, 12332.74),
    (54, 3, 27, '2024-07-29 01:39:25', 'cancelled', 74, 448.44, 0.0, 35.88, 9.99, 494.31),
    (192, 1, 13, '2021-12-01 11:47:10', 'delivered', 266, 2683.91, 0.0, 214.71, 4.99, 2903.61),
    (299, 1, 9, '2022-09-25 09:00:48', 'confirmed', 421, 1642.71, 44.15, 127.88, 9.99, 1736.43),
    (271, 8, 61, '2025-11-08 01:52:29', 'delivered', 379, 1825.33, 42.15, 142.65, 4.99, 1930.82),
    (170, 1, 12, '2023-02-21 00:23:21', 'delivered', 232, 7876.77, 28.02, 627.9, 0.0, 8476.65),
    (299, 8, 62, '2021-04-04 03:19:27', 'confirmed', 421, 9337.35, 1345.78, 639.33, 4.99, 8635.89),
    (19, 6, 49, '2026-02-02 09:07:10', 'delivered', 26, 491.28, 73.69, 33.41, 4.99, 455.99),
    (255, 4, 34, '2025-01-23 19:53:05', 'delivered', 356, 4566.34, 264.87, 344.12, 9.99, 4655.58),
    (10, 8, NULL, '2024-03-18 00:08:38', 'delivered', 15, 1995.0, 0.0, 159.6, 0.0, 2154.6),
    (275, 1, 1, '2023-02-16 11:33:53', 'delivered', 385, 3835.32, 0.0, 306.83, 4.99, 4147.14),
    (126, 5, NULL, '2024-05-20 23:30:30', 'delivered', 170, 212.56, 0.0, 17.0, 14.99, 244.55),
    (183, 4, 32, '2024-02-15 00:33:16', 'delivered', 251, 1291.44, 73.81, 97.41, 9.99, 1325.03),
    (71, 4, 36, '2022-10-17 20:07:23', 'processing', 98, 5905.52, 416.62, 439.11, 0.0, 5928.01),
    (143, 7, 51, '2021-07-05 13:02:57', 'shipped', 197, 4971.1, 94.35, 390.14, 4.99, 5271.89),
    (173, 5, 39, '2021-03-26 23:00:05', 'delivered', 238, 4704.35, 134.66, 365.57, 4.99, 4940.25),
    (122, 3, 25, '2023-05-03 12:12:43', 'processing', 164, 9162.22, 0.0, 732.98, 4.99, 9900.19),
    (7, 2, 20, '2023-09-25 06:42:12', 'delivered', 10, 1096.58, 0.0, 87.73, 4.99, 1189.3),
    (112, 7, NULL, '2021-09-05 03:26:47', 'shipped', 150, 12504.51, 110.6, 991.51, 9.99, 13395.41),
    (226, 6, NULL, '2022-12-10 05:21:53', 'confirmed', 315, 1678.66, 52.2, 130.12, 4.99, 1761.57),
    (122, 4, 33, '2024-07-16 08:56:48', 'confirmed', 164, 6285.96, 281.2, 480.38, 14.99, 6500.13),
    (189, 1, 10, '2026-01-11 21:06:46', 'pending', 261, 5852.2, 397.66, 436.36, 14.99, 5905.89),
    (295, 7, 51, '2025-06-28 16:22:09', 'delivered', 417, 11880.57, 103.25, 942.19, 0.0, 12719.51),
    (210, 6, NULL, '2025-10-08 06:42:44', 'delivered', 292, 7964.66, 31.66, 634.64, 4.99, 8572.63),
    (300, 3, 25, '2023-11-28 05:26:23', 'delivered', 422, 227.4, 11.37, 17.28, 0.0, 233.31),
    (102, 3, 3, '2022-06-03 03:20:35', 'processing', 138, 6649.24, 610.6, 483.09, 0.0, 6521.73),
    (272, 7, 55, '2022-01-31 23:35:00', 'delivered', 380, 3356.57, 353.66, 240.23, 9.99, 3253.13),
    (245, 3, 22, '2022-04-19 01:03:34', 'cancelled', 344, 3332.95, 118.04, 257.19, 4.99, 3477.09),
    (261, 7, 56, '2023-09-17 18:55:11', 'delivered', 364, 2687.74, 15.47, 213.78, 9.99, 2896.04),
    (85, 2, 18, '2024-09-25 16:00:17', 'shipped', 115, 451.37, 14.32, 34.96, 4.99, 477.0),
    (87, 1, 1, '2025-08-05 04:37:24', 'delivered', 119, 1685.97, 72.72, 129.06, 4.99, 1747.3),
    (65, 8, 59, '2022-01-08 15:25:07', 'delivered', 89, 5166.61, 829.19, 346.99, 4.99, 4689.4),
    (233, 2, 17, '2021-04-30 04:05:37', 'delivered', 325, 5014.66, 122.34, 391.39, 4.99, 5288.7),
    (145, 3, 22, '2025-05-24 02:34:57', 'delivered', 200, 1317.26, 11.61, 104.45, 0.0, 1410.1),
    (195, 4, 35, '2025-07-07 02:02:57', 'delivered', 270, 616.9, 34.35, 46.6, 9.99, 639.14),
    (247, 5, NULL, '2021-12-16 02:43:18', 'refunded', 347, 752.35, 34.66, 57.42, 4.99, 780.1),
    (248, 8, 61, '2021-03-31 23:36:14', 'delivered', 348, 2222.61, 60.64, 172.96, 4.99, 2339.92),
    (24, 5, 39, '2025-11-14 17:07:06', 'delivered', 31, 6914.42, 227.03, 534.99, 9.99, 7232.37),
    (26, 4, 31, '2022-05-03 18:14:23', 'delivered', 34, 1199.41, 73.06, 90.11, 9.99, 1226.45),
    (204, 8, NULL, '2023-05-30 12:41:59', 'delivered', 283, 2717.96, 250.04, 197.43, 4.99, 2670.34),
    (139, 2, NULL, '2025-04-17 10:58:00', 'delivered', 190, 11289.04, 743.95, 843.61, 0.0, 11388.7),
    (52, 5, 43, '2024-03-15 23:53:38', 'delivered', 71, 11894.64, 594.73, 903.99, 4.99, 12208.89),
    (260, 4, 35, '2024-05-08 00:18:42', 'refunded', 362, 13740.91, 11.83, 1098.33, 0.0, 14827.41),
    (128, 2, NULL, '2026-03-31 08:42:43', 'delivered', 173, 2938.12, 157.51, 222.45, 4.99, 3008.05),
    (251, 8, 61, '2023-09-27 21:58:38', 'delivered', 351, 5116.92, 320.13, 383.74, 9.99, 5190.52),
    (59, 1, 15, '2022-06-15 09:57:41', 'delivered', 81, 11107.6, 806.46, 824.09, 0.0, 11125.23),
    (105, 6, 47, '2025-01-06 19:04:32', 'delivered', 142, 5970.8, 0.0, 477.66, 4.99, 6453.45),
    (97, 4, 36, '2024-11-25 19:12:57', 'delivered', 131, 698.88, 34.94, 53.11, 0.0, 717.05),
    (116, 6, 46, '2023-05-04 02:12:52', 'delivered', 156, 4561.34, 223.04, 347.06, 4.99, 4690.35),
    (268, 7, 54, '2026-03-29 11:52:38', 'delivered', 374, 6519.11, 782.43, 458.93, 4.99, 6200.6),
    (71, 8, 65, '2023-10-14 05:33:02', 'delivered', 98, 808.96, 0.0, 64.72, 4.99, 878.67),
    (268, 6, 46, '2022-06-01 02:31:46', 'cancelled', 374, 2956.0, 147.8, 224.66, 4.99, 3037.85),
    (92, 1, 15, '2023-12-11 23:00:01', 'delivered', 125, 1186.76, 133.17, 84.29, 14.99, 1152.87),
    (270, 4, NULL, '2023-08-23 08:24:29', 'delivered', 377, 3132.04, 24.98, 248.57, 9.99, 3365.63),
    (30, 1, 15, '2026-03-03 13:55:58', 'delivered', 39, 6996.1, 605.21, 511.27, 0.0, 6902.16),
    (62, 1, 1, '2023-09-04 07:10:33', 'processing', 85, 7986.32, 988.88, 559.8, 9.99, 7567.23),
    (257, 3, 22, '2022-06-21 04:53:14', 'delivered', 358, 3800.43, 0.0, 304.03, 4.99, 4109.45),
    (290, 8, NULL, '2021-10-09 08:46:17', 'shipped', 408, 3833.43, 191.67, 291.34, 14.99, 3948.09),
    (6, 4, 35, '2021-09-10 12:17:52', 'delivered', 9, 444.16, 25.49, 33.49, 4.99, 457.15),
    (72, 6, 46, '2023-04-28 13:23:56', 'cancelled', 99, 815.16, 0.0, 65.21, 4.99, 885.36),
    (231, 3, NULL, '2025-12-24 05:23:19', 'delivered', 322, 6694.02, 14.07, 534.4, 9.99, 7224.34),
    (166, 6, 6, '2023-09-29 13:48:07', 'delivered', 228, 945.55, 0.0, 75.64, 4.99, 1026.18),
    (96, 1, 15, '2026-01-19 04:08:29', 'delivered', 130, 9514.59, 352.5, 732.97, 14.99, 9910.05),
    (260, 2, 21, '2023-04-17 21:00:36', 'refunded', 362, 8408.32, 1114.27, 583.52, 0.0, 7877.57),
    (73, 6, 45, '2024-12-01 23:54:37', 'pending', 101, 6049.48, 0.0, 483.96, 9.99, 6543.43),
    (126, 3, 26, '2021-01-16 08:42:34', 'delivered', 170, 10573.92, 602.43, 797.72, 9.99, 10779.2),
    (163, 3, 26, '2023-05-30 20:31:11', 'delivered', 224, 7575.69, 76.69, 599.92, 4.99, 8103.91),
    (204, 2, 16, '2025-04-03 06:57:03', 'shipped', 283, 213.03, 0.0, 17.04, 4.99, 235.06),
    (247, 1, 14, '2022-07-12 17:49:44', 'shipped', 347, 6779.25, 388.84, 511.23, 4.99, 6906.63),
    (206, 7, 54, '2024-08-13 08:53:42', 'shipped', 286, 422.08, 21.1, 32.08, 9.99, 443.05),
    (274, 6, NULL, '2022-07-10 15:14:39', 'refunded', 383, 5487.17, 256.39, 418.46, 4.99, 5654.23),
    (190, 5, 40, '2021-03-15 02:32:59', 'delivered', 263, 436.18, 0.0, 34.89, 0.0, 471.07),
    (19, 7, 51, '2025-07-21 03:23:17', 'processing', 26, 4786.36, 943.45, 307.43, 9.99, 4160.33),
    (269, 8, NULL, '2023-10-12 16:12:07', 'delivered', 375, 242.87, 0.0, 19.43, 9.99, 272.29),
    (12, 3, 25, '2021-09-04 07:47:23', 'delivered', 17, 7643.3, 806.7, 546.93, 14.99, 7398.52),
    (96, 5, 5, '2026-02-22 11:55:35', 'delivered', 130, 825.52, 0.0, 66.04, 4.99, 896.55),
    (237, 6, NULL, '2022-11-30 12:09:00', 'pending', 331, 19016.22, 1396.86, 1409.55, 4.99, 19033.9),
    (175, 6, 50, '2022-04-17 13:26:05', 'delivered', 241, 8339.93, 26.87, 665.05, 9.99, 8988.11),
    (150, 6, 50, '2021-04-02 20:29:39', 'processing', 205, 3343.54, 625.29, 217.46, 0.0, 2935.71),
    (64, 2, 16, '2021-12-10 17:22:37', 'delivered', 87, 973.73, 71.43, 72.18, 4.99, 979.47),
    (186, 2, 20, '2026-05-22 01:02:28', 'delivered', 256, 1993.08, 215.96, 142.17, 4.99, 1924.28),
    (205, 5, NULL, '2023-11-04 20:56:05', 'delivered', 285, 428.08, 52.44, 30.05, 4.99, 410.68),
    (115, 3, 22, '2026-02-06 19:02:34', 'delivered', 154, 3502.24, 152.69, 267.96, 9.99, 3627.5),
    (235, 6, 46, '2022-06-29 08:40:43', 'delivered', 329, 807.02, 0.0, 64.56, 4.99, 876.57),
    (228, 4, 35, '2025-04-04 02:43:45', 'delivered', 317, 1357.29, 134.98, 97.79, 0.0, 1320.1),
    (276, 2, 19, '2025-07-18 14:39:45', 'delivered', 387, 7957.75, 540.55, 593.38, 9.99, 8020.57),
    (58, 3, 26, '2022-03-18 00:33:58', 'cancelled', 79, 4626.08, 47.46, 366.29, 4.99, 4949.9),
    (19, 3, NULL, '2023-06-16 02:55:55', 'pending', 26, 1738.77, 6.49, 138.58, 4.99, 1875.85),
    (66, 3, 27, '2023-03-11 10:06:28', 'delivered', 90, 377.4, 18.87, 28.68, 0.0, 387.21),
    (261, 7, 52, '2023-12-06 10:25:18', 'delivered', 364, 9234.67, 109.36, 730.02, 4.99, 9860.32),
    (62, 4, 35, '2025-11-05 02:08:12', 'cancelled', 85, 189.28, 18.93, 13.63, 4.99, 188.97),
    (51, 6, 47, '2025-09-15 23:52:50', 'refunded', 70, 11595.62, 179.8, 913.27, 0.0, 12329.09),
    (33, 3, 3, '2022-10-08 09:37:27', 'shipped', 43, 5613.95, 55.96, 444.64, 4.99, 6007.62),
    (58, 8, 61, '2026-01-04 18:21:56', 'delivered', 79, 10194.1, 240.24, 796.31, 9.99, 10760.16),
    (226, 2, 16, '2025-02-23 20:37:58', 'pending', 315, 11742.04, 809.72, 874.59, 4.99, 11811.9),
    (272, 8, NULL, '2023-07-22 06:12:02', 'cancelled', 380, 679.06, 42.31, 50.94, 9.99, 697.68),
    (81, 6, 50, '2026-01-24 07:32:20', 'delivered', 111, 5758.02, 514.58, 419.48, 4.99, 5667.92),
    (202, 7, NULL, '2024-06-09 10:28:17', 'confirmed', 280, 2046.99, 19.59, 162.19, 4.99, 2194.58),
    (196, 6, 46, '2022-10-30 22:03:35', 'delivered', 272, 11487.55, 2018.79, 757.5, 4.99, 10231.25),
    (128, 5, 42, '2021-07-04 06:58:59', 'processing', 173, 1610.14, 149.74, 116.83, 9.99, 1587.22),
    (78, 5, 37, '2024-09-23 15:07:24', 'shipped', 108, 5645.99, 615.11, 402.47, 4.99, 5438.34),
    (165, 8, 63, '2023-11-01 15:10:55', 'shipped', 227, 10355.06, 982.86, 749.78, 9.99, 10131.97),
    (263, 6, NULL, '2024-09-20 08:30:36', 'refunded', 366, 1269.27, 44.79, 97.96, 4.99, 1327.43),
    (38, 7, 57, '2024-11-03 02:30:56', 'cancelled', 50, 890.85, 0.0, 71.27, 9.99, 972.11),
    (222, 1, 12, '2021-01-20 17:47:06', 'delivered', 310, 13431.64, 546.72, 1030.79, 4.99, 13920.7),
    (296, 3, 23, '2022-10-03 11:13:25', 'delivered', 418, 1298.64, 129.86, 93.5, 4.99, 1267.27),
    (162, 4, 31, '2023-07-31 04:03:40', 'shipped', 223, 13062.43, 0.0, 1044.99, 9.99, 14117.41),
    (195, 1, 14, '2022-09-10 03:30:11', 'shipped', 270, 9150.76, 756.8, 671.52, 4.99, 9070.47),
    (108, 2, 17, '2025-01-25 00:41:38', 'shipped', 145, 51.71, 0.0, 4.14, 9.99, 65.84),
    (52, 6, 47, '2021-07-22 21:32:19', 'delivered', 71, 5623.51, 594.83, 402.29, 9.99, 5440.96),
    (128, 3, 23, '2025-05-31 07:15:39', 'processing', 173, 15891.46, 1142.06, 1179.95, 14.99, 15944.34),
    (93, 6, 44, '2022-05-20 11:27:42', 'pending', 127, 571.35, 66.8, 40.36, 0.0, 544.91),
    (241, 1, 10, '2024-06-20 12:54:30', 'confirmed', 338, 3439.14, 0.0, 275.13, 4.99, 3719.26),
    (275, 8, NULL, '2026-02-18 07:09:10', 'delivered', 385, 509.76, 0.0, 40.78, 14.99, 565.53),
    (277, 6, 44, '2025-01-24 10:35:34', 'delivered', 389, 19751.7, 16.68, 1578.8, 9.99, 21323.81),
    (237, 5, 38, '2023-10-16 21:16:40', 'delivered', 331, 5539.26, 295.55, 419.5, 9.99, 5673.2),
    (18, 4, 33, '2021-02-06 09:20:53', 'delivered', 25, 10087.45, 456.31, 770.49, 9.99, 10411.62),
    (173, 3, 28, '2025-09-02 09:00:32', 'delivered', 238, 481.17, 48.12, 34.64, 4.99, 472.68),
    (14, 3, NULL, '2024-11-22 04:42:33', 'delivered', 20, 1105.98, 0.0, 88.48, 4.99, 1199.45),
    (43, 3, 24, '2022-03-17 06:32:44', 'delivered', 59, 2351.7, 125.52, 178.09, 9.99, 2414.26),
    (269, 1, 13, '2025-08-04 00:50:41', 'shipped', 375, 4299.98, 436.79, 309.06, 14.99, 4187.24),
    (268, 7, 57, '2023-09-28 04:11:26', 'processing', 374, 5801.93, 0.0, 464.15, 4.99, 6271.07),
    (125, 7, 56, '2024-04-29 19:02:53', 'delivered', 169, 878.44, 0.0, 70.28, 4.99, 953.71),
    (78, 4, 32, '2023-10-15 09:53:30', 'pending', 108, 5451.6, 272.58, 414.32, 9.99, 5603.33),
    (225, 5, 43, '2022-04-23 10:57:30', 'confirmed', 314, 5690.78, 45.8, 451.6, 0.0, 6096.58),
    (250, 5, 37, '2021-10-03 04:28:40', 'refunded', 350, 3369.02, 302.27, 245.34, 9.99, 3322.08),
    (129, 6, NULL, '2021-11-11 04:52:20', 'delivered', 174, 19017.78, 1006.65, 1440.89, 9.99, 19462.01),
    (56, 2, 2, '2023-01-12 08:22:22', 'delivered', 77, 3850.25, 113.8, 298.92, 0.0, 4035.37),
    (51, 5, 5, '2024-11-19 16:17:28', 'delivered', 70, 467.74, 0.0, 37.42, 9.99, 515.15),
    (83, 4, 36, '2023-09-28 01:11:52', 'delivered', 113, 986.2, 47.59, 75.09, 4.99, 1018.69),
    (208, 6, 45, '2024-04-03 23:54:39', 'shipped', 289, 1433.11, 95.85, 106.98, 9.99, 1454.23),
    (287, 3, 22, '2022-09-10 02:09:06', 'processing', 404, 1617.69, 41.92, 126.06, 4.99, 1706.82),
    (281, 3, 25, '2021-03-23 21:29:00', 'delivered', 396, 598.08, 0.0, 47.85, 4.99, 650.92),
    (248, 8, 61, '2024-07-05 01:04:24', 'shipped', 348, 2631.97, 225.19, 192.54, 4.99, 2604.31),
    (127, 3, NULL, '2025-04-26 14:30:01', 'delivered', 171, 5346.19, 28.22, 425.44, 14.99, 5758.4),
    (287, 1, 15, '2022-04-05 10:44:29', 'confirmed', 404, 8370.69, 1099.0, 581.74, 9.99, 7863.42),
    (111, 8, 62, '2023-10-24 22:20:43', 'shipped', 148, 9190.52, 531.76, 692.7, 9.99, 9361.45),
    (92, 3, NULL, '2025-03-18 20:00:53', 'delivered', 125, 9491.94, 837.28, 692.37, 0.0, 9347.03),
    (221, 5, 38, '2023-03-21 08:42:11', 'delivered', 309, 349.92, 3.42, 27.72, 0.0, 374.22),
    (286, 1, 9, '2022-06-08 13:14:54', 'pending', 403, 4942.74, 649.5, 343.46, 0.0, 4636.7),
    (192, 3, 23, '2025-04-26 05:10:18', 'processing', 266, 3863.8, 246.83, 289.36, 0.0, 3906.33),
    (80, 6, 49, '2024-10-23 16:29:51', 'cancelled', 110, 8264.37, 1150.43, 569.12, 14.99, 7698.05),
    (51, 2, 17, '2025-06-27 09:07:59', 'delivered', 70, 8892.92, 0.0, 711.43, 0.0, 9604.35),
    (248, 7, 54, '2021-06-21 05:42:44', 'delivered', 348, 2969.54, 0.0, 237.56, 4.99, 3212.09),
    (89, 6, 6, '2021-05-27 16:02:58', 'refunded', 121, 12935.14, 1248.52, 934.93, 0.0, 12621.55),
    (38, 4, 4, '2021-05-21 12:52:57', 'cancelled', 50, 197.97, 29.7, 13.46, 9.99, 191.72),
    (91, 7, 55, '2024-06-02 20:12:56', 'confirmed', 123, 2161.92, 250.48, 152.92, 9.99, 2074.35),
    (105, 5, 5, '2024-07-16 02:48:34', 'delivered', 142, 13209.56, 4.73, 1056.39, 9.99, 14271.21),
    (60, 3, 28, '2021-07-26 14:37:23', 'shipped', 83, 5796.38, 0.0, 463.71, 0.0, 6260.09),
    (104, 2, 18, '2022-09-16 19:51:04', 'processing', 141, 6861.0, 0.0, 548.88, 4.99, 7414.87),
    (43, 2, 19, '2024-02-27 08:27:00', 'delivered', 59, 974.54, 96.19, 70.27, 9.99, 958.61),
    (79, 6, 47, '2022-06-30 08:23:29', 'delivered', 109, 196.51, 20.53, 14.08, 4.99, 195.05),
    (100, 6, 50, '2021-03-20 15:13:33', 'delivered', 136, 189.28, 9.46, 14.39, 4.99, 199.2),
    (163, 1, NULL, '2021-07-22 08:32:43', 'delivered', 224, 3120.47, 80.94, 243.16, 9.99, 3292.68),
    (38, 1, 15, '2025-11-11 13:31:20', 'delivered', 50, 1020.65, 114.48, 72.49, 14.99, 993.65),
    (79, 8, 63, '2022-11-27 10:42:29', 'processing', 109, 143.12, 0.0, 11.45, 4.99, 159.56),
    (278, 4, 30, '2026-05-01 11:13:08', 'delivered', 391, 5477.49, 0.0, 438.2, 4.99, 5920.68),
    (98, 4, 33, '2024-12-10 15:48:49', 'delivered', 132, 4296.64, 3.42, 343.46, 4.99, 4641.67),
    (197, 7, 57, '2021-03-16 01:17:45', 'delivered', 274, 1794.13, 62.58, 138.52, 4.99, 1875.07),
    (272, 1, 9, '2021-09-24 09:59:16', 'pending', 380, 205.9, 0.0, 16.47, 14.99, 237.36),
    (110, 5, 41, '2026-04-21 07:31:20', 'cancelled', 147, 3921.49, 32.11, 311.15, 9.99, 4210.52),
    (241, 5, 39, '2021-12-19 04:46:00', 'delivered', 338, 116.23, 14.16, 8.17, 4.99, 115.23),
    (11, 6, 45, '2024-10-21 19:35:49', 'cancelled', 16, 2460.46, 198.07, 180.99, 0.0, 2443.38),
    (101, 6, 44, '2024-01-08 01:13:57', 'delivered', 137, 4182.93, 678.16, 280.38, 14.99, 3800.14),
    (157, 5, 42, '2023-11-15 15:09:12', 'confirmed', 215, 2865.06, 281.53, 206.68, 4.99, 2795.2),
    (139, 7, 58, '2024-08-11 22:04:29', 'delivered', 190, 1763.64, 45.62, 137.44, 14.99, 1870.45),
    (164, 2, NULL, '2022-02-04 07:34:48', 'delivered', 226, 184.53, 0.0, 14.76, 0.0, 199.29),
    (45, 2, NULL, '2021-02-11 18:41:51', 'delivered', 61, 879.75, 65.53, 65.14, 0.0, 879.36),
    (72, 4, 29, '2022-07-31 13:27:39', 'processing', 99, 4804.8, 480.48, 345.95, 4.99, 4675.26),
    (199, 6, 46, '2025-01-19 00:25:16', 'delivered', 277, 5223.1, 31.66, 415.32, 9.99, 5616.75),
    (64, 2, 21, '2023-09-26 13:43:37', 'delivered', 87, 581.25, 22.74, 44.68, 4.99, 608.18),
    (272, 1, 12, '2023-05-25 10:22:07', 'delivered', 380, 1917.66, 0.0, 153.41, 14.99, 2086.06),
    (221, 2, 20, '2024-10-17 11:06:02', 'pending', 309, 423.24, 21.16, 32.17, 9.99, 444.24),
    (164, 8, 65, '2024-02-25 22:15:40', 'delivered', 226, 22404.23, 34.87, 1789.55, 9.99, 24168.9),
    (238, 8, 64, '2024-07-27 15:25:54', 'cancelled', 332, 698.52, 83.27, 49.22, 0.0, 664.47),
    (89, 3, 23, '2022-11-06 04:13:47', 'processing', 121, 5603.88, 43.89, 444.8, 4.99, 6009.78),
    (82, 8, 8, '2024-01-03 21:07:56', 'refunded', 112, 853.64, 42.68, 64.88, 0.0, 875.84),
    (111, 7, 54, '2026-05-17 00:41:40', 'processing', 148, 857.32, 25.02, 66.58, 9.99, 908.87),
    (243, 2, NULL, '2024-02-24 13:50:05', 'delivered', 342, 841.84, 84.77, 60.57, 14.99, 832.63),
    (285, 6, 48, '2022-08-27 21:51:25', 'cancelled', 402, 681.74, 42.58, 51.13, 4.99, 695.28),
    (49, 7, 55, '2021-09-10 14:44:21', 'delivered', 67, 4540.43, 422.39, 329.44, 0.0, 4447.48),
    (2, 6, 50, '2025-10-12 16:39:11', 'processing', 2, 710.86, 92.85, 49.44, 0.0, 667.45),
    (259, 5, 42, '2024-08-07 04:31:09', 'delivered', 360, 290.91, 0.0, 23.27, 4.99, 319.17),
    (216, 2, 21, '2022-04-04 14:57:11', 'delivered', 301, 2837.15, 94.92, 219.38, 4.99, 2966.6),
    (64, 1, 15, '2024-02-20 21:21:41', 'processing', 87, 5284.78, 208.94, 406.07, 4.99, 5486.9),
    (68, 8, NULL, '2021-07-30 22:35:33', 'processing', 93, 3634.4, 545.16, 247.14, 4.99, 3341.37),
    (183, 6, NULL, '2023-12-04 10:40:00', 'delivered', 251, 4590.14, 287.42, 344.22, 9.99, 4656.93),
    (123, 1, 1, '2021-06-13 01:25:25', 'delivered', 166, 4180.15, 356.75, 305.87, 14.99, 4144.26),
    (166, 7, 56, '2021-03-01 19:48:40', 'delivered', 228, 7472.31, 300.66, 573.73, 4.99, 7750.37),
    (42, 6, 45, '2024-05-18 23:59:54', 'shipped', 57, 9763.59, 714.56, 723.92, 4.99, 9777.94),
    (15, 8, 64, '2022-09-28 15:20:26', 'shipped', 21, 19.39, 1.94, 1.4, 9.99, 28.84),
    (153, 4, 32, '2024-01-27 09:30:43', 'delivered', 210, 1047.87, 0.0, 83.83, 4.99, 1136.69),
    (106, 8, 64, '2023-10-15 01:38:27', 'delivered', 143, 6246.69, 531.26, 457.23, 9.99, 6182.65),
    (6, 5, 40, '2024-10-14 18:07:28', 'delivered', 9, 5807.84, 251.16, 444.53, 4.99, 6006.2),
    (105, 2, 20, '2021-04-05 08:22:21', 'cancelled', 142, 10983.92, 0.0, 878.71, 4.99, 11867.62),
    (255, 7, 56, '2022-06-28 18:39:08', 'refunded', 356, 18071.69, 1491.17, 1326.44, 4.99, 17911.95),
    (23, 7, 57, '2022-12-21 07:26:53', 'delivered', 30, 286.35, 0.0, 22.91, 4.99, 314.25),
    (84, 6, 48, '2025-09-08 23:19:55', 'delivered', 114, 6288.36, 84.44, 496.31, 0.0, 6700.23),
    (254, 7, 56, '2021-09-26 13:50:53', 'delivered', 354, 887.32, 9.56, 70.22, 4.99, 952.97),
    (75, 6, 45, '2025-11-18 09:37:12', 'processing', 104, 894.16, 83.0, 64.89, 14.99, 891.04),
    (54, 1, 10, '2022-12-06 14:06:57', 'delivered', 74, 6659.37, 290.29, 509.53, 4.99, 6883.6),
    (55, 4, 35, '2022-04-29 17:55:17', 'delivered', 75, 1429.18, 60.06, 109.53, 4.99, 1483.64),
    (108, 2, 16, '2021-03-15 00:42:21', 'pending', 145, 12227.72, 2086.05, 811.33, 9.99, 10962.99),
    (154, 6, 46, '2023-08-02 19:58:17', 'delivered', 212, 14151.24, 2181.34, 957.59, 9.99, 12937.48),
    (180, 8, 64, '2021-05-01 03:33:40', 'refunded', 247, 5145.75, 257.29, 391.08, 0.0, 5279.54),
    (49, 8, 63, '2023-01-20 22:29:44', 'delivered', 67, 6573.74, 68.04, 520.46, 4.99, 7031.15),
    (141, 7, 58, '2021-06-01 08:26:40', 'shipped', 193, 615.48, 0.0, 49.24, 4.99, 669.71),
    (149, 6, 45, '2021-08-27 16:09:47', 'shipped', 204, 1926.32, 36.91, 151.15, 4.99, 2045.55),
    (60, 2, 16, '2026-02-24 07:25:40', 'delivered', 83, 6447.36, 9.73, 515.01, 4.99, 6957.63),
    (45, 5, 41, '2025-01-14 14:38:37', 'delivered', 61, 360.12, 0.0, 28.81, 0.0, 388.93),
    (280, 6, 50, '2021-07-27 14:22:36', 'refunded', 394, 485.44, 18.59, 37.35, 4.99, 509.19),
    (6, 6, NULL, '2021-02-07 19:07:11', 'processing', 9, 2654.66, 341.25, 185.07, 9.99, 2508.47),
    (245, 8, 60, '2024-04-20 00:45:14', 'delivered', 344, 2937.55, 97.41, 227.21, 4.99, 3072.35),
    (116, 5, 42, '2021-05-14 07:31:11', 'delivered', 156, 10705.18, 621.38, 806.7, 9.99, 10900.49),
    (267, 5, 37, '2024-09-06 11:32:49', 'delivered', 372, 12699.11, 482.34, 977.34, 4.99, 13199.1),
    (241, 8, 60, '2024-12-29 03:38:23', 'delivered', 338, 7120.3, 445.12, 534.01, 14.99, 7224.18),
    (98, 6, 46, '2023-11-07 19:17:50', 'delivered', 132, 2327.48, 90.37, 178.97, 4.99, 2421.07),
    (298, 3, NULL, '2023-06-25 12:54:57', 'delivered', 420, 1765.96, 0.0, 141.28, 4.99, 1912.23),
    (291, 8, 60, '2023-03-03 09:43:32', 'delivered', 409, 2978.28, 105.44, 229.83, 4.99, 3107.66),
    (142, 7, 7, '2024-08-21 20:10:03', 'delivered', 195, 11329.58, 514.58, 865.2, 0.0, 11680.21),
    (138, 3, 27, '2022-09-29 13:54:37', 'confirmed', 188, 11911.25, 664.44, 899.74, 4.99, 12151.54),
    (197, 4, 4, '2022-05-14 07:58:35', 'processing', 274, 2386.93, 80.22, 184.54, 4.99, 2496.24),
    (198, 8, 59, '2021-09-12 18:08:58', 'delivered', 276, 5287.76, 15.2, 421.8, 9.99, 5704.35),
    (256, 7, 53, '2024-03-04 17:59:30', 'processing', 357, 1898.4, 0.0, 151.87, 4.99, 2055.26),
    (208, 5, 40, '2022-12-19 08:48:53', 'delivered', 289, 2574.1, 0.0, 205.93, 9.99, 2790.02),
    (224, 5, 40, '2024-02-13 23:17:08', 'cancelled', 313, 5514.64, 570.88, 395.5, 9.99, 5349.26),
    (82, 2, 19, '2021-06-05 13:07:20', 'shipped', 112, 1675.44, 22.0, 132.28, 4.99, 1790.71),
    (91, 5, 42, '2022-06-06 17:29:10', 'shipped', 123, 333.5, 0.0, 26.68, 9.99, 370.17),
    (237, 6, 45, '2025-07-17 00:22:31', 'cancelled', 331, 2051.91, 133.82, 153.45, 0.0, 2071.54),
    (202, 3, 28, '2022-04-30 09:26:53', 'delivered', 280, 705.69, 19.46, 54.9, 4.99, 746.12),
    (128, 3, 3, '2021-07-28 09:24:06', 'refunded', 173, 5186.6, 259.33, 394.18, 4.99, 5326.44),
    (269, 8, 63, '2026-02-25 06:37:55', 'delivered', 375, 4017.19, 179.03, 307.05, 0.0, 4145.21),
    (193, 5, 41, '2025-02-22 17:52:30', 'shipped', 268, 2804.56, 280.46, 201.93, 9.99, 2736.02),
    (72, 5, 38, '2021-02-20 21:14:06', 'cancelled', 99, 1528.2, 130.75, 111.8, 9.99, 1519.24),
    (192, 1, 14, '2024-09-08 11:19:45', 'confirmed', 266, 5095.32, 0.0, 407.63, 14.99, 5517.94),
    (52, 3, 25, '2021-07-06 01:29:44', 'pending', 71, 7595.17, 0.0, 607.61, 9.99, 8212.77),
    (146, 6, NULL, '2025-05-26 06:07:44', 'delivered', 201, 7697.09, 112.23, 606.79, 9.99, 8201.64),
    (137, 3, NULL, '2022-09-02 23:44:33', 'processing', 186, 8659.44, 0.0, 692.76, 4.99, 9357.19),
    (34, 3, 25, '2025-02-08 14:04:44', 'delivered', 45, 2678.96, 160.77, 201.46, 4.99, 2724.64),
    (241, 5, 41, '2026-05-17 01:52:53', 'delivered', 338, 1887.21, 61.46, 146.06, 9.99, 1981.8),
    (154, 5, NULL, '2022-04-05 17:35:22', 'delivered', 212, 642.57, 77.93, 45.17, 4.99, 614.8),
    (215, 6, 46, '2022-05-20 16:48:45', 'delivered', 300, 237.96, 35.69, 16.18, 0.0, 218.45),
    (79, 7, 7, '2023-11-04 00:52:36', 'cancelled', 109, 254.88, 0.0, 20.39, 14.99, 290.26),
    (110, 7, 53, '2023-06-10 00:34:19', 'shipped', 147, 809.98, 32.92, 62.17, 0.0, 839.23),
    (277, 7, 51, '2022-04-17 21:33:57', 'refunded', 389, 3430.5, 0.0, 274.44, 4.99, 3709.93),
    (183, 2, NULL, '2023-08-21 09:55:51', 'delivered', 251, 371.74, 74.35, 23.79, 9.99, 331.17),
    (88, 7, 57, '2021-12-01 02:38:58', 'shipped', 120, 1192.76, 52.92, 91.19, 4.99, 1236.02),
    (264, 2, 16, '2023-06-01 09:59:00', 'confirmed', 367, 1511.47, 155.13, 108.51, 9.99, 1474.84),
    (121, 5, 39, '2023-01-18 18:29:49', 'delivered', 162, 2983.42, 63.71, 233.58, 14.99, 3168.28),
    (38, 5, 41, '2025-12-05 17:31:28', 'shipped', 50, 1081.19, 43.17, 83.04, 0.0, 1121.06),
    (130, 7, 57, '2024-12-11 01:21:32', 'delivered', 175, 1956.71, 85.41, 149.7, 9.99, 2030.99),
    (250, 6, NULL, '2022-03-13 00:34:56', 'shipped', 350, 12480.19, 32.14, 995.84, 9.99, 13453.88),
    (76, 6, 47, '2025-07-08 08:28:09', 'delivered', 106, 15416.58, 22.42, 1231.53, 9.99, 16635.68),
    (293, 4, 31, '2024-10-27 20:05:57', 'shipped', 413, 206.28, 10.31, 15.68, 4.99, 216.64),
    (272, 4, NULL, '2024-10-27 18:30:10', 'shipped', 380, 58.03, 11.61, 3.71, 9.99, 60.12),
    (280, 7, NULL, '2023-08-10 08:14:03', 'delivered', 394, 3006.64, 150.33, 228.5, 4.99, 3089.8),
    (121, 7, 55, '2022-07-05 15:43:39', 'delivered', 162, 2651.28, 49.76, 208.12, 0.0, 2809.64),
    (133, 3, 25, '2024-07-15 03:33:58', 'shipped', 178, 5474.46, 184.39, 423.21, 9.99, 5723.27),
    (34, 5, 37, '2024-11-03 02:44:25', 'delivered', 45, 4526.25, 60.78, 357.24, 4.99, 4827.7),
    (45, 2, 17, '2022-05-14 03:48:14', 'delivered', 61, 17653.86, 748.88, 1352.4, 4.99, 18262.37),
    (35, 4, 35, '2025-09-28 23:03:49', 'delivered', 46, 9925.69, 444.5, 758.5, 4.99, 10244.68),
    (162, 8, NULL, '2021-10-26 04:35:24', 'delivered', 223, 22997.2, 544.11, 1796.25, 9.99, 24259.33),
    (71, 5, 38, '2023-05-23 00:07:45', 'delivered', 98, 7800.26, 759.79, 563.24, 14.99, 7618.7),
    (52, 6, NULL, '2023-04-01 20:10:06', 'delivered', 71, 4598.71, 12.28, 366.91, 9.99, 4963.33),
    (41, 5, 40, '2021-11-09 01:01:47', 'cancelled', 55, 509.76, 0.0, 40.78, 4.99, 555.53),
    (36, 2, 19, '2021-01-13 10:57:59', 'processing', 47, 10179.67, 237.83, 795.35, 14.99, 10752.18),
    (9, 8, 60, '2022-06-11 05:06:41', 'delivered', 13, 10723.38, 46.92, 854.12, 4.99, 11535.57),
    (211, 5, 37, '2024-07-29 14:11:10', 'shipped', 293, 7305.65, 686.83, 529.51, 4.99, 7153.32),
    (203, 3, 25, '2021-12-16 21:04:31', 'delivered', 281, 4218.7, 0.0, 337.5, 0.0, 4556.2),
    (64, 6, 49, '2024-03-22 15:45:20', 'delivered', 87, 6615.02, 0.0, 529.2, 14.99, 7159.21),
    (2, 7, 7, '2021-07-05 03:31:31', 'delivered', 2, 6933.7, 66.51, 549.38, 4.99, 7421.56),
    (142, 8, 62, '2022-05-14 12:38:15', 'delivered', 195, 4090.74, 17.86, 325.83, 9.99, 4408.7),
    (265, 5, 5, '2021-07-15 15:13:03', 'delivered', 369, 606.72, 0.0, 48.54, 4.99, 660.25),
    (295, 3, 3, '2022-04-09 05:25:33', 'refunded', 417, 10877.18, 500.08, 830.17, 4.99, 11212.26),
    (140, 4, 33, '2021-10-26 12:59:04', 'delivered', 192, 11276.32, 82.41, 895.51, 0.0, 12089.42),
    (105, 8, 59, '2021-11-15 19:32:26', 'delivered', 142, 16616.81, 278.96, 1307.03, 9.99, 17654.87),
    (175, 4, 29, '2023-02-17 16:57:51', 'delivered', 241, 14483.5, 1008.54, 1078.0, 9.99, 14562.95),
    (299, 4, 32, '2021-01-01 06:55:41', 'delivered', 421, 1742.58, 326.9, 113.25, 0.0, 1528.93),
    (24, 3, 24, '2022-09-07 01:27:17', 'processing', 31, 16332.5, 17.74, 1305.18, 0.0, 17619.94),
    (194, 1, 1, '2025-07-15 01:34:20', 'shipped', 269, 13867.78, 125.0, 1099.42, 4.99, 14847.19),
    (272, 6, 45, '2026-01-21 07:57:09', 'delivered', 380, 4174.91, 98.56, 326.11, 9.99, 4412.45),
    (65, 1, 9, '2025-10-07 01:27:42', 'delivered', 89, 4423.7, 312.12, 328.93, 4.99, 4445.5),
    (282, 3, 3, '2024-08-21 21:10:02', 'delivered', 398, 1206.85, 60.34, 91.72, 9.99, 1248.22),
    (280, 2, 17, '2024-12-02 23:08:08', 'shipped', 394, 1706.79, 235.61, 117.69, 9.99, 1598.86),
    (300, 2, NULL, '2022-08-15 14:53:41', 'delivered', 422, 76.02, 0.0, 6.08, 9.99, 92.09),
    (77, 6, 44, '2025-04-15 22:27:43', 'delivered', 107, 2553.08, 11.86, 203.3, 9.99, 2754.51),
    (22, 6, 6, '2025-04-25 15:22:26', 'delivered', 29, 1189.16, 0.0, 95.13, 4.99, 1289.28),
    (175, 2, 19, '2023-05-05 15:24:01', 'delivered', 241, 3866.81, 46.25, 305.64, 9.99, 4136.19),
    (22, 1, 1, '2024-06-17 16:07:45', 'shipped', 29, 1291.71, 33.78, 100.63, 0.0, 1358.56),
    (130, 2, 19, '2021-01-16 10:43:09', 'shipped', 175, 1362.96, 78.74, 102.74, 0.0, 1386.96),
    (138, 4, 29, '2022-03-16 15:04:32', 'delivered', 188, 9426.98, 54.94, 749.76, 4.99, 10126.79),
    (237, 1, 12, '2026-05-17 09:55:10', 'delivered', 331, 2332.11, 45.69, 182.91, 9.99, 2479.32),
    (12, 2, 17, '2024-07-01 12:40:11', 'delivered', 17, 1876.63, 174.86, 136.14, 4.99, 1842.9),
    (239, 1, 13, '2021-04-27 15:15:30', 'delivered', 334, 380.31, 0.0, 30.42, 14.99, 425.72),
    (182, 4, 32, '2025-12-30 02:57:22', 'delivered', 249, 84.24, 8.42, 6.07, 9.99, 91.88),
    (233, 8, 59, '2025-08-19 07:45:34', 'confirmed', 325, 1082.94, 10.11, 85.83, 0.0, 1158.66),
    (116, 1, 1, '2021-08-27 17:39:05', 'refunded', 156, 3865.53, 70.48, 303.6, 0.0, 4098.65),
    (213, 2, 21, '2026-01-30 10:12:38', 'delivered', 297, 738.12, 0.0, 59.05, 9.99, 807.16),
    (146, 2, 18, '2021-01-10 13:13:18', 'cancelled', 201, 354.83, 0.0, 28.39, 9.99, 393.21),
    (270, 5, NULL, '2023-06-27 23:15:15', 'shipped', 377, 8025.34, 75.33, 636.0, 4.99, 8591.0),
    (40, 2, 2, '2023-07-03 06:22:49', 'processing', 54, 12283.86, 7.39, 982.12, 0.0, 13258.6),
    (22, 4, 4, '2025-06-05 09:08:26', 'cancelled', 29, 552.79, 1.94, 44.07, 14.99, 609.91),
    (90, 4, 33, '2024-01-11 10:01:24', 'confirmed', 122, 5746.71, 127.78, 449.51, 14.99, 6083.43),
    (284, 1, 15, '2022-08-26 22:50:51', 'delivered', 400, 3863.08, 0.0, 309.05, 4.99, 4177.12),
    (53, 6, 6, '2026-02-25 18:55:38', 'delivered', 72, 12832.33, 1354.58, 918.22, 4.99, 12400.96),
    (152, 8, NULL, '2025-06-11 10:58:48', 'delivered', 208, 1565.27, 63.52, 120.14, 9.99, 1631.88),
    (151, 3, 27, '2024-06-09 20:14:39', 'delivered', 206, 56.85, 11.37, 3.64, 4.99, 54.11),
    (235, 7, 7, '2024-10-05 05:06:51', 'shipped', 329, 1142.68, 12.74, 90.39, 9.99, 1230.32),
    (125, 3, 3, '2023-06-04 12:52:36', 'delivered', 169, 973.25, 11.37, 76.95, 9.99, 1048.82),
    (223, 5, NULL, '2025-09-07 16:45:06', 'delivered', 312, 4461.09, 384.37, 326.14, 9.99, 4412.85),
    (62, 5, 40, '2024-05-23 15:01:34', 'delivered', 85, 1577.67, 144.94, 114.62, 0.0, 1547.35),
    (85, 8, 8, '2021-01-21 05:40:08', 'delivered', 115, 1186.39, 32.99, 92.27, 4.99, 1250.66),
    (25, 2, 2, '2026-03-17 15:04:10', 'delivered', 33, 85.15, 12.77, 5.79, 4.99, 83.16),
    (91, 4, 35, '2024-07-01 08:26:40', 'delivered', 123, 3543.84, 0.0, 283.51, 4.99, 3832.34),
    (226, 8, 64, '2022-05-20 06:52:52', 'confirmed', 315, 2016.41, 63.5, 156.23, 9.99, 2119.13),
    (25, 3, 22, '2023-03-30 19:24:17', 'pending', 33, 14601.4, 47.46, 1164.32, 14.99, 15733.25),
    (279, 2, 16, '2022-05-26 09:04:23', 'delivered', 393, 211.04, 0.0, 16.88, 0.0, 227.92),
    (263, 6, NULL, '2025-03-21 05:39:22', 'delivered', 366, 5118.76, 296.95, 385.74, 0.0, 5207.55),
    (73, 7, 7, '2021-10-21 15:38:30', 'delivered', 101, 1481.04, 69.85, 112.89, 14.99, 1539.07),
    (263, 3, 22, '2021-02-13 12:55:25', 'delivered', 366, 458.04, 68.71, 31.15, 4.99, 425.47),
    (100, 5, 42, '2022-06-18 04:53:10', 'delivered', 136, 5626.7, 68.88, 444.63, 4.99, 6007.44),
    (264, 3, 26, '2024-06-22 22:23:17', 'pending', 367, 2131.68, 102.39, 162.34, 9.99, 2201.62),
    (220, 7, 51, '2024-11-10 04:54:29', 'delivered', 307, 252.04, 0.0, 20.16, 4.99, 277.19),
    (8, 6, 49, '2025-08-07 15:35:51', 'processing', 12, 9780.75, 0.0, 782.46, 4.99, 10568.2),
    (8, 6, 50, '2021-11-22 21:58:45', 'delivered', 12, 7532.53, 1034.07, 519.88, 4.99, 7023.33),
    (221, 5, 5, '2022-05-07 22:27:35', 'processing', 309, 566.1, 56.61, 40.76, 14.99, 565.24),
    (278, 7, 54, '2025-04-26 07:35:42', 'refunded', 391, 405.42, 34.82, 29.65, 4.99, 405.24),
    (260, 8, 8, '2024-10-03 09:35:03', 'processing', 362, 1397.64, 0.0, 111.81, 9.99, 1519.44),
    (232, 5, 37, '2026-03-23 16:57:51', 'confirmed', 324, 4410.2, 557.58, 308.21, 4.99, 4165.82),
    (20, 6, 6, '2024-05-23 09:17:49', 'delivered', 27, 2514.9, 285.76, 178.33, 4.99, 2412.46),
    (234, 1, NULL, '2022-01-23 19:39:45', 'shipped', 327, 11784.64, 61.83, 937.83, 9.99, 12670.63),
    (69, 5, 39, '2022-08-28 12:01:38', 'delivered', 95, 4924.72, 124.59, 384.01, 14.99, 5199.13),
    (114, 4, 33, '2021-11-14 14:07:47', 'shipped', 153, 9721.39, 276.26, 755.61, 9.99, 10210.73),
    (115, 1, 9, '2025-05-11 16:37:01', 'delivered', 154, 34.0, 5.1, 2.31, 4.99, 36.2),
    (268, 6, 47, '2021-04-28 02:24:39', 'processing', 374, 2200.01, 0.0, 176.0, 4.99, 2381.0),
    (110, 7, 58, '2021-10-30 13:01:18', 'shipped', 147, 2096.56, 139.16, 156.59, 9.99, 2123.98),
    (182, 3, 22, '2026-01-13 10:56:41', 'delivered', 249, 12266.2, 10.2, 980.48, 14.99, 13251.47),
    (260, 7, 57, '2025-08-02 08:24:26', 'delivered', 362, 3428.24, 378.22, 244.0, 4.99, 3299.01),
    (187, 6, 47, '2022-07-07 07:52:22', 'delivered', 258, 931.32, 67.39, 69.11, 9.99, 943.03),
    (80, 5, 39, '2025-12-27 16:01:56', 'delivered', 110, 3764.18, 198.32, 285.27, 9.99, 3861.12),
    (166, 6, 46, '2026-05-22 23:03:29', 'delivered', 228, 11151.34, 38.18, 889.05, 4.99, 12007.2),
    (4, 3, 23, '2024-02-20 22:16:55', 'delivered', 6, 379.68, 37.97, 27.34, 0.0, 369.05),
    (55, 3, 22, '2022-01-28 09:16:09', 'shipped', 75, 209.15, 5.73, 16.27, 9.99, 229.68),
    (126, 7, 52, '2022-09-26 16:08:19', 'delivered', 170, 4397.21, 141.62, 340.45, 4.99, 4601.03),
    (288, 5, 42, '2022-04-26 19:21:50', 'delivered', 406, 426.82, 21.34, 32.44, 4.99, 442.91),
    (233, 7, 58, '2023-01-20 00:53:40', 'delivered', 325, 6843.14, 506.54, 506.93, 9.99, 6853.52),
    (299, 3, 3, '2023-10-10 07:05:40', 'shipped', 421, 872.68, 148.94, 57.9, 9.99, 791.63),
    (300, 2, 16, '2025-09-15 12:50:21', 'delivered', 422, 1245.37, 102.46, 91.43, 9.99, 1244.33),
    (285, 5, 37, '2025-02-28 14:10:46', 'delivered', 402, 17036.87, 682.22, 1308.37, 4.99, 17668.01),
    (60, 3, 28, '2021-01-09 08:26:16', 'shipped', 83, 4874.08, 241.17, 370.63, 4.99, 5008.53),
    (255, 2, 20, '2023-10-13 13:41:54', 'processing', 356, 4245.96, 8.34, 339.01, 4.99, 4581.62),
    (239, 8, 61, '2024-03-02 08:42:47', 'delivered', 334, 5520.78, 808.15, 377.01, 4.99, 5094.63),
    (294, 6, NULL, '2021-07-26 07:46:19', 'delivered', 415, 1835.99, 9.34, 146.13, 0.0, 1972.78),
    (179, 1, NULL, '2022-09-10 18:32:50', 'delivered', 246, 14286.63, 296.64, 1119.2, 9.99, 15119.18),
    (61, 8, 60, '2021-06-16 05:30:26', 'processing', 84, 1330.24, 0.0, 106.42, 0.0, 1436.66),
    (62, 1, 13, '2025-07-03 00:40:21', 'delivered', 85, 6276.1, 0.0, 502.09, 4.99, 6783.18),
    (92, 8, 62, '2025-06-07 16:01:56', 'processing', 125, 6341.35, 646.49, 455.59, 9.99, 6160.44),
    (69, 3, 27, '2022-02-05 04:34:37', 'pending', 95, 13194.95, 1235.05, 956.79, 9.99, 12926.68),
    (50, 4, 29, '2022-03-17 19:15:59', 'shipped', 68, 1461.58, 62.29, 111.94, 9.99, 1521.22),
    (247, 1, 13, '2026-03-24 09:53:08', 'shipped', 347, 2835.02, 0.0, 226.8, 9.99, 3071.81),
    (12, 7, 52, '2023-05-25 06:36:50', 'delivered', 17, 658.35, 0.0, 52.67, 9.99, 721.01),
    (4, 4, 32, '2021-04-11 14:39:01', 'shipped', 6, 2193.06, 328.96, 149.13, 4.99, 2018.22),
    (232, 6, 47, '2026-04-20 07:16:06', 'confirmed', 324, 2263.57, 63.46, 176.01, 9.99, 2386.11),
    (57, 1, 9, '2025-05-17 12:15:54', 'processing', 78, 5268.31, 259.73, 400.69, 4.99, 5414.26),
    (217, 1, 9, '2024-02-12 21:07:25', 'delivered', 303, 1738.99, 88.07, 132.07, 0.0, 1782.99),
    (53, 4, NULL, '2022-12-14 01:34:15', 'delivered', 72, 309.42, 0.0, 24.75, 4.99, 339.16),
    (103, 7, 53, '2021-03-19 00:29:14', 'pending', 139, 6622.78, 62.78, 524.8, 4.99, 7089.79),
    (103, 7, 57, '2023-03-01 20:06:05', 'delivered', 139, 2873.25, 367.6, 200.45, 4.99, 2711.09),
    (170, 1, 9, '2021-06-07 03:20:09', 'delivered', 232, 2000.89, 101.97, 151.91, 4.99, 2055.82),
    (34, 6, 6, '2023-03-05 21:04:40', 'delivered', 45, 7523.69, 895.74, 530.24, 9.99, 7168.18),
    (150, 2, 18, '2021-11-06 08:58:54', 'processing', 205, 7557.86, 392.24, 573.25, 14.99, 7753.86),
    (8, 2, 17, '2022-05-29 01:56:03', 'cancelled', 12, 7999.12, 280.46, 617.49, 4.99, 8341.14),
    (211, 1, 1, '2026-05-14 21:41:37', 'delivered', 293, 1374.0, 113.22, 100.86, 4.99, 1366.63),
    (276, 5, 5, '2021-08-08 09:01:02', 'refunded', 387, 1470.75, 52.89, 113.43, 4.99, 1536.28),
    (6, 3, NULL, '2021-03-21 19:48:17', 'shipped', 9, 105.96, 0.0, 8.48, 9.99, 124.43),
    (97, 7, 54, '2026-01-25 17:08:56', 'delivered', 131, 606.52, 30.33, 46.1, 4.99, 627.28),
    (217, 3, 27, '2025-12-03 15:14:39', 'cancelled', 303, 2286.78, 312.13, 157.97, 4.99, 2137.61),
    (254, 4, 32, '2025-09-15 18:25:47', 'delivered', 354, 1445.39, 72.77, 109.81, 9.99, 1492.43),
    (216, 5, 42, '2024-04-07 05:01:59', 'delivered', 301, 5810.28, 0.0, 464.82, 4.99, 6280.09),
    (82, 6, 46, '2026-05-13 07:46:44', 'delivered', 112, 4950.07, 153.48, 383.73, 0.0, 5180.32),
    (295, 2, 19, '2021-07-17 00:11:26', 'processing', 417, 701.14, 35.06, 53.29, 9.99, 729.36),
    (84, 4, 29, '2022-12-24 19:33:34', 'shipped', 114, 5395.2, 191.67, 416.28, 4.99, 5624.8),
    (254, 3, 22, '2024-08-25 14:25:24', 'delivered', 354, 186.78, 9.34, 14.2, 4.99, 196.63),
    (206, 2, 20, '2025-02-13 11:31:14', 'cancelled', 286, 5000.76, 500.08, 360.05, 4.99, 4865.72),
    (22, 1, 15, '2025-09-09 08:56:34', 'processing', 29, 7338.56, 368.2, 557.63, 14.99, 7542.99),
    (136, 7, 58, '2026-04-03 05:10:37', 'delivered', 184, 2102.44, 30.77, 165.73, 4.99, 2242.39),
    (47, 6, 47, '2023-09-02 04:24:18', 'delivered', 64, 1330.24, 66.51, 101.1, 9.99, 1374.82),
    (245, 6, 49, '2021-05-19 05:17:53', 'delivered', 344, 1715.25, 0.0, 137.22, 9.99, 1862.46),
    (276, 7, 55, '2023-02-12 05:26:42', 'delivered', 387, 3221.07, 0.0, 257.69, 0.0, 3478.76),
    (294, 5, 40, '2025-07-06 17:58:29', 'refunded', 415, 2889.09, 326.75, 204.99, 4.99, 2772.32),
    (135, 3, NULL, '2023-08-24 10:36:32', 'delivered', 182, 2180.51, 112.83, 165.41, 14.99, 2248.08),
    (15, 7, NULL, '2024-02-23 02:07:44', 'shipped', 21, 1718.93, 136.47, 126.6, 4.99, 1714.05),
    (218, 3, 22, '2022-06-28 10:04:44', 'processing', 304, 5284.44, 14.22, 421.62, 4.99, 5696.83),
    (162, 2, 2, '2021-09-03 15:31:11', 'shipped', 223, 5345.73, 801.86, 363.51, 9.99, 4917.37),
    (274, 7, 7, '2025-07-26 22:28:14', 'pending', 383, 10843.41, 352.28, 839.29, 9.99, 11340.41),
    (140, 8, NULL, '2024-06-23 07:35:51', 'delivered', 192, 350.15, 11.06, 27.13, 0.0, 366.22),
    (246, 6, 48, '2026-01-04 03:48:01', 'delivered', 346, 3248.17, 144.9, 248.26, 9.99, 3361.52),
    (138, 1, NULL, '2024-08-26 14:14:58', 'shipped', 188, 1100.46, 83.27, 81.38, 14.99, 1113.57),
    (230, 5, 43, '2026-04-13 17:27:34', 'delivered', 321, 236.56, 35.48, 16.09, 4.99, 222.16),
    (151, 3, 3, '2022-08-19 08:49:50', 'delivered', 206, 2249.25, 265.26, 158.72, 9.99, 2152.7),
    (100, 1, 11, '2023-10-07 17:44:05', 'delivered', 136, 1870.18, 140.75, 138.35, 4.99, 1872.77),
    (218, 6, 47, '2023-03-01 11:15:48', 'shipped', 304, 2843.88, 154.06, 215.19, 4.99, 2910.0),
    (55, 1, 13, '2023-01-19 12:33:47', 'delivered', 75, 1760.16, 352.03, 112.65, 4.99, 1525.77),
    (198, 7, 58, '2025-05-18 11:20:19', 'delivered', 276, 10304.31, 448.92, 788.43, 9.99, 10653.81),
    (196, 5, 38, '2022-09-25 23:35:21', 'delivered', 272, 998.98, 49.95, 75.92, 0.0, 1024.95),
    (282, 8, NULL, '2022-05-04 03:26:41', 'cancelled', 398, 7040.34, 164.92, 550.03, 0.0, 7425.45),
    (198, 8, 59, '2021-05-21 18:31:44', 'cancelled', 276, 1376.12, 85.32, 103.26, 14.99, 1409.05),
    (149, 6, 44, '2026-01-06 22:11:44', 'delivered', 204, 416.36, 0.0, 33.31, 9.99, 459.66),
    (71, 4, 34, '2026-01-04 00:46:20', 'delivered', 98, 1274.14, 0.0, 101.93, 9.99, 1386.06),
    (207, 3, NULL, '2023-05-17 15:50:52', 'cancelled', 287, 3061.06, 167.81, 231.46, 4.99, 3129.7),
    (116, 5, NULL, '2024-10-20 20:17:51', 'delivered', 156, 189.03, 18.9, 13.61, 4.99, 188.73),
    (189, 4, 36, '2022-09-21 12:44:14', 'delivered', 261, 2714.32, 153.37, 204.88, 4.99, 2770.82),
    (285, 2, 20, '2025-02-16 18:13:22', 'delivered', 402, 64.89, 0.0, 5.19, 4.99, 75.07),
    (40, 8, 8, '2026-01-22 16:09:55', 'shipped', 54, 3563.82, 0.0, 285.11, 9.99, 3858.92),
    (268, 3, 25, '2021-09-02 09:15:44', 'delivered', 374, 3750.0, 562.5, 255.0, 14.99, 3457.49),
    (172, 6, 44, '2024-12-01 22:38:11', 'delivered', 236, 7684.49, 356.38, 586.25, 9.99, 7924.35),
    (75, 5, NULL, '2026-01-14 23:10:12', 'delivered', 104, 750.86, 0.0, 60.07, 4.99, 815.92),
    (136, 6, 45, '2021-11-23 22:56:57', 'delivered', 184, 1205.61, 66.35, 91.14, 4.99, 1235.39),
    (188, 8, 8, '2021-06-04 15:56:37', 'confirmed', 259, 12870.48, 77.76, 1023.42, 4.99, 13821.13),
    (287, 6, 47, '2021-01-16 17:04:03', 'confirmed', 404, 4997.51, 81.95, 393.25, 14.99, 5323.81),
    (192, 1, 1, '2023-12-28 20:41:21', 'cancelled', 266, 1781.91, 89.1, 135.43, 14.99, 1843.23),
    (238, 2, 20, '2021-09-25 17:34:23', 'delivered', 332, 16374.66, 0.0, 1309.97, 9.99, 17694.62),
    (8, 1, 12, '2021-09-27 03:07:53', 'delivered', 12, 3652.35, 93.88, 284.68, 4.99, 3848.14),
    (60, 7, 51, '2026-04-24 23:01:40', 'delivered', 83, 11776.29, 22.13, 940.33, 0.0, 12694.5),
    (110, 6, 46, '2023-11-15 06:00:08', 'delivered', 147, 596.01, 113.9, 38.57, 4.99, 525.67),
    (100, 4, 32, '2023-07-20 17:59:04', 'cancelled', 136, 8342.57, 66.13, 662.12, 14.99, 8953.55),
    (185, 8, 63, '2021-09-06 17:49:38', 'delivered', 254, 11135.55, 1005.29, 810.42, 4.99, 10945.67),
    (53, 4, NULL, '2021-09-16 21:52:57', 'refunded', 72, 1215.95, 81.81, 90.73, 0.0, 1224.87),
    (190, 4, 32, '2021-09-16 08:41:49', 'delivered', 263, 147.17, 7.36, 11.18, 0.0, 150.99),
    (290, 6, 6, '2021-02-02 20:34:46', 'processing', 408, 3608.48, 412.06, 255.71, 9.99, 3462.12),
    (226, 6, NULL, '2023-05-28 18:11:04', 'confirmed', 315, 6739.17, 395.45, 507.5, 14.99, 6866.21),
    (34, 1, NULL, '2024-05-04 23:37:43', 'delivered', 45, 11457.26, 90.72, 909.32, 9.99, 12285.85),
    (37, 5, 37, '2022-11-19 19:23:33', 'refunded', 49, 971.8, 89.96, 70.55, 9.99, 962.39),
    (186, 7, NULL, '2021-07-04 07:35:01', 'delivered', 256, 1673.95, 104.17, 125.58, 4.99, 1700.35),
    (124, 8, 60, '2022-11-08 16:38:24', 'delivered', 168, 2068.66, 84.92, 158.7, 9.99, 2152.44),
    (253, 4, 33, '2023-03-04 13:55:24', 'processing', 353, 8259.7, 4.77, 660.39, 9.99, 8925.31),
    (17, 1, 14, '2021-05-25 03:27:03', 'delivered', 24, 276.4, 13.82, 21.01, 4.99, 288.58),
    (60, 2, 18, '2022-11-15 08:13:00', 'delivered', 83, 7150.7, 0.0, 572.06, 14.99, 7737.75),
    (92, 1, 10, '2024-11-22 15:07:31', 'delivered', 125, 6306.18, 168.8, 490.99, 4.99, 6633.36),
    (87, 2, 19, '2022-06-16 00:28:47', 'confirmed', 119, 9503.17, 132.54, 749.65, 4.99, 10125.27),
    (161, 8, 65, '2022-06-05 08:10:07', 'delivered', 222, 295.15, 29.52, 21.25, 9.99, 296.88),
    (122, 8, 61, '2021-07-28 16:27:51', 'delivered', 164, 5729.32, 770.48, 396.71, 0.0, 5355.55),
    (84, 1, NULL, '2025-09-09 12:26:20', 'shipped', 114, 1209.23, 0.0, 96.74, 4.99, 1310.96),
    (68, 2, NULL, '2024-01-24 04:12:15', 'delivered', 93, 887.62, 30.77, 68.55, 9.99, 935.39),
    (77, 4, 30, '2024-09-25 15:15:17', 'delivered', 107, 382.89, 0.0, 30.63, 9.99, 423.51),
    (214, 6, 49, '2023-02-27 11:46:08', 'delivered', 299, 165.88, 0.0, 13.27, 9.99, 189.14),
    (226, 8, 64, '2025-12-22 04:07:00', 'processing', 315, 12930.59, 1242.15, 935.08, 0.0, 12623.52),
    (112, 2, 2, '2023-03-31 04:42:30', 'shipped', 150, 6132.03, 748.47, 430.69, 4.99, 5819.24),
    (214, 7, 7, '2024-04-05 10:49:55', 'shipped', 299, 7539.81, 38.4, 600.11, 0.0, 8101.52),
    (101, 5, 39, '2022-11-30 04:19:03', 'delivered', 137, 2650.34, 0.0, 212.03, 4.99, 2867.36),
    (152, 3, 27, '2022-03-04 00:40:27', 'cancelled', 208, 1861.12, 7.69, 148.27, 4.99, 2006.69),
    (51, 7, NULL, '2023-01-16 23:18:30', 'delivered', 70, 850.24, 0.0, 68.02, 4.99, 923.25),
    (69, 5, 38, '2024-02-10 23:35:40', 'delivered', 95, 4145.0, 358.04, 302.96, 4.99, 4094.91),
    (188, 8, 63, '2023-04-10 18:38:37', 'delivered', 259, 5436.27, 68.07, 429.46, 4.99, 5802.65),
    (289, 8, 62, '2024-05-06 02:15:06', 'delivered', 407, 4040.03, 120.59, 313.56, 14.99, 4248.0),
    (157, 2, 16, '2024-05-24 23:07:26', 'delivered', 215, 1586.22, 0.0, 126.9, 9.99, 1723.11),
    (189, 2, 18, '2022-01-16 17:13:49', 'cancelled', 261, 1659.08, 48.12, 128.88, 4.99, 1744.83),
    (29, 8, 61, '2024-11-23 15:19:52', 'shipped', 38, 1298.64, 0.0, 103.89, 4.99, 1407.52),
    (73, 2, NULL, '2025-09-02 15:07:27', 'delivered', 101, 8493.76, 74.87, 673.51, 14.99, 9107.39),
    (13, 7, 52, '2022-11-23 11:36:14', 'cancelled', 18, 1589.77, 37.94, 124.15, 9.99, 1685.97),
    (183, 3, 22, '2021-03-18 09:18:37', 'cancelled', 251, 4394.11, 363.44, 322.45, 0.0, 4353.12),
    (100, 2, 19, '2023-07-25 13:25:36', 'shipped', 136, 9483.5, 323.79, 732.78, 4.99, 9897.48),
    (201, 3, 3, '2026-02-11 00:48:56', 'delivered', 279, 1512.74, 151.78, 108.88, 9.99, 1479.83),
    (117, 4, 30, '2021-01-05 10:11:38', 'delivered', 157, 1245.63, 90.12, 92.44, 4.99, 1252.94),
    (283, 8, NULL, '2022-08-06 08:21:25', 'delivered', 399, 2663.96, 20.82, 211.45, 0.0, 2854.59),
    (284, 4, 36, '2025-10-07 13:04:49', 'delivered', 400, 7920.56, 1108.79, 544.94, 9.99, 7366.7),
    (207, 8, 65, '2023-03-28 01:01:16', 'processing', 287, 1678.96, 41.5, 131.0, 4.99, 1773.45),
    (150, 5, 41, '2025-10-07 12:30:57', 'refunded', 205, 2153.29, 24.88, 170.27, 4.99, 2303.67),
    (246, 4, NULL, '2021-12-23 11:39:43', 'delivered', 346, 756.86, 0.0, 60.55, 4.99, 822.4),
    (288, 6, NULL, '2021-08-11 21:06:20', 'shipped', 406, 9186.15, 75.78, 728.83, 9.99, 9849.19),
    (186, 6, 44, '2022-06-26 11:15:02', 'cancelled', 256, 228.47, 0.0, 18.28, 9.99, 256.74),
    (176, 6, 6, '2025-11-05 14:37:23', 'cancelled', 242, 511.96, 25.6, 38.91, 4.99, 530.26),
    (255, 6, 6, '2025-01-22 11:39:23', 'delivered', 356, 1670.72, 10.43, 132.82, 0.0, 1793.11),
    (50, 3, 22, '2022-04-11 00:17:20', 'delivered', 68, 1250.08, 76.79, 93.86, 4.99, 1272.14),
    (290, 8, 60, '2024-08-17 15:53:18', 'delivered', 408, 7395.69, 357.68, 563.04, 14.99, 7616.04),
    (279, 7, 53, '2026-05-15 08:10:30', 'delivered', 393, 8495.33, 148.17, 667.77, 4.99, 9019.92),
    (172, 3, 23, '2021-05-22 22:11:57', 'processing', 236, 13078.98, 533.65, 1003.63, 9.99, 13558.95),
    (288, 8, 62, '2025-08-20 11:54:56', 'delivered', 406, 6555.26, 329.02, 498.1, 4.99, 6729.33),
    (132, 6, NULL, '2024-06-17 14:12:02', 'shipped', 177, 19063.38, 2721.98, 1307.31, 14.99, 17663.7),
    (290, 6, NULL, '2024-03-27 02:33:18', 'shipped', 408, 1967.83, 91.47, 150.11, 4.99, 2031.46),
    (237, 7, 56, '2023-07-21 03:58:20', 'shipped', 331, 380.31, 19.02, 28.9, 14.99, 405.18),
    (292, 6, 48, '2023-05-26 04:33:01', 'delivered', 411, 3081.92, 335.87, 219.68, 4.99, 2970.72),
    (126, 4, 32, '2023-05-07 20:14:22', 'delivered', 170, 9533.97, 1338.15, 655.67, 0.0, 8851.49),
    (66, 8, 61, '2025-11-24 09:18:00', 'delivered', 90, 13332.87, 22.9, 1064.8, 4.99, 14379.76),
    (155, 6, 49, '2024-02-26 05:45:55', 'delivered', 213, 2428.26, 37.47, 191.26, 9.99, 2592.04),
    (183, 2, NULL, '2021-12-23 16:00:52', 'shipped', 251, 1769.98, 140.97, 130.32, 4.99, 1764.32),
    (41, 4, 32, '2024-01-26 00:32:45', 'delivered', 55, 663.66, 0.0, 53.09, 4.99, 721.74),
    (25, 4, 30, '2022-08-15 20:14:22', 'delivered', 33, 2904.54, 0.0, 232.36, 4.99, 3141.89),
    (107, 2, NULL, '2022-12-22 18:28:48', 'delivered', 144, 5059.4, 411.99, 371.79, 4.99, 5024.19),
    (46, 8, 62, '2021-07-20 02:51:14', 'delivered', 62, 2645.25, 254.83, 191.23, 4.99, 2586.64),
    (25, 3, 25, '2024-08-04 11:52:11', 'delivered', 33, 3416.86, 17.74, 271.93, 0.0, 3671.05),
    (120, 1, NULL, '2022-02-22 16:43:32', 'delivered', 161, 14660.55, 237.68, 1153.83, 4.99, 15581.69),
    (219, 3, 26, '2023-09-07 06:10:23', 'shipped', 306, 539.25, 26.96, 40.98, 4.99, 558.26),
    (89, 4, 36, '2023-03-14 13:22:19', 'delivered', 121, 3001.76, 0.0, 240.14, 4.99, 3246.89),
    (298, 1, NULL, '2022-05-22 13:27:41', 'refunded', 420, 2694.77, 365.9, 186.31, 4.99, 2520.17),
    (53, 8, 65, '2023-09-25 16:03:51', 'delivered', 72, 4746.3, 644.52, 328.14, 9.99, 4439.91),
    (259, 2, 17, '2026-02-04 09:33:21', 'confirmed', 360, 1547.65, 76.94, 117.66, 0.0, 1588.37),
    (25, 2, 19, '2021-05-11 09:02:07', 'shipped', 33, 533.49, 10.89, 41.81, 4.99, 569.4),
    (116, 3, 25, '2024-01-08 19:42:34', 'shipped', 156, 2126.2, 88.3, 163.03, 9.99, 2210.92),
    (233, 3, 26, '2023-06-18 16:53:30', 'processing', 325, 590.3, 0.0, 47.22, 4.99, 642.51),
    (196, 4, 4, '2025-08-04 09:53:10', 'delivered', 272, 437.57, 51.09, 30.92, 9.99, 427.39),
    (298, 6, NULL, '2024-12-14 12:56:46', 'pending', 420, 2258.48, 138.87, 169.57, 9.99, 2299.17),
    (161, 4, 35, '2025-03-24 14:43:02', 'shipped', 222, 251.52, 0.0, 20.12, 4.99, 276.63),
    (243, 6, 45, '2024-01-20 10:04:04', 'delivered', 342, 26.49, 3.97, 1.8, 4.99, 29.31),
    (69, 1, 10, '2022-04-14 20:37:06', 'delivered', 95, 5342.91, 801.44, 363.32, 14.99, 4919.78),
    (22, 3, 26, '2025-12-12 20:40:40', 'delivered', 29, 1660.55, 96.07, 125.16, 4.99, 1694.63),
    (264, 1, 13, '2021-10-29 16:00:20', 'shipped', 367, 2973.66, 0.0, 237.89, 4.99, 3216.54),
    (81, 2, 2, '2022-07-04 05:41:19', 'delivered', 111, 68.0, 6.8, 4.9, 4.99, 71.09),
    (58, 6, 49, '2025-08-16 09:48:49', 'delivered', 79, 1181.37, 33.23, 91.85, 14.99, 1254.99),
    (1, 1, 10, '2025-11-06 23:34:03', 'cancelled', 1, 6422.83, 874.59, 443.86, 4.99, 5997.09),
    (61, 7, 53, '2023-07-10 05:50:51', 'delivered', 84, 298.96, 29.9, 21.53, 4.99, 295.58),
    (99, 3, NULL, '2021-07-18 17:29:25', 'confirmed', 134, 403.3, 29.9, 29.87, 4.99, 408.26),
    (291, 2, NULL, '2026-03-26 17:31:31', 'delivered', 409, 2212.15, 22.02, 175.21, 0.0, 2365.34),
    (2, 1, NULL, '2022-09-04 03:38:48', 'delivered', 2, 4197.16, 18.22, 334.32, 4.99, 4518.25),
    (88, 1, NULL, '2024-05-21 21:03:09', 'delivered', 120, 7359.22, 430.44, 554.3, 9.99, 7493.08),
    (248, 7, 51, '2025-04-21 00:36:25', 'delivered', 348, 491.28, 0.0, 39.3, 4.99, 535.57),
    (157, 2, NULL, '2021-08-20 02:35:30', 'shipped', 215, 15381.61, 895.08, 1158.92, 9.99, 15655.44),
    (247, 8, 8, '2024-08-05 15:16:54', 'delivered', 347, 1662.73, 60.02, 128.22, 0.0, 1730.93),
    (228, 7, NULL, '2025-04-13 06:55:24', 'delivered', 317, 2447.13, 44.04, 192.25, 9.99, 2605.34),
    (78, 7, 56, '2025-07-17 15:58:39', 'delivered', 108, 541.83, 22.42, 41.55, 4.99, 565.95),
    (290, 3, 24, '2026-02-15 10:01:18', 'shipped', 408, 6153.24, 50.43, 488.23, 9.99, 6601.03),
    (156, 2, 19, '2026-04-07 08:17:30', 'delivered', 214, 443.9, 22.2, 33.74, 4.99, 460.44),
    (255, 5, 40, '2024-06-14 05:49:25', 'shipped', 356, 10303.34, 58.84, 819.56, 4.99, 11069.05),
    (136, 5, 38, '2025-05-19 08:00:29', 'delivered', 184, 426.82, 0.0, 34.15, 9.99, 470.96),
    (72, 8, NULL, '2024-05-28 10:10:32', 'delivered', 99, 7528.44, 202.42, 586.08, 9.99, 7922.1),
    (277, 4, 35, '2023-03-25 17:32:10', 'delivered', 389, 1105.98, 0.0, 88.48, 9.99, 1204.45),
    (229, 6, 6, '2021-01-02 23:06:57', 'shipped', 319, 1857.57, 190.41, 133.37, 14.99, 1815.52),
    (286, 5, 39, '2024-09-23 16:08:46', 'refunded', 403, 602.94, 53.8, 43.93, 4.99, 598.06),
    (18, 1, NULL, '2022-09-26 22:41:29', 'delivered', 25, 1219.66, 0.0, 97.57, 4.99, 1322.22),
    (23, 7, 55, '2024-08-03 22:05:13', 'delivered', 30, 2153.75, 118.47, 162.82, 0.0, 2198.1),
    (92, 3, 23, '2022-01-24 00:02:22', 'delivered', 125, 1515.16, 0.0, 121.21, 4.99, 1641.36),
    (167, 6, 49, '2023-10-11 15:31:44', 'shipped', 229, 4123.95, 594.73, 282.34, 4.99, 3816.55),
    (53, 3, 3, '2021-01-11 07:52:40', 'delivered', 72, 10700.29, 152.8, 843.8, 4.99, 11396.28),
    (280, 4, 36, '2023-09-25 06:22:38', 'delivered', 394, 2583.34, 36.87, 203.72, 9.99, 2760.18),
    (258, 6, 44, '2024-10-25 20:01:46', 'confirmed', 359, 1306.75, 0.0, 104.54, 4.99, 1416.28),
    (110, 6, 47, '2024-09-23 22:31:15', 'delivered', 147, 5765.12, 10.2, 460.39, 4.99, 6220.3),
    (19, 6, 6, '2022-11-22 11:49:42', 'shipped', 26, 4474.25, 65.84, 352.67, 4.99, 4766.07),
    (246, 8, 62, '2025-09-20 20:45:35', 'delivered', 346, 7849.02, 42.32, 624.54, 9.99, 8441.23),
    (263, 1, NULL, '2025-10-20 22:02:21', 'delivered', 366, 7982.36, 0.0, 638.59, 4.99, 8625.94),
    (204, 2, 16, '2022-10-15 03:17:20', 'delivered', 283, 1743.13, 198.16, 123.6, 14.99, 1683.56),
    (295, 1, 9, '2021-05-30 19:51:28', 'delivered', 417, 8634.86, 402.72, 658.57, 0.0, 8890.71),
    (264, 5, 43, '2025-12-16 19:37:13', 'delivered', 367, 1593.9, 133.17, 116.86, 9.99, 1587.58),
    (65, 2, 2, '2022-07-11 14:24:02', 'processing', 89, 8833.12, 1037.03, 623.69, 4.99, 8424.77),
    (298, 5, 40, '2023-10-19 07:59:40', 'delivered', 420, 3863.62, 243.75, 289.59, 0.0, 3909.47),
    (16, 4, 33, '2024-09-11 16:30:38', 'delivered', 22, 79.32, 3.97, 6.03, 9.99, 91.37),
    (41, 5, 41, '2025-11-26 22:18:48', 'pending', 55, 2583.76, 258.38, 186.03, 4.99, 2516.4),
    (162, 3, 27, '2024-08-07 02:04:06', 'delivered', 223, 512.22, 25.66, 38.92, 4.99, 530.47),
    (238, 1, 13, '2022-08-30 08:06:00', 'processing', 332, 5470.44, 302.1, 413.47, 9.99, 5591.8),
    (125, 7, NULL, '2021-07-03 12:38:18', 'delivered', 169, 681.96, 12.78, 53.53, 0.0, 722.71),
    (106, 7, NULL, '2023-12-03 10:39:05', 'cancelled', 143, 12146.2, 819.21, 906.16, 9.99, 12243.14),
    (171, 6, 49, '2021-10-08 16:48:12', 'delivered', 234, 1069.76, 85.57, 78.74, 4.99, 1067.92),
    (60, 2, 16, '2024-05-05 15:48:22', 'refunded', 83, 10487.18, 132.5, 828.37, 4.99, 11188.04),
    (267, 2, 17, '2023-03-08 16:24:54', 'confirmed', 372, 17581.74, 1615.9, 1277.27, 4.99, 17248.1),
    (20, 4, 36, '2021-01-04 19:09:01', 'processing', 27, 1397.04, 0.0, 111.76, 14.99, 1523.79),
    (135, 5, 43, '2021-12-27 14:00:15', 'delivered', 182, 2577.94, 78.66, 199.94, 9.99, 2709.21),
    (261, 8, 63, '2023-12-26 07:00:12', 'processing', 364, 10103.52, 5.1, 807.87, 4.99, 10911.28),
    (101, 1, 14, '2025-09-14 11:26:31', 'refunded', 137, 104.09, 10.41, 7.49, 9.99, 111.16),
    (18, 4, 31, '2026-01-10 01:52:43', 'delivered', 25, 17410.1, 1480.32, 1274.38, 9.99, 17214.15),
    (5, 1, 9, '2023-12-21 15:16:34', 'shipped', 8, 7339.57, 453.97, 550.85, 0.0, 7436.45),
    (44, 1, 13, '2024-10-30 18:06:32', 'delivered', 60, 476.1, 0.0, 38.09, 0.0, 514.19),
    (140, 2, 16, '2023-04-22 02:32:23', 'delivered', 192, 1569.28, 147.46, 113.75, 4.99, 1540.56),
    (74, 5, 43, '2021-03-29 11:51:25', 'delivered', 102, 17242.5, 982.86, 1300.77, 9.99, 17570.4),
    (89, 7, NULL, '2025-07-16 17:49:04', 'delivered', 121, 2548.28, 0.0, 203.86, 4.99, 2757.13),
    (111, 1, 10, '2025-08-24 20:17:38', 'delivered', 148, 2532.27, 61.46, 197.66, 4.99, 2673.46),
    (70, 2, 16, '2024-06-25 13:23:41', 'refunded', 96, 12043.51, 0.0, 963.48, 4.99, 13011.98),
    (18, 8, 59, '2021-12-06 03:20:30', 'shipped', 25, 15531.44, 185.01, 1227.71, 14.99, 16589.13),
    (209, 2, 2, '2025-11-05 07:27:48', 'shipped', 291, 1715.25, 0.0, 137.22, 4.99, 1857.46),
    (75, 4, 32, '2022-02-14 07:35:29', 'shipped', 104, 7332.96, 0.0, 586.64, 14.99, 7934.59),
    (73, 1, 12, '2024-10-17 21:57:25', 'delivered', 101, 3862.85, 44.84, 305.44, 4.99, 4128.44),
    (154, 1, 10, '2023-04-20 22:38:13', 'cancelled', 212, 1483.76, 0.0, 118.7, 14.99, 1617.45),
    (47, 3, 27, '2023-06-07 03:05:24', 'delivered', 64, 4269.57, 319.4, 316.01, 4.99, 4271.17),
    (225, 2, 2, '2025-11-12 18:59:25', 'confirmed', 314, 2148.94, 61.67, 166.98, 9.99, 2264.24),
    (104, 7, 52, '2022-09-06 05:45:22', 'delivered', 141, 1994.49, 37.43, 156.56, 14.99, 2128.61),
    (115, 7, 56, '2022-08-06 12:23:28', 'processing', 154, 401.93, 80.39, 25.72, 0.0, 347.26),
    (76, 1, 13, '2021-01-05 15:06:32', 'delivered', 106, 8871.84, 0.0, 709.75, 4.99, 9586.58),
    (233, 4, 4, '2021-01-11 10:26:30', 'delivered', 325, 12491.91, 408.35, 966.69, 4.99, 13055.24),
    (298, 8, 8, '2024-04-21 02:37:55', 'pending', 420, 2041.97, 14.55, 162.19, 0.0, 2189.61),
    (264, 5, 39, '2024-09-12 03:17:39', 'processing', 367, 274.7, 54.94, 17.58, 0.0, 237.34),
    (44, 6, NULL, '2026-02-20 23:07:39', 'delivered', 60, 838.5, 27.67, 64.87, 4.99, 880.69),
    (36, 6, 46, '2023-05-13 21:21:16', 'delivered', 47, 177.42, 0.0, 14.19, 4.99, 196.6),
    (298, 5, 42, '2024-10-04 01:19:55', 'processing', 420, 559.57, 27.98, 42.53, 4.99, 579.11),
    (72, 2, 16, '2022-03-05 01:04:56', 'delivered', 99, 13216.87, 939.25, 982.21, 4.99, 13264.82),
    (99, 7, 53, '2023-12-07 03:22:05', 'refunded', 134, 1739.64, 0.0, 139.17, 9.99, 1888.8),
    (72, 6, NULL, '2021-12-28 00:09:15', 'delivered', 99, 217.58, 21.76, 15.67, 14.99, 226.48),
    (147, 7, NULL, '2021-04-09 12:15:23', 'confirmed', 202, 8058.3, 197.34, 628.88, 9.99, 8499.83),
    (66, 7, NULL, '2021-10-06 06:55:13', 'processing', 90, 1980.76, 0.0, 158.46, 9.99, 2149.21),
    (133, 5, 5, '2023-08-08 00:51:37', 'delivered', 178, 130.15, 7.6, 9.8, 14.99, 147.34),
    (171, 4, NULL, '2025-04-01 00:35:05', 'delivered', 234, 5107.44, 472.51, 370.79, 4.99, 5010.71),
    (210, 3, 26, '2021-11-12 12:37:21', 'delivered', 292, 222.11, 2.59, 17.56, 9.99, 247.07),
    (180, 7, 52, '2023-05-08 16:40:13', 'refunded', 247, 1086.14, 39.69, 83.72, 4.99, 1135.17),
    (56, 5, 43, '2023-07-26 05:19:43', 'refunded', 77, 1029.96, 60.67, 77.54, 9.99, 1056.82),
    (194, 3, 23, '2021-09-27 22:17:26', 'delivered', 269, 5975.5, 274.03, 456.12, 4.99, 6162.58),
    (46, 2, NULL, '2026-03-18 20:15:41', 'delivered', 62, 1889.91, 20.76, 149.53, 9.99, 2028.67),
    (116, 6, 47, '2025-04-04 19:43:09', 'delivered', 156, 4091.19, 66.0, 322.02, 14.99, 4362.2),
    (190, 5, 40, '2021-09-13 13:52:45', 'delivered', 263, 703.37, 0.0, 56.27, 9.99, 769.63),
    (123, 8, NULL, '2025-04-19 17:09:23', 'delivered', 166, 5926.66, 0.0, 474.13, 9.99, 6410.78),
    (282, 1, NULL, '2023-05-08 13:43:40', 'confirmed', 398, 4947.63, 742.14, 336.44, 4.99, 4546.92),
    (255, 2, 18, '2025-09-20 15:05:17', 'delivered', 356, 491.28, 73.69, 33.41, 0.0, 451.0),
    (27, 5, NULL, '2023-06-05 03:20:11', 'delivered', 36, 1549.21, 52.35, 119.75, 9.99, 1626.6),
    (86, 8, 8, '2025-01-05 10:33:06', 'processing', 117, 8094.84, 118.68, 638.09, 4.99, 8619.24),
    (104, 7, 57, '2022-01-10 17:39:59', 'delivered', 141, 4625.37, 324.24, 344.09, 9.99, 4655.21),
    (181, 8, 8, '2021-02-15 18:23:03', 'shipped', 248, 848.16, 100.2, 59.84, 0.0, 807.8),
    (300, 1, 14, '2026-02-15 19:01:58', 'delivered', 422, 2143.35, 37.74, 168.45, 9.99, 2284.05),
    (187, 3, NULL, '2021-06-20 15:02:08', 'delivered', 258, 1587.0, 146.19, 115.26, 14.99, 1571.06),
    (133, 3, 24, '2021-12-16 13:04:21', 'delivered', 178, 2087.58, 104.38, 158.66, 4.99, 2146.85),
    (55, 7, 51, '2021-02-18 01:32:50', 'delivered', 75, 1629.2, 0.0, 130.34, 9.99, 1769.53),
    (282, 7, 56, '2023-02-01 09:35:49', 'shipped', 398, 2689.82, 70.17, 209.57, 14.99, 2844.21),
    (300, 7, 51, '2023-09-22 09:12:07', 'delivered', 422, 11900.63, 70.92, 946.38, 4.99, 12781.08),
    (133, 3, 3, '2026-02-03 15:42:49', 'delivered', 178, 1239.45, 0.0, 99.16, 9.99, 1348.6),
    (217, 8, 8, '2024-01-18 14:05:55', 'confirmed', 303, 5194.56, 0.0, 415.56, 9.99, 5620.11),
    (197, 5, 43, '2025-07-10 11:53:05', 'refunded', 274, 2443.39, 0.0, 195.47, 14.99, 2653.85),
    (96, 8, 59, '2023-07-27 09:26:04', 'delivered', 130, 981.05, 5.17, 78.07, 9.99, 1063.94),
    (76, 8, 62, '2021-05-22 23:08:06', 'delivered', 106, 2251.26, 125.59, 170.05, 4.99, 2300.71),
    (206, 8, 60, '2024-01-18 16:26:47', 'delivered', 286, 1348.04, 96.84, 100.1, 4.99, 1356.29),
    (135, 7, 53, '2022-07-02 22:43:14', 'confirmed', 182, 870.91, 11.42, 68.76, 4.99, 933.24),
    (168, 8, 62, '2021-01-28 10:45:11', 'delivered', 230, 6216.94, 11.37, 496.45, 0.0, 6702.02),
    (15, 4, 36, '2023-03-18 18:32:45', 'processing', 21, 10505.74, 720.73, 782.8, 4.99, 10572.8),
    (90, 3, 22, '2021-08-22 01:14:40', 'delivered', 122, 1907.06, 54.63, 148.19, 4.99, 2005.61),
    (191, 2, 21, '2025-09-13 12:25:49', 'delivered', 265, 4546.08, 104.31, 355.34, 14.99, 4812.1),
    (204, 5, 37, '2021-07-08 02:56:12', 'delivered', 283, 93.39, 0.0, 7.47, 9.99, 110.85),
    (111, 2, 16, '2024-10-16 13:56:22', 'cancelled', 148, 368.46, 18.42, 28.0, 14.99, 393.03),
    (107, 3, 28, '2022-07-25 05:43:12', 'shipped', 144, 9728.09, 936.37, 703.34, 4.99, 9500.05),
    (3, 4, 4, '2024-05-20 14:33:07', 'delivered', 4, 6412.16, 48.12, 509.12, 4.99, 6878.15),
    (253, 3, 22, '2022-05-13 07:20:07', 'cancelled', 353, 340.8, 0.0, 27.26, 9.99, 378.05),
    (289, 7, NULL, '2024-08-30 08:27:39', 'delivered', 407, 1009.22, 15.36, 79.51, 4.99, 1078.36),
    (192, 1, 1, '2025-04-21 01:09:07', 'delivered', 266, 2028.13, 120.16, 152.64, 14.99, 2075.6),
    (88, 1, 9, '2024-02-28 21:51:45', 'delivered', 120, 622.13, 65.83, 44.5, 4.99, 605.79),
    (89, 1, 11, '2024-01-16 18:41:23', 'confirmed', 121, 449.72, 0.0, 35.98, 9.99, 495.69),
    (146, 6, 6, '2022-12-04 06:29:23', 'delivered', 201, 2478.4, 35.29, 195.45, 0.0, 2638.56),
    (276, 1, 11, '2022-01-16 10:26:52', 'processing', 387, 8743.87, 1020.49, 617.87, 4.99, 8346.24),
    (69, 1, NULL, '2023-01-25 03:01:35', 'refunded', 95, 16189.86, 452.26, 1259.01, 4.99, 17001.6),
    (51, 3, 28, '2021-08-25 03:58:44', 'delivered', 70, 5405.49, 0.0, 432.44, 4.99, 5842.92),
    (141, 8, 64, '2023-02-22 13:07:30', 'delivered', 193, 3212.76, 0.0, 257.02, 4.99, 3474.77),
    (273, 5, 38, '2023-04-21 08:36:30', 'confirmed', 382, 4425.63, 634.11, 303.32, 4.99, 4099.83),
    (108, 3, NULL, '2021-11-23 10:23:52', 'delivered', 145, 7268.8, 0.0, 581.5, 4.99, 7855.29),
    (239, 3, 25, '2022-02-12 21:51:47', 'processing', 334, 333.0, 33.3, 23.98, 4.99, 328.67),
    (277, 2, 20, '2021-01-24 01:32:53', 'delivered', 389, 13031.7, 1590.99, 915.26, 14.99, 12370.96),
    (278, 5, 40, '2021-06-28 02:50:19', 'cancelled', 391, 748.48, 95.67, 52.23, 4.99, 710.03),
    (245, 3, 23, '2021-02-25 21:23:28', 'delivered', 344, 4188.27, 590.59, 287.81, 0.0, 3885.49),
    (285, 3, 26, '2021-01-27 18:57:56', 'delivered', 402, 10401.12, 38.49, 829.01, 14.99, 11206.63),
    (141, 2, 19, '2022-06-28 17:10:38', 'delivered', 193, 422.08, 0.0, 33.77, 9.99, 465.84),
    (210, 7, NULL, '2023-12-01 16:54:12', 'delivered', 292, 1115.22, 0.0, 89.22, 0.0, 1204.44),
    (21, 1, 9, '2021-06-05 00:58:52', 'delivered', 28, 255.98, 0.0, 20.48, 9.99, 286.45),
    (69, 3, 28, '2021-10-18 22:45:47', 'processing', 95, 5138.57, 44.27, 407.54, 14.99, 5516.83),
    (29, 8, 60, '2024-04-29 13:16:50', 'delivered', 38, 2038.34, 46.94, 159.31, 4.99, 2155.7),
    (211, 2, NULL, '2026-04-02 15:07:18', 'shipped', 293, 174.09, 0.0, 13.93, 4.99, 193.01),
    (142, 5, NULL, '2022-09-03 21:36:04', 'delivered', 195, 6181.94, 131.41, 484.04, 9.99, 6544.56),
    (24, 5, 37, '2025-01-10 17:52:51', 'delivered', 31, 5255.28, 227.97, 402.18, 4.99, 5434.48),
    (94, 1, 12, '2025-10-07 23:36:47', 'shipped', 128, 13478.85, 534.29, 1035.56, 4.99, 13985.11),
    (230, 1, 12, '2025-07-24 11:59:38', 'delivered', 321, 684.94, 0.0, 54.8, 4.99, 744.73),
    (137, 2, 2, '2026-01-25 12:39:19', 'delivered', 186, 1853.79, 94.98, 140.7, 0.0, 1899.51),
    (274, 2, 18, '2021-06-05 01:37:49', 'delivered', 383, 19081.47, 258.38, 1505.85, 9.99, 20338.93),
    (180, 7, 56, '2024-12-23 00:25:38', 'processing', 247, 2307.74, 96.9, 176.87, 0.0, 2387.71),
    (86, 2, NULL, '2025-05-26 08:02:37', 'delivered', 117, 615.48, 30.77, 46.78, 9.99, 641.48),
    (121, 6, 49, '2021-04-14 08:30:27', 'delivered', 162, 170.9, 0.0, 13.67, 14.99, 199.56),
    (109, 1, 15, '2022-10-18 12:34:48', 'pending', 146, 2685.35, 159.45, 202.07, 9.99, 2737.96),
    (9, 8, 64, '2023-10-20 11:14:16', 'shipped', 13, 1308.24, 47.46, 100.86, 9.99, 1371.63),
    (258, 8, 8, '2023-09-06 09:35:08', 'delivered', 359, 2669.7, 174.51, 199.62, 9.99, 2704.8),
    (40, 7, 57, '2021-04-03 09:32:29', 'delivered', 54, 1656.37, 165.64, 119.26, 4.99, 1614.98),
    (8, 8, 60, '2025-05-01 07:34:03', 'delivered', 12, 423.08, 0.0, 33.85, 4.99, 461.92),
    (105, 4, 35, '2021-01-19 21:02:41', 'delivered', 142, 1639.06, 190.67, 115.87, 0.0, 1564.26),
    (168, 5, 5, '2021-12-17 22:30:53', 'delivered', 230, 5101.21, 126.01, 398.02, 4.99, 5378.21),
    (143, 4, 30, '2021-08-23 02:06:25', 'delivered', 197, 6878.16, 278.48, 527.97, 9.99, 7137.64),
    (298, 3, 22, '2023-10-18 19:46:27', 'pending', 420, 8163.61, 11.9, 652.14, 4.99, 8808.84),
    (34, 8, 60, '2025-07-01 14:08:35', 'shipped', 45, 2011.77, 178.18, 146.69, 4.99, 1985.27),
    (174, 3, 28, '2026-05-16 12:33:38', 'shipped', 239, 26.49, 0.0, 2.12, 4.99, 33.6),
    (198, 2, 18, '2024-06-15 20:19:47', 'delivered', 276, 443.9, 22.2, 33.74, 9.99, 465.44),
    (234, 1, 10, '2024-08-01 20:51:22', 'shipped', 327, 2785.76, 176.72, 208.72, 4.99, 2822.75),
    (249, 1, NULL, '2021-02-04 00:38:30', 'delivered', 349, 1298.97, 22.0, 102.16, 14.99, 1394.12),
    (235, 6, 45, '2025-09-09 21:22:34', 'cancelled', 329, 1556.09, 12.6, 123.48, 9.99, 1676.96),
    (181, 6, 49, '2023-03-06 20:58:34', 'delivered', 248, 615.48, 61.55, 44.31, 9.99, 608.23),
    (125, 7, 54, '2025-05-04 13:54:25', 'delivered', 169, 127.44, 25.49, 8.16, 4.99, 115.1),
    (205, 7, 53, '2022-01-31 02:42:55', 'shipped', 285, 1180.6, 118.06, 85.0, 9.99, 1157.53),
    (209, 5, 38, '2024-03-04 08:27:32', 'delivered', 291, 1497.33, 63.44, 114.71, 0.0, 1548.6),
    (38, 8, 64, '2022-07-04 16:09:52', 'shipped', 50, 2650.66, 293.73, 188.55, 4.99, 2550.48),
    (254, 8, 63, '2024-09-09 20:35:09', 'pending', 354, 553.59, 27.68, 42.07, 0.0, 567.98),
    (127, 2, 19, '2025-06-29 01:36:00', 'delivered', 171, 3492.74, 162.12, 266.45, 9.99, 3607.06),
    (157, 4, 32, '2025-10-19 08:36:11', 'confirmed', 215, 11599.48, 329.84, 901.57, 9.99, 12181.2),
    (70, 5, 41, '2026-04-14 15:26:01', 'refunded', 96, 7469.72, 0.0, 597.58, 14.99, 8082.29),
    (53, 5, 42, '2022-01-24 16:18:27', 'cancelled', 72, 2413.07, 23.8, 191.14, 4.99, 2585.4),
    (221, 6, 45, '2023-06-22 04:16:43', 'delivered', 309, 254.88, 25.49, 18.35, 4.99, 252.73),
    (84, 6, 44, '2022-08-27 06:27:05', 'delivered', 114, 5020.13, 0.0, 401.61, 4.99, 5426.73),
    (24, 3, 22, '2026-01-10 12:13:09', 'shipped', 31, 14149.27, 329.84, 1105.55, 9.99, 14934.97),
    (221, 1, 14, '2022-02-04 18:23:22', 'delivered', 309, 10970.82, 132.4, 867.07, 9.99, 11715.48),
    (183, 2, 16, '2022-06-02 04:03:36', 'delivered', 251, 2584.69, 210.77, 189.91, 9.99, 2573.82),
    (49, 6, 50, '2023-03-21 13:39:33', 'shipped', 67, 1226.7, 45.99, 94.46, 9.99, 1285.16),
    (160, 2, 2, '2023-02-12 12:16:59', 'delivered', 220, 5659.35, 538.97, 409.63, 4.99, 5535.0),
    (143, 1, 1, '2022-04-16 20:31:06', 'delivered', 197, 932.04, 0.0, 74.56, 4.99, 1011.59),
    (105, 4, 34, '2022-02-15 13:54:14', 'shipped', 142, 584.37, 13.39, 45.68, 4.99, 621.65),
    (222, 8, NULL, '2026-02-24 00:57:05', 'delivered', 310, 949.2, 0.0, 75.94, 9.99, 1035.13),
    (48, 5, 37, '2021-10-13 10:44:04', 'shipped', 66, 353.17, 2.91, 28.02, 4.99, 383.27),
    (84, 7, 51, '2021-12-13 05:26:53', 'delivered', 114, 3295.01, 10.34, 262.77, 4.99, 3552.43),
    (246, 1, 10, '2022-09-04 01:59:43', 'confirmed', 346, 340.6, 34.06, 24.52, 9.99, 341.05),
    (125, 5, 43, '2024-04-18 21:02:42', 'refunded', 169, 414.18, 34.11, 30.41, 4.99, 415.47),
    (197, 2, 17, '2021-02-21 02:08:40', 'processing', 274, 2003.43, 88.78, 153.17, 0.0, 2067.82),
    (5, 6, NULL, '2025-07-08 10:54:34', 'cancelled', 8, 273.76, 0.0, 21.9, 0.0, 295.66),
    (6, 4, 29, '2022-05-28 08:29:31', 'confirmed', 9, 1436.84, 64.93, 109.75, 4.99, 1486.65),
    (236, 6, 48, '2022-12-20 12:23:03', 'delivered', 330, 9461.15, 38.93, 753.78, 4.99, 10180.99),
    (71, 1, 12, '2023-06-06 10:30:03', 'cancelled', 98, 3324.27, 255.31, 245.52, 4.99, 3319.47),
    (272, 4, 32, '2023-10-23 19:21:24', 'delivered', 380, 3274.06, 25.94, 259.85, 4.99, 3512.96),
    (216, 3, 27, '2021-04-05 17:00:14', 'delivered', 301, 775.32, 11.83, 61.08, 14.99, 839.56),
    (14, 2, 16, '2021-01-14 13:42:14', 'confirmed', 20, 348.89, 0.0, 27.91, 0.0, 376.8),
    (32, 6, NULL, '2023-03-06 07:23:45', 'delivered', 42, 1874.64, 0.0, 149.97, 4.99, 2029.6),
    (188, 4, NULL, '2023-09-21 19:31:55', 'delivered', 259, 3073.16, 102.19, 237.68, 4.99, 3213.64),
    (199, 2, 16, '2023-09-29 06:07:42', 'delivered', 277, 2112.71, 177.56, 154.81, 14.99, 2104.95),
    (243, 2, 16, '2021-01-19 13:50:21', 'delivered', 342, 616.7, 0.0, 49.34, 9.99, 676.03),
    (112, 4, 30, '2026-02-19 15:27:43', 'delivered', 150, 871.7, 0.0, 69.74, 0.0, 941.44),
    (69, 6, 45, '2024-05-11 13:09:39', 'cancelled', 95, 2429.3, 12.97, 193.31, 4.99, 2614.63),
    (24, 3, 23, '2021-03-09 09:24:16', 'delivered', 31, 7779.16, 509.08, 581.61, 4.99, 7856.68),
    (254, 2, 19, '2022-04-10 00:24:08', 'cancelled', 354, 284.44, 0.0, 22.76, 4.99, 312.19),
    (138, 6, NULL, '2024-04-23 14:14:33', 'confirmed', 188, 1191.18, 86.17, 88.4, 14.99, 1208.4),
    (95, 7, 52, '2022-02-03 13:19:24', 'delivered', 129, 15493.1, 1290.44, 1136.21, 9.99, 15348.86),
    (186, 1, 1, '2023-11-07 23:44:28', 'delivered', 256, 1023.66, 0.0, 81.89, 9.99, 1115.54),
    (153, 1, NULL, '2025-03-22 04:50:21', 'shipped', 210, 5356.42, 150.96, 416.44, 0.0, 5621.9),
    (208, 4, 33, '2026-05-25 16:17:41', 'delivered', 289, 1053.24, 23.73, 82.36, 14.99, 1126.86),
    (293, 8, 62, '2026-02-02 09:48:45', 'delivered', 413, 2293.28, 49.4, 179.51, 4.99, 2428.38),
    (74, 7, 56, '2023-07-11 12:00:48', 'shipped', 102, 10345.14, 1105.72, 739.15, 0.0, 9978.57),
    (274, 2, 2, '2023-10-21 20:36:15', 'delivered', 383, 5835.57, 686.74, 411.91, 4.99, 5565.73),
    (83, 6, 50, '2025-04-15 22:08:09', 'delivered', 113, 377.4, 56.61, 25.66, 0.0, 346.45),
    (280, 8, NULL, '2025-08-26 09:35:29', 'refunded', 394, 6065.49, 185.6, 470.39, 4.99, 6355.27),
    (157, 8, 62, '2024-05-01 02:01:05', 'pending', 215, 6724.24, 374.82, 507.95, 9.99, 6867.36),
    (79, 4, 29, '2021-06-07 12:06:53', 'delivered', 109, 255.98, 0.0, 20.48, 4.99, 281.45),
    (215, 6, 48, '2024-10-28 21:59:30', 'delivered', 300, 6446.68, 92.66, 508.32, 4.99, 6867.34),
    (198, 8, 64, '2025-07-08 14:50:09', 'delivered', 276, 5950.72, 0.0, 476.06, 9.99, 6436.77),
    (36, 8, 8, '2022-03-23 12:33:43', 'delivered', 47, 12612.68, 1778.0, 866.77, 9.99, 11711.44),
    (241, 1, 15, '2021-03-03 18:20:57', 'refunded', 338, 13404.0, 902.31, 1000.13, 0.0, 13501.82),
    (25, 4, NULL, '2026-03-07 04:57:19', 'delivered', 33, 12587.74, 629.39, 956.67, 9.99, 12925.01),
    (295, 8, NULL, '2023-04-28 08:40:07', 'delivered', 417, 1078.7, 31.74, 83.76, 4.99, 1135.71),
    (22, 8, 64, '2025-03-10 00:50:25', 'delivered', 29, 7721.74, 77.19, 611.56, 9.99, 8266.1),
    (120, 2, 19, '2026-02-09 13:53:11', 'refunded', 161, 2434.9, 30.89, 192.32, 9.99, 2606.33),
    (50, 8, 65, '2023-06-07 15:32:28', 'delivered', 68, 3878.19, 102.3, 302.07, 4.99, 4082.95),
    (203, 5, NULL, '2024-07-29 18:41:37', 'processing', 281, 2049.23, 44.15, 160.41, 4.99, 2170.48),
    (85, 8, 65, '2023-06-28 21:01:53', 'cancelled', 115, 2426.98, 0.0, 194.16, 0.0, 2621.14),
    (45, 6, NULL, '2025-07-04 12:09:14', 'cancelled', 61, 535.62, 0.0, 42.85, 0.0, 578.47),
    (175, 5, 5, '2024-07-30 03:55:38', 'cancelled', 241, 1342.58, 0.0, 107.41, 9.99, 1459.98),
    (78, 3, 3, '2021-04-22 13:45:37', 'delivered', 108, 1734.89, 57.3, 134.21, 9.99, 1821.79),
    (161, 4, 29, '2025-08-20 03:45:14', 'delivered', 222, 378.56, 37.86, 27.26, 4.99, 372.95),
    (34, 6, 6, '2025-09-30 02:32:50', 'delivered', 45, 11380.48, 10.55, 909.59, 4.99, 12284.51),
    (9, 8, 60, '2023-01-09 19:18:17', 'delivered', 13, 1277.81, 191.67, 86.89, 9.99, 1183.02),
    (171, 2, 21, '2025-08-26 22:03:50', 'processing', 234, 8001.15, 41.29, 636.79, 9.99, 8606.64),
    (61, 1, 10, '2022-11-13 19:05:04', 'delivered', 84, 1768.5, 0.0, 141.48, 14.99, 1924.97),
    (224, 5, 43, '2021-05-24 14:25:33', 'shipped', 313, 3996.62, 80.53, 313.29, 0.0, 4229.38),
    (7, 8, 59, '2022-06-15 16:24:17', 'delivered', 10, 1892.12, 10.67, 150.52, 9.99, 2041.96),
    (17, 6, NULL, '2021-10-18 20:22:37', 'delivered', 24, 6852.13, 31.66, 545.64, 4.99, 7371.1),
    (53, 3, 26, '2021-06-02 22:04:37', 'shipped', 72, 4340.12, 535.92, 304.34, 0.0, 4108.54),
    (137, 6, 47, '2023-03-30 08:52:11', 'delivered', 186, 2190.22, 123.22, 165.36, 4.99, 2237.35),
    (246, 4, 36, '2022-10-10 04:54:52', 'delivered', 346, 4623.38, 305.52, 345.43, 4.99, 4668.28),
    (287, 4, 30, '2025-10-22 04:35:48', 'delivered', 404, 2383.33, 66.59, 185.34, 9.99, 2512.08),
    (282, 6, 47, '2025-07-29 02:11:53', 'shipped', 398, 4383.51, 7.76, 350.06, 9.99, 4735.8),
    (43, 8, 59, '2024-08-12 11:32:18', 'confirmed', 59, 219.45, 32.92, 14.92, 9.99, 211.44),
    (49, 7, 51, '2023-06-10 16:21:17', 'cancelled', 67, 256.35, 25.64, 18.46, 9.99, 259.17),
    (30, 5, 39, '2025-02-21 14:25:15', 'delivered', 39, 6806.5, 390.36, 513.29, 9.99, 6939.42),
    (218, 6, 6, '2025-11-22 21:23:42', 'delivered', 304, 7685.74, 82.51, 608.26, 14.99, 8226.48),
    (124, 5, 5, '2022-02-22 15:37:27', 'delivered', 168, 1301.62, 0.0, 104.13, 14.99, 1420.74),
    (217, 4, 35, '2024-01-18 12:38:06', 'delivered', 303, 2238.28, 335.74, 152.2, 9.99, 2064.73),
    (156, 5, 37, '2023-05-03 08:51:21', 'delivered', 214, 4607.84, 366.22, 339.33, 0.0, 4580.95),
    (66, 7, 55, '2024-03-30 22:39:45', 'cancelled', 90, 6550.68, 827.53, 457.85, 4.99, 6185.99),
    (24, 1, 13, '2021-01-08 16:55:57', 'refunded', 31, 11217.84, 1298.98, 793.51, 4.99, 10717.36),
    (275, 4, 32, '2024-12-27 13:54:03', 'delivered', 385, 7339.44, 0.0, 587.16, 4.99, 7931.59),
    (77, 6, NULL, '2023-03-22 00:16:18', 'delivered', 107, 4916.84, 56.95, 388.79, 4.99, 5253.67),
    (27, 6, 6, '2021-11-07 09:28:36', 'delivered', 36, 10982.45, 247.38, 858.81, 0.0, 11593.88),
    (281, 8, NULL, '2026-03-27 04:07:21', 'delivered', 396, 1963.29, 134.3, 146.32, 9.99, 1985.3),
    (135, 3, 24, '2021-02-08 00:29:06', 'delivered', 182, 2555.62, 0.0, 204.45, 14.99, 2775.06),
    (172, 1, 10, '2022-06-07 13:52:37', 'delivered', 236, 1678.71, 167.87, 120.87, 0.0, 1631.71),
    (53, 6, NULL, '2023-09-21 10:55:19', 'delivered', 72, 4663.77, 422.83, 339.28, 4.99, 4585.21),
    (91, 1, 10, '2021-03-27 12:52:57', 'processing', 123, 15878.52, 1064.19, 1185.15, 0.0, 15999.48),
    (131, 6, 49, '2023-05-31 04:59:34', 'delivered', 176, 4221.31, 191.67, 322.37, 4.99, 4357.0),
    (299, 7, 54, '2022-06-25 04:30:38', 'delivered', 421, 7304.6, 654.26, 532.03, 9.99, 7192.36),
    (197, 7, 55, '2025-10-15 07:29:06', 'delivered', 274, 4543.53, 511.63, 322.55, 4.99, 4359.44),
    (243, 6, 49, '2025-12-12 23:36:18', 'delivered', 342, 725.33, 89.71, 50.85, 4.99, 691.46),
    (120, 6, 49, '2022-01-31 10:49:10', 'delivered', 161, 9408.04, 18.45, 751.17, 9.99, 10150.75),
    (101, 4, 31, '2023-06-10 11:52:35', 'delivered', 137, 2845.92, 16.65, 226.34, 4.99, 3060.6),
    (122, 2, 17, '2022-11-29 19:38:34', 'delivered', 164, 4730.95, 170.93, 364.8, 9.99, 4934.81),
    (3, 2, 19, '2024-08-09 02:49:17', 'delivered', 4, 2566.8, 181.85, 190.8, 4.99, 2580.75),
    (227, 7, 54, '2022-03-24 20:35:26', 'delivered', 316, 436.73, 0.0, 34.94, 9.99, 481.66),
    (72, 5, NULL, '2024-05-13 12:01:35', 'delivered', 99, 996.76, 97.46, 71.94, 4.99, 976.23),
    (46, 7, 7, '2024-07-03 02:07:23', 'delivered', 62, 9531.0, 194.79, 746.9, 4.99, 10088.1),
    (42, 4, 32, '2023-04-25 18:05:54', 'shipped', 57, 5899.38, 283.87, 449.24, 0.0, 6064.75),
    (253, 4, NULL, '2023-02-19 23:18:07', 'cancelled', 353, 8454.8, 0.0, 676.38, 4.99, 9136.17),
    (43, 1, NULL, '2023-08-26 22:53:26', 'delivered', 59, 409.37, 39.33, 29.6, 14.99, 414.63),
    (17, 2, 19, '2021-05-03 21:28:19', 'shipped', 24, 1605.38, 0.0, 128.43, 4.99, 1738.8),
    (108, 6, 49, '2021-07-10 17:04:43', 'delivered', 145, 3418.43, 106.71, 264.94, 0.0, 3576.66),
    (51, 5, 5, '2022-02-25 13:04:50', 'delivered', 70, 5513.47, 720.72, 383.42, 14.99, 5191.16),
    (110, 7, 58, '2024-02-19 21:31:48', 'delivered', 147, 12063.63, 0.0, 965.09, 14.99, 13043.71),
    (63, 5, 38, '2022-01-05 15:04:32', 'delivered', 86, 3561.94, 0.0, 284.96, 4.99, 3851.89),
    (222, 3, 27, '2025-08-30 03:57:44', 'shipped', 310, 2260.03, 204.66, 164.43, 9.99, 2229.79),
    (34, 8, 62, '2025-06-06 10:28:54', 'delivered', 45, 311.58, 16.12, 23.64, 4.99, 324.09),
    (175, 7, 56, '2022-10-09 21:03:19', 'delivered', 241, 3881.7, 17.03, 309.17, 9.99, 4183.83),
    (22, 2, 20, '2023-05-03 16:48:08', 'processing', 29, 5217.36, 302.12, 393.22, 4.99, 5313.45),
    (228, 2, 2, '2024-07-03 13:45:58', 'delivered', 317, 5546.65, 0.0, 443.73, 0.0, 5990.38),
    (285, 3, 25, '2025-01-03 11:28:16', 'delivered', 402, 9478.14, 113.9, 749.14, 4.99, 10118.37),
    (284, 5, 37, '2022-12-10 21:48:50', 'delivered', 400, 198.23, 29.73, 13.48, 4.99, 186.97),
    (161, 4, 35, '2022-03-29 10:07:56', 'shipped', 222, 7237.31, 344.57, 551.42, 4.99, 7449.15),
    (154, 2, 21, '2023-10-21 11:57:35', 'shipped', 212, 448.44, 67.27, 30.49, 0.0, 411.66),
    (49, 5, 42, '2024-11-11 22:33:19', 'delivered', 67, 3285.6, 0.0, 262.85, 4.99, 3553.44),
    (287, 1, 11, '2024-12-14 15:29:50', 'delivered', 404, 320.78, 0.0, 25.66, 9.99, 356.43),
    (228, 5, 39, '2024-06-04 12:23:08', 'delivered', 317, 423.24, 21.16, 32.17, 14.99, 449.24),
    (191, 5, 5, '2025-08-20 10:06:22', 'delivered', 265, 716.67, 42.23, 53.95, 0.0, 728.39),
    (79, 7, NULL, '2021-07-27 03:50:29', 'delivered', 109, 1149.7, 0.0, 91.98, 4.99, 1246.67),
    (287, 2, 19, '2021-07-02 00:30:17', 'processing', 404, 3131.38, 146.2, 238.81, 0.0, 3223.99),
    (152, 5, 43, '2022-07-15 07:52:24', 'delivered', 208, 1150.29, 57.51, 87.42, 4.99, 1185.19),
    (90, 4, 4, '2021-04-10 03:21:45', 'shipped', 122, 5634.89, 52.47, 446.59, 9.99, 6039.0),
    (197, 3, 27, '2021-02-16 10:28:38', 'shipped', 274, 346.75, 0.0, 27.74, 0.0, 374.49),
    (150, 6, 46, '2021-09-14 12:38:01', 'delivered', 205, 4961.9, 56.79, 392.41, 14.99, 5312.51),
    (68, 1, 14, '2024-12-12 15:08:50', 'delivered', 93, 1218.17, 164.84, 84.27, 4.99, 1142.59),
    (3, 7, 52, '2024-01-08 19:05:01', 'delivered', 4, 1133.92, 51.96, 86.56, 9.99, 1178.51),
    (95, 3, NULL, '2021-10-23 20:05:34', 'delivered', 129, 4227.4, 211.37, 321.28, 4.99, 4342.3),
    (250, 2, 2, '2021-06-30 14:50:49', 'delivered', 350, 2081.65, 0.0, 166.53, 9.99, 2258.17),
    (144, 8, NULL, '2024-02-19 18:49:57', 'delivered', 199, 8264.08, 714.74, 603.95, 4.99, 8158.28),
    (274, 2, 18, '2023-06-19 20:01:40', 'delivered', 383, 355.19, 18.69, 26.92, 9.99, 373.41),
    (42, 8, 64, '2024-07-31 03:10:10', 'delivered', 57, 8976.31, 401.51, 685.98, 0.0, 9260.78),
    (165, 8, 64, '2021-08-19 11:11:41', 'delivered', 227, 8596.76, 33.36, 685.07, 9.99, 9258.46),
    (300, 3, NULL, '2022-03-05 22:27:42', 'delivered', 422, 5992.07, 20.53, 477.72, 9.99, 6459.25),
    (126, 3, 22, '2022-10-06 16:23:30', 'processing', 170, 3251.73, 85.02, 253.34, 9.99, 3430.04),
    (255, 7, 51, '2023-11-25 21:55:07', 'cancelled', 356, 7031.39, 131.66, 551.98, 4.99, 7456.71),
    (94, 5, 41, '2022-11-17 09:40:36', 'refunded', 128, 586.77, 39.54, 43.78, 4.99, 596.0),
    (134, 8, 64, '2022-05-12 07:16:53', 'shipped', 180, 3100.71, 279.53, 225.69, 0.0, 3046.87),
    (216, 3, 27, '2025-03-10 04:20:51', 'shipped', 301, 1574.04, 64.59, 120.76, 9.99, 1640.2),
    (68, 2, 21, '2024-02-28 10:15:34', 'cancelled', 93, 1296.44, 0.0, 103.72, 14.99, 1415.15),
    (4, 5, 43, '2025-10-29 08:18:30', 'delivered', 6, 2015.65, 34.27, 158.51, 4.99, 2144.88),
    (69, 2, 19, '2022-03-24 10:46:51', 'delivered', 95, 256.0, 2.53, 20.28, 9.99, 283.74),
    (228, 1, 14, '2026-05-12 18:39:25', 'shipped', 317, 884.51, 0.0, 70.76, 0.0, 955.27),
    (14, 1, 12, '2025-04-13 22:43:02', 'cancelled', 20, 264.45, 5.82, 20.69, 9.99, 289.31),
    (296, 7, NULL, '2025-05-02 23:43:51', 'shipped', 418, 9155.21, 832.72, 665.8, 9.99, 8998.28),
    (288, 6, 47, '2025-11-01 12:28:51', 'delivered', 406, 2660.48, 0.0, 212.84, 9.99, 2883.31),
    (289, 4, 4, '2021-08-29 14:44:19', 'processing', 407, 1712.96, 2.11, 136.87, 4.99, 1852.71),
    (19, 5, 37, '2021-07-10 07:12:53', 'delivered', 26, 8607.02, 56.3, 684.06, 0.0, 9234.78),
    (141, 4, 35, '2023-09-21 07:57:36', 'delivered', 193, 2963.33, 148.17, 225.21, 0.0, 3040.37),
    (163, 7, 51, '2025-02-22 05:41:46', 'delivered', 224, 5681.18, 47.46, 450.7, 0.0, 6084.42),
    (265, 7, 58, '2024-08-05 08:03:51', 'processing', 369, 4307.03, 200.65, 328.51, 4.99, 4439.88),
    (98, 5, 37, '2026-01-02 01:06:52', 'delivered', 132, 882.22, 79.29, 64.23, 4.99, 872.15),
    (240, 8, 8, '2021-07-26 17:16:17', 'delivered', 336, 2811.96, 0.0, 224.96, 4.99, 3041.91),
    (163, 2, 21, '2021-07-10 05:38:25', 'shipped', 224, 7548.97, 42.03, 600.56, 4.99, 8112.49),
    (98, 1, 15, '2022-01-24 13:16:18', 'cancelled', 132, 276.4, 27.64, 19.9, 4.99, 273.65),
    (86, 8, 65, '2024-11-17 08:55:01', 'cancelled', 117, 1558.92, 0.0, 124.71, 0.0, 1683.63),
    (259, 7, 7, '2021-01-27 18:45:49', 'delivered', 360, 440.04, 0.0, 35.2, 0.0, 475.24),
    (100, 5, 43, '2022-11-04 23:20:19', 'cancelled', 136, 1125.92, 112.59, 81.07, 9.99, 1104.39),
    (49, 7, 57, '2021-12-03 14:08:58', 'delivered', 67, 6702.96, 56.3, 531.73, 14.99, 7193.38),
    (71, 7, 55, '2022-09-02 19:26:55', 'delivered', 98, 5535.09, 192.11, 427.44, 4.99, 5775.41),
    (253, 2, NULL, '2023-10-19 09:36:02', 'confirmed', 353, 1189.16, 0.0, 95.13, 9.99, 1294.28),
    (16, 1, NULL, '2023-12-20 05:09:29', 'delivered', 22, 1116.12, 167.42, 75.9, 14.99, 1039.59),
    (148, 4, 29, '2026-02-08 12:24:52', 'shipped', 203, 7241.03, 1385.0, 468.48, 4.99, 6329.5),
    (123, 3, NULL, '2022-10-08 04:52:51', 'processing', 166, 2533.06, 113.57, 193.56, 9.99, 2623.04),
    (256, 3, 3, '2021-04-17 19:45:18', 'delivered', 357, 3339.35, 146.2, 255.45, 9.99, 3458.59),
    (45, 1, 13, '2023-05-20 07:39:02', 'shipped', 61, 1732.34, 22.9, 136.76, 9.99, 1856.19),
    (121, 6, 46, '2024-03-30 22:27:22', 'delivered', 162, 653.63, 69.05, 46.77, 4.99, 636.34),
    (121, 2, 19, '2021-12-21 01:19:42', 'delivered', 162, 1447.46, 0.0, 115.8, 4.99, 1568.25),
    (26, 4, NULL, '2023-03-27 14:19:17', 'delivered', 34, 2312.69, 21.24, 183.32, 4.99, 2479.76),
    (293, 5, 40, '2024-11-23 22:50:43', 'delivered', 413, 9214.51, 459.16, 700.43, 14.99, 9470.77),
    (126, 1, 14, '2025-03-25 17:31:18', 'cancelled', 170, 3008.64, 264.23, 219.55, 4.99, 2968.95),
    (54, 7, 56, '2025-01-28 00:04:19', 'delivered', 74, 6169.44, 0.0, 493.56, 9.99, 6672.99),
    (278, 4, 31, '2024-09-05 13:13:38', 'delivered', 391, 13483.5, 779.18, 1016.35, 0.0, 13720.67),
    (228, 1, 11, '2024-10-22 11:28:05', 'delivered', 317, 126.36, 0.0, 10.11, 4.99, 141.46),
    (276, 1, 11, '2023-09-15 23:08:07', 'delivered', 387, 1703.61, 0.0, 136.29, 4.99, 1844.89),
    (166, 8, 8, '2025-09-02 19:44:02', 'delivered', 228, 11114.55, 48.38, 885.29, 14.99, 11966.45),
    (181, 7, 51, '2025-07-19 06:29:57', 'delivered', 248, 68.44, 6.84, 4.93, 4.99, 71.52),
    (185, 1, NULL, '2026-02-18 21:54:52', 'shipped', 254, 2018.52, 87.11, 154.51, 4.99, 2090.91),
    (9, 3, 3, '2022-01-19 16:10:15', 'processing', 13, 495.85, 27.64, 37.46, 0.0, 505.67),
    (12, 7, 55, '2022-04-09 15:45:28', 'refunded', 17, 548.3, 37.74, 40.84, 9.99, 561.39),
    (22, 1, 15, '2022-08-31 14:25:37', 'pending', 29, 622.06, 22.13, 47.99, 9.99, 657.92),
    (123, 8, 62, '2021-03-19 07:22:54', 'delivered', 166, 2184.05, 197.17, 158.95, 9.99, 2155.82),
    (26, 7, 57, '2022-10-10 02:22:48', 'delivered', 34, 12436.13, 1784.2, 852.15, 14.99, 11519.07),
    (182, 4, 32, '2025-04-24 04:32:23', 'shipped', 249, 5270.52, 263.53, 400.56, 9.99, 5417.54),
    (223, 7, 58, '2023-09-01 01:07:37', 'shipped', 312, 518.84, 0.0, 41.51, 4.99, 565.34),
    (149, 4, 34, '2026-03-11 11:09:42', 'delivered', 204, 1034.86, 160.61, 69.94, 9.99, 954.18),
    (31, 6, 6, '2026-01-26 08:05:11', 'shipped', 40, 1402.49, 40.19, 108.98, 9.99, 1481.27),
    (251, 3, 26, '2023-04-18 17:53:46', 'delivered', 351, 600.94, 0.0, 48.08, 14.99, 664.01),
    (68, 1, 13, '2021-03-13 22:54:27', 'delivered', 93, 5501.9, 399.22, 408.21, 9.99, 5520.88),
    (58, 3, 26, '2025-11-25 21:27:42', 'pending', 79, 221.6, 18.9, 16.22, 4.99, 223.91),
    (94, 6, NULL, '2021-06-08 19:13:43', 'delivered', 128, 19873.76, 854.26, 1521.56, 9.99, 20551.05),
    (42, 4, 29, '2025-01-20 20:35:27', 'delivered', 57, 944.3, 92.62, 68.13, 4.99, 924.8),
    (56, 7, 53, '2024-10-06 01:26:03', 'shipped', 77, 189.28, 18.93, 13.63, 9.99, 193.97),
    (217, 3, 25, '2021-11-12 08:39:37', 'shipped', 303, 7762.26, 70.15, 615.37, 4.99, 8312.47),
    (124, 1, 11, '2026-04-06 12:12:05', 'delivered', 168, 232.12, 34.82, 15.78, 4.99, 218.07),
    (277, 3, 23, '2024-07-25 01:58:43', 'delivered', 389, 359.5, 0.0, 28.76, 4.99, 393.25),
    (285, 1, 13, '2021-10-09 00:33:12', 'delivered', 402, 6633.06, 287.65, 507.63, 4.99, 6858.03),
    (284, 3, 24, '2021-11-29 15:29:31', 'shipped', 400, 5405.31, 0.0, 432.42, 9.99, 5847.72),
    (150, 1, 12, '2022-08-26 23:50:25', 'cancelled', 205, 4460.18, 451.34, 320.71, 9.99, 4339.54),
    (209, 3, 22, '2024-12-24 02:12:01', 'delivered', 291, 634.76, 69.49, 45.22, 0.0, 610.49),
    (251, 4, 30, '2022-05-02 22:42:11', 'processing', 351, 9138.98, 0.0, 731.12, 4.99, 9875.09),
    (42, 6, 6, '2023-03-02 01:38:58', 'shipped', 57, 1159.76, 0.0, 92.78, 9.99, 1262.53),
    (267, 4, 36, '2026-03-20 06:27:52', 'confirmed', 372, 7626.36, 1118.47, 520.63, 4.99, 7033.51),
    (25, 4, 4, '2023-04-26 16:44:57', 'pending', 33, 805.35, 40.27, 61.21, 4.99, 831.28),
    (218, 2, NULL, '2023-01-27 19:09:27', 'delivered', 304, 598.39, 0.0, 47.87, 4.99, 651.25),
    (280, 5, 5, '2021-11-03 03:40:46', 'shipped', 394, 2145.21, 99.96, 163.62, 9.99, 2218.86),
    (45, 8, 64, '2026-02-08 20:35:28', 'pending', 61, 2708.86, 26.43, 214.59, 14.99, 2912.02),
    (59, 7, 58, '2024-02-09 14:04:52', 'delivered', 81, 256.62, 0.0, 20.53, 4.99, 282.14),
    (42, 2, 19, '2021-09-08 02:45:42', 'delivered', 57, 840.08, 10.6, 66.36, 9.99, 905.83),
    (41, 4, 29, '2025-04-06 15:11:34', 'delivered', 55, 600.44, 18.87, 46.53, 9.99, 638.09),
    (226, 4, 33, '2024-02-04 05:16:28', 'delivered', 315, 6598.25, 252.13, 507.69, 14.99, 6868.8),
    (201, 7, 56, '2022-09-29 06:30:42', 'delivered', 279, 85.15, 0.0, 6.81, 4.99, 96.95),
    (153, 3, 22, '2024-03-09 19:41:53', 'shipped', 210, 7839.56, 124.15, 617.23, 14.99, 8347.63),
    (194, 4, NULL, '2023-05-15 15:50:46', 'delivered', 269, 1076.82, 107.68, 77.53, 9.99, 1056.66),
    (86, 8, 64, '2023-10-22 17:56:54', 'delivered', 117, 9678.97, 122.19, 764.54, 0.0, 10321.32),
    (246, 2, 2, '2021-09-29 20:51:14', 'delivered', 346, 11831.38, 534.37, 903.76, 4.99, 12205.76),
    (230, 1, 10, '2021-11-27 17:54:06', 'delivered', 321, 998.24, 99.82, 71.87, 14.99, 985.28),
    (49, 2, 2, '2024-09-06 06:06:23', 'confirmed', 67, 468.59, 0.0, 37.49, 4.99, 511.07),
    (237, 6, 50, '2022-07-08 01:16:25', 'delivered', 331, 9557.93, 47.46, 760.84, 14.99, 10286.3),
    (59, 4, 4, '2025-04-02 04:12:41', 'confirmed', 81, 6839.0, 610.5, 498.28, 4.99, 6731.77),
    (270, 6, 6, '2021-05-22 01:56:23', 'delivered', 377, 11943.4, 309.52, 930.71, 14.99, 12579.58),
    (64, 3, 25, '2022-11-08 18:22:38', 'delivered', 87, 1516.77, 132.01, 110.78, 9.99, 1505.53),
    (95, 6, 44, '2026-05-10 07:45:30', 'delivered', 129, 1826.1, 189.41, 130.94, 4.99, 1772.62),
    (278, 7, 54, '2024-01-18 06:58:26', 'shipped', 391, 2912.43, 0.0, 232.99, 4.99, 3150.41),
    (5, 8, 63, '2026-04-16 17:57:49', 'confirmed', 8, 1411.65, 105.36, 104.5, 9.99, 1420.78),
    (48, 7, 51, '2021-07-26 17:46:20', 'delivered', 66, 7210.44, 52.42, 572.64, 9.99, 7740.65),
    (116, 5, 38, '2023-08-08 13:25:05', 'processing', 156, 1009.18, 80.39, 74.3, 0.0, 1003.09),
    (95, 4, 32, '2021-02-14 18:56:12', 'processing', 129, 3221.47, 0.0, 257.72, 9.99, 3489.18),
    (47, 2, 19, '2024-08-15 21:42:07', 'delivered', 64, 1657.59, 86.98, 125.65, 4.99, 1701.25),
    (69, 5, 37, '2026-05-23 00:32:19', 'delivered', 95, 827.84, 32.13, 63.66, 4.99, 864.36),
    (90, 4, 34, '2024-09-06 14:34:55', 'delivered', 122, 2782.69, 20.1, 221.01, 4.99, 2988.59),
    (9, 4, 32, '2022-01-30 00:07:40', 'delivered', 13, 2743.0, 120.12, 209.83, 0.0, 2832.71),
    (154, 4, 32, '2022-10-11 08:49:36', 'delivered', 212, 5167.52, 0.0, 413.4, 9.99, 5590.91),
    (223, 6, 45, '2023-06-03 05:21:48', 'shipped', 312, 2814.82, 80.81, 218.72, 9.99, 2962.72),
    (268, 6, 50, '2026-05-17 04:10:26', 'delivered', 374, 1344.92, 0.0, 107.59, 0.0, 1452.51),
    (169, 1, 9, '2025-09-04 01:48:22', 'delivered', 231, 3822.42, 0.0, 305.79, 4.99, 4133.2),
    (141, 5, 42, '2024-03-18 04:52:46', 'delivered', 193, 2555.48, 257.31, 183.85, 9.99, 2492.01),
    (44, 5, 37, '2021-09-09 00:24:20', 'pending', 60, 972.69, 21.33, 76.11, 4.99, 1032.46),
    (222, 6, NULL, '2023-11-19 07:47:15', 'confirmed', 310, 3925.17, 347.54, 286.21, 9.99, 3873.83),
    (168, 1, 12, '2023-10-05 06:29:12', 'delivered', 230, 205.32, 20.53, 14.78, 4.99, 204.56),
    (118, 8, 8, '2022-02-26 15:36:02', 'delivered', 159, 940.18, 53.93, 70.9, 14.99, 972.15),
    (29, 4, 35, '2024-08-22 05:30:31', 'delivered', 38, 6621.74, 948.03, 453.9, 9.99, 6137.6),
    (166, 6, 44, '2021-03-09 12:43:42', 'delivered', 228, 470.02, 78.8, 31.3, 9.99, 432.51),
    (151, 6, NULL, '2025-03-02 12:35:00', 'delivered', 206, 10681.97, 343.05, 827.11, 4.99, 11171.02),
    (194, 4, 36, '2021-08-12 12:10:59', 'delivered', 269, 20784.63, 0.0, 1662.77, 9.99, 22457.39),
    (230, 4, 35, '2023-07-26 13:58:33', 'shipped', 321, 1004.3, 26.78, 78.2, 4.99, 1060.71),
    (284, 8, 62, '2025-03-21 09:10:26', 'refunded', 400, 1422.18, 70.03, 108.17, 4.99, 1465.31),
    (236, 5, 5, '2023-01-16 17:38:45', 'delivered', 330, 8061.64, 0.0, 644.93, 4.99, 8711.56),
    (46, 2, 18, '2022-10-08 07:01:18', 'delivered', 62, 2092.38, 200.5, 151.35, 4.99, 2048.22),
    (191, 7, 58, '2022-04-12 01:56:21', 'shipped', 265, 1508.42, 31.53, 118.15, 4.99, 1600.03),
    (67, 7, 7, '2026-05-16 08:58:39', 'delivered', 91, 129.71, 0.0, 10.38, 0.0, 140.09),
    (36, 1, 12, '2025-12-23 06:22:19', 'refunded', 47, 1972.13, 14.86, 156.58, 0.0, 2113.85),
    (111, 8, 62, '2024-06-02 07:51:33', 'delivered', 148, 11713.56, 349.42, 909.13, 9.99, 12283.26),
    (299, 7, 56, '2025-08-29 05:02:22', 'cancelled', 421, 7888.87, 45.6, 627.46, 0.0, 8470.73),
    (217, 5, 41, '2023-05-15 11:02:21', 'delivered', 303, 1465.74, 0.0, 117.26, 0.0, 1583.0),
    (46, 7, 54, '2025-02-14 10:55:35', 'delivered', 62, 1807.12, 0.0, 144.57, 4.99, 1956.68),
    (66, 1, 12, '2023-05-27 05:22:55', 'processing', 90, 9470.38, 1811.67, 612.7, 4.99, 8276.4),
    (209, 7, 57, '2025-01-28 09:44:56', 'delivered', 291, 8644.15, 0.0, 691.53, 4.99, 9340.67),
    (215, 6, 44, '2023-12-22 02:50:47', 'shipped', 300, 2119.44, 62.07, 164.59, 9.99, 2231.95),
    (284, 7, 58, '2021-12-10 15:05:20', 'delivered', 400, 3213.97, 160.7, 244.26, 14.99, 3312.52),
    (22, 1, 9, '2023-03-14 04:51:24', 'delivered', 29, 570.86, 0.0, 45.67, 9.99, 626.52),
    (124, 1, 9, '2022-06-23 16:48:43', 'confirmed', 168, 2363.51, 0.0, 189.08, 4.99, 2557.58),
    (183, 6, 6, '2021-07-15 00:36:17', 'delivered', 251, 2969.54, 296.95, 213.81, 4.99, 2891.39),
    (46, 2, 19, '2024-06-19 08:02:08', 'delivered', 62, 9265.92, 43.96, 737.76, 0.0, 9959.72),
    (137, 6, 49, '2023-08-12 03:37:26', 'delivered', 186, 10704.52, 656.82, 803.82, 4.99, 10856.51),
    (208, 3, 23, '2022-04-18 01:50:15', 'delivered', 289, 1672.64, 71.17, 128.12, 9.99, 1739.58),
    (2, 1, 11, '2022-03-09 07:56:53', 'delivered', 2, 6173.8, 150.33, 481.88, 0.0, 6505.35),
    (137, 6, 45, '2023-03-01 10:13:17', 'delivered', 186, 2459.57, 255.28, 176.34, 14.99, 2395.62),
    (195, 1, 1, '2022-06-24 01:17:05', 'delivered', 270, 2214.2, 308.4, 152.46, 4.99, 2063.25),
    (175, 1, 1, '2023-03-11 00:24:23', 'delivered', 241, 6798.63, 1000.88, 463.82, 0.0, 6261.57),
    (272, 8, 64, '2023-12-16 22:32:28', 'delivered', 380, 6348.51, 699.19, 451.95, 14.99, 6116.26),
    (100, 7, NULL, '2023-05-19 04:43:14', 'delivered', 136, 2267.7, 57.7, 176.8, 4.99, 2391.79),
    (166, 4, 32, '2023-08-16 01:06:20', 'confirmed', 228, 474.56, 47.46, 34.17, 9.99, 471.26),
    (226, 3, 26, '2021-10-16 20:46:24', 'refunded', 315, 12577.41, 1447.64, 890.38, 9.99, 12030.14),
    (271, 7, 55, '2024-03-26 14:41:34', 'delivered', 379, 1175.04, 44.15, 90.47, 0.0, 1221.36),
    (275, 1, 9, '2025-06-26 03:40:05', 'shipped', 385, 5176.1, 0.0, 414.09, 9.99, 5600.18),
    (217, 8, 65, '2025-04-10 20:18:15', 'pending', 303, 2827.32, 85.36, 219.36, 0.0, 2961.32);


-- ──────────────────────────────────────────────────────────────────
-- 11. ORDER_ITEMS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO order_items (order_id, product_id, quantity, unit_price, discount_pct, line_total)
VALUES
    (1, 6, 3, 1189.16, 5.0, 3389.11),
    (2, 21, 4, 151.63, 15.0, 515.54),
    (2, 69, 2, 383.43, 15.0, 651.83),
    (2, 39, 3, 96.97, 0.0, 290.91),
    (2, 16, 3, 519.64, 5.0, 1480.97),
    (2, 4, 3, 1298.64, 0.0, 3895.92),
    (3, 116, 1, 59.63, 0.0, 59.63),
    (3, 6, 4, 1189.16, 5.0, 4518.81),
    (3, 18, 2, 567.87, 0.0, 1135.74),
    (3, 87, 1, 211.54, 0.0, 211.54),
    (4, 66, 4, 1542.36, 0.0, 6169.44),
    (5, 37, 3, 95.45, 0.0, 286.35),
    (6, 94, 1, 1181.28, 0.0, 1181.28),
    (6, 115, 3, 147.17, 0.0, 441.51),
    (6, 54, 3, 26.49, 0.0, 79.47),
    (6, 18, 4, 567.87, 0.0, 2271.48),
    (7, 38, 3, 85.15, 10.0, 229.91),
    (7, 71, 3, 368.66, 0.0, 1105.98),
    (7, 63, 4, 161.59, 0.0, 646.36),
    (7, 6, 1, 1189.16, 0.0, 1189.16),
    (8, 4, 3, 1298.64, 0.0, 3895.92),
    (8, 16, 1, 519.64, 5.0, 493.66),
    (9, 3, 1, 731.02, 0.0, 731.02),
    (9, 109, 4, 188.7, 15.0, 641.58),
    (9, 34, 2, 118.64, 0.0, 237.28),
    (9, 21, 1, 151.63, 0.0, 151.63),
    (9, 75, 4, 371.74, 5.0, 1412.61),
    (10, 77, 2, 474.6, 5.0, 901.74),
    (11, 106, 2, 85.2, 5.0, 161.88),
    (11, 19, 3, 440.04, 10.0, 1188.11),
    (11, 2, 4, 579.88, 0.0, 2319.52),
    (12, 109, 1, 188.7, 0.0, 188.7),
    (12, 69, 1, 383.43, 0.0, 383.43),
    (12, 92, 2, 227.98, 15.0, 387.57),
    (12, 71, 4, 368.66, 0.0, 1474.64),
    (12, 90, 3, 153.87, 0.0, 461.61),
    (13, 89, 3, 138.34, 0.0, 415.02),
    (13, 30, 2, 85.45, 20.0, 136.72),
    (14, 102, 1, 85.54, 0.0, 85.54),
    (15, 24, 3, 1277.81, 0.0, 3833.43),
    (15, 86, 2, 160.39, 10.0, 288.7),
    (16, 68, 2, 189.84, 10.0, 341.71),
    (17, 47, 4, 64.89, 5.0, 246.58),
    (17, 90, 1, 153.87, 0.0, 153.87),
    (17, 76, 3, 440.35, 20.0, 1056.84),
    (17, 24, 4, 1277.81, 0.0, 5111.24),
    (18, 91, 1, 198.23, 0.0, 198.23),
    (18, 37, 4, 95.45, 0.0, 381.8),
    (18, 72, 3, 443.9, 0.0, 1331.7),
    (19, 115, 4, 147.17, 15.0, 500.38),
    (20, 52, 2, 63.01, 0.0, 126.02),
    (20, 89, 2, 138.34, 0.0, 276.68),
    (20, 76, 4, 440.35, 0.0, 1761.4),
    (20, 14, 4, 2113.7, 10.0, 7609.32),
    (21, 99, 1, 2500.38, 0.0, 2500.38),
    (21, 59, 4, 51.71, 0.0, 206.84),
    (22, 20, 1, 204.87, 10.0, 184.38),
    (22, 39, 4, 96.97, 10.0, 349.09),
    (22, 80, 2, 174.72, 0.0, 349.44),
    (23, 50, 4, 19.39, 0.0, 77.56),
    (24, 92, 1, 227.98, 5.0, 216.58),
    (24, 50, 4, 19.39, 5.0, 73.68),
    (24, 63, 4, 161.59, 0.0, 646.36),
    (25, 42, 1, 213.41, 0.0, 213.41),
    (25, 8, 3, 1917.66, 0.0, 5752.98),
    (25, 4, 1, 1298.64, 10.0, 1168.78),
    (26, 76, 1, 440.35, 15.0, 374.3),
    (26, 11, 1, 1709.28, 0.0, 1709.28),
    (26, 117, 1, 65.55, 5.0, 62.27),
    (27, 49, 3, 295.15, 5.0, 841.18),
    (27, 74, 4, 127.99, 0.0, 511.96),
    (27, 50, 2, 19.39, 0.0, 38.78),
    (28, 108, 2, 94.64, 0.0, 189.28),
    (29, 9, 4, 2411.7, 0.0, 9646.8),
    (29, 73, 3, 308.35, 10.0, 832.55),
    (29, 103, 3, 71.11, 5.0, 202.66),
    (30, 24, 2, 1277.81, 5.0, 2427.84),
    (30, 113, 2, 114.51, 5.0, 217.57),
    (30, 3, 4, 731.02, 0.0, 2924.08),
    (30, 81, 4, 108.79, 15.0, 369.89),
    (30, 91, 1, 198.23, 5.0, 188.32),
    (31, 35, 2, 158.7, 0.0, 317.4),
    (31, 106, 2, 85.2, 0.0, 170.4),
    (31, 37, 1, 95.45, 0.0, 95.45),
    (31, 83, 1, 68.44, 0.0, 68.44),
    (32, 4, 3, 1298.64, 5.0, 3701.12),
    (32, 34, 2, 118.64, 5.0, 225.42),
    (33, 116, 4, 59.63, 15.0, 202.74),
    (34, 86, 3, 160.39, 0.0, 481.17),
    (34, 107, 1, 34.0, 0.0, 34.0),
    (34, 75, 1, 371.74, 10.0, 334.57),
    (34, 100, 3, 79.32, 0.0, 237.96),
    (34, 68, 4, 189.84, 10.0, 683.42),
    (35, 8, 1, 1917.66, 0.0, 1917.66),
    (35, 63, 4, 161.59, 0.0, 646.36),
    (35, 69, 2, 383.43, 20.0, 613.49),
    (35, 48, 2, 228.47, 0.0, 456.94),
    (35, 90, 3, 153.87, 10.0, 415.45),
    (36, 116, 1, 59.63, 5.0, 56.65),
    (36, 104, 2, 73.75, 15.0, 125.38),
    (36, 88, 4, 165.88, 0.0, 663.52),
    (37, 57, 3, 25.34, 15.0, 64.62),
    (37, 81, 4, 108.79, 10.0, 391.64),
    (38, 106, 2, 85.2, 5.0, 161.88),
    (39, 81, 2, 108.79, 0.0, 217.58),
    (39, 57, 2, 25.34, 5.0, 48.15),
    (40, 34, 3, 118.64, 10.0, 320.33),
    (40, 23, 2, 179.75, 0.0, 359.5),
    (41, 81, 2, 108.79, 0.0, 217.58),
    (41, 30, 2, 85.45, 0.0, 170.9),
    (41, 117, 4, 65.55, 5.0, 249.09),
    (41, 12, 2, 1781.91, 0.0, 3563.82),
    (41, 60, 3, 267.81, 0.0, 803.43),
    (42, 25, 3, 2969.54, 0.0, 8908.62),
    (42, 111, 4, 129.71, 0.0, 518.84),
    (43, 31, 2, 202.24, 0.0, 404.48),
    (43, 80, 4, 174.72, 0.0, 698.88),
    (43, 58, 4, 59.14, 0.0, 236.56),
    (44, 7, 3, 609.83, 15.0, 1555.07),
    (45, 17, 1, 166.79, 5.0, 158.45),
    (45, 115, 3, 147.17, 0.0, 441.51),
    (45, 72, 4, 443.9, 15.0, 1509.26),
    (46, 64, 3, 1503.32, 10.0, 4058.96),
    (46, 112, 4, 93.39, 0.0, 373.56),
    (47, 98, 4, 1250.0, 0.0, 5000.0),
    (47, 20, 2, 204.87, 0.0, 409.74),
    (47, 72, 2, 443.9, 0.0, 887.8),
    (47, 110, 3, 126.77, 0.0, 380.31),
    (48, 16, 1, 519.64, 0.0, 519.64),
    (48, 45, 3, 281.48, 0.0, 844.44),
    (49, 54, 2, 26.49, 10.0, 47.68),
    (49, 10, 1, 1780.97, 15.0, 1513.82),
    (50, 59, 4, 51.71, 0.0, 206.84),
    (51, 17, 3, 166.79, 0.0, 500.37),
    (51, 28, 1, 701.14, 10.0, 631.03),
    (51, 111, 4, 129.71, 0.0, 518.84),
    (51, 7, 3, 609.83, 0.0, 1829.49),
    (51, 103, 4, 71.11, 0.0, 284.44),
    (52, 95, 2, 1291.88, 0.0, 2583.76),
    (52, 104, 1, 73.75, 10.0, 66.38),
    (52, 40, 2, 127.44, 0.0, 254.88),
    (52, 116, 4, 59.63, 0.0, 238.52),
    (53, 66, 3, 1542.36, 20.0, 3701.66),
    (54, 117, 4, 65.55, 0.0, 262.2),
    (55, 66, 1, 1542.36, 5.0, 1465.24),
    (56, 23, 4, 179.75, 0.0, 719.0),
    (56, 101, 4, 104.09, 15.0, 353.91),
    (56, 24, 3, 1277.81, 0.0, 3833.43),
    (56, 108, 4, 94.64, 10.0, 340.7),
    (57, 1, 4, 1201.2, 0.0, 4804.8),
    (58, 17, 2, 166.79, 0.0, 333.58),
    (59, 25, 2, 2969.54, 0.0, 5939.08),
    (59, 12, 1, 1781.91, 0.0, 1781.91),
    (59, 39, 2, 96.97, 10.0, 174.55),
    (59, 99, 4, 2500.38, 20.0, 8001.22),
    (59, 60, 4, 267.81, 0.0, 1071.24),
    (60, 54, 3, 26.49, 0.0, 79.47),
    (60, 109, 4, 188.7, 0.0, 754.8),
    (60, 64, 4, 1503.32, 0.0, 6013.28),
    (60, 95, 1, 1291.88, 5.0, 1227.29),
    (61, 58, 1, 59.14, 0.0, 59.14),
    (61, 90, 2, 153.87, 0.0, 307.74),
    (61, 56, 4, 58.03, 0.0, 232.12),
    (62, 102, 2, 85.54, 5.0, 162.53),
    (62, 61, 3, 1715.25, 5.0, 4888.46),
    (62, 103, 1, 71.11, 5.0, 67.55),
    (63, 7, 3, 609.83, 5.0, 1738.02),
    (63, 3, 2, 731.02, 10.0, 1315.84),
    (63, 46, 1, 31.86, 10.0, 28.67),
    (63, 113, 3, 114.51, 0.0, 343.53),
    (63, 34, 2, 118.64, 0.0, 237.28),
    (64, 78, 4, 105.52, 10.0, 379.87),
    (64, 86, 1, 160.39, 20.0, 128.31),
    (64, 14, 1, 2113.7, 10.0, 1902.33),
    (64, 91, 1, 198.23, 5.0, 188.32),
    (64, 7, 2, 609.83, 5.0, 1158.68),
    (65, 43, 1, 205.9, 10.0, 185.31),
    (65, 105, 4, 103.14, 20.0, 330.05),
    (65, 18, 1, 567.87, 0.0, 567.87),
    (66, 20, 4, 204.87, 10.0, 737.53),
    (66, 97, 2, 1619.72, 10.0, 2915.5),
    (67, 9, 2, 2411.7, 0.0, 4823.4),
    (67, 11, 4, 1709.28, 10.0, 6153.41),
    (67, 44, 2, 219.45, 15.0, 373.07),
    (67, 41, 1, 141.08, 20.0, 112.86),
    (67, 52, 3, 63.01, 0.0, 189.03),
    (68, 19, 2, 440.04, 15.0, 748.07),
    (68, 90, 4, 153.87, 5.0, 584.71),
    (68, 52, 4, 63.01, 10.0, 226.84),
    (68, 58, 3, 59.14, 0.0, 177.42),
    (68, 83, 3, 68.44, 0.0, 205.32),
    (69, 3, 3, 731.02, 0.0, 2193.06),
    (69, 4, 3, 1298.64, 10.0, 3506.33),
    (70, 58, 3, 59.14, 5.0, 168.55),
    (71, 67, 3, 1817.2, 5.0, 5179.02),
    (71, 95, 2, 1291.88, 10.0, 2325.38),
    (71, 32, 3, 184.53, 0.0, 553.59),
    (71, 14, 2, 2113.7, 10.0, 3804.66),
    (72, 52, 4, 63.01, 15.0, 214.23),
    (72, 76, 4, 440.35, 5.0, 1673.33),
    (72, 72, 4, 443.9, 5.0, 1686.82),
    (72, 67, 4, 1817.2, 10.0, 6541.92),
    (72, 100, 4, 79.32, 10.0, 285.55),
    (73, 96, 2, 2457.16, 15.0, 4177.17),
    (74, 20, 3, 204.87, 0.0, 614.61),
    (74, 16, 2, 519.64, 0.0, 1039.28),
    (74, 48, 4, 228.47, 0.0, 913.88),
    (74, 40, 3, 127.44, 15.0, 324.97),
    (74, 39, 2, 96.97, 0.0, 193.94),
    (75, 58, 4, 59.14, 10.0, 212.9),
    (75, 116, 2, 59.63, 10.0, 107.33),
    (75, 44, 4, 219.45, 10.0, 790.02),
    (75, 101, 4, 104.09, 0.0, 416.36),
    (75, 49, 3, 295.15, 0.0, 885.45),
    (76, 111, 2, 129.71, 10.0, 233.48),
    (77, 74, 2, 127.99, 10.0, 230.38),
    (77, 97, 1, 1619.72, 0.0, 1619.72),
    (77, 7, 2, 609.83, 20.0, 975.73),
    (77, 73, 3, 308.35, 10.0, 832.55),
    (77, 67, 2, 1817.2, 10.0, 3270.96),
    (78, 44, 4, 219.45, 0.0, 877.8),
    (79, 19, 1, 440.04, 0.0, 440.04),
    (79, 24, 4, 1277.81, 5.0, 4855.68),
    (79, 33, 1, 104.34, 5.0, 99.12),
    (80, 34, 1, 118.64, 0.0, 118.64),
    (80, 49, 2, 295.15, 10.0, 531.27),
    (80, 106, 2, 85.2, 0.0, 170.4),
    (81, 82, 1, 69.1, 0.0, 69.1),
    (81, 30, 1, 85.45, 0.0, 85.45),
    (81, 117, 2, 65.55, 0.0, 131.1),
    (81, 114, 4, 122.82, 0.0, 491.28),
    (82, 117, 1, 65.55, 10.0, 59.0),
    (82, 72, 3, 443.9, 5.0, 1265.12),
    (82, 58, 2, 59.14, 0.0, 118.28),
    (82, 6, 4, 1189.16, 0.0, 4756.64),
    (83, 73, 1, 308.35, 10.0, 277.52),
    (83, 9, 3, 2411.7, 15.0, 6149.84),
    (83, 39, 2, 96.97, 5.0, 184.24),
    (83, 12, 3, 1781.91, 15.0, 4543.87),
    (83, 51, 3, 42.12, 5.0, 120.04),
    (84, 83, 4, 68.44, 0.0, 273.76),
    (84, 1, 1, 1201.2, 5.0, 1141.14),
    (85, 87, 4, 211.54, 10.0, 761.54),
    (85, 16, 3, 519.64, 0.0, 1558.92),
    (85, 46, 1, 31.86, 0.0, 31.86),
    (85, 105, 3, 103.14, 15.0, 263.01),
    (86, 47, 2, 64.89, 0.0, 129.78),
    (86, 5, 4, 1274.14, 0.0, 5096.56),
    (86, 36, 3, 249.56, 5.0, 711.25),
    (86, 64, 4, 1503.32, 0.0, 6013.28),
    (87, 34, 2, 118.64, 15.0, 201.69),
    (87, 73, 3, 308.35, 0.0, 925.05),
    (88, 110, 3, 126.77, 0.0, 380.31),
    (89, 69, 4, 383.43, 0.0, 1533.72),
    (89, 58, 1, 59.14, 15.0, 50.27),
    (89, 41, 1, 141.08, 20.0, 112.86),
    (89, 1, 2, 1201.2, 20.0, 1921.92),
    (90, 62, 4, 1801.83, 10.0, 6486.59),
    (91, 106, 3, 85.2, 5.0, 242.82),
    (92, 5, 4, 1274.14, 0.0, 5096.56),
    (93, 14, 1, 2113.7, 5.0, 2008.02),
    (94, 113, 1, 114.51, 0.0, 114.51),
    (94, 80, 3, 174.72, 5.0, 497.95),
    (94, 13, 1, 559.57, 0.0, 559.57),
    (94, 44, 1, 219.45, 5.0, 208.48),
    (95, 18, 1, 567.87, 0.0, 567.87),
    (95, 103, 3, 71.11, 5.0, 202.66),
    (96, 48, 2, 228.47, 0.0, 456.94),
    (96, 2, 1, 579.88, 0.0, 579.88),
    (96, 67, 2, 1817.2, 20.0, 2907.52),
    (97, 73, 3, 308.35, 0.0, 925.05),
    (97, 43, 4, 205.9, 15.0, 700.06),
    (97, 79, 1, 149.48, 0.0, 149.48),
    (97, 39, 1, 96.97, 5.0, 92.12),
    (97, 54, 2, 26.49, 0.0, 52.98),
    (98, 46, 1, 31.86, 5.0, 30.27),
    (99, 23, 3, 179.75, 10.0, 485.33),
    (99, 29, 3, 2973.66, 10.0, 8028.88),
    (99, 114, 2, 122.82, 0.0, 245.64),
    (100, 44, 2, 219.45, 0.0, 438.9),
    (101, 102, 2, 85.54, 5.0, 162.53),
    (101, 25, 3, 2969.54, 0.0, 8908.62),
    (102, 81, 3, 108.79, 15.0, 277.41),
    (103, 50, 3, 19.39, 0.0, 58.17),
    (103, 97, 4, 1619.72, 0.0, 6478.88),
    (103, 113, 3, 114.51, 5.0, 326.35),
    (103, 83, 4, 68.44, 10.0, 246.38),
    (103, 66, 4, 1542.36, 0.0, 6169.44),
    (104, 28, 4, 701.14, 5.0, 2664.33),
    (104, 40, 3, 127.44, 0.0, 382.32),
    (104, 55, 1, 55.76, 0.0, 55.76),
    (104, 114, 1, 122.82, 0.0, 122.82),
    (105, 41, 2, 141.08, 0.0, 282.16),
    (105, 35, 3, 158.7, 5.0, 452.3),
    (105, 49, 3, 295.15, 15.0, 752.63),
    (105, 4, 3, 1298.64, 10.0, 3506.33),
    (106, 26, 3, 2963.33, 0.0, 8889.99),
    (106, 43, 2, 205.9, 20.0, 329.44),
    (106, 87, 3, 211.54, 0.0, 634.62),
    (106, 33, 3, 104.34, 0.0, 313.02),
    (106, 39, 3, 96.97, 10.0, 261.82),
    (107, 61, 4, 1715.25, 10.0, 6174.9),
    (107, 30, 4, 85.45, 0.0, 341.8),
    (108, 112, 4, 93.39, 10.0, 336.2),
    (108, 17, 3, 166.79, 0.0, 500.37),
    (108, 40, 4, 127.44, 0.0, 509.76),
    (108, 95, 4, 1291.88, 10.0, 4650.77),
    (108, 2, 3, 579.88, 0.0, 1739.64),
    (109, 117, 4, 65.55, 0.0, 262.2),
    (109, 78, 4, 105.52, 0.0, 422.08),
    (109, 74, 4, 127.99, 0.0, 511.96),
    (109, 111, 1, 129.71, 0.0, 129.71),
    (109, 51, 4, 42.12, 5.0, 160.06),
    (110, 26, 4, 2963.33, 0.0, 11853.32),
    (110, 9, 2, 2411.7, 0.0, 4823.4),
    (111, 17, 4, 166.79, 0.0, 667.16),
    (112, 76, 4, 440.35, 0.0, 1761.4),
    (112, 26, 1, 2963.33, 20.0, 2370.66),
    (112, 65, 4, 166.5, 0.0, 666.0),
    (113, 45, 3, 281.48, 0.0, 844.44),
    (113, 90, 2, 153.87, 0.0, 307.74),
    (113, 108, 2, 94.64, 15.0, 160.89),
    (113, 92, 4, 227.98, 0.0, 911.92),
    (114, 36, 3, 249.56, 5.0, 711.25),
    (114, 113, 1, 114.51, 5.0, 108.78),
    (115, 53, 3, 56.85, 0.0, 170.55),
    (115, 58, 1, 59.14, 0.0, 59.14),
    (115, 22, 1, 401.93, 5.0, 381.83),
    (116, 42, 4, 213.41, 0.0, 853.64),
    (116, 86, 1, 160.39, 0.0, 160.39),
    (117, 13, 4, 559.57, 0.0, 2238.28),
    (117, 23, 1, 179.75, 5.0, 170.76),
    (117, 38, 2, 85.15, 0.0, 170.3),
    (117, 16, 2, 519.64, 0.0, 1039.28),
    (117, 69, 1, 383.43, 15.0, 325.92),
    (118, 7, 4, 609.83, 10.0, 2195.39),
    (119, 106, 1, 85.2, 0.0, 85.2),
    (119, 25, 1, 2969.54, 10.0, 2672.59),
    (119, 88, 2, 165.88, 10.0, 298.58),
    (120, 51, 1, 42.12, 0.0, 42.12),
    (120, 55, 2, 55.76, 0.0, 111.52),
    (120, 16, 3, 519.64, 0.0, 1558.92),
    (120, 30, 2, 85.45, 0.0, 170.9),
    (120, 28, 1, 701.14, 5.0, 666.08),
    (121, 22, 4, 401.93, 5.0, 1527.33),
    (121, 33, 2, 104.34, 0.0, 208.68),
    (121, 13, 3, 559.57, 20.0, 1342.97),
    (121, 77, 4, 474.6, 0.0, 1898.4),
    (121, 42, 1, 213.41, 5.0, 202.74),
    (122, 97, 1, 1619.72, 0.0, 1619.72),
    (122, 32, 4, 184.53, 0.0, 738.12),
    (122, 80, 2, 174.72, 0.0, 349.44),
    (122, 11, 1, 1709.28, 0.0, 1709.28),
    (123, 83, 1, 68.44, 0.0, 68.44),
    (123, 105, 3, 103.14, 0.0, 309.42),
    (123, 37, 2, 95.45, 5.0, 181.36),
    (123, 97, 2, 1619.72, 10.0, 2915.5),
    (124, 25, 1, 2969.54, 5.0, 2821.06),
    (125, 22, 2, 401.93, 0.0, 803.86),
    (125, 93, 2, 137.35, 0.0, 274.7),
    (125, 26, 4, 2963.33, 20.0, 9482.66),
    (126, 79, 4, 149.48, 0.0, 597.92),
    (126, 95, 4, 1291.88, 0.0, 5167.52),
    (126, 56, 1, 58.03, 10.0, 52.23),
    (126, 98, 3, 1250.0, 5.0, 3562.5),
    (126, 20, 2, 204.87, 5.0, 389.25),
    (127, 26, 1, 2963.33, 15.0, 2518.83),
    (127, 20, 3, 204.87, 0.0, 614.61),
    (127, 25, 4, 2969.54, 15.0, 10096.44),
    (127, 1, 3, 1201.2, 0.0, 3603.6),
    (128, 33, 3, 104.34, 5.0, 297.37),
    (128, 99, 4, 2500.38, 5.0, 9501.44),
    (128, 117, 3, 65.55, 5.0, 186.82),
    (128, 97, 4, 1619.72, 15.0, 5507.05),
    (129, 33, 2, 104.34, 0.0, 208.68),
    (129, 32, 1, 184.53, 5.0, 175.3),
    (130, 65, 4, 166.5, 5.0, 632.7),
    (130, 69, 4, 383.43, 10.0, 1380.35),
    (130, 85, 1, 212.56, 0.0, 212.56),
    (131, 105, 1, 103.14, 0.0, 103.14),
    (131, 63, 4, 161.59, 5.0, 614.04),
    (132, 15, 2, 1330.24, 0.0, 2660.48),
    (132, 58, 2, 59.14, 10.0, 106.45),
    (132, 73, 2, 308.35, 0.0, 616.7),
    (132, 105, 4, 103.14, 0.0, 412.56),
    (132, 28, 1, 701.14, 15.0, 595.97),
    (133, 63, 1, 161.59, 0.0, 161.59),
    (133, 87, 1, 211.54, 5.0, 200.96),
    (133, 98, 1, 1250.0, 0.0, 1250.0),
    (133, 13, 1, 559.57, 0.0, 559.57),
    (134, 41, 3, 141.08, 5.0, 402.08),
    (134, 105, 4, 103.14, 5.0, 391.93),
    (134, 31, 3, 202.24, 15.0, 515.71),
    (135, 90, 2, 153.87, 0.0, 307.74),
    (135, 97, 4, 1619.72, 5.0, 6154.94),
    (135, 105, 2, 103.14, 0.0, 206.28),
    (136, 52, 1, 63.01, 0.0, 63.01),
    (136, 95, 4, 1291.88, 20.0, 4134.02),
    (136, 79, 1, 149.48, 10.0, 134.53),
    (136, 102, 3, 85.54, 5.0, 243.79),
    (137, 112, 1, 93.39, 0.0, 93.39),
    (137, 60, 2, 267.81, 0.0, 535.62),
    (137, 22, 2, 401.93, 10.0, 723.47),
    (137, 115, 1, 147.17, 0.0, 147.17),
    (137, 58, 1, 59.14, 0.0, 59.14),
    (138, 82, 3, 69.1, 15.0, 176.21),
    (138, 93, 1, 137.35, 5.0, 130.48),
    (138, 63, 4, 161.59, 15.0, 549.41),
    (138, 12, 4, 1781.91, 5.0, 6771.26),
    (138, 102, 4, 85.54, 10.0, 307.94),
    (139, 74, 3, 127.99, 0.0, 383.97),
    (140, 55, 2, 55.76, 5.0, 105.94),
    (140, 41, 2, 141.08, 0.0, 282.16),
    (140, 99, 1, 2500.38, 5.0, 2375.36),
    (140, 47, 4, 64.89, 0.0, 259.56),
    (141, 77, 3, 474.6, 0.0, 1423.8),
    (142, 8, 2, 1917.66, 10.0, 3451.79),
    (142, 104, 2, 73.75, 10.0, 132.75),
    (142, 43, 1, 205.9, 15.0, 175.02),
    (142, 20, 2, 204.87, 15.0, 348.28),
    (143, 97, 3, 1619.72, 0.0, 4859.16),
    (143, 51, 2, 42.12, 10.0, 75.82),
    (143, 10, 4, 1780.97, 0.0, 7123.88),
    (144, 38, 2, 85.15, 10.0, 153.27),
    (144, 115, 2, 147.17, 10.0, 264.91),
    (144, 19, 1, 440.04, 0.0, 440.04),
    (144, 27, 1, 1649.21, 5.0, 1566.75),
    (145, 7, 3, 609.83, 5.0, 1738.02),
    (145, 16, 2, 519.64, 5.0, 987.32),
    (146, 100, 4, 79.32, 15.0, 269.69),
    (147, 83, 2, 68.44, 0.0, 136.88),
    (147, 86, 4, 160.39, 0.0, 641.56),
    (147, 117, 1, 65.55, 10.0, 59.0),
    (147, 66, 2, 1542.36, 0.0, 3084.72),
    (148, 24, 4, 1277.81, 5.0, 4855.68),
    (148, 52, 4, 63.01, 0.0, 252.04),
    (148, 105, 1, 103.14, 10.0, 92.83),
    (148, 90, 2, 153.87, 20.0, 246.19),
    (148, 3, 1, 731.02, 0.0, 731.02),
    (149, 12, 3, 1781.91, 15.0, 4543.87),
    (149, 72, 1, 443.9, 0.0, 443.9),
    (150, 116, 4, 59.63, 0.0, 238.52),
    (150, 101, 4, 104.09, 5.0, 395.54),
    (150, 38, 3, 85.15, 5.0, 242.68),
    (150, 85, 2, 212.56, 5.0, 403.86),
    (150, 69, 1, 383.43, 0.0, 383.43),
    (151, 94, 4, 1181.28, 0.0, 4725.12),
    (151, 80, 3, 174.72, 0.0, 524.16),
    (152, 82, 2, 69.1, 10.0, 124.38),
    (152, 90, 2, 153.87, 0.0, 307.74),
    (152, 83, 2, 68.44, 0.0, 136.88),
    (153, 9, 3, 2411.7, 15.0, 6149.84),
    (153, 43, 3, 205.9, 0.0, 617.7),
    (153, 82, 2, 69.1, 0.0, 138.2),
    (153, 12, 1, 1781.91, 0.0, 1781.91),
    (154, 13, 3, 559.57, 5.0, 1594.77),
    (154, 68, 1, 189.84, 15.0, 161.36),
    (154, 45, 2, 281.48, 0.0, 562.96),
    (154, 90, 4, 153.87, 0.0, 615.48),
    (155, 92, 4, 227.98, 5.0, 866.32),
    (155, 20, 3, 204.87, 0.0, 614.61),
    (155, 85, 3, 212.56, 10.0, 573.91),
    (155, 17, 2, 166.79, 5.0, 316.9),
    (155, 19, 4, 440.04, 10.0, 1584.14),
    (156, 40, 1, 127.44, 15.0, 108.32),
    (156, 82, 4, 69.1, 10.0, 248.76),
    (157, 64, 2, 1503.32, 0.0, 3006.64),
    (157, 104, 1, 73.75, 0.0, 73.75),
    (157, 112, 2, 93.39, 15.0, 158.76),
    (157, 2, 1, 579.88, 10.0, 521.89),
    (157, 55, 3, 55.76, 0.0, 167.28),
    (158, 10, 2, 1780.97, 5.0, 3383.84),
    (158, 47, 1, 64.89, 0.0, 64.89),
    (159, 34, 4, 118.64, 0.0, 474.56),
    (159, 28, 3, 701.14, 15.0, 1787.91),
    (159, 1, 1, 1201.2, 15.0, 1021.02),
    (160, 45, 2, 281.48, 0.0, 562.96),
    (161, 29, 3, 2973.66, 0.0, 8920.98),
    (161, 61, 4, 1715.25, 15.0, 5831.85),
    (161, 51, 3, 42.12, 0.0, 126.36),
    (162, 15, 3, 1330.24, 0.0, 3990.72),
    (162, 25, 4, 2969.54, 0.0, 11878.16),
    (163, 64, 3, 1503.32, 10.0, 4058.96),
    (163, 103, 4, 71.11, 5.0, 270.22),
    (163, 88, 4, 165.88, 0.0, 663.52),
    (163, 92, 1, 227.98, 10.0, 205.18),
    (163, 17, 2, 166.79, 0.0, 333.58),
    (164, 63, 4, 161.59, 0.0, 646.36),
    (164, 11, 2, 1709.28, 10.0, 3076.7),
    (164, 98, 2, 1250.0, 0.0, 2500.0),
    (165, 110, 2, 126.77, 0.0, 253.54),
    (165, 76, 2, 440.35, 0.0, 880.7),
    (166, 40, 3, 127.44, 0.0, 382.32),
    (166, 90, 1, 153.87, 5.0, 146.18),
    (166, 82, 1, 69.1, 0.0, 69.1),
    (166, 30, 3, 85.45, 0.0, 256.35),
    (166, 29, 3, 2973.66, 10.0, 8028.88),
    (167, 36, 4, 249.56, 0.0, 998.24),
    (167, 117, 4, 65.55, 0.0, 262.2),
    (167, 78, 3, 105.52, 0.0, 316.56),
    (167, 13, 1, 559.57, 5.0, 531.59),
    (168, 114, 1, 122.82, 0.0, 122.82),
    (169, 44, 2, 219.45, 5.0, 416.96),
    (169, 39, 2, 96.97, 0.0, 193.94),
    (169, 93, 2, 137.35, 0.0, 274.7),
    (169, 61, 3, 1715.25, 15.0, 4373.89),
    (169, 98, 3, 1250.0, 15.0, 3187.5),
    (170, 77, 2, 474.6, 0.0, 949.2),
    (170, 36, 1, 249.56, 10.0, 224.6),
    (171, 52, 2, 63.01, 0.0, 126.02),
    (171, 78, 2, 105.52, 5.0, 200.49),
    (171, 35, 1, 158.7, 15.0, 134.9),
    (171, 27, 4, 1649.21, 5.0, 6267.0),
    (172, 31, 3, 202.24, 15.0, 515.71),
    (172, 38, 3, 85.15, 15.0, 217.13),
    (172, 6, 1, 1189.16, 5.0, 1129.7),
    (172, 82, 2, 69.1, 20.0, 110.56),
    (172, 19, 2, 440.04, 5.0, 836.08),
    (173, 53, 3, 56.85, 0.0, 170.55),
    (173, 115, 1, 147.17, 5.0, 139.81),
    (174, 14, 3, 2113.7, 15.0, 5389.94),
    (174, 93, 2, 137.35, 10.0, 247.23),
    (174, 96, 2, 2457.16, 0.0, 4914.32),
    (174, 89, 2, 138.34, 5.0, 262.85),
    (174, 49, 4, 295.15, 0.0, 1180.6),
    (175, 25, 4, 2969.54, 15.0, 10096.44),
    (175, 73, 2, 308.35, 5.0, 585.87),
    (176, 117, 2, 65.55, 10.0, 117.99),
    (176, 83, 1, 68.44, 5.0, 65.02),
    (176, 52, 4, 63.01, 0.0, 252.04),
    (176, 13, 1, 559.57, 10.0, 503.61),
    (177, 2, 3, 579.88, 15.0, 1478.69),
    (177, 102, 1, 85.54, 0.0, 85.54),
    (177, 14, 4, 2113.7, 10.0, 7609.32),
    (177, 70, 4, 415.27, 10.0, 1494.97),
    (177, 95, 3, 1291.88, 0.0, 3875.64),
    (178, 14, 4, 2113.7, 0.0, 8454.8),
    (178, 66, 2, 1542.36, 0.0, 3084.72),
    (178, 114, 4, 122.82, 0.0, 491.28),
    (179, 46, 3, 31.86, 0.0, 95.58),
    (179, 10, 1, 1780.97, 15.0, 1513.82),
    (179, 79, 2, 149.48, 0.0, 298.96),
    (180, 113, 4, 114.51, 5.0, 435.14),
    (180, 14, 3, 2113.7, 10.0, 5706.99),
    (180, 35, 1, 158.7, 10.0, 142.83),
    (181, 105, 4, 103.14, 20.0, 330.05),
    (181, 9, 3, 2411.7, 0.0, 7235.1),
    (181, 15, 3, 1330.24, 20.0, 3192.58),
    (181, 74, 2, 127.99, 10.0, 230.38),
    (182, 64, 1, 1503.32, 5.0, 1428.15),
    (182, 69, 4, 383.43, 5.0, 1457.03),
    (182, 106, 2, 85.2, 10.0, 153.36),
    (182, 30, 2, 85.45, 0.0, 170.9),
    (182, 50, 2, 19.39, 20.0, 31.02),
    (183, 38, 2, 85.15, 10.0, 153.27),
    (183, 59, 4, 51.71, 0.0, 206.84),
    (184, 85, 1, 212.56, 0.0, 212.56),
    (185, 20, 2, 204.87, 10.0, 368.77),
    (185, 98, 3, 1250.0, 0.0, 3750.0),
    (185, 24, 3, 1277.81, 0.0, 3833.43),
    (185, 61, 1, 1715.25, 0.0, 1715.25),
    (186, 71, 3, 368.66, 10.0, 995.38),
    (186, 92, 4, 227.98, 15.0, 775.13),
    (186, 107, 3, 34.0, 20.0, 81.6),
    (186, 34, 4, 118.64, 20.0, 379.65),
    (187, 62, 4, 1801.83, 10.0, 6486.59),
    (187, 41, 2, 141.08, 0.0, 282.16),
    (187, 84, 3, 273.15, 5.0, 778.48),
    (187, 83, 2, 68.44, 0.0, 136.88),
    (188, 77, 3, 474.6, 0.0, 1423.8),
    (188, 2, 2, 579.88, 5.0, 1101.77),
    (189, 40, 1, 127.44, 20.0, 101.95),
    (190, 13, 1, 559.57, 5.0, 531.59),
    (190, 65, 4, 166.5, 0.0, 666.0),
    (190, 104, 1, 73.75, 0.0, 73.75),
    (190, 100, 2, 79.32, 5.0, 150.71),
    (190, 20, 1, 204.87, 15.0, 174.14),
    (191, 84, 2, 273.15, 0.0, 546.3),
    (191, 67, 3, 1817.2, 5.0, 5179.02),
    (191, 99, 4, 2500.38, 0.0, 10001.52),
    (191, 44, 4, 219.45, 0.0, 877.8),
    (191, 58, 1, 59.14, 20.0, 47.31),
    (192, 64, 1, 1503.32, 0.0, 1503.32),
    (193, 34, 4, 118.64, 5.0, 450.83),
    (193, 61, 2, 1715.25, 15.0, 2915.93),
    (193, 33, 4, 104.34, 0.0, 417.36),
    (193, 98, 3, 1250.0, 0.0, 3750.0),
    (194, 65, 1, 166.5, 5.0, 158.18),
    (194, 58, 1, 59.14, 10.0, 53.23),
    (194, 34, 2, 118.64, 5.0, 225.42),
    (194, 113, 1, 114.51, 0.0, 114.51),
    (195, 60, 4, 267.81, 0.0, 1071.24),
    (195, 83, 2, 68.44, 10.0, 123.19),
    (195, 69, 4, 383.43, 10.0, 1380.35),
    (196, 70, 2, 415.27, 15.0, 705.96),
    (197, 28, 4, 701.14, 0.0, 2804.56),
    (197, 7, 2, 609.83, 0.0, 1219.66),
    (197, 112, 1, 93.39, 0.0, 93.39),
    (197, 3, 1, 731.02, 0.0, 731.02),
    (198, 44, 2, 219.45, 0.0, 438.9),
    (198, 97, 4, 1619.72, 0.0, 6478.88),
    (198, 39, 2, 96.97, 20.0, 155.15),
    (198, 22, 4, 401.93, 0.0, 1607.72),
    (199, 86, 3, 160.39, 0.0, 481.17),
    (199, 106, 4, 85.2, 15.0, 289.68),
    (199, 94, 4, 1181.28, 15.0, 4016.35),
    (200, 13, 4, 559.57, 5.0, 2126.37),
    (200, 5, 2, 1274.14, 5.0, 2420.87),
    (200, 28, 2, 701.14, 0.0, 1402.28),
    (200, 96, 2, 2457.16, 20.0, 3931.46),
    (200, 25, 1, 2969.54, 0.0, 2969.54),
    (201, 46, 4, 31.86, 5.0, 121.07),
    (201, 107, 3, 34.0, 0.0, 102.0),
    (201, 70, 2, 415.27, 0.0, 830.54),
    (202, 116, 1, 59.63, 0.0, 59.63),
    (202, 110, 1, 126.77, 5.0, 120.43),
    (202, 13, 4, 559.57, 0.0, 2238.28),
    (202, 12, 1, 1781.91, 5.0, 1692.81),
    (202, 104, 1, 73.75, 5.0, 70.06),
    (203, 102, 4, 85.54, 15.0, 290.84),
    (203, 117, 4, 65.55, 0.0, 262.2),
    (203, 60, 3, 267.81, 10.0, 723.09),
    (204, 5, 3, 1274.14, 10.0, 3440.18),
    (204, 2, 3, 579.88, 0.0, 1739.64),
    (204, 4, 4, 1298.64, 0.0, 5194.56),
    (204, 20, 4, 204.87, 0.0, 819.48),
    (205, 52, 3, 63.01, 5.0, 179.58),
    (205, 116, 4, 59.63, 0.0, 238.52),
    (206, 27, 4, 1649.21, 0.0, 6596.84),
    (206, 12, 2, 1781.91, 0.0, 3563.82),
    (206, 4, 1, 1298.64, 5.0, 1233.71),
    (207, 93, 4, 137.35, 10.0, 494.46),
    (207, 100, 1, 79.32, 0.0, 79.32),
    (208, 37, 2, 95.45, 0.0, 190.9),
    (208, 34, 4, 118.64, 10.0, 427.1),
    (209, 49, 4, 295.15, 10.0, 1062.54),
    (209, 114, 2, 122.82, 0.0, 245.64),
    (209, 41, 2, 141.08, 5.0, 268.05),
    (209, 82, 1, 69.1, 0.0, 69.1),
    (210, 69, 1, 383.43, 5.0, 364.26),
    (211, 35, 4, 158.7, 0.0, 634.8),
    (211, 36, 1, 249.56, 0.0, 249.56),
    (212, 88, 3, 165.88, 20.0, 398.11),
    (212, 109, 1, 188.7, 5.0, 179.27),
    (213, 105, 1, 103.14, 5.0, 97.98),
    (213, 41, 4, 141.08, 0.0, 564.32),
    (213, 80, 3, 174.72, 0.0, 524.16),
    (214, 46, 3, 31.86, 0.0, 95.58),
    (214, 51, 2, 42.12, 0.0, 84.24),
    (214, 4, 1, 1298.64, 0.0, 1298.64),
    (214, 15, 3, 1330.24, 0.0, 3990.72),
    (214, 24, 3, 1277.81, 0.0, 3833.43),
    (215, 37, 2, 95.45, 0.0, 190.9),
    (215, 78, 3, 105.52, 10.0, 284.9),
    (215, 28, 1, 701.14, 5.0, 666.08),
    (215, 68, 4, 189.84, 5.0, 721.39),
    (216, 16, 3, 519.64, 5.0, 1480.97),
    (216, 58, 2, 59.14, 5.0, 112.37),
    (216, 22, 3, 401.93, 0.0, 1205.79),
    (216, 77, 1, 474.6, 15.0, 403.41),
    (217, 93, 3, 137.35, 0.0, 412.05),
    (217, 39, 3, 96.97, 0.0, 290.91),
    (217, 36, 1, 249.56, 0.0, 249.56),
    (217, 41, 4, 141.08, 0.0, 564.32),
    (218, 14, 4, 2113.7, 0.0, 8454.8),
    (218, 42, 1, 213.41, 0.0, 213.41),
    (219, 15, 1, 1330.24, 15.0, 1130.7),
    (220, 41, 2, 141.08, 10.0, 253.94),
    (220, 111, 4, 129.71, 5.0, 492.9),
    (221, 29, 3, 2973.66, 10.0, 8028.88),
    (221, 12, 3, 1781.91, 5.0, 5078.44),
    (221, 34, 2, 118.64, 5.0, 225.42),
    (221, 99, 2, 2500.38, 5.0, 4750.72),
    (222, 27, 3, 1649.21, 10.0, 4452.87),
    (222, 105, 3, 103.14, 10.0, 278.48),
    (222, 76, 2, 440.35, 10.0, 792.63),
    (223, 9, 4, 2411.7, 0.0, 9646.8),
    (223, 36, 3, 249.56, 20.0, 598.94),
    (224, 85, 3, 212.56, 0.0, 637.68),
    (224, 68, 1, 189.84, 0.0, 189.84),
    (224, 58, 2, 59.14, 0.0, 118.28),
    (224, 46, 4, 31.86, 5.0, 121.07),
    (225, 23, 4, 179.75, 5.0, 683.05),
    (225, 77, 1, 474.6, 5.0, 450.87),
    (225, 36, 2, 249.56, 20.0, 399.3),
    (225, 68, 2, 189.84, 0.0, 379.68),
    (226, 29, 3, 2973.66, 0.0, 8920.98),
    (227, 62, 2, 1801.83, 0.0, 3603.66),
    (227, 95, 1, 1291.88, 0.0, 1291.88),
    (227, 40, 3, 127.44, 15.0, 324.97),
    (227, 110, 2, 126.77, 20.0, 202.83),
    (227, 117, 4, 65.55, 0.0, 262.2),
    (228, 61, 1, 1715.25, 10.0, 1543.73),
    (228, 15, 3, 1330.24, 10.0, 3591.65),
    (229, 70, 4, 415.27, 0.0, 1661.08),
    (229, 33, 4, 104.34, 0.0, 417.36),
    (229, 85, 3, 212.56, 0.0, 637.68),
    (230, 110, 3, 126.77, 0.0, 380.31),
    (230, 29, 2, 2973.66, 5.0, 5649.95),
    (230, 85, 4, 212.56, 0.0, 850.24),
    (230, 19, 1, 440.04, 0.0, 440.04),
    (231, 114, 4, 122.82, 15.0, 417.59),
    (231, 43, 3, 205.9, 0.0, 617.7),
    (231, 51, 1, 42.12, 5.0, 40.01),
    (232, 64, 2, 1503.32, 0.0, 3006.64),
    (233, 28, 3, 701.14, 10.0, 1893.08),
    (234, 113, 2, 114.51, 20.0, 183.22),
    (234, 37, 3, 95.45, 0.0, 286.35),
    (234, 101, 2, 104.09, 0.0, 208.18),
    (235, 115, 3, 147.17, 15.0, 375.28),
    (236, 26, 4, 2963.33, 5.0, 11260.65),
    (236, 39, 4, 96.97, 10.0, 349.09),
    (236, 40, 4, 127.44, 0.0, 509.76),
    (236, 11, 4, 1709.28, 5.0, 6495.26),
    (236, 73, 3, 308.35, 0.0, 925.05),
    (237, 79, 3, 149.48, 10.0, 403.6),
    (237, 117, 3, 65.55, 0.0, 196.65),
    (238, 59, 3, 51.71, 10.0, 139.62),
    (238, 108, 1, 94.64, 0.0, 94.64),
    (238, 7, 1, 609.83, 10.0, 548.85),
    (238, 11, 4, 1709.28, 5.0, 6495.26),
    (238, 8, 1, 1917.66, 0.0, 1917.66),
    (239, 39, 3, 96.97, 10.0, 261.82),
    (239, 81, 1, 108.79, 10.0, 97.91),
    (240, 14, 1, 2113.7, 10.0, 1902.33),
    (240, 61, 4, 1715.25, 0.0, 6861.0),
    (241, 110, 4, 126.77, 0.0, 507.08),
    (241, 85, 1, 212.56, 0.0, 212.56),
    (241, 79, 2, 149.48, 0.0, 298.96),
    (241, 16, 2, 519.64, 0.0, 1039.28),
    (242, 60, 4, 267.81, 10.0, 964.12),
    (243, 57, 4, 25.34, 15.0, 86.16),
    (243, 6, 4, 1189.16, 0.0, 4756.64),
    (243, 117, 2, 65.55, 0.0, 131.1),
    (243, 46, 2, 31.86, 0.0, 63.72),
    (243, 18, 4, 567.87, 5.0, 2157.91),
    (244, 51, 4, 42.12, 0.0, 168.48),
    (244, 9, 4, 2411.7, 5.0, 9164.46),
    (244, 108, 2, 94.64, 5.0, 179.82),
    (245, 9, 2, 2411.7, 0.0, 4823.4),
    (245, 6, 1, 1189.16, 0.0, 1189.16),
    (245, 4, 4, 1298.64, 0.0, 5194.56),
    (245, 110, 2, 126.77, 20.0, 202.83),
    (246, 79, 3, 149.48, 0.0, 448.44),
    (247, 18, 2, 567.87, 0.0, 1135.74),
    (247, 82, 4, 69.1, 0.0, 276.4),
    (247, 74, 3, 127.99, 0.0, 383.97),
    (247, 72, 2, 443.9, 0.0, 887.8),
    (248, 115, 3, 147.17, 10.0, 397.36),
    (248, 1, 1, 1201.2, 0.0, 1201.2),
    (249, 46, 2, 31.86, 10.0, 57.35),
    (249, 80, 4, 174.72, 0.0, 698.88),
    (249, 116, 4, 59.63, 15.0, 202.74),
    (249, 72, 1, 443.9, 0.0, 443.9),
    (249, 110, 3, 126.77, 0.0, 380.31),
    (250, 9, 3, 2411.7, 0.0, 7235.1),
    (250, 112, 2, 93.39, 15.0, 158.76),
    (250, 21, 3, 151.63, 0.0, 454.89),
    (251, 34, 1, 118.64, 0.0, 118.64),
    (251, 26, 3, 2963.33, 15.0, 7556.49),
    (251, 43, 1, 205.9, 0.0, 205.9),
    (251, 114, 1, 122.82, 10.0, 110.54),
    (252, 114, 4, 122.82, 15.0, 417.59),
    (253, 3, 1, 731.02, 10.0, 657.92),
    (253, 8, 2, 1917.66, 5.0, 3643.55),
    (254, 90, 1, 153.87, 0.0, 153.87),
    (254, 55, 3, 55.76, 0.0, 167.28),
    (254, 71, 3, 368.66, 0.0, 1105.98),
    (254, 18, 1, 567.87, 0.0, 567.87),
    (255, 8, 2, 1917.66, 0.0, 3835.32),
    (256, 85, 1, 212.56, 0.0, 212.56),
    (257, 112, 3, 93.39, 0.0, 280.17),
    (257, 84, 1, 273.15, 0.0, 273.15),
    (257, 32, 4, 184.53, 10.0, 664.31),
    (258, 5, 4, 1274.14, 5.0, 4841.73),
    (258, 31, 4, 202.24, 20.0, 647.17),
    (259, 50, 4, 19.39, 0.0, 77.56),
    (259, 64, 2, 1503.32, 0.0, 3006.64),
    (259, 3, 2, 731.02, 5.0, 1388.94),
    (259, 111, 1, 129.71, 5.0, 123.22),
    (259, 49, 1, 295.15, 5.0, 280.39),
    (260, 56, 1, 58.03, 10.0, 52.23),
    (260, 111, 4, 129.71, 20.0, 415.07),
    (260, 55, 3, 55.76, 15.0, 142.19),
    (260, 101, 4, 104.09, 0.0, 416.36),
    (260, 94, 3, 1181.28, 0.0, 3543.84),
    (261, 99, 3, 2500.38, 0.0, 7501.14),
    (261, 70, 4, 415.27, 0.0, 1661.08),
    (262, 57, 1, 25.34, 0.0, 25.34),
    (262, 60, 4, 267.81, 0.0, 1071.24),
    (263, 71, 3, 368.66, 10.0, 995.38),
    (263, 41, 3, 141.08, 0.0, 423.24),
    (263, 9, 4, 2411.7, 0.0, 9646.8),
    (263, 57, 2, 25.34, 0.0, 50.68),
    (263, 24, 1, 1277.81, 0.0, 1277.81),
    (264, 33, 3, 104.34, 5.0, 297.37),
    (264, 3, 1, 731.02, 5.0, 694.47),
    (264, 87, 3, 211.54, 0.0, 634.62),
    (265, 113, 3, 114.51, 5.0, 326.35),
    (265, 37, 3, 95.45, 0.0, 286.35),
    (265, 19, 4, 440.04, 15.0, 1496.14),
    (265, 4, 3, 1298.64, 0.0, 3895.92),
    (266, 28, 3, 701.14, 15.0, 1787.91),
    (266, 104, 4, 73.75, 10.0, 265.5),
    (266, 41, 1, 141.08, 5.0, 134.03),
    (266, 66, 2, 1542.36, 0.0, 3084.72),
    (266, 92, 1, 227.98, 20.0, 182.38),
    (267, 61, 3, 1715.25, 0.0, 5145.75),
    (267, 85, 3, 212.56, 15.0, 542.03),
    (267, 68, 3, 189.84, 0.0, 569.52),
    (267, 67, 3, 1817.2, 0.0, 5451.6),
    (267, 57, 3, 25.34, 10.0, 68.42),
    (268, 84, 2, 273.15, 0.0, 546.3),
    (268, 62, 4, 1801.83, 0.0, 7207.32),
    (268, 78, 2, 105.52, 15.0, 179.38),
    (269, 53, 4, 56.85, 5.0, 216.03),
    (270, 98, 4, 1250.0, 10.0, 4500.0),
    (270, 71, 2, 368.66, 15.0, 626.72),
    (270, 92, 4, 227.98, 0.0, 911.92),
    (271, 31, 3, 202.24, 5.0, 576.38),
    (271, 92, 1, 227.98, 20.0, 182.38),
    (271, 38, 1, 85.15, 0.0, 85.15),
    (271, 16, 3, 519.64, 15.0, 1325.08),
    (271, 44, 4, 219.45, 5.0, 833.91),
    (272, 76, 4, 440.35, 0.0, 1761.4),
    (272, 48, 2, 228.47, 5.0, 434.09),
    (272, 87, 3, 211.54, 15.0, 539.43),
    (272, 84, 1, 273.15, 0.0, 273.15),
    (272, 59, 4, 51.71, 0.0, 206.84),
    (273, 6, 2, 1189.16, 0.0, 2378.32),
    (273, 105, 3, 103.14, 5.0, 293.95),
    (274, 37, 1, 95.45, 15.0, 81.13),
    (274, 34, 3, 118.64, 0.0, 355.92),
    (275, 1, 1, 1201.2, 0.0, 1201.2),
    (275, 63, 3, 161.59, 15.0, 412.05),
    (276, 64, 2, 1503.32, 20.0, 2405.31),
    (276, 34, 1, 118.64, 20.0, 94.91),
    (276, 12, 1, 1781.91, 10.0, 1603.72),
    (276, 111, 2, 129.71, 10.0, 233.48),
    (277, 41, 1, 141.08, 15.0, 119.92),
    (277, 25, 1, 2969.54, 0.0, 2969.54),
    (277, 108, 4, 94.64, 15.0, 321.78),
    (277, 72, 2, 443.9, 5.0, 843.41),
    (277, 85, 3, 212.56, 0.0, 637.68),
    (278, 1, 1, 1201.2, 0.0, 1201.2),
    (278, 56, 2, 58.03, 10.0, 104.45),
    (279, 113, 2, 114.51, 15.0, 194.67),
    (279, 39, 4, 96.97, 0.0, 387.88),
    (280, 54, 2, 26.49, 5.0, 50.33),
    (280, 58, 1, 59.14, 0.0, 59.14),
    (280, 42, 3, 213.41, 5.0, 608.22),
    (281, 28, 1, 701.14, 5.0, 666.08),
    (281, 114, 3, 122.82, 0.0, 368.46),
    (281, 109, 3, 188.7, 0.0, 566.1),
    (281, 101, 4, 104.09, 0.0, 416.36),
    (281, 53, 3, 56.85, 15.0, 144.97),
    (282, 27, 3, 1649.21, 0.0, 4947.63),
    (282, 100, 1, 79.32, 20.0, 63.46),
    (282, 81, 1, 108.79, 10.0, 97.91),
    (282, 15, 1, 1330.24, 10.0, 1197.22),
    (282, 79, 3, 149.48, 15.0, 381.17),
    (283, 111, 2, 129.71, 15.0, 220.51),
    (283, 92, 3, 227.98, 0.0, 683.94),
    (283, 30, 2, 85.45, 15.0, 145.27),
    (283, 38, 1, 85.15, 10.0, 76.64),
    (284, 81, 2, 108.79, 0.0, 217.58),
    (284, 99, 1, 2500.38, 10.0, 2250.34),
    (285, 3, 2, 731.02, 0.0, 1462.04),
    (285, 2, 4, 579.88, 0.0, 2319.52),
    (285, 96, 3, 2457.16, 10.0, 6634.33),
    (285, 107, 4, 34.0, 5.0, 129.2),
    (286, 29, 4, 2973.66, 5.0, 11299.91),
    (287, 92, 1, 227.98, 0.0, 227.98),
    (287, 14, 2, 2113.7, 0.0, 4227.4),
    (287, 58, 4, 59.14, 5.0, 224.73),
    (287, 29, 3, 2973.66, 0.0, 8920.98),
    (287, 74, 1, 127.99, 0.0, 127.99),
    (288, 93, 1, 137.35, 10.0, 123.62),
    (288, 108, 3, 94.64, 0.0, 283.92),
    (288, 73, 3, 308.35, 10.0, 832.55),
    (288, 98, 1, 1250.0, 0.0, 1250.0),
    (288, 30, 4, 85.45, 15.0, 290.53),
    (289, 66, 1, 1542.36, 15.0, 1311.01),
    (289, 72, 4, 443.9, 5.0, 1686.82),
    (289, 110, 4, 126.77, 0.0, 507.08),
    (289, 95, 1, 1291.88, 0.0, 1291.88),
    (290, 63, 4, 161.59, 0.0, 646.36),
    (290, 18, 3, 567.87, 0.0, 1703.61),
    (290, 96, 3, 2457.16, 10.0, 6634.33),
    (290, 112, 3, 93.39, 5.0, 266.16),
    (290, 71, 3, 368.66, 5.0, 1050.68),
    (291, 96, 2, 2457.16, 0.0, 4914.32),
    (291, 93, 4, 137.35, 0.0, 549.4),
    (291, 110, 4, 126.77, 0.0, 507.08),
    (292, 80, 4, 174.72, 5.0, 663.94),
    (293, 75, 4, 371.74, 15.0, 1263.92),
    (293, 94, 2, 1181.28, 0.0, 2362.56),
    (293, 40, 2, 127.44, 0.0, 254.88),
    (293, 48, 2, 228.47, 0.0, 456.94),
    (294, 27, 2, 1649.21, 20.0, 2638.74),
    (294, 22, 1, 401.93, 15.0, 341.64),
    (294, 1, 2, 1201.2, 0.0, 2402.4),
    (294, 101, 4, 104.09, 15.0, 353.91),
    (295, 31, 4, 202.24, 0.0, 808.96),
    (296, 92, 4, 227.98, 5.0, 866.32),
    (296, 19, 4, 440.04, 5.0, 1672.15),
    (296, 108, 3, 94.64, 5.0, 269.72),
    (297, 79, 2, 149.48, 0.0, 298.96),
    (297, 72, 2, 443.9, 15.0, 754.63),
    (298, 33, 3, 104.34, 0.0, 313.02),
    (298, 65, 3, 166.5, 5.0, 474.53),
    (298, 2, 4, 579.88, 0.0, 2319.52),
    (299, 23, 1, 179.75, 0.0, 179.75),
    (299, 61, 1, 1715.25, 5.0, 1629.49),
    (299, 96, 2, 2457.16, 10.0, 4422.89),
    (299, 112, 2, 93.39, 15.0, 158.76),
    (300, 36, 1, 249.56, 0.0, 249.56),
    (300, 110, 3, 126.77, 15.0, 323.26),
    (300, 25, 2, 2969.54, 15.0, 5048.22),
    (300, 84, 3, 273.15, 5.0, 778.48),
    (300, 79, 4, 149.48, 0.0, 597.92),
    (301, 78, 4, 105.52, 0.0, 422.08),
    (301, 26, 1, 2963.33, 0.0, 2963.33),
    (301, 89, 3, 138.34, 0.0, 415.02),
    (302, 24, 3, 1277.81, 5.0, 3641.76),
    (303, 40, 2, 127.44, 10.0, 229.39),
    (303, 108, 2, 94.64, 0.0, 189.28),
    (304, 38, 4, 85.15, 0.0, 340.6),
    (304, 34, 4, 118.64, 0.0, 474.56),
    (305, 73, 3, 308.35, 0.0, 925.05),
    (305, 27, 3, 1649.21, 0.0, 4947.63),
    (305, 90, 2, 153.87, 0.0, 307.74),
    (305, 56, 4, 58.03, 0.0, 232.12),
    (305, 45, 1, 281.48, 5.0, 267.41),
    (306, 112, 2, 93.39, 0.0, 186.78),
    (306, 116, 3, 59.63, 0.0, 178.89),
    (306, 2, 1, 579.88, 0.0, 579.88),
    (307, 94, 2, 1181.28, 0.0, 2362.56),
    (307, 52, 3, 63.01, 5.0, 179.58),
    (307, 61, 4, 1715.25, 5.0, 6517.95),
    (307, 107, 3, 34.0, 0.0, 102.0),
    (308, 76, 2, 440.35, 15.0, 748.6),
    (308, 4, 2, 1298.64, 20.0, 2077.82),
    (308, 21, 2, 151.63, 0.0, 303.26),
    (308, 66, 3, 1542.36, 10.0, 4164.37),
    (309, 26, 2, 2963.33, 0.0, 5926.66),
    (309, 114, 1, 122.82, 0.0, 122.82),
    (310, 13, 4, 559.57, 5.0, 2126.37),
    (310, 61, 4, 1715.25, 5.0, 6517.95),
    (310, 71, 4, 368.66, 10.0, 1327.18),
    (311, 77, 3, 474.6, 0.0, 1423.8),
    (311, 51, 1, 42.12, 0.0, 42.12),
    (311, 69, 2, 383.43, 10.0, 690.17),
    (311, 10, 3, 1780.97, 0.0, 5342.91),
    (312, 39, 1, 96.97, 0.0, 96.97),
    (312, 56, 2, 58.03, 0.0, 116.06),
    (313, 107, 3, 34.0, 5.0, 96.9),
    (313, 14, 1, 2113.7, 5.0, 2008.02),
    (313, 60, 4, 267.81, 10.0, 964.12),
    (313, 104, 1, 73.75, 0.0, 73.75),
    (313, 11, 2, 1709.28, 5.0, 3247.63),
    (314, 78, 4, 105.52, 5.0, 400.98),
    (315, 98, 2, 1250.0, 0.0, 2500.0),
    (315, 50, 3, 19.39, 0.0, 58.17),
    (315, 112, 4, 93.39, 0.0, 373.56),
    (315, 87, 4, 211.54, 0.0, 846.16),
    (315, 11, 1, 1709.28, 15.0, 1452.89),
    (316, 38, 4, 85.15, 0.0, 340.6),
    (316, 46, 3, 31.86, 0.0, 95.58),
    (317, 82, 4, 69.1, 15.0, 234.94),
    (317, 64, 3, 1503.32, 20.0, 3607.97),
    (318, 78, 1, 105.52, 0.0, 105.52),
    (318, 93, 1, 137.35, 0.0, 137.35),
    (319, 15, 3, 1330.24, 20.0, 3192.58),
    (319, 102, 2, 85.54, 5.0, 162.53),
    (319, 25, 1, 2969.54, 0.0, 2969.54),
    (319, 74, 4, 127.99, 0.0, 511.96),
    (320, 87, 3, 211.54, 0.0, 634.62),
    (320, 37, 2, 95.45, 0.0, 190.9),
    (321, 29, 3, 2973.66, 10.0, 8028.88),
    (321, 9, 4, 2411.7, 5.0, 9164.46),
    (321, 79, 3, 149.48, 5.0, 426.02),
    (322, 27, 4, 1649.21, 0.0, 6596.84),
    (322, 69, 1, 383.43, 5.0, 364.26),
    (322, 90, 1, 153.87, 5.0, 146.18),
    (322, 22, 3, 401.93, 0.0, 1205.79),
    (323, 22, 4, 401.93, 20.0, 1286.18),
    (323, 80, 1, 174.72, 10.0, 157.25),
    (323, 46, 3, 31.86, 5.0, 90.8),
    (323, 73, 4, 308.35, 20.0, 986.72),
    (323, 56, 4, 58.03, 15.0, 197.3),
    (324, 111, 4, 129.71, 5.0, 492.9),
    (324, 21, 3, 151.63, 10.0, 409.4),
    (325, 65, 2, 166.5, 15.0, 283.05),
    (325, 69, 4, 383.43, 10.0, 1380.35),
    (325, 51, 3, 42.12, 10.0, 113.72),
    (326, 88, 1, 165.88, 0.0, 165.88),
    (326, 117, 4, 65.55, 20.0, 209.76),
    (327, 3, 2, 731.02, 5.0, 1388.94),
    (327, 42, 4, 213.41, 5.0, 810.96),
    (327, 79, 3, 149.48, 0.0, 448.44),
    (327, 32, 4, 184.53, 5.0, 701.21),
    (328, 42, 3, 213.41, 0.0, 640.23),
    (328, 17, 1, 166.79, 0.0, 166.79),
    (329, 108, 2, 94.64, 0.0, 189.28),
    (329, 43, 1, 205.9, 0.0, 205.9),
    (329, 112, 1, 93.39, 5.0, 88.72),
    (329, 117, 4, 65.55, 15.0, 222.87),
    (329, 21, 4, 151.63, 15.0, 515.54),
    (330, 62, 3, 1801.83, 10.0, 4864.94),
    (330, 106, 1, 85.2, 0.0, 85.2),
    (330, 93, 4, 137.35, 0.0, 549.4),
    (330, 8, 1, 1917.66, 0.0, 1917.66),
    (331, 27, 1, 1649.21, 0.0, 1649.21),
    (331, 34, 4, 118.64, 10.0, 427.1),
    (331, 13, 3, 559.57, 0.0, 1678.71),
    (331, 43, 4, 205.9, 0.0, 823.6),
    (332, 73, 3, 308.35, 0.0, 925.05),
    (332, 47, 2, 64.89, 5.0, 123.29),
    (332, 92, 3, 227.98, 0.0, 683.94),
    (333, 109, 2, 188.7, 5.0, 358.53),
    (334, 110, 4, 126.77, 15.0, 431.02),
    (334, 65, 4, 166.5, 5.0, 632.7),
    (334, 41, 4, 141.08, 0.0, 564.32),
    (334, 67, 4, 1817.2, 0.0, 7268.8),
    (334, 48, 1, 228.47, 0.0, 228.47),
    (335, 108, 2, 94.64, 10.0, 170.35),
    (336, 112, 2, 93.39, 0.0, 186.78),
    (336, 11, 2, 1709.28, 5.0, 3247.63),
    (336, 103, 2, 71.11, 0.0, 142.22),
    (336, 8, 4, 1917.66, 0.0, 7670.64),
    (336, 58, 3, 59.14, 5.0, 168.55),
    (337, 98, 1, 1250.0, 0.0, 1250.0),
    (337, 75, 1, 371.74, 0.0, 371.74),
    (337, 62, 1, 1801.83, 0.0, 1801.83),
    (337, 60, 4, 267.81, 0.0, 1071.24),
    (337, 13, 2, 559.57, 5.0, 1063.18),
    (338, 97, 3, 1619.72, 0.0, 4859.16),
    (338, 59, 2, 51.71, 0.0, 103.42),
    (338, 1, 4, 1201.2, 5.0, 4564.56),
    (338, 33, 3, 104.34, 0.0, 313.02),
    (338, 53, 2, 56.85, 0.0, 113.7),
    (339, 61, 4, 1715.25, 5.0, 6517.95),
    (339, 64, 1, 1503.32, 15.0, 1277.82),
    (339, 21, 4, 151.63, 0.0, 606.52),
    (339, 23, 2, 179.75, 0.0, 359.5),
    (339, 9, 1, 2411.7, 10.0, 2170.53),
    (340, 74, 2, 127.99, 0.0, 255.98),
    (340, 87, 2, 211.54, 10.0, 380.77),
    (341, 30, 3, 85.45, 0.0, 256.35),
    (341, 34, 3, 118.64, 0.0, 355.92),
    (341, 61, 3, 1715.25, 10.0, 4631.18),
    (342, 46, 4, 31.86, 10.0, 114.7),
    (342, 83, 1, 68.44, 10.0, 61.6),
    (342, 104, 2, 73.75, 0.0, 147.5),
    (342, 18, 3, 567.87, 0.0, 1703.61),
    (343, 110, 2, 126.77, 0.0, 253.54),
    (343, 36, 4, 249.56, 15.0, 848.5),
    (343, 14, 4, 2113.7, 20.0, 6763.84),
    (343, 10, 1, 1780.97, 10.0, 1602.87),
    (344, 36, 4, 249.56, 15.0, 848.5),
    (344, 69, 1, 383.43, 0.0, 383.43),
    (344, 48, 1, 228.47, 0.0, 228.47),
    (345, 70, 3, 415.27, 5.0, 1183.52),
    (345, 98, 2, 1250.0, 10.0, 2250.0),
    (345, 85, 1, 212.56, 15.0, 180.68),
    (345, 34, 3, 118.64, 20.0, 284.74),
    (345, 72, 3, 443.9, 15.0, 1131.95),
    (346, 33, 1, 104.34, 0.0, 104.34),
    (346, 78, 4, 105.52, 0.0, 422.08),
    (346, 96, 4, 2457.16, 10.0, 8845.78),
    (347, 112, 4, 93.39, 0.0, 373.56),
    (347, 103, 3, 71.11, 5.0, 202.66),
    (347, 42, 1, 213.41, 5.0, 202.74),
    (347, 102, 1, 85.54, 5.0, 81.26),
    (347, 69, 1, 383.43, 5.0, 364.26),
    (348, 84, 1, 273.15, 0.0, 273.15),
    (348, 43, 3, 205.9, 0.0, 617.7),
    (349, 3, 4, 731.02, 0.0, 2924.08),
    (349, 2, 2, 579.88, 5.0, 1101.77),
    (349, 29, 3, 2973.66, 5.0, 8474.93),
    (349, 42, 2, 213.41, 10.0, 384.14),
    (350, 4, 1, 1298.64, 10.0, 1168.78),
    (351, 30, 3, 85.45, 0.0, 256.35),
    (351, 28, 4, 701.14, 0.0, 2804.56),
    (351, 99, 4, 2500.38, 0.0, 10001.52),
    (352, 76, 2, 440.35, 5.0, 836.67),
    (352, 105, 1, 103.14, 0.0, 103.14),
    (352, 16, 2, 519.64, 0.0, 1039.28),
    (352, 12, 4, 1781.91, 10.0, 6414.88),
    (353, 59, 1, 51.71, 0.0, 51.71),
    (354, 30, 4, 85.45, 15.0, 290.53),
    (354, 90, 1, 153.87, 20.0, 123.1),
    (354, 11, 3, 1709.28, 10.0, 4615.06),
    (355, 98, 2, 1250.0, 15.0, 2125.0),
    (355, 5, 3, 1274.14, 0.0, 3822.42),
    (355, 8, 4, 1917.66, 10.0, 6903.58),
    (355, 77, 4, 474.6, 0.0, 1898.4),
    (356, 40, 3, 127.44, 15.0, 324.97),
    (356, 52, 3, 63.01, 5.0, 179.58),
    (357, 98, 2, 1250.0, 0.0, 2500.0),
    (357, 77, 1, 474.6, 0.0, 474.6),
    (357, 93, 2, 137.35, 0.0, 274.7),
    (357, 68, 1, 189.84, 0.0, 189.84),
    (358, 40, 4, 127.44, 0.0, 509.76),
    (359, 26, 2, 2963.33, 0.0, 5926.66),
    (359, 17, 1, 166.79, 10.0, 150.11),
    (359, 29, 4, 2973.66, 0.0, 11894.64),
    (359, 66, 1, 1542.36, 0.0, 1542.36),
    (359, 104, 3, 73.75, 0.0, 221.25),
    (360, 75, 1, 371.74, 10.0, 334.57),
    (360, 95, 4, 1291.88, 5.0, 4909.14),
    (361, 110, 4, 126.77, 0.0, 507.08),
    (361, 45, 2, 281.48, 0.0, 562.96),
    (361, 25, 3, 2969.54, 5.0, 8463.19),
    (361, 81, 1, 108.79, 10.0, 97.91),
    (362, 86, 3, 160.39, 10.0, 433.05),
    (363, 71, 3, 368.66, 0.0, 1105.98),
    (364, 100, 2, 79.32, 10.0, 142.78),
    (364, 3, 3, 731.02, 5.0, 2083.41),
    (365, 22, 2, 401.93, 5.0, 763.67),
    (365, 48, 2, 228.47, 10.0, 411.25),
    (365, 21, 2, 151.63, 5.0, 288.1),
    (365, 13, 4, 559.57, 15.0, 1902.54),
    (365, 88, 3, 165.88, 0.0, 497.64),
    (366, 1, 3, 1201.2, 0.0, 3603.6),
    (366, 10, 1, 1780.97, 0.0, 1780.97),
    (366, 33, 4, 104.34, 0.0, 417.36),
    (367, 107, 1, 34.0, 0.0, 34.0),
    (367, 45, 3, 281.48, 0.0, 844.44),
    (368, 67, 3, 1817.2, 5.0, 5179.02),
    (369, 113, 4, 114.51, 10.0, 412.24),
    (369, 35, 3, 158.7, 0.0, 476.1),
    (369, 6, 4, 1189.16, 0.0, 4756.64),
    (370, 77, 4, 474.6, 10.0, 1708.56),
    (370, 111, 4, 129.71, 0.0, 518.84),
    (370, 47, 1, 64.89, 15.0, 55.16),
    (370, 31, 3, 202.24, 10.0, 546.05),
    (370, 112, 3, 93.39, 15.0, 238.14),
    (371, 32, 4, 184.53, 5.0, 701.21),
    (371, 75, 1, 371.74, 20.0, 297.39),
    (371, 64, 4, 1503.32, 5.0, 5712.62),
    (371, 29, 4, 2973.66, 5.0, 11299.91),
    (372, 54, 1, 26.49, 0.0, 26.49),
    (372, 105, 4, 103.14, 15.0, 350.68),
    (372, 51, 1, 42.12, 15.0, 35.8),
    (372, 92, 4, 227.98, 5.0, 866.32),
    (372, 96, 1, 2457.16, 0.0, 2457.16),
    (373, 46, 3, 31.86, 0.0, 95.58),
    (373, 105, 2, 103.14, 0.0, 206.28),
    (373, 88, 1, 165.88, 0.0, 165.88),
    (374, 100, 4, 79.32, 15.0, 269.69),
    (374, 105, 3, 103.14, 0.0, 309.42),
    (374, 23, 2, 179.75, 0.0, 359.5),
    (375, 45, 3, 281.48, 10.0, 760.0),
    (375, 44, 2, 219.45, 0.0, 438.9),
    (375, 104, 1, 73.75, 0.0, 73.75),
    (375, 57, 3, 25.34, 15.0, 64.62),
    (376, 113, 2, 114.51, 10.0, 206.12),
    (376, 85, 3, 212.56, 0.0, 637.68),
    (376, 52, 4, 63.01, 0.0, 252.04),
    (376, 110, 3, 126.77, 5.0, 361.29),
    (376, 34, 1, 118.64, 0.0, 118.64),
    (377, 32, 2, 184.53, 0.0, 369.06),
    (377, 113, 2, 114.51, 0.0, 229.02),
    (378, 75, 4, 371.74, 10.0, 1338.26),
    (378, 52, 3, 63.01, 10.0, 170.13),
    (378, 81, 3, 108.79, 0.0, 326.37),
    (378, 74, 3, 127.99, 15.0, 326.37),
    (378, 114, 2, 122.82, 0.0, 245.64),
    (379, 41, 2, 141.08, 10.0, 253.94),
    (379, 14, 2, 2113.7, 0.0, 4227.4),
    (379, 104, 1, 73.75, 0.0, 73.75),
    (379, 106, 4, 85.2, 0.0, 340.8),
    (379, 78, 4, 105.52, 0.0, 422.08),
    (380, 9, 3, 2411.7, 15.0, 6149.84),
    (380, 93, 1, 137.35, 10.0, 123.62),
    (380, 36, 4, 249.56, 0.0, 998.24),
    (381, 53, 3, 56.85, 15.0, 144.97),
    (381, 19, 1, 440.04, 10.0, 396.04),
    (381, 99, 3, 2500.38, 5.0, 7126.08),
    (381, 70, 1, 415.27, 5.0, 394.51),
    (381, 88, 4, 165.88, 10.0, 597.17),
    (382, 12, 4, 1781.91, 10.0, 6414.88),
    (382, 13, 4, 559.57, 5.0, 2126.37),
    (382, 52, 2, 63.01, 10.0, 113.42),
    (383, 45, 1, 281.48, 0.0, 281.48),
    (383, 83, 1, 68.44, 5.0, 65.02),
    (384, 2, 1, 579.88, 10.0, 521.89),
    (384, 1, 3, 1201.2, 15.0, 3063.06),
    (384, 42, 2, 213.41, 0.0, 426.82),
    (384, 50, 4, 19.39, 0.0, 77.56),
    (384, 40, 2, 127.44, 20.0, 203.9),
    (385, 4, 1, 1298.64, 10.0, 1168.78),
    (385, 80, 3, 174.72, 15.0, 445.54),
    (385, 5, 1, 1274.14, 0.0, 1274.14),
    (385, 69, 2, 383.43, 5.0, 728.52),
    (386, 9, 2, 2411.7, 20.0, 3858.72),
    (386, 44, 4, 219.45, 0.0, 877.8),
    (386, 32, 4, 184.53, 0.0, 738.12),
    (386, 47, 1, 64.89, 15.0, 55.16),
    (386, 19, 4, 440.04, 10.0, 1584.14),
    (387, 67, 2, 1817.2, 0.0, 3634.4),
    (387, 51, 2, 42.12, 0.0, 84.24),
    (387, 97, 2, 1619.72, 0.0, 3239.44),
    (387, 70, 4, 415.27, 0.0, 1661.08),
    (387, 83, 4, 68.44, 0.0, 273.76),
    (388, 25, 1, 2969.54, 0.0, 2969.54),
    (389, 25, 4, 2969.54, 10.0, 10690.34),
    (389, 46, 2, 31.86, 5.0, 60.53),
    (389, 69, 1, 383.43, 15.0, 325.92),
    (389, 7, 1, 609.83, 0.0, 609.83),
    (390, 116, 1, 59.63, 15.0, 50.69),
    (390, 89, 1, 138.34, 15.0, 117.59),
    (391, 77, 3, 474.6, 15.0, 1210.23),
    (391, 32, 4, 184.53, 5.0, 701.21),
    (392, 36, 4, 249.56, 0.0, 998.24),
    (392, 108, 1, 94.64, 5.0, 89.91),
    (392, 116, 4, 59.63, 0.0, 238.52),
    (392, 25, 4, 2969.54, 0.0, 11878.16),
    (393, 22, 4, 401.93, 0.0, 1607.72),
    (393, 95, 3, 1291.88, 0.0, 3875.64),
    (393, 33, 3, 104.34, 0.0, 313.02),
    (394, 61, 4, 1715.25, 0.0, 6861.0),
    (395, 57, 1, 25.34, 5.0, 24.07),
    (395, 77, 2, 474.6, 10.0, 854.28),
    (396, 116, 1, 59.63, 0.0, 59.63),
    (396, 83, 2, 68.44, 15.0, 116.35),
    (397, 108, 2, 94.64, 5.0, 179.82),
    (398, 3, 3, 731.02, 0.0, 2193.06),
    (398, 80, 1, 174.72, 5.0, 165.98),
    (398, 93, 1, 137.35, 0.0, 137.35),
    (398, 22, 1, 401.93, 10.0, 361.74),
    (398, 42, 1, 213.41, 15.0, 181.4),
    (399, 88, 4, 165.88, 15.0, 563.99),
    (399, 79, 2, 149.48, 5.0, 284.01),
    (399, 50, 3, 19.39, 0.0, 58.17),
    (400, 50, 2, 19.39, 0.0, 38.78),
    (400, 33, 1, 104.34, 0.0, 104.34),
    (401, 54, 4, 26.49, 0.0, 105.96),
    (401, 114, 4, 122.82, 0.0, 491.28),
    (401, 59, 3, 51.71, 0.0, 155.13),
    (401, 94, 4, 1181.28, 0.0, 4725.12),
    (402, 48, 4, 228.47, 0.0, 913.88),
    (402, 83, 1, 68.44, 5.0, 65.02),
    (402, 40, 4, 127.44, 0.0, 509.76),
    (402, 28, 4, 701.14, 0.0, 2804.56),
    (403, 73, 2, 308.35, 5.0, 585.87),
    (403, 86, 2, 160.39, 0.0, 320.78),
    (403, 23, 3, 179.75, 0.0, 539.25),
    (403, 35, 2, 158.7, 10.0, 285.66),
    (404, 43, 1, 205.9, 0.0, 205.9),
    (405, 116, 2, 59.63, 0.0, 119.26),
    (405, 107, 1, 34.0, 10.0, 30.6),
    (405, 58, 2, 59.14, 15.0, 100.54),
    (405, 61, 2, 1715.25, 0.0, 3430.5),
    (405, 44, 1, 219.45, 5.0, 208.48),
    (406, 117, 1, 65.55, 10.0, 59.0),
    (406, 57, 2, 25.34, 15.0, 43.08),
    (407, 86, 3, 160.39, 20.0, 384.94),
    (407, 73, 3, 308.35, 0.0, 925.05),
    (407, 45, 2, 281.48, 5.0, 534.81),
    (407, 114, 4, 122.82, 15.0, 417.59),
    (408, 3, 4, 731.02, 20.0, 2339.26),
    (408, 80, 3, 174.72, 15.0, 445.54),
    (408, 115, 2, 147.17, 5.0, 279.62),
    (408, 76, 1, 440.35, 0.0, 440.35),
    (409, 85, 1, 212.56, 0.0, 212.56),
    (409, 11, 1, 1709.28, 10.0, 1538.35),
    (409, 43, 1, 205.9, 0.0, 205.9),
    (409, 71, 2, 368.66, 15.0, 626.72),
    (410, 17, 3, 166.79, 5.0, 475.35),
    (410, 45, 4, 281.48, 0.0, 1125.92),
    (410, 93, 1, 137.35, 15.0, 116.75),
    (411, 32, 1, 184.53, 0.0, 184.53),
    (412, 112, 1, 93.39, 0.0, 93.39),
    (412, 117, 4, 65.55, 5.0, 249.09),
    (412, 80, 3, 174.72, 10.0, 471.74),
    (413, 1, 4, 1201.2, 10.0, 4324.32),
    (414, 78, 3, 105.52, 10.0, 284.9),
    (414, 91, 1, 198.23, 0.0, 198.23),
    (414, 24, 1, 1277.81, 0.0, 1277.81),
    (414, 61, 2, 1715.25, 0.0, 3430.5),
    (415, 21, 3, 151.63, 5.0, 432.15),
    (415, 51, 3, 42.12, 0.0, 126.36),
    (416, 8, 1, 1917.66, 0.0, 1917.66),
    (417, 41, 3, 141.08, 5.0, 402.08),
    (418, 41, 2, 141.08, 5.0, 268.05),
    (418, 70, 1, 415.27, 5.0, 394.51),
    (418, 96, 4, 2457.16, 0.0, 9828.64),
    (418, 25, 4, 2969.54, 0.0, 11878.16),
    (419, 101, 4, 104.09, 20.0, 333.09),
    (419, 41, 2, 141.08, 0.0, 282.16),
    (420, 61, 2, 1715.25, 0.0, 3430.5),
    (420, 20, 4, 204.87, 0.0, 819.48),
    (420, 35, 3, 158.7, 0.0, 476.1),
    (420, 44, 4, 219.45, 5.0, 833.91),
    (421, 42, 4, 213.41, 5.0, 810.96),
    (422, 88, 1, 165.88, 5.0, 157.59),
    (422, 80, 3, 174.72, 0.0, 524.16),
    (422, 55, 3, 55.76, 10.0, 150.55),
    (423, 42, 2, 213.41, 15.0, 362.8),
    (423, 89, 3, 138.34, 5.0, 394.27),
    (424, 101, 2, 104.09, 10.0, 187.36),
    (424, 81, 2, 108.79, 10.0, 195.82),
    (424, 74, 2, 127.99, 0.0, 255.98),
    (425, 78, 3, 105.52, 0.0, 316.56),
    (425, 116, 4, 59.63, 10.0, 214.67),
    (425, 115, 3, 147.17, 10.0, 397.36),
    (425, 94, 3, 1181.28, 10.0, 3189.46),
    (426, 41, 2, 141.08, 10.0, 253.94),
    (426, 63, 2, 161.59, 20.0, 258.54),
    (426, 78, 1, 105.52, 0.0, 105.52),
    (427, 39, 3, 96.97, 0.0, 290.91),
    (428, 72, 3, 443.9, 0.0, 1331.7),
    (428, 21, 3, 151.63, 0.0, 454.89),
    (428, 77, 2, 474.6, 10.0, 854.28),
    (428, 57, 4, 25.34, 0.0, 101.36),
    (429, 71, 3, 368.66, 0.0, 1105.98),
    (429, 4, 3, 1298.64, 5.0, 3701.12),
    (429, 81, 1, 108.79, 5.0, 103.35),
    (429, 56, 3, 58.03, 5.0, 165.39),
    (430, 67, 2, 1817.2, 15.0, 3089.24),
    (431, 52, 4, 63.01, 5.0, 239.44),
    (431, 70, 4, 415.27, 5.0, 1578.03),
    (431, 8, 1, 1917.66, 10.0, 1725.89),
    (431, 68, 4, 189.84, 0.0, 759.36),
    (432, 62, 1, 1801.83, 0.0, 1801.83),
    (432, 6, 2, 1189.16, 15.0, 2021.57),
    (433, 64, 4, 1503.32, 5.0, 5712.62),
    (433, 4, 1, 1298.64, 0.0, 1298.64),
    (433, 86, 1, 160.39, 0.0, 160.39),
    (434, 1, 3, 1201.2, 5.0, 3423.42),
    (434, 81, 4, 108.79, 0.0, 435.16),
    (434, 96, 2, 2457.16, 10.0, 4422.89),
    (434, 80, 3, 174.72, 0.0, 524.16),
    (434, 37, 3, 95.45, 15.0, 243.4),
    (435, 50, 1, 19.39, 10.0, 17.45),
    (436, 73, 3, 308.35, 0.0, 925.05),
    (436, 114, 1, 122.82, 0.0, 122.82),
    (437, 78, 4, 105.52, 5.0, 400.98),
    (437, 97, 3, 1619.72, 10.0, 4373.24),
    (437, 22, 2, 401.93, 0.0, 803.86),
    (437, 63, 1, 161.59, 15.0, 137.35),
    (438, 21, 2, 151.63, 20.0, 242.61),
    (438, 13, 3, 559.57, 0.0, 1678.71),
    (438, 7, 4, 609.83, 5.0, 2317.35),
    (438, 48, 3, 228.47, 10.0, 616.87),
    (438, 28, 1, 701.14, 0.0, 701.14),
    (439, 23, 2, 179.75, 0.0, 359.5),
    (439, 2, 3, 579.88, 0.0, 1739.64),
    (439, 15, 4, 1330.24, 0.0, 5320.96),
    (439, 12, 2, 1781.91, 0.0, 3563.82),
    (440, 115, 3, 147.17, 10.0, 397.36),
    (440, 6, 4, 1189.16, 0.0, 4756.64),
    (440, 85, 3, 212.56, 0.0, 637.68),
    (440, 9, 3, 2411.7, 20.0, 5788.08),
    (440, 99, 2, 2500.38, 0.0, 5000.76),
    (441, 37, 3, 95.45, 0.0, 286.35),
    (442, 95, 4, 1291.88, 0.0, 5167.52),
    (442, 82, 4, 69.1, 0.0, 276.4),
    (442, 45, 3, 281.48, 10.0, 760.0),
    (443, 43, 4, 205.9, 0.0, 823.6),
    (443, 46, 2, 31.86, 15.0, 54.16),
    (444, 106, 4, 85.2, 0.0, 340.8),
    (444, 89, 4, 138.34, 15.0, 470.36),
    (445, 63, 3, 161.59, 5.0, 460.53),
    (445, 15, 4, 1330.24, 5.0, 5054.91),
    (445, 42, 4, 213.41, 0.0, 853.64),
    (446, 92, 1, 227.98, 0.0, 227.98),
    (446, 1, 1, 1201.2, 5.0, 1141.14),
    (447, 16, 1, 519.64, 0.0, 519.64),
    (447, 27, 4, 1649.21, 20.0, 5277.47),
    (447, 24, 4, 1277.81, 15.0, 4344.55),
    (448, 62, 4, 1801.83, 20.0, 5765.86),
    (448, 82, 4, 69.1, 0.0, 276.4),
    (448, 79, 1, 149.48, 0.0, 149.48),
    (448, 76, 4, 440.35, 15.0, 1497.19),
    (448, 6, 4, 1189.16, 10.0, 4280.98),
    (449, 61, 3, 1715.25, 5.0, 4888.46),
    (450, 5, 4, 1274.14, 0.0, 5096.56),
    (450, 42, 4, 213.41, 0.0, 853.64),
    (450, 40, 2, 127.44, 5.0, 242.14),
    (450, 71, 1, 368.66, 15.0, 313.36),
    (451, 90, 4, 153.87, 0.0, 615.48),
    (452, 32, 2, 184.53, 10.0, 332.15),
    (452, 1, 1, 1201.2, 0.0, 1201.2),
    (452, 50, 2, 19.39, 0.0, 38.78),
    (452, 100, 4, 79.32, 0.0, 317.28),
    (453, 64, 4, 1503.32, 0.0, 6013.28),
    (453, 47, 3, 64.89, 5.0, 184.94),
    (453, 102, 1, 85.54, 0.0, 85.54),
    (453, 90, 1, 153.87, 0.0, 153.87),
    (454, 117, 2, 65.55, 0.0, 131.1),
    (454, 113, 2, 114.51, 0.0, 229.02),
    (455, 75, 1, 371.74, 5.0, 353.15),
    (455, 53, 2, 56.85, 0.0, 113.7),
    (456, 75, 3, 371.74, 15.0, 947.94),
    (456, 68, 2, 189.84, 0.0, 379.68),
    (456, 2, 2, 579.88, 15.0, 985.8),
    (457, 110, 2, 126.77, 15.0, 215.51),
    (457, 103, 2, 71.11, 15.0, 120.89),
    (457, 10, 1, 1780.97, 0.0, 1780.97),
    (457, 19, 1, 440.04, 5.0, 418.04),
    (457, 86, 2, 160.39, 5.0, 304.74),
    (458, 4, 3, 1298.64, 0.0, 3895.92),
    (458, 25, 2, 2969.54, 10.0, 5345.17),
    (458, 86, 2, 160.39, 0.0, 320.78),
    (458, 93, 4, 137.35, 5.0, 521.93),
    (459, 9, 2, 2411.7, 10.0, 4341.06),
    (459, 72, 1, 443.9, 0.0, 443.9),
    (459, 11, 4, 1709.28, 0.0, 6837.12),
    (459, 91, 3, 198.23, 0.0, 594.69),
    (460, 44, 1, 219.45, 0.0, 219.45),
    (460, 69, 3, 383.43, 15.0, 977.75),
    (460, 67, 3, 1817.2, 5.0, 5179.02),
    (460, 79, 2, 149.48, 0.0, 298.96),
    (461, 36, 2, 249.56, 10.0, 449.21),
    (461, 34, 2, 118.64, 10.0, 213.55),
    (461, 77, 3, 474.6, 0.0, 1423.8),
    (461, 55, 3, 55.76, 10.0, 150.55),
    (462, 77, 3, 474.6, 0.0, 1423.8),
    (462, 102, 4, 85.54, 0.0, 342.16),
    (463, 16, 4, 519.64, 0.0, 2078.56),
    (463, 49, 2, 295.15, 10.0, 531.27),
    (463, 105, 3, 103.14, 15.0, 263.01),
    (464, 77, 4, 474.6, 0.0, 1898.4),
    (464, 14, 2, 2113.7, 0.0, 4227.4),
    (464, 61, 3, 1715.25, 10.0, 4631.18),
    (464, 56, 1, 58.03, 0.0, 58.03),
    (465, 8, 3, 1917.66, 0.0, 5752.98),
    (465, 2, 2, 579.88, 0.0, 1159.76),
    (465, 15, 3, 1330.24, 15.0, 3392.11),
    (465, 44, 3, 219.45, 10.0, 592.52),
    (465, 80, 2, 174.72, 0.0, 349.44),
    (466, 35, 2, 158.7, 10.0, 285.66),
    (466, 104, 2, 73.75, 0.0, 147.5),
    (466, 63, 2, 161.59, 15.0, 274.7),
    (466, 16, 2, 519.64, 0.0, 1039.28),
    (466, 13, 1, 559.57, 0.0, 559.57),
    (467, 57, 4, 25.34, 15.0, 86.16),
    (467, 20, 4, 204.87, 0.0, 819.48),
    (467, 95, 3, 1291.88, 0.0, 3875.64),
    (467, 114, 4, 122.82, 0.0, 491.28),
    (468, 77, 4, 474.6, 0.0, 1898.4),
    (469, 4, 1, 1298.64, 0.0, 1298.64),
    (469, 88, 1, 165.88, 0.0, 165.88),
    (469, 73, 3, 308.35, 0.0, 925.05),
    (469, 32, 1, 184.53, 0.0, 184.53),
    (470, 62, 2, 1801.83, 15.0, 3063.11),
    (470, 21, 2, 151.63, 10.0, 272.93),
    (470, 22, 4, 401.93, 0.0, 1607.72),
    (471, 33, 4, 104.34, 0.0, 417.36),
    (471, 58, 2, 59.14, 0.0, 118.28),
    (471, 20, 3, 204.87, 0.0, 614.61),
    (471, 38, 1, 85.15, 0.0, 85.15),
    (471, 19, 1, 440.04, 5.0, 418.04),
    (472, 78, 1, 105.52, 0.0, 105.52),
    (472, 92, 1, 227.98, 0.0, 227.98),
    (473, 101, 3, 104.09, 15.0, 265.43),
    (473, 2, 3, 579.88, 5.0, 1652.66),
    (474, 111, 3, 129.71, 5.0, 369.67),
    (474, 78, 3, 105.52, 0.0, 316.56),
    (475, 1, 4, 1201.2, 5.0, 4564.56),
    (475, 37, 4, 95.45, 5.0, 362.71),
    (476, 97, 2, 1619.72, 5.0, 3077.47),
    (476, 33, 4, 104.34, 0.0, 417.36),
    (476, 68, 1, 189.84, 0.0, 189.84),
    (476, 53, 3, 56.85, 10.0, 153.5),
    (477, 28, 4, 701.14, 10.0, 2524.1),
    (478, 33, 4, 104.34, 0.0, 417.36),
    (478, 63, 2, 161.59, 0.0, 323.18),
    (478, 52, 4, 63.01, 20.0, 201.63),
    (478, 60, 2, 267.81, 15.0, 455.28),
    (479, 46, 4, 31.86, 0.0, 127.44),
    (479, 106, 4, 85.2, 0.0, 340.8),
    (479, 66, 3, 1542.36, 0.0, 4627.08),
    (480, 81, 3, 108.79, 0.0, 326.37),
    (480, 67, 4, 1817.2, 0.0, 7268.8),
    (481, 98, 1, 1250.0, 5.0, 1187.5),
    (481, 63, 1, 161.59, 20.0, 129.27),
    (481, 56, 2, 58.03, 15.0, 98.65),
    (481, 66, 4, 1542.36, 0.0, 6169.44),
    (482, 36, 1, 249.56, 0.0, 249.56),
    (482, 51, 2, 42.12, 0.0, 84.24),
    (482, 29, 2, 2973.66, 0.0, 5947.32),
    (482, 6, 2, 1189.16, 0.0, 2378.32),
    (483, 60, 4, 267.81, 0.0, 1071.24),
    (483, 22, 4, 401.93, 10.0, 1446.95),
    (484, 20, 3, 204.87, 10.0, 553.15),
    (484, 86, 2, 160.39, 0.0, 320.78),
    (484, 88, 1, 165.88, 0.0, 165.88),
    (484, 107, 3, 34.0, 0.0, 102.0),
    (484, 92, 3, 227.98, 0.0, 683.94),
    (485, 113, 4, 114.51, 15.0, 389.33),
    (485, 32, 1, 184.53, 5.0, 175.3),
    (486, 100, 3, 79.32, 15.0, 202.27),
    (487, 40, 2, 127.44, 0.0, 254.88),
    (488, 44, 3, 219.45, 5.0, 625.43),
    (488, 21, 1, 151.63, 0.0, 151.63),
    (489, 61, 2, 1715.25, 0.0, 3430.5),
    (490, 75, 1, 371.74, 20.0, 297.39),
    (491, 79, 1, 149.48, 10.0, 134.53),
    (491, 108, 3, 94.64, 0.0, 283.92),
    (491, 68, 4, 189.84, 5.0, 721.39),
    (492, 86, 4, 160.39, 10.0, 577.4),
    (492, 21, 3, 151.63, 20.0, 363.91),
    (492, 89, 3, 138.34, 0.0, 415.02),
    (493, 5, 1, 1274.14, 5.0, 1210.43),
    (493, 11, 1, 1709.28, 0.0, 1709.28),
    (494, 56, 3, 58.03, 15.0, 147.98),
    (494, 53, 2, 56.85, 15.0, 96.65),
    (494, 16, 1, 519.64, 0.0, 519.64),
    (494, 83, 4, 68.44, 0.0, 273.76),
    (495, 101, 4, 104.09, 0.0, 416.36),
    (495, 91, 3, 198.23, 10.0, 535.22),
    (495, 111, 4, 129.71, 5.0, 492.9),
    (495, 42, 2, 213.41, 0.0, 426.82),
    (496, 64, 2, 1503.32, 0.0, 3006.64),
    (496, 36, 1, 249.56, 5.0, 237.08),
    (496, 117, 3, 65.55, 10.0, 176.99),
    (496, 26, 3, 2963.33, 0.0, 8889.99),
    (496, 93, 1, 137.35, 0.0, 137.35),
    (497, 76, 1, 440.35, 0.0, 440.35),
    (497, 79, 3, 149.48, 5.0, 426.02),
    (497, 26, 4, 2963.33, 0.0, 11853.32),
    (497, 56, 3, 58.03, 0.0, 174.09),
    (497, 99, 1, 2500.38, 0.0, 2500.38),
    (498, 105, 2, 103.14, 5.0, 195.97),
    (499, 56, 1, 58.03, 20.0, 46.42),
    (500, 64, 2, 1503.32, 5.0, 2856.31),
    (501, 2, 4, 579.88, 0.0, 2319.52),
    (501, 88, 2, 165.88, 15.0, 282.0),
    (502, 27, 1, 1649.21, 10.0, 1484.29),
    (502, 94, 3, 1181.28, 0.0, 3543.84),
    (502, 21, 1, 151.63, 0.0, 151.63),
    (502, 47, 2, 64.89, 15.0, 110.31),
    (503, 99, 1, 2500.38, 0.0, 2500.38),
    (503, 107, 3, 34.0, 10.0, 91.8),
    (503, 100, 3, 79.32, 10.0, 214.16),
    (503, 69, 3, 383.43, 0.0, 1150.29),
    (503, 60, 2, 267.81, 5.0, 508.84),
    (504, 25, 1, 2969.54, 0.0, 2969.54),
    (504, 62, 4, 1801.83, 10.0, 6486.59),
    (504, 97, 4, 1619.72, 0.0, 6478.88),
    (504, 81, 4, 108.79, 0.0, 435.16),
    (504, 45, 2, 281.48, 5.0, 534.81),
    (505, 42, 1, 213.41, 0.0, 213.41),
    (505, 83, 2, 68.44, 0.0, 136.88),
    (505, 48, 3, 228.47, 0.0, 685.41),
    (505, 26, 3, 2963.33, 5.0, 8445.49),
    (506, 99, 4, 2500.38, 5.0, 9501.44),
    (506, 15, 3, 1330.24, 0.0, 3990.72),
    (506, 76, 1, 440.35, 10.0, 396.32),
    (506, 18, 3, 567.87, 0.0, 1703.61),
    (506, 61, 4, 1715.25, 0.0, 6861.0),
    (507, 10, 3, 1780.97, 10.0, 4808.62),
    (507, 68, 4, 189.84, 0.0, 759.36),
    (507, 47, 3, 64.89, 0.0, 194.67),
    (507, 64, 1, 1503.32, 15.0, 1277.82),
    (508, 114, 2, 122.82, 5.0, 233.36),
    (508, 16, 1, 519.64, 0.0, 519.64),
    (508, 24, 3, 1277.81, 0.0, 3833.43),
    (509, 40, 4, 127.44, 0.0, 509.76),
    (510, 6, 4, 1189.16, 5.0, 4518.81),
    (510, 61, 3, 1715.25, 0.0, 5145.75),
    (510, 104, 2, 73.75, 0.0, 147.5),
    (510, 47, 2, 64.89, 0.0, 129.78),
    (511, 31, 3, 202.24, 5.0, 576.38),
    (511, 53, 2, 56.85, 0.0, 113.7),
    (511, 1, 2, 1201.2, 0.0, 2402.4),
    (511, 88, 2, 165.88, 5.0, 315.17),
    (511, 67, 4, 1817.2, 0.0, 7268.8),
    (512, 64, 2, 1503.32, 10.0, 2705.98),
    (512, 1, 2, 1201.2, 5.0, 2282.28),
    (512, 15, 1, 1330.24, 20.0, 1064.19),
    (512, 52, 2, 63.01, 0.0, 126.02),
    (512, 76, 1, 440.35, 0.0, 440.35),
    (513, 92, 1, 227.98, 0.0, 227.98),
    (513, 15, 3, 1330.24, 0.0, 3990.72),
    (514, 57, 2, 25.34, 0.0, 50.68),
    (514, 85, 3, 212.56, 0.0, 637.68),
    (514, 26, 2, 2963.33, 0.0, 5926.66),
    (515, 38, 3, 85.15, 0.0, 255.45),
    (515, 27, 3, 1649.21, 0.0, 4947.63),
    (515, 53, 1, 56.85, 0.0, 56.85),
    (515, 15, 1, 1330.24, 5.0, 1263.73),
    (515, 113, 3, 114.51, 0.0, 343.53),
    (516, 116, 2, 59.63, 5.0, 113.3),
    (516, 18, 4, 567.87, 0.0, 2271.48),
    (516, 3, 2, 731.02, 0.0, 1462.04),
    (516, 100, 3, 79.32, 5.0, 226.06),
    (517, 31, 3, 202.24, 0.0, 606.72),
    (518, 99, 4, 2500.38, 5.0, 9501.44),
    (518, 89, 1, 138.34, 0.0, 138.34),
    (518, 71, 2, 368.66, 0.0, 737.32),
    (519, 26, 3, 2963.33, 0.0, 8889.99),
    (519, 114, 2, 122.82, 5.0, 233.36),
    (519, 32, 4, 184.53, 0.0, 738.12),
    (519, 42, 1, 213.41, 5.0, 202.74),
    (519, 6, 1, 1189.16, 5.0, 1129.7),
    (520, 57, 2, 25.34, 0.0, 50.68),
    (520, 92, 1, 227.98, 0.0, 227.98),
    (520, 18, 1, 567.87, 15.0, 482.69),
    (520, 29, 4, 2973.66, 0.0, 11894.64),
    (520, 95, 3, 1291.88, 5.0, 3681.86),
    (521, 96, 4, 2457.16, 5.0, 9337.21),
    (521, 81, 2, 108.79, 5.0, 206.7),
    (521, 98, 1, 1250.0, 15.0, 1062.5),
    (521, 31, 4, 202.24, 10.0, 728.06),
    (521, 6, 2, 1189.16, 10.0, 2140.49),
    (522, 46, 2, 31.86, 0.0, 63.72),
    (522, 97, 1, 1619.72, 20.0, 1295.78),
    (522, 58, 1, 59.14, 5.0, 56.18),
    (523, 8, 2, 1917.66, 0.0, 3835.32),
    (523, 85, 2, 212.56, 0.0, 425.12),
    (523, 58, 3, 59.14, 10.0, 159.68),
    (523, 29, 4, 2973.66, 0.0, 11894.64),
    (524, 14, 2, 2113.7, 0.0, 4227.4),
    (524, 11, 4, 1709.28, 0.0, 6837.12),
    (524, 98, 2, 1250.0, 5.0, 2375.0),
    (524, 21, 2, 151.63, 0.0, 303.26),
    (525, 28, 4, 701.14, 0.0, 2804.56),
    (525, 58, 3, 59.14, 5.0, 168.55),
    (525, 55, 1, 55.76, 0.0, 55.76),
    (525, 23, 3, 179.75, 0.0, 539.25),
    (525, 79, 4, 149.48, 15.0, 508.23),
    (526, 92, 2, 227.98, 5.0, 433.16),
    (526, 95, 2, 1291.88, 10.0, 2325.38),
    (526, 105, 2, 103.14, 15.0, 175.34),
    (526, 18, 1, 567.87, 0.0, 567.87),
    (526, 7, 1, 609.83, 0.0, 609.83),
    (527, 18, 2, 567.87, 5.0, 1078.95),
    (527, 103, 1, 71.11, 5.0, 67.55),
    (528, 109, 1, 188.7, 10.0, 169.83),
    (528, 44, 1, 219.45, 10.0, 197.51),
    (528, 4, 1, 1298.64, 15.0, 1103.84),
    (529, 57, 3, 25.34, 0.0, 76.02),
    (530, 34, 2, 118.64, 5.0, 225.42),
    (530, 21, 4, 151.63, 0.0, 606.52),
    (530, 11, 1, 1709.28, 0.0, 1709.28),
    (531, 6, 1, 1189.16, 0.0, 1189.16),
    (532, 49, 4, 295.15, 0.0, 1180.6),
    (532, 73, 3, 308.35, 5.0, 878.8),
    (532, 16, 3, 519.64, 0.0, 1558.92),
    (532, 31, 1, 202.24, 0.0, 202.24),
    (533, 78, 4, 105.52, 5.0, 400.98),
    (533, 110, 1, 126.77, 10.0, 114.09),
    (533, 79, 2, 149.48, 0.0, 298.96),
    (533, 72, 1, 443.9, 0.0, 443.9),
    (534, 110, 4, 126.77, 0.0, 507.08),
    (534, 83, 2, 68.44, 5.0, 130.04),
    (534, 23, 4, 179.75, 10.0, 647.1),
    (535, 87, 3, 211.54, 0.0, 634.62),
    (535, 38, 2, 85.15, 0.0, 170.3),
    (535, 93, 4, 137.35, 10.0, 494.46),
    (535, 22, 2, 401.93, 0.0, 803.86),
    (535, 67, 4, 1817.2, 0.0, 7268.8),
    (536, 97, 1, 1619.72, 0.0, 1619.72),
    (536, 48, 2, 228.47, 10.0, 411.25),
    (536, 38, 3, 85.15, 0.0, 255.45),
    (537, 66, 1, 1542.36, 10.0, 1388.12),
    (537, 74, 1, 127.99, 0.0, 127.99),
    (537, 105, 2, 103.14, 10.0, 185.65),
    (538, 110, 3, 126.77, 0.0, 380.31),
    (539, 51, 2, 42.12, 10.0, 75.82),
    (540, 31, 1, 202.24, 5.0, 192.13),
    (540, 76, 2, 440.35, 0.0, 880.7),
    (541, 98, 1, 1250.0, 0.0, 1250.0),
    (541, 65, 4, 166.5, 10.0, 599.4),
    (541, 64, 1, 1503.32, 0.0, 1503.32),
    (541, 42, 2, 213.41, 0.0, 426.82),
    (541, 50, 1, 19.39, 20.0, 15.51),
    (542, 32, 4, 184.53, 0.0, 738.12),
    (543, 51, 3, 42.12, 0.0, 126.36),
    (543, 48, 1, 228.47, 0.0, 228.47),
    (544, 68, 1, 189.84, 5.0, 180.35),
    (544, 62, 4, 1801.83, 0.0, 7207.32),
    (544, 44, 2, 219.45, 15.0, 373.07),
    (544, 108, 2, 94.64, 0.0, 189.28),
    (545, 53, 1, 56.85, 10.0, 51.17),
    (545, 96, 3, 2457.16, 0.0, 7371.48),
    (545, 6, 4, 1189.16, 0.0, 4756.64),
    (545, 107, 1, 34.0, 5.0, 32.3),
    (545, 47, 1, 64.89, 0.0, 64.89),
    (546, 50, 1, 19.39, 10.0, 17.45),
    (546, 51, 1, 42.12, 0.0, 42.12),
    (546, 114, 4, 122.82, 0.0, 491.28),
    (547, 66, 1, 1542.36, 0.0, 1542.36),
    (547, 71, 4, 368.66, 0.0, 1474.64),
    (547, 24, 2, 1277.81, 5.0, 2427.84),
    (547, 56, 3, 58.03, 0.0, 174.09),
    (548, 62, 2, 1801.83, 0.0, 3603.66),
    (548, 111, 2, 129.71, 0.0, 259.42),
    (549, 48, 3, 228.47, 0.0, 685.41),
    (549, 73, 2, 308.35, 15.0, 524.2),
    (549, 75, 4, 371.74, 20.0, 1189.57),
    (549, 91, 2, 198.23, 0.0, 396.46),
    (549, 9, 4, 2411.7, 10.0, 8682.12),
    (550, 101, 2, 104.09, 0.0, 208.18),
    (550, 47, 1, 64.89, 0.0, 64.89),
    (550, 75, 3, 371.74, 5.0, 1059.46),
    (550, 50, 2, 19.39, 20.0, 31.02),
    (550, 82, 2, 69.1, 0.0, 138.2),
    (551, 53, 1, 56.85, 20.0, 45.48),
    (552, 40, 2, 127.44, 5.0, 242.14),
    (552, 72, 2, 443.9, 0.0, 887.8),
    (553, 53, 1, 56.85, 20.0, 45.48),
    (553, 114, 4, 122.82, 0.0, 491.28),
    (553, 85, 2, 212.56, 0.0, 425.12),
    (554, 45, 2, 281.48, 0.0, 562.96),
    (554, 53, 4, 56.85, 10.0, 204.66),
    (554, 81, 1, 108.79, 5.0, 103.35),
    (554, 10, 2, 1780.97, 10.0, 3205.75),
    (555, 76, 3, 440.35, 10.0, 1188.95),
    (555, 102, 3, 85.54, 5.0, 243.79),
    (556, 56, 4, 58.03, 0.0, 232.12),
    (556, 77, 1, 474.6, 0.0, 474.6),
    (556, 51, 4, 42.12, 5.0, 160.06),
    (556, 117, 1, 65.55, 0.0, 65.55),
    (556, 114, 2, 122.82, 10.0, 221.08),
    (557, 38, 1, 85.15, 15.0, 72.38),
    (558, 94, 3, 1181.28, 0.0, 3543.84),
    (559, 114, 4, 122.82, 5.0, 466.72),
    (559, 18, 2, 567.87, 0.0, 1135.74),
    (559, 93, 1, 137.35, 10.0, 123.62),
    (559, 52, 4, 63.01, 10.0, 226.84),
    (560, 87, 2, 211.54, 0.0, 423.08),
    (560, 69, 2, 383.43, 0.0, 766.86),
    (560, 34, 2, 118.64, 20.0, 189.82),
    (560, 9, 3, 2411.7, 0.0, 7235.1),
    (560, 25, 2, 2969.54, 0.0, 5939.08),
    (561, 78, 2, 105.52, 0.0, 211.04),
    (562, 49, 2, 295.15, 0.0, 590.3),
    (562, 16, 3, 519.64, 0.0, 1558.92),
    (562, 25, 1, 2969.54, 10.0, 2672.59),
    (563, 7, 2, 609.83, 5.0, 1158.68),
    (563, 31, 1, 202.24, 0.0, 202.24),
    (563, 58, 1, 59.14, 15.0, 50.27),
    (564, 113, 4, 114.51, 15.0, 389.33),
    (565, 95, 4, 1291.88, 0.0, 5167.52),
    (565, 107, 4, 34.0, 15.0, 115.6),
    (565, 63, 2, 161.59, 15.0, 274.7),
    (566, 74, 4, 127.99, 20.0, 409.57),
    (566, 97, 1, 1619.72, 0.0, 1619.72),
    (567, 52, 4, 63.01, 0.0, 252.04),
    (568, 24, 3, 1277.81, 0.0, 3833.43),
    (568, 29, 2, 2973.66, 0.0, 5947.32),
    (569, 73, 2, 308.35, 0.0, 616.7),
    (569, 20, 2, 204.87, 0.0, 409.74),
    (569, 94, 4, 1181.28, 20.0, 3780.1),
    (569, 10, 1, 1780.97, 5.0, 1691.92),
    (570, 109, 3, 188.7, 10.0, 509.49),
    (571, 39, 3, 96.97, 10.0, 261.82),
    (571, 113, 1, 114.51, 5.0, 108.78),
    (572, 31, 4, 202.24, 0.0, 808.96),
    (572, 115, 4, 147.17, 0.0, 588.68),
    (573, 64, 2, 1503.32, 15.0, 2555.64),
    (573, 79, 4, 149.48, 5.0, 568.02),
    (573, 69, 2, 383.43, 10.0, 690.17),
    (573, 50, 2, 19.39, 0.0, 38.78),
    (574, 48, 3, 228.47, 15.0, 582.6),
    (574, 7, 3, 609.83, 10.0, 1646.54),
    (575, 23, 3, 179.75, 0.0, 539.25),
    (575, 100, 2, 79.32, 15.0, 134.84),
    (575, 96, 4, 2457.16, 0.0, 9828.64),
    (575, 44, 4, 219.45, 0.0, 877.8),
    (575, 110, 3, 126.77, 10.0, 342.28),
    (576, 14, 1, 2113.7, 5.0, 2008.02),
    (576, 44, 3, 219.45, 0.0, 658.35),
    (576, 52, 3, 63.01, 10.0, 170.13),
    (576, 22, 4, 401.93, 0.0, 1607.72),
    (576, 34, 3, 118.64, 0.0, 355.92),
    (577, 14, 3, 2113.7, 0.0, 6341.1),
    (577, 72, 4, 443.9, 5.0, 1686.82),
    (577, 91, 4, 198.23, 15.0, 673.98),
    (577, 51, 3, 42.12, 0.0, 126.36),
    (577, 48, 3, 228.47, 10.0, 616.87),
    (578, 107, 1, 34.0, 15.0, 28.9),
    (579, 27, 1, 1649.21, 0.0, 1649.21),
    (579, 51, 4, 42.12, 0.0, 168.48),
    (579, 40, 3, 127.44, 0.0, 382.32),
    (580, 58, 1, 59.14, 20.0, 47.31),
    (580, 109, 3, 188.7, 20.0, 452.88),
    (580, 41, 2, 141.08, 5.0, 268.05),
    (580, 6, 1, 1189.16, 0.0, 1189.16),
    (581, 8, 4, 1917.66, 0.0, 7670.64),
    (581, 78, 3, 105.52, 0.0, 316.56),
    (581, 94, 3, 1181.28, 0.0, 3543.84),
    (581, 107, 2, 34.0, 15.0, 57.8),
    (581, 17, 4, 166.79, 0.0, 667.16),
    (582, 111, 4, 129.71, 10.0, 466.96),
    (582, 22, 3, 401.93, 20.0, 964.63),
    (582, 18, 3, 567.87, 5.0, 1618.43),
    (583, 79, 1, 149.48, 10.0, 134.53),
    (583, 117, 4, 65.55, 20.0, 209.76),
    (583, 16, 1, 519.64, 0.0, 519.64),
    (584, 10, 2, 1780.97, 5.0, 3383.84),
    (584, 31, 1, 202.24, 10.0, 182.02),
    (585, 95, 3, 1291.88, 0.0, 3875.64),
    (585, 24, 4, 1277.81, 0.0, 5111.24),
    (585, 88, 4, 165.88, 0.0, 663.52),
    (585, 13, 2, 559.57, 0.0, 1119.14),
    (585, 37, 4, 95.45, 10.0, 343.62),
    (586, 68, 2, 189.84, 10.0, 341.71),
    (587, 113, 1, 114.51, 5.0, 108.78),
    (587, 108, 1, 94.64, 0.0, 94.64),
    (588, 45, 4, 281.48, 0.0, 1125.92),
    (588, 4, 1, 1298.64, 5.0, 1233.71),
    (588, 69, 2, 383.43, 10.0, 690.17),
    (588, 22, 3, 401.93, 0.0, 1205.79),
    (589, 42, 2, 213.41, 5.0, 405.48),
    (590, 7, 4, 609.83, 20.0, 1951.46),
    (590, 71, 4, 368.66, 0.0, 1474.64),
    (590, 112, 4, 93.39, 5.0, 354.88),
    (590, 24, 2, 1277.81, 0.0, 2555.62),
    (591, 74, 2, 127.99, 10.0, 230.38),
    (591, 73, 2, 308.35, 20.0, 493.36),
    (592, 115, 3, 147.17, 5.0, 419.43),
    (592, 22, 2, 401.93, 10.0, 723.47),
    (593, 95, 2, 1291.88, 0.0, 2583.76),
    (593, 96, 4, 2457.16, 0.0, 9828.64),
    (593, 113, 1, 114.51, 5.0, 108.78),
    (593, 64, 3, 1503.32, 15.0, 3833.47),
    (594, 57, 2, 25.34, 0.0, 50.68),
    (594, 9, 2, 2411.7, 5.0, 4582.23),
    (595, 67, 1, 1817.2, 0.0, 1817.2),
    (595, 32, 3, 184.53, 0.0, 553.59),
    (595, 17, 1, 166.79, 5.0, 158.45),
    (595, 20, 2, 204.87, 0.0, 409.74),
    (595, 4, 1, 1298.64, 0.0, 1298.64),
    (596, 24, 4, 1277.81, 15.0, 4344.55),
    (596, 31, 1, 202.24, 0.0, 202.24),
    (596, 82, 3, 69.1, 20.0, 165.84),
    (597, 27, 1, 1649.21, 0.0, 1649.21),
    (597, 112, 2, 93.39, 5.0, 177.44),
    (598, 25, 1, 2969.54, 5.0, 2821.06),
    (598, 8, 4, 1917.66, 0.0, 7670.64),
    (598, 79, 4, 149.48, 0.0, 597.92),
    (598, 106, 1, 85.2, 0.0, 85.2),
    (598, 26, 1, 2963.33, 5.0, 2815.16),
    (599, 15, 1, 1330.24, 0.0, 1330.24),
    (600, 26, 2, 2963.33, 0.0, 5926.66),
    (600, 80, 2, 174.72, 0.0, 349.44),
    (601, 23, 3, 179.75, 0.0, 539.25),
    (601, 13, 4, 559.57, 5.0, 2126.37),
    (601, 12, 2, 1781.91, 15.0, 3029.25),
    (602, 25, 4, 2969.54, 10.0, 10690.34),
    (602, 90, 1, 153.87, 10.0, 138.48),
    (602, 109, 1, 188.7, 10.0, 169.83),
    (602, 47, 2, 64.89, 10.0, 116.8),
    (602, 45, 3, 281.48, 0.0, 844.44),
    (603, 46, 3, 31.86, 0.0, 95.58),
    (603, 71, 2, 368.66, 0.0, 737.32),
    (603, 42, 1, 213.41, 0.0, 213.41),
    (603, 70, 1, 415.27, 15.0, 352.98),
    (604, 72, 3, 443.9, 0.0, 1331.7),
    (604, 64, 1, 1503.32, 0.0, 1503.32),
    (605, 44, 3, 219.45, 0.0, 658.35),
    (606, 3, 3, 731.02, 15.0, 1864.1),
    (607, 76, 3, 440.35, 0.0, 1321.05),
    (607, 87, 2, 211.54, 15.0, 359.62),
    (607, 100, 3, 79.32, 0.0, 237.96),
    (607, 45, 1, 281.48, 0.0, 281.48),
    (608, 4, 4, 1298.64, 5.0, 4934.83),
    (608, 104, 1, 73.75, 0.0, 73.75),
    (609, 76, 1, 440.35, 20.0, 352.28),
    (609, 4, 1, 1298.64, 0.0, 1298.64),
    (610, 105, 3, 103.14, 0.0, 309.42),
    (611, 24, 3, 1277.81, 0.0, 3833.43),
    (611, 45, 4, 281.48, 5.0, 1069.62),
    (611, 69, 4, 383.43, 0.0, 1533.72),
    (611, 111, 1, 129.71, 5.0, 123.22),
    (612, 56, 3, 58.03, 5.0, 165.39),
    (612, 106, 2, 85.2, 10.0, 153.36),
    (612, 20, 4, 204.87, 0.0, 819.48),
    (612, 11, 1, 1709.28, 20.0, 1367.42),
    (613, 86, 3, 160.39, 0.0, 481.17),
    (613, 60, 3, 267.81, 5.0, 763.26),
    (613, 16, 1, 519.64, 10.0, 467.68),
    (613, 117, 3, 65.55, 5.0, 186.82),
    (614, 5, 4, 1274.14, 15.0, 4332.08),
    (614, 104, 4, 73.75, 10.0, 265.5),
    (614, 76, 4, 440.35, 5.0, 1673.33),
    (614, 39, 1, 96.97, 0.0, 96.97),
    (614, 83, 4, 68.44, 5.0, 260.07),
    (615, 37, 3, 95.45, 0.0, 286.35),
    (615, 7, 2, 609.83, 10.0, 1097.69),
    (615, 63, 4, 161.59, 0.0, 646.36),
    (615, 62, 3, 1801.83, 5.0, 5135.22),
    (616, 4, 4, 1298.64, 0.0, 5194.56),
    (616, 28, 4, 701.14, 10.0, 2524.1),
    (617, 13, 1, 559.57, 0.0, 559.57),
    (617, 109, 4, 188.7, 15.0, 641.58),
    (617, 116, 1, 59.63, 0.0, 59.63),
    (618, 115, 2, 147.17, 0.0, 294.34),
    (618, 34, 1, 118.64, 0.0, 118.64),
    (618, 39, 3, 96.97, 5.0, 276.36),
    (618, 69, 2, 383.43, 5.0, 728.52),
    (619, 54, 4, 26.49, 0.0, 105.96),
    (620, 21, 4, 151.63, 5.0, 576.19),
    (621, 86, 1, 160.39, 5.0, 152.37),
    (621, 82, 2, 69.1, 10.0, 124.38),
    (621, 7, 3, 609.83, 15.0, 1555.07),
    (621, 35, 1, 158.7, 10.0, 142.83),
    (622, 93, 1, 137.35, 10.0, 123.62),
    (622, 49, 4, 295.15, 5.0, 1121.57),
    (622, 46, 4, 31.86, 0.0, 127.44),
    (623, 79, 3, 149.48, 0.0, 448.44),
    (623, 55, 3, 55.76, 0.0, 167.28),
    (623, 4, 4, 1298.64, 0.0, 5194.56),
    (624, 70, 2, 415.27, 0.0, 830.54),
    (624, 17, 4, 166.79, 5.0, 633.8),
    (624, 1, 2, 1201.2, 5.0, 2282.28),
    (624, 65, 4, 166.5, 0.0, 666.0),
    (624, 74, 3, 127.99, 0.0, 383.97),
    (625, 28, 1, 701.14, 5.0, 666.08),
    (626, 115, 2, 147.17, 0.0, 294.34),
    (626, 1, 3, 1201.2, 0.0, 3603.6),
    (626, 44, 1, 219.45, 0.0, 219.45),
    (626, 24, 1, 1277.81, 15.0, 1086.14),
    (627, 112, 2, 93.39, 5.0, 177.44),
    (628, 99, 2, 2500.38, 10.0, 4500.68),
    (629, 11, 4, 1709.28, 5.0, 6495.26),
    (629, 57, 1, 25.34, 10.0, 22.81),
    (629, 35, 3, 158.7, 5.0, 452.3),
    (630, 90, 4, 153.87, 5.0, 584.71),
    (630, 75, 4, 371.74, 0.0, 1486.96),
    (631, 15, 1, 1330.24, 5.0, 1263.73),
    (632, 61, 1, 1715.25, 0.0, 1715.25),
    (633, 13, 3, 559.57, 0.0, 1678.71),
    (633, 66, 1, 1542.36, 0.0, 1542.36),
    (634, 23, 4, 179.75, 20.0, 575.2),
    (634, 7, 3, 609.83, 10.0, 1646.54),
    (634, 38, 4, 85.15, 0.0, 340.6),
    (635, 63, 3, 161.59, 5.0, 460.53),
    (635, 97, 1, 1619.72, 5.0, 1538.73),
    (635, 57, 3, 25.34, 10.0, 68.42),
    (636, 113, 2, 114.51, 10.0, 206.12),
    (636, 49, 3, 295.15, 10.0, 796.91),
    (636, 101, 1, 104.09, 0.0, 104.09),
    (636, 17, 3, 166.79, 5.0, 475.35),
    (637, 98, 4, 1250.0, 0.0, 5000.0),
    (637, 103, 4, 71.11, 5.0, 270.22),
    (638, 12, 3, 1781.91, 15.0, 4543.87),
    (639, 76, 4, 440.35, 20.0, 1409.12),
    (639, 67, 2, 1817.2, 0.0, 3634.4),
    (639, 51, 1, 42.12, 0.0, 42.12),
    (639, 62, 3, 1801.83, 0.0, 5405.49),
    (640, 82, 4, 69.1, 0.0, 276.4),
    (640, 104, 1, 73.75, 15.0, 62.69),
    (641, 7, 2, 609.83, 0.0, 1219.66),
    (641, 60, 3, 267.81, 15.0, 682.92),
    (641, 71, 2, 368.66, 0.0, 737.32),
    (641, 45, 1, 281.48, 5.0, 267.41),
    (641, 105, 2, 103.14, 5.0, 195.97),
    (642, 37, 3, 95.45, 10.0, 257.72),
    (642, 84, 2, 273.15, 10.0, 491.67),
    (642, 60, 1, 267.81, 0.0, 267.81),
    (643, 58, 4, 59.14, 15.0, 201.08),
    (644, 69, 1, 383.43, 15.0, 325.92),
    (644, 49, 3, 295.15, 10.0, 796.91),
    (644, 88, 1, 165.88, 10.0, 149.29),
    (644, 22, 1, 401.93, 5.0, 381.83),
    (644, 105, 4, 103.14, 20.0, 330.05),
    (645, 107, 2, 34.0, 0.0, 68.0),
    (645, 19, 2, 440.04, 15.0, 748.07),
    (645, 35, 1, 158.7, 0.0, 158.7),
    (645, 80, 1, 174.72, 5.0, 165.98),
    (645, 115, 4, 147.17, 0.0, 588.68),
    (646, 34, 2, 118.64, 10.0, 213.55),
    (646, 55, 3, 55.76, 5.0, 158.92),
    (646, 7, 4, 609.83, 5.0, 2317.35),
    (647, 19, 4, 440.04, 20.0, 1408.13),
    (648, 8, 2, 1917.66, 10.0, 3451.79),
    (648, 40, 1, 127.44, 0.0, 127.44),
    (648, 41, 4, 141.08, 5.0, 536.1),
    (648, 62, 3, 1801.83, 0.0, 5405.49),
    (648, 75, 1, 371.74, 10.0, 334.57),
    (649, 76, 2, 440.35, 5.0, 836.67),
    (649, 58, 2, 59.14, 5.0, 112.37),
    (650, 27, 1, 1649.21, 10.0, 1484.29),
    (650, 23, 2, 179.75, 0.0, 359.5),
    (650, 67, 1, 1817.2, 0.0, 1817.2),
    (650, 111, 1, 129.71, 0.0, 129.71),
    (650, 66, 2, 1542.36, 0.0, 3084.72),
    (651, 108, 4, 94.64, 10.0, 340.7),
    (651, 81, 1, 108.79, 0.0, 108.79),
    (651, 77, 1, 474.6, 10.0, 427.14),
    (651, 86, 2, 160.39, 0.0, 320.78),
    (651, 112, 1, 93.39, 0.0, 93.39),
    (652, 101, 4, 104.09, 0.0, 416.36),
    (653, 5, 1, 1274.14, 0.0, 1274.14),
    (654, 49, 1, 295.15, 15.0, 250.88),
    (654, 57, 1, 25.34, 0.0, 25.34),
    (654, 107, 4, 34.0, 0.0, 136.0),
    (654, 10, 1, 1780.97, 0.0, 1780.97),
    (654, 43, 4, 205.9, 15.0, 700.06),
    (655, 52, 3, 63.01, 10.0, 170.13),
    (656, 49, 4, 295.15, 0.0, 1180.6),
    (656, 69, 4, 383.43, 10.0, 1380.35),
    (657, 47, 1, 64.89, 0.0, 64.89),
    (658, 12, 2, 1781.91, 0.0, 3563.82),
    (659, 98, 3, 1250.0, 15.0, 3187.5),
    (660, 91, 2, 198.23, 0.0, 396.46),
    (660, 12, 4, 1781.91, 5.0, 6771.26),
    (660, 86, 1, 160.39, 0.0, 160.39),
    (661, 56, 2, 58.03, 0.0, 116.06),
    (661, 35, 4, 158.7, 0.0, 634.8),
    (662, 88, 4, 165.88, 10.0, 597.17),
    (662, 38, 1, 85.15, 0.0, 85.15),
    (662, 48, 2, 228.47, 0.0, 456.94),
    (663, 29, 4, 2973.66, 0.0, 11894.64),
    (663, 91, 1, 198.23, 0.0, 198.23),
    (663, 116, 2, 59.63, 10.0, 107.33),
    (663, 44, 3, 219.45, 10.0, 592.52),
    (664, 67, 2, 1817.2, 0.0, 3634.4),
    (664, 84, 3, 273.15, 10.0, 737.51),
    (664, 117, 2, 65.55, 0.0, 131.1),
    (664, 105, 4, 103.14, 0.0, 412.56),
    (665, 12, 1, 1781.91, 5.0, 1692.81),
    (666, 11, 3, 1709.28, 0.0, 5127.84),
    (666, 96, 4, 2457.16, 0.0, 9828.64),
    (666, 113, 2, 114.51, 0.0, 229.02),
    (666, 6, 1, 1189.16, 0.0, 1189.16),
    (667, 101, 3, 104.09, 0.0, 312.27),
    (667, 40, 2, 127.44, 10.0, 229.39),
    (667, 72, 4, 443.9, 0.0, 1775.6),
    (667, 92, 2, 227.98, 15.0, 387.57),
    (667, 42, 4, 213.41, 0.0, 853.64),
    (668, 19, 1, 440.04, 0.0, 440.04),
    (668, 61, 1, 1715.25, 0.0, 1715.25),
    (668, 26, 3, 2963.33, 0.0, 8889.99),
    (668, 104, 3, 73.75, 10.0, 199.13),
    (668, 40, 4, 127.44, 0.0, 509.76),
    (669, 54, 1, 26.49, 0.0, 26.49),
    (669, 68, 3, 189.84, 20.0, 455.62),
    (670, 25, 2, 2969.54, 0.0, 5939.08),
    (670, 71, 3, 368.66, 0.0, 1105.98),
    (670, 39, 2, 96.97, 5.0, 184.24),
    (670, 23, 3, 179.75, 0.0, 539.25),
    (670, 41, 4, 141.08, 10.0, 507.89),
    (671, 21, 1, 151.63, 5.0, 144.05),
    (671, 27, 3, 1649.21, 15.0, 4205.49),
    (671, 73, 3, 308.35, 0.0, 925.05),
    (671, 24, 4, 1277.81, 5.0, 4855.68),
    (672, 100, 1, 79.32, 0.0, 79.32),
    (672, 65, 3, 166.5, 10.0, 449.55),
    (672, 50, 4, 19.39, 5.0, 73.68),
    (672, 13, 1, 559.57, 5.0, 531.59),
    (673, 115, 1, 147.17, 5.0, 139.81),
    (674, 98, 1, 1250.0, 0.0, 1250.0),
    (674, 104, 3, 73.75, 0.0, 221.25),
    (674, 90, 2, 153.87, 15.0, 261.58),
    (674, 7, 3, 609.83, 20.0, 1463.59),
    (675, 13, 2, 559.57, 10.0, 1007.23),
    (675, 98, 4, 1250.0, 5.0, 4750.0),
    (675, 57, 1, 25.34, 15.0, 21.54),
    (675, 91, 3, 198.23, 5.0, 564.96),
    (676, 28, 2, 701.14, 5.0, 1332.17),
    (676, 39, 1, 96.97, 0.0, 96.97),
    (676, 99, 3, 2500.38, 0.0, 7501.14),
    (676, 93, 1, 137.35, 15.0, 116.75),
    (676, 2, 4, 579.88, 0.0, 2319.52),
    (677, 113, 2, 114.51, 20.0, 183.22),
    (677, 79, 3, 149.48, 0.0, 448.44),
    (677, 115, 2, 147.17, 15.0, 250.19),
    (678, 73, 1, 308.35, 0.0, 308.35),
    (678, 74, 4, 127.99, 15.0, 435.17),
    (678, 2, 1, 579.88, 0.0, 579.88),
    (678, 83, 4, 68.44, 10.0, 246.38),
    (679, 109, 3, 188.7, 15.0, 481.19),
    (679, 37, 1, 95.45, 0.0, 95.45),
    (679, 40, 4, 127.44, 0.0, 509.76),
    (679, 75, 2, 371.74, 0.0, 743.48),
    (679, 90, 1, 153.87, 0.0, 153.87),
    (680, 24, 3, 1277.81, 0.0, 3833.43),
    (680, 37, 1, 95.45, 5.0, 90.68),
    (680, 14, 2, 2113.7, 0.0, 4227.4),
    (680, 59, 2, 51.71, 0.0, 103.42),
    (681, 82, 4, 69.1, 5.0, 262.58),
    (682, 1, 4, 1201.2, 0.0, 4804.8),
    (682, 37, 4, 95.45, 0.0, 381.8),
    (682, 115, 2, 147.17, 0.0, 294.34),
    (682, 87, 4, 211.54, 0.0, 846.16),
    (682, 43, 4, 205.9, 0.0, 823.6),
    (683, 24, 1, 1277.81, 5.0, 1213.92),
    (683, 10, 2, 1780.97, 0.0, 3561.94),
    (683, 33, 4, 104.34, 0.0, 417.36),
    (683, 60, 3, 267.81, 10.0, 723.09),
    (683, 114, 2, 122.82, 10.0, 221.08),
    (684, 101, 4, 104.09, 10.0, 374.72),
    (684, 16, 3, 519.64, 5.0, 1480.97),
    (684, 67, 4, 1817.2, 0.0, 7268.8),
    (684, 74, 1, 127.99, 5.0, 121.59),
    (684, 117, 2, 65.55, 5.0, 124.55),
    (685, 49, 1, 295.15, 10.0, 265.64),
    (686, 78, 4, 105.52, 15.0, 358.77),
    (686, 20, 3, 204.87, 0.0, 614.61),
    (686, 66, 3, 1542.36, 15.0, 3933.02),
    (686, 117, 1, 65.55, 20.0, 52.44),
    (687, 69, 2, 383.43, 0.0, 766.86),
    (687, 17, 2, 166.79, 0.0, 333.58),
    (687, 81, 1, 108.79, 0.0, 108.79),
    (688, 90, 2, 153.87, 10.0, 276.97),
    (688, 2, 1, 579.88, 0.0, 579.88),
    (689, 90, 1, 153.87, 0.0, 153.87),
    (689, 113, 2, 114.51, 0.0, 229.02),
    (690, 88, 1, 165.88, 0.0, 165.88),
    (691, 29, 1, 2973.66, 5.0, 2824.98),
    (691, 17, 1, 166.79, 0.0, 166.79),
    (691, 99, 1, 2500.38, 0.0, 2500.38),
    (691, 10, 4, 1780.97, 15.0, 6055.3),
    (691, 88, 1, 165.88, 15.0, 141.0),
    (692, 106, 4, 85.2, 0.0, 340.8),
    (692, 36, 1, 249.56, 10.0, 224.6),
    (692, 9, 2, 2411.7, 15.0, 4099.89),
    (692, 80, 4, 174.72, 0.0, 698.88),
    (692, 50, 1, 19.39, 0.0, 19.39),
    (693, 20, 4, 204.87, 0.0, 819.48),
    (693, 11, 1, 1709.28, 0.0, 1709.28),
    (693, 74, 3, 127.99, 10.0, 345.57),
    (693, 66, 3, 1542.36, 0.0, 4627.08),
    (694, 2, 4, 579.88, 0.0, 2319.52),
    (694, 39, 2, 96.97, 0.0, 193.94),
    (694, 83, 2, 68.44, 0.0, 136.88),
    (695, 84, 3, 273.15, 0.0, 819.45),
    (695, 72, 2, 443.9, 0.0, 887.8),
    (695, 90, 1, 153.87, 5.0, 146.18),
    (696, 85, 4, 212.56, 0.0, 850.24),
    (697, 69, 2, 383.43, 0.0, 766.86),
    (697, 31, 2, 202.24, 15.0, 343.81),
    (697, 29, 1, 2973.66, 10.0, 2676.29),
    (698, 100, 3, 79.32, 0.0, 237.96),
    (698, 94, 4, 1181.28, 0.0, 4725.12),
    (698, 50, 3, 19.39, 10.0, 52.35),
    (698, 89, 3, 138.34, 15.0, 352.77),
    (699, 100, 4, 79.32, 0.0, 317.28),
    (699, 65, 3, 166.5, 0.0, 499.5),
    (699, 49, 2, 295.15, 0.0, 590.3),
    (699, 104, 3, 73.75, 0.0, 221.25),
    (699, 9, 1, 2411.7, 5.0, 2291.12),
    (700, 101, 4, 104.09, 0.0, 416.36),
    (700, 48, 4, 228.47, 0.0, 913.88),
    (700, 74, 2, 127.99, 0.0, 255.98),
    (701, 7, 2, 609.83, 0.0, 1219.66),
    (701, 86, 2, 160.39, 15.0, 272.66),
    (701, 34, 1, 118.64, 0.0, 118.64),
    (702, 4, 1, 1298.64, 0.0, 1298.64),
    (703, 36, 3, 249.56, 10.0, 673.81),
    (703, 41, 2, 141.08, 0.0, 282.16),
    (703, 21, 4, 151.63, 0.0, 606.52),
    (703, 27, 4, 1649.21, 0.0, 6596.84),
    (703, 47, 4, 64.89, 0.0, 259.56),
    (704, 58, 4, 59.14, 5.0, 224.73),
    (704, 17, 4, 166.79, 0.0, 667.16),
    (704, 74, 4, 127.99, 0.0, 511.96),
    (704, 56, 3, 58.03, 15.0, 147.98),
    (705, 42, 1, 213.41, 0.0, 213.41),
    (705, 84, 2, 273.15, 0.0, 546.3),
    (705, 67, 2, 1817.2, 10.0, 3270.96),
    (706, 89, 4, 138.34, 5.0, 525.69),
    (706, 102, 1, 85.54, 0.0, 85.54),
    (706, 16, 2, 519.64, 15.0, 883.39),
    (706, 99, 2, 2500.38, 0.0, 5000.76),
    (706, 28, 4, 701.14, 5.0, 2664.33),
    (707, 93, 2, 137.35, 0.0, 274.7),
    (707, 81, 3, 108.79, 20.0, 261.1),
    (707, 110, 3, 126.77, 10.0, 342.28),
    (707, 63, 2, 161.59, 15.0, 274.7),
    (707, 101, 2, 104.09, 0.0, 208.18),
    (708, 89, 2, 138.34, 10.0, 249.01),
    (708, 107, 2, 34.0, 0.0, 68.0),
    (708, 115, 4, 147.17, 0.0, 588.68),
    (708, 101, 3, 104.09, 20.0, 249.82),
    (709, 101, 2, 104.09, 10.0, 187.36),
    (709, 16, 2, 519.64, 0.0, 1039.28),
    (709, 98, 1, 1250.0, 0.0, 1250.0),
    (709, 65, 1, 166.5, 0.0, 166.5),
    (710, 91, 4, 198.23, 5.0, 753.27),
    (710, 12, 4, 1781.91, 15.0, 6058.49),
    (711, 28, 2, 701.14, 0.0, 1402.28),
    (711, 89, 2, 138.34, 15.0, 235.18),
    (712, 20, 2, 204.87, 0.0, 409.74),
    (712, 92, 3, 227.98, 0.0, 683.94),
    (712, 105, 4, 103.14, 0.0, 412.56),
    (712, 86, 3, 160.39, 0.0, 481.17),
    (712, 88, 1, 165.88, 15.0, 141.0),
    (713, 51, 4, 42.12, 0.0, 168.48),
    (713, 88, 2, 165.88, 0.0, 331.76),
    (713, 102, 3, 85.54, 0.0, 256.62),
    (714, 23, 3, 179.75, 5.0, 512.29),
    (714, 52, 2, 63.01, 5.0, 119.72),
    (714, 85, 4, 212.56, 5.0, 807.73),
    (714, 8, 4, 1917.66, 0.0, 7670.64),
    (715, 48, 1, 228.47, 0.0, 228.47),
    (716, 74, 4, 127.99, 5.0, 486.36),
    (717, 3, 2, 731.02, 0.0, 1462.04),
    (717, 33, 2, 104.34, 5.0, 198.25),
    (718, 74, 4, 127.99, 15.0, 435.17),
    (718, 32, 4, 184.53, 0.0, 738.12),
    (719, 30, 2, 85.45, 0.0, 170.9),
    (719, 11, 4, 1709.28, 5.0, 6495.26),
    (719, 103, 1, 71.11, 0.0, 71.11),
    (719, 78, 3, 105.52, 5.0, 300.73),
    (720, 26, 1, 2963.33, 5.0, 2815.16),
    (720, 15, 4, 1330.24, 0.0, 5320.96),
    (720, 78, 2, 105.52, 0.0, 211.04),
    (721, 9, 3, 2411.7, 0.0, 7235.1),
    (721, 46, 4, 31.86, 0.0, 127.44),
    (721, 108, 3, 94.64, 5.0, 269.72),
    (721, 4, 4, 1298.64, 10.0, 4675.1),
    (721, 100, 3, 79.32, 0.0, 237.96),
    (722, 64, 4, 1503.32, 5.0, 5712.62),
    (722, 52, 3, 63.01, 15.0, 160.68),
    (722, 39, 1, 96.97, 0.0, 96.97),
    (722, 74, 2, 127.99, 0.0, 255.98),
    (723, 90, 2, 153.87, 0.0, 307.74),
    (723, 29, 4, 2973.66, 20.0, 9515.71),
    (723, 61, 4, 1715.25, 5.0, 6517.95),
    (724, 7, 3, 609.83, 5.0, 1738.02),
    (724, 89, 1, 138.34, 0.0, 138.34),
    (725, 110, 3, 126.77, 5.0, 361.29),
    (726, 32, 3, 184.53, 15.0, 470.55),
    (726, 39, 3, 96.97, 10.0, 261.82),
    (726, 43, 3, 205.9, 10.0, 555.93),
    (726, 97, 1, 1619.72, 10.0, 1457.75),
    (727, 29, 3, 2973.66, 15.0, 7582.83),
    (727, 74, 3, 127.99, 0.0, 383.97),
    (727, 113, 2, 114.51, 0.0, 229.02),
    (728, 83, 3, 68.44, 0.0, 205.32),
    (728, 99, 2, 2500.38, 0.0, 5000.76),
    (728, 113, 1, 114.51, 20.0, 91.61),
    (728, 67, 4, 1817.2, 0.0, 7268.8),
    (728, 75, 2, 371.74, 0.0, 743.48),
    (729, 17, 1, 166.79, 0.0, 166.79),
    (729, 110, 3, 126.77, 5.0, 361.29),
    (729, 100, 3, 79.32, 0.0, 237.96),
    (729, 5, 1, 1274.14, 0.0, 1274.14),
    (729, 32, 2, 184.53, 5.0, 350.61),
    (730, 43, 3, 205.9, 5.0, 586.82),
    (730, 110, 4, 126.77, 0.0, 507.08),
    (730, 51, 3, 42.12, 5.0, 120.04),
    (730, 111, 4, 129.71, 20.0, 415.07),
    (731, 34, 3, 118.64, 0.0, 355.92),
    (731, 90, 2, 153.87, 0.0, 307.74),
    (732, 86, 2, 160.39, 0.0, 320.78),
    (732, 95, 2, 1291.88, 0.0, 2583.76),
    (733, 54, 4, 26.49, 10.0, 95.36),
    (733, 65, 1, 166.5, 0.0, 166.5),
    (733, 95, 3, 1291.88, 10.0, 3488.08),
    (733, 89, 2, 138.34, 5.0, 262.85),
    (733, 87, 3, 211.54, 0.0, 634.62),
    (734, 5, 2, 1274.14, 10.0, 2293.45),
    (734, 39, 1, 96.97, 0.0, 96.97),
    (735, 58, 3, 59.14, 10.0, 159.68),
    (735, 97, 2, 1619.72, 0.0, 3239.44),
    (736, 14, 2, 2113.7, 0.0, 4227.4),
    (736, 28, 2, 701.14, 0.0, 1402.28),
    (736, 27, 4, 1649.21, 0.0, 6596.84),
    (736, 113, 1, 114.51, 5.0, 108.78),
    (736, 2, 4, 579.88, 10.0, 2087.57),
    (737, 23, 3, 179.75, 5.0, 512.29),
    (738, 31, 2, 202.24, 0.0, 404.48),
    (738, 4, 2, 1298.64, 0.0, 2597.28),
    (739, 38, 3, 85.15, 0.0, 255.45),
    (739, 7, 4, 609.83, 15.0, 2073.42),
    (740, 14, 2, 2113.7, 15.0, 3593.29),
    (740, 80, 1, 174.72, 0.0, 174.72),
    (740, 101, 2, 104.09, 5.0, 197.77),
    (740, 107, 4, 34.0, 0.0, 136.0),
    (741, 101, 3, 104.09, 10.0, 281.04),
    (741, 89, 2, 138.34, 15.0, 235.18),
    (741, 44, 4, 219.45, 0.0, 877.8),
    (741, 50, 2, 19.39, 0.0, 38.78),
    (741, 51, 1, 42.12, 10.0, 37.91),
    (742, 89, 1, 138.34, 5.0, 131.42),
    (742, 71, 1, 368.66, 0.0, 368.66),
    (742, 54, 1, 26.49, 15.0, 22.52),
    (743, 95, 1, 1291.88, 0.0, 1291.88),
    (743, 114, 2, 122.82, 0.0, 245.64),
    (743, 115, 4, 147.17, 15.0, 500.38),
    (744, 49, 2, 295.15, 0.0, 590.3),
    (745, 38, 4, 85.15, 15.0, 289.51),
    (745, 39, 1, 96.97, 0.0, 96.97),
    (746, 2, 3, 579.88, 5.0, 1652.66),
    (746, 111, 4, 129.71, 10.0, 466.96),
    (747, 51, 2, 42.12, 0.0, 84.24),
    (747, 55, 3, 55.76, 0.0, 167.28),
    (748, 54, 1, 26.49, 15.0, 22.52),
    (749, 10, 3, 1780.97, 15.0, 4541.47),
    (750, 32, 2, 184.53, 5.0, 350.61),
    (750, 60, 2, 267.81, 10.0, 482.06),
    (750, 86, 3, 160.39, 5.0, 457.11),
    (750, 93, 2, 137.35, 0.0, 274.7),
    (751, 29, 1, 2973.66, 0.0, 2973.66),
    (752, 107, 2, 34.0, 10.0, 61.2),
    (753, 52, 1, 63.01, 10.0, 56.71),
    (753, 39, 1, 96.97, 5.0, 92.12),
    (753, 115, 3, 147.17, 5.0, 419.43),
    (753, 2, 1, 579.88, 0.0, 579.88),
    (754, 57, 2, 25.34, 10.0, 45.61),
    (754, 82, 3, 69.1, 10.0, 186.57),
    (754, 68, 4, 189.84, 5.0, 721.39),
    (754, 62, 3, 1801.83, 15.0, 4594.67),
    (755, 79, 2, 149.48, 10.0, 269.06),
    (756, 79, 2, 149.48, 10.0, 269.06),
    (756, 33, 1, 104.34, 0.0, 104.34),
    (757, 76, 1, 440.35, 5.0, 418.33),
    (757, 79, 2, 149.48, 0.0, 298.96),
    (757, 77, 1, 474.6, 0.0, 474.6),
    (757, 36, 4, 249.56, 0.0, 998.24),
    (758, 44, 1, 219.45, 0.0, 219.45),
    (758, 25, 1, 2969.54, 0.0, 2969.54),
    (758, 70, 2, 415.27, 0.0, 830.54),
    (758, 51, 2, 42.12, 5.0, 80.03),
    (758, 112, 1, 93.39, 15.0, 79.38),
    (759, 21, 4, 151.63, 15.0, 515.54),
    (759, 106, 2, 85.2, 0.0, 170.4),
    (759, 59, 2, 51.71, 15.0, 87.91),
    (759, 97, 4, 1619.72, 5.0, 6154.94),
    (760, 114, 4, 122.82, 0.0, 491.28),
    (761, 102, 2, 85.54, 0.0, 171.08),
    (761, 21, 2, 151.63, 0.0, 303.26),
    (761, 26, 2, 2963.33, 0.0, 5926.66),
    (761, 116, 1, 59.63, 5.0, 56.65),
    (761, 29, 3, 2973.66, 10.0, 8028.88),
    (762, 106, 1, 85.2, 5.0, 80.94),
    (762, 75, 1, 371.74, 15.0, 315.98),
    (762, 22, 3, 401.93, 0.0, 1205.79),
    (763, 76, 2, 440.35, 5.0, 836.67),
    (763, 54, 3, 26.49, 0.0, 79.47),
    (763, 75, 4, 371.74, 0.0, 1486.96),
    (764, 79, 3, 149.48, 5.0, 426.02),
    (764, 112, 1, 93.39, 0.0, 93.39),
    (765, 81, 4, 108.79, 10.0, 391.64),
    (765, 82, 2, 69.1, 5.0, 131.29),
    (765, 2, 1, 579.88, 0.0, 579.88),
    (765, 98, 4, 1250.0, 0.0, 5000.0),
    (766, 72, 1, 443.9, 5.0, 421.71),
    (767, 25, 3, 2969.54, 0.0, 8908.62),
    (767, 103, 4, 71.11, 0.0, 284.44),
    (767, 78, 4, 105.52, 5.0, 400.98),
    (767, 65, 3, 166.5, 0.0, 499.5),
    (767, 109, 1, 188.7, 20.0, 150.96),
    (768, 42, 2, 213.41, 0.0, 426.82),
    (769, 116, 2, 59.63, 0.0, 119.26),
    (769, 8, 3, 1917.66, 0.0, 5752.98),
    (769, 3, 1, 731.02, 10.0, 657.92),
    (769, 108, 1, 94.64, 5.0, 89.91),
    (769, 70, 2, 415.27, 15.0, 705.96),
    (770, 71, 3, 368.66, 0.0, 1105.98),
    (771, 93, 4, 137.35, 0.0, 549.4),
    (771, 50, 3, 19.39, 5.0, 55.26),
    (771, 98, 1, 1250.0, 15.0, 1062.5),
    (772, 56, 1, 58.03, 5.0, 55.13),
    (772, 58, 4, 59.14, 15.0, 201.08),
    (772, 73, 1, 308.35, 5.0, 292.93),
    (773, 7, 2, 609.83, 0.0, 1219.66),
    (774, 105, 1, 103.14, 0.0, 103.14),
    (774, 48, 2, 228.47, 0.0, 456.94),
    (774, 22, 3, 401.93, 5.0, 1145.5),
    (774, 39, 4, 96.97, 15.0, 329.7),
    (775, 31, 3, 202.24, 0.0, 606.72),
    (775, 28, 1, 701.14, 0.0, 701.14),
    (775, 82, 3, 69.1, 0.0, 207.3),
    (776, 69, 3, 383.43, 0.0, 1150.29),
    (776, 29, 1, 2973.66, 20.0, 2378.93),
    (777, 17, 1, 166.79, 15.0, 141.77),
    (777, 85, 4, 212.56, 0.0, 850.24),
    (777, 24, 2, 1277.81, 5.0, 2427.84),
    (777, 12, 4, 1781.91, 0.0, 7127.64),
    (778, 71, 2, 368.66, 5.0, 700.45),
    (778, 42, 3, 213.41, 0.0, 640.23),
    (778, 22, 3, 401.93, 0.0, 1205.79),
    (779, 7, 1, 609.83, 0.0, 609.83),
    (779, 68, 1, 189.84, 0.0, 189.84),
    (779, 110, 4, 126.77, 0.0, 507.08),
    (780, 15, 4, 1330.24, 0.0, 5320.96),
    (780, 107, 3, 34.0, 10.0, 91.8),
    (780, 102, 4, 85.54, 0.0, 342.16),
    (781, 28, 1, 701.14, 5.0, 666.08),
    (781, 54, 2, 26.49, 10.0, 47.68),
    (781, 11, 2, 1709.28, 0.0, 3418.56),
    (781, 112, 1, 93.39, 5.0, 88.72),
    (781, 101, 2, 104.09, 10.0, 187.36),
    (782, 88, 2, 165.88, 0.0, 331.76),
    (782, 9, 3, 2411.7, 0.0, 7235.1),
    (782, 41, 2, 141.08, 15.0, 239.84),
    (783, 55, 2, 55.76, 0.0, 111.52),
    (783, 88, 4, 165.88, 0.0, 663.52),
    (783, 62, 4, 1801.83, 0.0, 7207.32),
    (784, 76, 3, 440.35, 15.0, 1122.89),
    (784, 78, 4, 105.52, 0.0, 422.08),
    (785, 44, 2, 219.45, 10.0, 395.01),
    (785, 62, 3, 1801.83, 0.0, 5405.49),
    (785, 30, 1, 85.45, 5.0, 81.18),
    (785, 74, 4, 127.99, 5.0, 486.36),
    (785, 3, 3, 731.02, 15.0, 1864.1),
    (786, 72, 3, 443.9, 10.0, 1198.53),
    (786, 117, 4, 65.55, 0.0, 262.2),
    (787, 96, 1, 2457.16, 10.0, 2211.44),
    (787, 75, 3, 371.74, 5.0, 1059.46),
    (787, 60, 2, 267.81, 5.0, 508.84),
    (787, 94, 4, 1181.28, 15.0, 4016.35),
    (788, 102, 4, 85.54, 10.0, 307.94),
    (788, 27, 2, 1649.21, 5.0, 3133.5),
    (788, 55, 4, 55.76, 20.0, 178.43),
    (789, 100, 1, 79.32, 5.0, 75.35),
    (790, 95, 2, 1291.88, 10.0, 2325.38),
    (791, 106, 3, 85.2, 0.0, 255.6),
    (791, 102, 3, 85.54, 10.0, 230.96),
    (792, 3, 2, 731.02, 10.0, 1315.84),
    (792, 96, 1, 2457.16, 0.0, 2457.16),
    (792, 16, 2, 519.64, 15.0, 883.39),
    (792, 74, 4, 127.99, 0.0, 511.96),
    (793, 106, 1, 85.2, 15.0, 72.42),
    (793, 69, 1, 383.43, 0.0, 383.43),
    (793, 103, 3, 71.11, 0.0, 213.33),
    (794, 64, 2, 1503.32, 15.0, 2555.64),
    (794, 27, 1, 1649.21, 0.0, 1649.21),
    (794, 49, 3, 295.15, 5.0, 841.18),
    (794, 97, 4, 1619.72, 5.0, 6154.94),
    (794, 52, 2, 63.01, 0.0, 126.02),
    (795, 58, 1, 59.14, 5.0, 56.18),
    (795, 86, 4, 160.39, 10.0, 577.4),
    (795, 32, 2, 184.53, 5.0, 350.61),
    (796, 6, 2, 1189.16, 0.0, 2378.32),
    (796, 85, 2, 212.56, 0.0, 425.12),
    (796, 18, 2, 567.87, 5.0, 1078.95),
    (796, 108, 4, 94.64, 20.0, 302.85),
    (796, 66, 4, 1542.36, 0.0, 6169.44),
    (797, 10, 4, 1780.97, 20.0, 5699.1),
    (797, 5, 3, 1274.14, 5.0, 3631.3),
    (797, 115, 2, 147.17, 0.0, 294.34),
    (797, 14, 3, 2113.7, 0.0, 6341.1),
    (798, 2, 2, 579.88, 0.0, 1159.76),
    (798, 34, 2, 118.64, 0.0, 237.28),
    (799, 30, 1, 85.45, 5.0, 81.18),
    (799, 76, 1, 440.35, 0.0, 440.35),
    (799, 41, 4, 141.08, 0.0, 564.32),
    (799, 102, 1, 85.54, 5.0, 81.26),
    (799, 28, 2, 701.14, 5.0, 1332.17),
    (800, 107, 3, 34.0, 5.0, 96.9),
    (800, 99, 4, 2500.38, 0.0, 10001.52),
    (801, 101, 1, 104.09, 10.0, 93.68),
    (802, 116, 4, 59.63, 0.0, 238.52),
    (802, 9, 3, 2411.7, 20.0, 5788.08),
    (802, 65, 2, 166.5, 10.0, 299.7),
    (802, 64, 2, 1503.32, 0.0, 3006.64),
    (802, 27, 4, 1649.21, 0.0, 6596.84),
    (803, 3, 4, 731.02, 0.0, 2924.08),
    (803, 24, 3, 1277.81, 10.0, 3450.09),
    (803, 70, 1, 415.27, 15.0, 352.98),
    (803, 17, 1, 166.79, 5.0, 158.45),
    (804, 35, 3, 158.7, 0.0, 476.1),
    (805, 108, 1, 94.64, 0.0, 94.64),
    (805, 71, 4, 368.66, 10.0, 1327.18),
    (806, 61, 4, 1715.25, 0.0, 6861.0),
    (806, 20, 2, 204.87, 0.0, 409.74),
    (806, 96, 4, 2457.16, 10.0, 8845.78),
    (806, 50, 2, 19.39, 0.0, 38.78),
    (806, 33, 1, 104.34, 0.0, 104.34),
    (807, 5, 2, 1274.14, 0.0, 2548.28),
    (808, 8, 1, 1917.66, 0.0, 1917.66),
    (808, 20, 3, 204.87, 10.0, 553.15),
    (809, 4, 3, 1298.64, 0.0, 3895.92),
    (809, 2, 1, 579.88, 0.0, 579.88),
    (809, 44, 2, 219.45, 0.0, 438.9),
    (809, 60, 1, 267.81, 0.0, 267.81),
    (809, 61, 4, 1715.25, 0.0, 6861.0),
    (810, 73, 4, 308.35, 15.0, 1048.39),
    (810, 6, 4, 1189.16, 0.0, 4756.64),
    (810, 96, 2, 2457.16, 0.0, 4914.32),
    (810, 66, 3, 1542.36, 0.0, 4627.08),
    (811, 61, 1, 1715.25, 0.0, 1715.25),
    (812, 12, 4, 1781.91, 0.0, 7127.64),
    (812, 83, 3, 68.44, 0.0, 205.32),
    (813, 114, 1, 122.82, 0.0, 122.82),
    (813, 24, 2, 1277.81, 0.0, 2555.62),
    (813, 49, 3, 295.15, 0.0, 885.45),
    (813, 79, 2, 149.48, 15.0, 254.12),
    (814, 75, 1, 371.74, 0.0, 371.74),
    (814, 70, 2, 415.27, 0.0, 830.54),
    (814, 45, 1, 281.48, 0.0, 281.48),
    (815, 114, 4, 122.82, 10.0, 442.15),
    (815, 53, 4, 56.85, 0.0, 227.4),
    (815, 33, 4, 104.34, 0.0, 417.36),
    (815, 62, 1, 1801.83, 15.0, 1531.56),
    (815, 72, 3, 443.9, 0.0, 1331.7),
    (816, 80, 2, 174.72, 0.0, 349.44),
    (816, 109, 3, 188.7, 0.0, 566.1),
    (816, 73, 4, 308.35, 5.0, 1171.73),
    (817, 36, 3, 249.56, 5.0, 711.25),
    (817, 70, 3, 415.27, 0.0, 1245.81),
    (818, 22, 1, 401.93, 20.0, 321.54),
    (819, 1, 1, 1201.2, 0.0, 1201.2),
    (819, 8, 4, 1917.66, 0.0, 7670.64),
    (820, 99, 3, 2500.38, 0.0, 7501.14),
    (820, 100, 1, 79.32, 0.0, 79.32),
    (820, 73, 1, 308.35, 0.0, 308.35),
    (820, 12, 2, 1781.91, 10.0, 3207.44),
    (820, 16, 2, 519.64, 5.0, 987.32),
    (821, 39, 1, 96.97, 15.0, 82.42),
    (821, 70, 4, 415.27, 0.0, 1661.08),
    (821, 108, 3, 94.64, 0.0, 283.92),
    (822, 93, 2, 137.35, 20.0, 219.76),
    (823, 89, 2, 138.34, 10.0, 249.01),
    (823, 34, 3, 118.64, 0.0, 355.92),
    (823, 43, 1, 205.9, 0.0, 205.9),
    (824, 58, 3, 59.14, 0.0, 177.42),
    (825, 13, 1, 559.57, 5.0, 531.59),
    (826, 58, 2, 59.14, 20.0, 94.62),
    (826, 77, 4, 474.6, 0.0, 1898.4),
    (826, 99, 3, 2500.38, 5.0, 7126.08),
    (826, 37, 1, 95.45, 0.0, 95.45),
    (826, 1, 3, 1201.2, 15.0, 3063.06),
    (827, 2, 3, 579.88, 0.0, 1739.64),
    (828, 81, 2, 108.79, 10.0, 195.82),
    (829, 23, 4, 179.75, 0.0, 719.0),
    (829, 29, 1, 2973.66, 0.0, 2973.66),
    (829, 8, 2, 1917.66, 5.0, 3643.55),
    (829, 34, 4, 118.64, 0.0, 474.56),
    (829, 55, 1, 55.76, 10.0, 50.18),
    (830, 69, 1, 383.43, 0.0, 383.43),
    (830, 92, 4, 227.98, 0.0, 911.92),
    (830, 48, 3, 228.47, 0.0, 685.41),
    (831, 57, 2, 25.34, 15.0, 43.08),
    (831, 54, 3, 26.49, 0.0, 79.47),
    (832, 94, 4, 1181.28, 10.0, 4252.61),
    (832, 40, 3, 127.44, 0.0, 382.32),
    (833, 106, 2, 85.2, 0.0, 170.4),
    (833, 59, 1, 51.71, 5.0, 49.12),
    (834, 113, 4, 114.51, 5.0, 435.14),
    (834, 57, 3, 25.34, 10.0, 68.42),
    (834, 114, 3, 122.82, 0.0, 368.46),
    (834, 53, 1, 56.85, 5.0, 54.01),
    (834, 110, 1, 126.77, 5.0, 120.43),
    (835, 31, 3, 202.24, 10.0, 546.05),
    (835, 41, 3, 141.08, 0.0, 423.24),
    (836, 108, 3, 94.64, 0.0, 283.92),
    (836, 33, 3, 104.34, 5.0, 297.37),
    (836, 78, 2, 105.52, 0.0, 211.04),
    (836, 95, 4, 1291.88, 5.0, 4909.14),
    (837, 70, 1, 415.27, 5.0, 394.51),
    (837, 71, 4, 368.66, 0.0, 1474.64),
    (838, 104, 3, 73.75, 5.0, 210.19),
    (838, 23, 4, 179.75, 5.0, 683.05),
    (838, 93, 4, 137.35, 0.0, 549.4),
    (838, 9, 1, 2411.7, 0.0, 2411.7),
    (838, 68, 1, 189.84, 10.0, 170.86),
    (839, 32, 1, 184.53, 0.0, 184.53),
    (839, 111, 4, 129.71, 0.0, 518.84),
    (840, 26, 2, 2963.33, 0.0, 5926.66),
    (841, 27, 3, 1649.21, 15.0, 4205.49),
    (842, 114, 4, 122.82, 15.0, 417.59),
    (843, 106, 3, 85.2, 15.0, 217.26),
    (843, 68, 1, 189.84, 0.0, 189.84),
    (843, 43, 4, 205.9, 0.0, 823.6),
    (843, 112, 3, 93.39, 5.0, 266.16),
    (844, 77, 2, 474.6, 0.0, 949.2),
    (844, 98, 4, 1250.0, 0.0, 5000.0),
    (844, 8, 1, 1917.66, 5.0, 1821.78),
    (844, 92, 1, 227.98, 10.0, 205.18),
    (845, 44, 4, 219.45, 15.0, 746.13),
    (845, 108, 1, 94.64, 15.0, 80.44),
    (845, 30, 1, 85.45, 0.0, 85.45),
    (845, 6, 3, 1189.16, 5.0, 3389.11),
    (846, 86, 2, 160.39, 10.0, 288.7),
    (846, 112, 2, 93.39, 0.0, 186.78),
    (846, 38, 4, 85.15, 20.0, 272.48),
    (847, 71, 3, 368.66, 0.0, 1105.98),
    (847, 46, 4, 31.86, 0.0, 127.44),
    (847, 109, 4, 188.7, 5.0, 717.06),
    (847, 59, 3, 51.71, 0.0, 155.13),
    (848, 115, 4, 147.17, 0.0, 588.68),
    (848, 39, 4, 96.97, 15.0, 329.7),
    (848, 106, 2, 85.2, 0.0, 170.4),
    (848, 19, 1, 440.04, 20.0, 352.03),
    (849, 74, 3, 127.99, 5.0, 364.77),
    (849, 18, 3, 567.87, 5.0, 1618.43),
    (850, 6, 1, 1189.16, 0.0, 1189.16),
    (850, 19, 1, 440.04, 0.0, 440.04),
    (851, 111, 1, 129.71, 0.0, 129.71),
    (851, 43, 3, 205.9, 0.0, 617.7),
    (851, 30, 1, 85.45, 15.0, 72.63),
    (851, 40, 3, 127.44, 15.0, 324.97),
    (851, 71, 4, 368.66, 0.0, 1474.64),
    (852, 44, 1, 219.45, 0.0, 219.45),
    (852, 42, 1, 213.41, 15.0, 181.4),
    (852, 96, 4, 2457.16, 0.0, 9828.64),
    (852, 98, 1, 1250.0, 0.0, 1250.0),
    (852, 111, 3, 129.71, 10.0, 350.22),
    (853, 94, 1, 1181.28, 0.0, 1181.28),
    (853, 50, 3, 19.39, 0.0, 58.17),
    (854, 4, 4, 1298.64, 0.0, 5194.56),
    (855, 62, 1, 1801.83, 0.0, 1801.83),
    (855, 86, 4, 160.39, 0.0, 641.56),
    (856, 91, 2, 198.23, 0.0, 396.46),
    (856, 59, 2, 51.71, 5.0, 98.25),
    (856, 86, 3, 160.39, 0.0, 481.17),
    (857, 33, 4, 104.34, 5.0, 396.49),
    (857, 18, 2, 567.87, 0.0, 1135.74),
    (857, 2, 1, 579.88, 15.0, 492.9),
    (857, 58, 2, 59.14, 15.0, 100.54),
    (858, 115, 4, 147.17, 10.0, 529.81),
    (858, 68, 4, 189.84, 5.0, 721.39),
    (859, 100, 3, 79.32, 0.0, 237.96),
    (859, 48, 1, 228.47, 5.0, 217.05),
    (859, 31, 2, 202.24, 0.0, 404.48),
    (860, 53, 4, 56.85, 5.0, 216.03),
    (860, 58, 4, 59.14, 0.0, 236.56),
    (860, 8, 3, 1917.66, 0.0, 5752.98),
    (861, 62, 4, 1801.83, 10.0, 6486.59),
    (861, 27, 2, 1649.21, 0.0, 3298.42),
    (862, 84, 4, 273.15, 5.0, 1037.97),
    (862, 114, 4, 122.82, 0.0, 491.28),
    (862, 63, 2, 161.59, 0.0, 323.18),
    (863, 30, 4, 85.45, 20.0, 273.44),
    (863, 5, 1, 1274.14, 0.0, 1274.14),
    (863, 48, 2, 228.47, 0.0, 456.94),
    (863, 23, 2, 179.75, 10.0, 323.55),
    (863, 14, 1, 2113.7, 0.0, 2113.7),
    (864, 112, 1, 93.39, 0.0, 93.39),
    (865, 114, 3, 122.82, 5.0, 350.04),
    (866, 49, 1, 295.15, 15.0, 250.88),
    (866, 74, 4, 127.99, 0.0, 511.96),
    (866, 29, 3, 2973.66, 10.0, 8028.88),
    (867, 34, 3, 118.64, 5.0, 338.12),
    (867, 8, 3, 1917.66, 0.0, 5752.98),
    (867, 21, 2, 151.63, 10.0, 272.93),
    (868, 106, 4, 85.2, 0.0, 340.8),
    (869, 51, 2, 42.12, 0.0, 84.24),
    (869, 83, 2, 68.44, 5.0, 130.04),
    (869, 43, 3, 205.9, 0.0, 617.7),
    (869, 106, 2, 85.2, 5.0, 161.88),
    (870, 39, 4, 96.97, 20.0, 310.3),
    (870, 105, 4, 103.14, 10.0, 371.3),
    (870, 1, 1, 1201.2, 0.0, 1201.2),
    (870, 54, 1, 26.49, 5.0, 25.17),
    (871, 113, 1, 114.51, 0.0, 114.51),
    (871, 105, 1, 103.14, 5.0, 97.98),
    (871, 31, 2, 202.24, 15.0, 343.81),
    (872, 104, 3, 73.75, 0.0, 221.25),
    (872, 48, 1, 228.47, 0.0, 228.47),
    (873, 65, 3, 166.5, 5.0, 474.53),
    (873, 105, 2, 103.14, 5.0, 195.97),
    (873, 71, 2, 368.66, 0.0, 737.32),
    (873, 104, 2, 73.75, 0.0, 147.5),
    (873, 72, 2, 443.9, 0.0, 887.8),
    (874, 97, 2, 1619.72, 15.0, 2753.52),
    (874, 35, 1, 158.7, 0.0, 158.7),
    (874, 12, 3, 1781.91, 10.0, 4811.16),
    (875, 26, 3, 2963.33, 5.0, 8445.49),
    (875, 10, 3, 1780.97, 0.0, 5342.91),
    (875, 62, 1, 1801.83, 0.0, 1801.83),
    (875, 59, 3, 51.71, 5.0, 147.37),
    (876, 62, 3, 1801.83, 0.0, 5405.49),
    (877, 90, 4, 153.87, 0.0, 615.48),
    (877, 4, 2, 1298.64, 0.0, 2597.28),
    (878, 91, 1, 198.23, 0.0, 198.23),
    (878, 14, 2, 2113.7, 15.0, 3593.29),
    (879, 67, 4, 1817.2, 0.0, 7268.8),
    (880, 65, 2, 166.5, 10.0, 299.7),
    (881, 62, 4, 1801.83, 10.0, 6486.59),
    (881, 64, 2, 1503.32, 20.0, 2405.31),
    (881, 6, 2, 1189.16, 10.0, 2140.49),
    (881, 56, 4, 58.03, 0.0, 232.12),
    (881, 82, 3, 69.1, 15.0, 176.21),
    (882, 82, 3, 69.1, 10.0, 186.57),
    (882, 65, 2, 166.5, 10.0, 299.7),
    (882, 101, 2, 104.09, 20.0, 166.54),
    (883, 51, 2, 42.12, 0.0, 84.24),
    (883, 62, 2, 1801.83, 15.0, 3063.11),
    (883, 17, 3, 166.79, 10.0, 450.33),
    (884, 24, 4, 1277.81, 0.0, 5111.24),
    (884, 46, 3, 31.86, 0.0, 95.58),
    (884, 94, 4, 1181.28, 0.0, 4725.12),
    (884, 102, 3, 85.54, 15.0, 218.13),
    (884, 85, 1, 212.56, 0.0, 212.56),
    (885, 78, 4, 105.52, 0.0, 422.08),
    (886, 75, 3, 371.74, 0.0, 1115.22),
    (887, 74, 2, 127.99, 0.0, 255.98),
    (888, 29, 1, 2973.66, 0.0, 2973.66),
    (888, 49, 1, 295.15, 15.0, 250.88),
    (888, 110, 2, 126.77, 0.0, 253.54),
    (888, 1, 1, 1201.2, 0.0, 1201.2),
    (888, 89, 3, 138.34, 0.0, 415.02),
    (889, 92, 2, 227.98, 0.0, 455.96),
    (889, 46, 2, 31.86, 0.0, 63.72),
    (889, 2, 1, 579.88, 0.0, 579.88),
    (889, 74, 4, 127.99, 5.0, 486.36),
    (889, 42, 2, 213.41, 5.0, 405.48),
    (890, 56, 3, 58.03, 0.0, 174.09),
    (891, 61, 3, 1715.25, 0.0, 5145.75),
    (891, 85, 4, 212.56, 15.0, 722.7),
    (891, 115, 1, 147.17, 0.0, 147.17),
    (891, 50, 2, 19.39, 10.0, 34.9),
    (892, 13, 4, 559.57, 0.0, 2238.28),
    (892, 66, 1, 1542.36, 10.0, 1388.12),
    (892, 71, 4, 368.66, 5.0, 1400.91),
    (893, 35, 4, 158.7, 0.0, 634.8),
    (893, 99, 3, 2500.38, 0.0, 7501.14),
    (893, 10, 3, 1780.97, 10.0, 4808.62),
    (894, 49, 2, 295.15, 0.0, 590.3),
    (894, 108, 1, 94.64, 0.0, 94.64),
    (895, 112, 4, 93.39, 10.0, 336.2),
    (895, 44, 3, 219.45, 0.0, 658.35),
    (895, 81, 4, 108.79, 10.0, 391.64),
    (895, 114, 2, 122.82, 0.0, 245.64),
    (895, 41, 1, 141.08, 10.0, 126.97),
    (896, 95, 4, 1291.88, 5.0, 4909.14),
    (896, 13, 3, 559.57, 0.0, 1678.71),
    (896, 38, 4, 85.15, 0.0, 340.6),
    (896, 29, 4, 2973.66, 0.0, 11894.64),
    (897, 97, 1, 1619.72, 0.0, 1619.72),
    (897, 30, 3, 85.45, 15.0, 217.9),
    (897, 52, 1, 63.01, 5.0, 59.86),
    (897, 71, 1, 368.66, 15.0, 313.36),
    (898, 90, 4, 153.87, 5.0, 584.71),
    (899, 30, 2, 85.45, 0.0, 170.9),
    (900, 61, 1, 1715.25, 5.0, 1629.49),
    (900, 90, 2, 153.87, 0.0, 307.74),
    (900, 102, 2, 85.54, 0.0, 171.08),
    (900, 114, 4, 122.82, 15.0, 417.59),
    (901, 87, 1, 211.54, 0.0, 211.54),
    (901, 77, 2, 474.6, 5.0, 901.74),
    (901, 104, 2, 73.75, 0.0, 147.5),
    (902, 109, 3, 188.7, 5.0, 537.8),
    (902, 3, 2, 731.02, 10.0, 1315.84),
    (902, 86, 4, 160.39, 0.0, 641.56),
    (903, 24, 1, 1277.81, 10.0, 1150.03),
    (903, 108, 4, 94.64, 10.0, 340.7),
    (904, 87, 2, 211.54, 0.0, 423.08),
    (905, 79, 4, 149.48, 5.0, 568.02),
    (905, 34, 2, 118.64, 0.0, 237.28),
    (905, 22, 2, 401.93, 20.0, 643.09),
    (906, 79, 2, 149.48, 0.0, 298.96),
    (906, 54, 3, 26.49, 10.0, 71.52),
    (906, 58, 4, 59.14, 0.0, 236.56),
    (906, 4, 3, 1298.64, 0.0, 3895.92),
    (906, 49, 2, 295.15, 20.0, 472.24),
    (907, 15, 1, 1330.24, 0.0, 1330.24),
    (907, 54, 4, 26.49, 20.0, 84.77),
    (907, 61, 3, 1715.25, 5.0, 4888.46),
    (907, 65, 1, 166.5, 0.0, 166.5),
    (907, 111, 1, 129.71, 0.0, 129.71),
    (908, 100, 1, 79.32, 15.0, 67.42),
    (908, 6, 2, 1189.16, 0.0, 2378.32),
    (908, 15, 3, 1330.24, 0.0, 3990.72),
    (908, 61, 1, 1715.25, 0.0, 1715.25),
    (909, 71, 3, 368.66, 10.0, 995.38),
    (909, 23, 3, 179.75, 10.0, 485.33),
    (909, 84, 1, 273.15, 5.0, 259.49),
    (909, 112, 1, 93.39, 0.0, 93.39),
    (910, 54, 1, 26.49, 0.0, 26.49),
    (911, 72, 1, 443.9, 5.0, 421.71),
    (912, 36, 3, 249.56, 10.0, 673.81),
    (912, 35, 4, 158.7, 5.0, 603.06),
    (912, 28, 2, 701.14, 5.0, 1332.17),
    (913, 104, 3, 73.75, 0.0, 221.25),
    (913, 85, 3, 212.56, 0.0, 637.68),
    (913, 19, 1, 440.04, 5.0, 418.04),
    (914, 58, 1, 59.14, 0.0, 59.14),
    (914, 52, 4, 63.01, 5.0, 239.44),
    (914, 106, 4, 85.2, 0.0, 340.8),
    (914, 105, 3, 103.14, 0.0, 309.42),
    (914, 91, 3, 198.23, 0.0, 594.69),
    (915, 90, 4, 153.87, 10.0, 553.93),
    (916, 46, 4, 31.86, 20.0, 101.95),
    (917, 49, 4, 295.15, 10.0, 1062.54),
    (918, 105, 2, 103.14, 0.0, 206.28),
    (918, 63, 1, 161.59, 20.0, 129.27),
    (918, 117, 2, 65.55, 5.0, 124.55),
    (918, 110, 4, 126.77, 0.0, 507.08),
    (918, 114, 4, 122.82, 5.0, 466.72),
    (919, 49, 2, 295.15, 5.0, 560.79),
    (919, 79, 2, 149.48, 0.0, 298.96),
    (919, 76, 4, 440.35, 15.0, 1497.19),
    (920, 32, 3, 184.53, 5.0, 525.91),
    (921, 11, 1, 1709.28, 0.0, 1709.28),
    (921, 20, 1, 204.87, 0.0, 204.87),
    (921, 17, 1, 166.79, 5.0, 158.45),
    (921, 52, 4, 63.01, 15.0, 214.23),
    (921, 2, 2, 579.88, 10.0, 1043.78),
    (922, 16, 4, 519.64, 0.0, 2078.56),
    (922, 3, 4, 731.02, 0.0, 2924.08),
    (922, 27, 4, 1649.21, 5.0, 6267.0),
    (923, 8, 2, 1917.66, 0.0, 3835.32),
    (923, 67, 2, 1817.2, 0.0, 3634.4),
    (924, 106, 3, 85.2, 0.0, 255.6),
    (924, 100, 2, 79.32, 15.0, 134.84),
    (924, 70, 1, 415.27, 0.0, 415.27),
    (924, 105, 3, 103.14, 0.0, 309.42),
    (924, 5, 1, 1274.14, 0.0, 1274.14),
    (925, 40, 2, 127.44, 10.0, 229.39),
    (926, 41, 1, 141.08, 0.0, 141.08),
    (926, 109, 4, 188.7, 0.0, 754.8),
    (926, 52, 2, 63.01, 0.0, 126.02),
    (926, 13, 3, 559.57, 0.0, 1678.71),
    (926, 2, 4, 579.88, 0.0, 2319.52),
    (927, 25, 2, 2969.54, 0.0, 5939.08),
    (927, 27, 2, 1649.21, 10.0, 2968.58),
    (927, 59, 3, 51.71, 0.0, 155.13),
    (927, 6, 4, 1189.16, 0.0, 4756.64),
    (928, 9, 4, 2411.7, 0.0, 9646.8),
    (928, 114, 1, 122.82, 10.0, 110.54),
    (928, 1, 1, 1201.2, 10.0, 1081.08),
    (929, 45, 2, 281.48, 20.0, 450.37),
    (929, 11, 1, 1709.28, 5.0, 1623.82),
    (929, 35, 1, 158.7, 5.0, 150.77),
    (929, 46, 3, 31.86, 5.0, 90.8),
    (929, 50, 3, 19.39, 0.0, 58.17),
    (930, 51, 1, 42.12, 15.0, 35.8),
    (930, 86, 1, 160.39, 5.0, 152.37),
    (930, 47, 4, 64.89, 0.0, 259.56),
    (930, 32, 3, 184.53, 0.0, 553.59),
    (930, 78, 2, 105.52, 15.0, 179.38),
    (931, 20, 1, 204.87, 5.0, 194.63),
    (931, 23, 4, 179.75, 0.0, 719.0),
    (931, 11, 2, 1709.28, 10.0, 3076.7),
    (931, 103, 1, 71.11, 0.0, 71.11),
    (931, 70, 3, 415.27, 15.0, 1058.94),
    (932, 78, 3, 105.52, 0.0, 316.56),
    (932, 90, 4, 153.87, 0.0, 615.48),
    (933, 78, 3, 105.52, 0.0, 316.56),
    (933, 60, 1, 267.81, 5.0, 254.42),
    (934, 77, 2, 474.6, 0.0, 949.2),
    (935, 104, 4, 73.75, 0.0, 295.0),
    (935, 50, 3, 19.39, 5.0, 55.26),
    (936, 5, 2, 1274.14, 0.0, 2548.28),
    (936, 38, 3, 85.15, 0.0, 255.45),
    (936, 59, 4, 51.71, 5.0, 196.5),
    (936, 103, 4, 71.11, 0.0, 284.44),
    (937, 38, 4, 85.15, 10.0, 306.54),
    (938, 112, 2, 93.39, 0.0, 186.78),
    (938, 53, 4, 56.85, 15.0, 193.29),
    (939, 105, 1, 103.14, 0.0, 103.14),
    (939, 72, 4, 443.9, 5.0, 1686.82),
    (939, 117, 1, 65.55, 0.0, 65.55),
    (939, 58, 1, 59.14, 0.0, 59.14),
    (940, 83, 4, 68.44, 0.0, 273.76),
    (941, 82, 2, 69.1, 0.0, 138.2),
    (941, 4, 1, 1298.64, 5.0, 1233.71),
    (942, 84, 1, 273.15, 5.0, 259.49),
    (942, 106, 4, 85.2, 0.0, 340.8),
    (942, 24, 4, 1277.81, 0.0, 5111.24),
    (942, 51, 4, 42.12, 15.0, 143.21),
    (942, 6, 3, 1189.16, 0.0, 3567.48),
    (943, 66, 1, 1542.36, 5.0, 1465.24),
    (943, 12, 1, 1781.91, 10.0, 1603.72),
    (944, 21, 3, 151.63, 0.0, 454.89),
    (944, 111, 4, 129.71, 5.0, 492.9),
    (944, 22, 1, 401.93, 0.0, 401.93),
    (944, 77, 4, 474.6, 0.0, 1898.4),
    (945, 58, 2, 59.14, 10.0, 106.45),
    (945, 111, 4, 129.71, 0.0, 518.84),
    (945, 82, 2, 69.1, 0.0, 138.2),
    (946, 87, 1, 211.54, 0.0, 211.54),
    (946, 93, 1, 137.35, 0.0, 137.35),
    (947, 32, 3, 184.53, 0.0, 553.59),
    (947, 76, 3, 440.35, 0.0, 1321.05),
    (948, 75, 4, 371.74, 0.0, 1486.96),
    (948, 7, 1, 609.83, 10.0, 548.85),
    (948, 41, 4, 141.08, 0.0, 564.32),
    (948, 93, 3, 137.35, 10.0, 370.85),
    (949, 34, 4, 118.64, 0.0, 474.56),
    (949, 81, 1, 108.79, 0.0, 108.79),
    (949, 86, 4, 160.39, 0.0, 641.56),
    (949, 72, 2, 443.9, 20.0, 710.24),
    (950, 73, 2, 308.35, 0.0, 616.7),
    (951, 101, 2, 104.09, 0.0, 208.18),
    (951, 88, 4, 165.88, 0.0, 663.52),
    (952, 49, 2, 295.15, 0.0, 590.3),
    (952, 80, 4, 174.72, 0.0, 698.88),
    (952, 111, 2, 129.71, 5.0, 246.45),
    (952, 76, 2, 440.35, 0.0, 880.7),
    (953, 89, 4, 138.34, 5.0, 525.69),
    (953, 1, 2, 1201.2, 10.0, 2162.16),
    (953, 9, 2, 2411.7, 5.0, 4582.23),
    (954, 103, 4, 71.11, 0.0, 284.44),
    (955, 42, 1, 213.41, 0.0, 213.41),
    (955, 56, 2, 58.03, 0.0, 116.06),
    (955, 73, 1, 308.35, 10.0, 277.52),
    (955, 89, 4, 138.34, 10.0, 498.02),
    (956, 60, 4, 267.81, 15.0, 910.55),
    (956, 28, 1, 701.14, 20.0, 560.91),
    (956, 27, 4, 1649.21, 15.0, 5607.31),
    (956, 10, 4, 1780.97, 0.0, 7123.88),
    (957, 80, 3, 174.72, 0.0, 524.16),
    (957, 65, 3, 166.5, 0.0, 499.5),
    (958, 61, 2, 1715.25, 0.0, 3430.5),
    (958, 101, 4, 104.09, 0.0, 416.36),
    (958, 98, 1, 1250.0, 10.0, 1125.0),
    (958, 47, 4, 64.89, 10.0, 233.6),
    (959, 114, 1, 122.82, 0.0, 122.82),
    (959, 102, 4, 85.54, 0.0, 342.16),
    (959, 34, 4, 118.64, 5.0, 450.83),
    (959, 53, 2, 56.85, 0.0, 113.7),
    (960, 77, 4, 474.6, 0.0, 1898.4),
    (960, 117, 3, 65.55, 10.0, 176.99),
    (960, 91, 1, 198.23, 15.0, 168.5),
    (961, 96, 3, 2457.16, 15.0, 6265.76),
    (961, 29, 1, 2973.66, 0.0, 2973.66),
    (962, 44, 1, 219.45, 0.0, 219.45),
    (962, 30, 4, 85.45, 0.0, 341.8),
    (962, 33, 2, 104.34, 0.0, 208.68),
    (962, 3, 2, 731.02, 10.0, 1315.84),
    (962, 1, 3, 1201.2, 15.0, 3063.06),
    (963, 109, 2, 188.7, 15.0, 320.79),
    (964, 9, 1, 2411.7, 0.0, 2411.7),
    (964, 50, 1, 19.39, 20.0, 15.51),
    (964, 67, 2, 1817.2, 5.0, 3452.68),
    (965, 66, 4, 1542.36, 5.0, 5860.97),
    (965, 55, 4, 55.76, 0.0, 223.04),
    (965, 88, 2, 165.88, 20.0, 265.41),
    (966, 74, 2, 127.99, 0.0, 255.98),
    (967, 36, 4, 249.56, 0.0, 998.24),
    (967, 43, 3, 205.9, 15.0, 525.05),
    (967, 64, 3, 1503.32, 0.0, 4509.96),
    (967, 86, 2, 160.39, 0.0, 320.78),
    (968, 88, 1, 165.88, 0.0, 165.88),
    (968, 8, 3, 1917.66, 0.0, 5752.98),
    (968, 46, 1, 31.86, 0.0, 31.86),
    (969, 26, 4, 2963.33, 15.0, 10075.32),
    (969, 68, 4, 189.84, 0.0, 759.36),
    (970, 25, 3, 2969.54, 10.0, 8017.76),
    (970, 6, 3, 1189.16, 0.0, 3567.48),
    (970, 113, 2, 114.51, 5.0, 217.57),
    (970, 80, 4, 174.72, 0.0, 698.88),
    (971, 96, 3, 2457.16, 5.0, 7002.91),
    (971, 9, 1, 2411.7, 5.0, 2291.12),
    (971, 28, 4, 701.14, 5.0, 2664.33),
    (972, 72, 1, 443.9, 0.0, 443.9),
    (972, 35, 4, 158.7, 5.0, 603.06),
    (973, 2, 2, 579.88, 5.0, 1101.77),
    (973, 74, 1, 127.99, 15.0, 108.79),
    (973, 42, 1, 213.41, 0.0, 213.41),
    (973, 64, 4, 1503.32, 0.0, 6013.28),
    (973, 82, 3, 69.1, 0.0, 207.3),
    (974, 43, 3, 205.9, 5.0, 586.82),
    (974, 67, 1, 1817.2, 0.0, 1817.2),
    (975, 47, 3, 64.89, 0.0, 194.67),
    (975, 79, 4, 149.48, 10.0, 538.13),
    (975, 15, 2, 1330.24, 0.0, 2660.48),
    (975, 85, 2, 212.56, 10.0, 382.61),
    (976, 22, 4, 401.93, 0.0, 1607.72),
    (976, 115, 3, 147.17, 10.0, 397.36),
    (977, 13, 4, 559.57, 0.0, 2238.28),
    (977, 109, 1, 188.7, 0.0, 188.7),
    (978, 60, 2, 267.81, 0.0, 535.62),
    (979, 18, 2, 567.87, 0.0, 1135.74),
    (979, 59, 4, 51.71, 0.0, 206.84),
    (980, 41, 4, 141.08, 0.0, 564.32),
    (980, 106, 3, 85.2, 10.0, 230.04),
    (980, 35, 4, 158.7, 5.0, 603.06),
    (980, 112, 3, 93.39, 0.0, 280.17),
    (981, 108, 4, 94.64, 10.0, 340.7),
    (982, 66, 4, 1542.36, 0.0, 6169.44),
    (982, 78, 2, 105.52, 5.0, 200.49),
    (982, 98, 4, 1250.0, 0.0, 5000.0),
    (983, 24, 1, 1277.81, 15.0, 1086.14),
    (984, 83, 1, 68.44, 5.0, 65.02),
    (984, 102, 2, 85.54, 10.0, 153.97),
    (984, 70, 1, 415.27, 5.0, 394.51),
    (984, 67, 4, 1817.2, 0.0, 7268.8),
    (984, 50, 4, 19.39, 0.0, 77.56),
    (985, 76, 2, 440.35, 0.0, 880.7),
    (985, 72, 2, 443.9, 0.0, 887.8),
    (986, 6, 3, 1189.16, 0.0, 3567.48),
    (986, 54, 4, 26.49, 15.0, 90.07),
    (986, 63, 2, 161.59, 20.0, 258.54),
    (987, 13, 3, 559.57, 0.0, 1678.71),
    (987, 42, 1, 213.41, 5.0, 202.74),
    (988, 78, 3, 105.52, 10.0, 284.9),
    (988, 87, 3, 211.54, 0.0, 634.62),
    (988, 113, 3, 114.51, 0.0, 343.53),
    (988, 95, 2, 1291.88, 0.0, 2583.76),
    (988, 29, 1, 2973.66, 0.0, 2973.66),
    (989, 57, 4, 25.34, 10.0, 91.22),
    (989, 15, 1, 1330.24, 10.0, 1197.22),
    (989, 42, 4, 213.41, 15.0, 725.59),
    (989, 81, 4, 108.79, 5.0, 413.4),
    (989, 97, 1, 1619.72, 15.0, 1376.76),
    (990, 74, 2, 127.99, 10.0, 230.38),
    (990, 104, 4, 73.75, 10.0, 265.5),
    (990, 38, 4, 85.15, 20.0, 272.48),
    (990, 4, 1, 1298.64, 0.0, 1298.64),
    (991, 75, 4, 371.74, 10.0, 1338.26),
    (991, 64, 2, 1503.32, 5.0, 2856.31),
    (991, 47, 2, 64.89, 5.0, 123.29),
    (992, 72, 3, 443.9, 5.0, 1265.12),
    (992, 48, 2, 228.47, 0.0, 456.94),
    (992, 91, 3, 198.23, 0.0, 594.69),
    (993, 103, 2, 71.11, 0.0, 142.22),
    (993, 50, 4, 19.39, 10.0, 69.8),
    (993, 4, 3, 1298.64, 0.0, 3895.92),
    (993, 60, 1, 267.81, 0.0, 267.81),
    (994, 44, 1, 219.45, 15.0, 186.53),
    (995, 30, 3, 85.45, 10.0, 230.72),
    (996, 4, 2, 1298.64, 5.0, 2467.42),
    (996, 95, 3, 1291.88, 5.0, 3681.86),
    (996, 17, 2, 166.79, 20.0, 266.86),
    (997, 50, 2, 19.39, 0.0, 38.78),
    (997, 91, 4, 198.23, 0.0, 792.92),
    (997, 105, 4, 103.14, 20.0, 330.05),
    (997, 24, 4, 1277.81, 0.0, 5111.24),
    (997, 15, 1, 1330.24, 0.0, 1330.24),
    (998, 18, 2, 567.87, 0.0, 1135.74),
    (998, 88, 1, 165.88, 0.0, 165.88),
    (999, 13, 4, 559.57, 15.0, 1902.54),
    (1000, 22, 3, 401.93, 0.0, 1205.79),
    (1000, 28, 3, 701.14, 15.0, 1787.91),
    (1000, 32, 3, 184.53, 0.0, 553.59),
    (1000, 100, 3, 79.32, 0.0, 237.96),
    (1000, 110, 4, 126.77, 10.0, 456.37),
    (1001, 46, 2, 31.86, 5.0, 60.53),
    (1001, 75, 4, 371.74, 5.0, 1412.61),
    (1001, 98, 4, 1250.0, 15.0, 4250.0),
    (1002, 44, 2, 219.45, 10.0, 395.01),
    (1002, 9, 3, 2411.7, 10.0, 6511.59),
    (1002, 94, 3, 1181.28, 15.0, 3012.26),
    (1003, 9, 3, 2411.7, 0.0, 7235.1),
    (1003, 33, 1, 104.34, 0.0, 104.34),
    (1004, 59, 3, 51.71, 0.0, 155.13),
    (1004, 68, 2, 189.84, 15.0, 322.73),
    (1004, 67, 1, 1817.2, 0.0, 1817.2),
    (1004, 60, 3, 267.81, 0.0, 803.43),
    (1004, 76, 4, 440.35, 0.0, 1761.4),
    (1005, 62, 1, 1801.83, 0.0, 1801.83),
    (1005, 32, 1, 184.53, 0.0, 184.53),
    (1005, 11, 4, 1709.28, 0.0, 6837.12),
    (1005, 40, 4, 127.44, 0.0, 509.76),
    (1005, 27, 1, 1649.21, 15.0, 1401.83),
    (1006, 41, 4, 141.08, 10.0, 507.89),
    (1006, 55, 4, 55.76, 5.0, 211.89),
    (1006, 39, 1, 96.97, 0.0, 96.97),
    (1006, 17, 4, 166.79, 10.0, 600.44),
    (1006, 43, 2, 205.9, 0.0, 411.8),
    (1007, 24, 2, 1277.81, 0.0, 2555.62),
    (1008, 13, 3, 559.57, 10.0, 1510.84),
    (1009, 19, 4, 440.04, 15.0, 1496.14),
    (1009, 3, 2, 731.02, 10.0, 1315.84),
    (1009, 13, 2, 559.57, 0.0, 1119.14),
    (1009, 111, 2, 129.71, 0.0, 259.42),
    (1009, 52, 1, 63.01, 20.0, 50.41),
    (1010, 97, 2, 1619.72, 0.0, 3239.44),
    (1010, 6, 3, 1189.16, 0.0, 3567.48),
    (1010, 109, 1, 188.7, 0.0, 188.7),
    (1010, 10, 2, 1780.97, 0.0, 3561.94),
    (1010, 15, 4, 1330.24, 20.0, 4256.77),
    (1011, 39, 4, 96.97, 0.0, 387.88),
    (1011, 24, 3, 1277.81, 5.0, 3641.76),
    (1012, 46, 4, 31.86, 5.0, 121.07),
    (1012, 32, 2, 184.53, 0.0, 369.06),
    (1012, 56, 3, 58.03, 0.0, 174.09),
    (1012, 97, 4, 1619.72, 10.0, 5830.99),
    (1012, 59, 3, 51.71, 0.0, 155.13),
    (1013, 63, 4, 161.59, 20.0, 517.09),
    (1013, 98, 3, 1250.0, 10.0, 3375.0),
    (1013, 115, 1, 147.17, 5.0, 139.81),
    (1014, 37, 4, 95.45, 10.0, 343.62),
    (1014, 113, 3, 114.51, 15.0, 292.0),
    (1015, 71, 2, 368.66, 0.0, 737.32),
    (1015, 114, 4, 122.82, 0.0, 491.28),
    (1015, 44, 2, 219.45, 0.0, 438.9),
    (1015, 96, 3, 2457.16, 0.0, 7371.48),
    (1015, 32, 2, 184.53, 5.0, 350.61),
    (1016, 65, 2, 166.5, 5.0, 316.35),
    (1016, 96, 1, 2457.16, 0.0, 2457.16),
    (1016, 55, 1, 55.76, 0.0, 55.76),
    (1017, 11, 2, 1709.28, 5.0, 3247.63),
    (1017, 13, 1, 559.57, 0.0, 559.57),
    (1017, 51, 1, 42.12, 0.0, 42.12),
    (1017, 115, 2, 147.17, 0.0, 294.34),
    (1017, 101, 4, 104.09, 0.0, 416.36),
    (1018, 116, 2, 59.63, 0.0, 119.26),
    (1018, 92, 3, 227.98, 5.0, 649.74),
    (1018, 3, 1, 731.02, 0.0, 731.02),
    (1018, 72, 1, 443.9, 20.0, 355.12),
    (1018, 115, 4, 147.17, 10.0, 529.81),
    (1019, 50, 3, 19.39, 0.0, 58.17),
    (1019, 108, 4, 94.64, 0.0, 378.56),
    (1020, 65, 1, 166.5, 20.0, 133.2),
    (1020, 109, 1, 188.7, 0.0, 188.7),
    (1020, 86, 4, 160.39, 10.0, 577.4),
    (1021, 29, 1, 2973.66, 0.0, 2973.66),
    (1021, 28, 4, 701.14, 0.0, 2804.56),
    (1021, 43, 3, 205.9, 10.0, 555.93),
    (1021, 77, 1, 474.6, 0.0, 474.6),
    (1021, 15, 2, 1330.24, 5.0, 2527.46),
    (1022, 107, 2, 34.0, 20.0, 54.4),
    (1022, 62, 3, 1801.83, 5.0, 5135.22),
    (1022, 85, 1, 212.56, 0.0, 212.56),
    (1022, 103, 3, 71.11, 0.0, 213.33),
    (1023, 14, 4, 2113.7, 0.0, 8454.8),
    (1024, 115, 1, 147.17, 0.0, 147.17),
    (1024, 117, 4, 65.55, 15.0, 222.87),
    (1025, 16, 2, 519.64, 0.0, 1039.28),
    (1025, 109, 3, 188.7, 0.0, 566.1),
    (1026, 86, 1, 160.39, 0.0, 160.39),
    (1026, 13, 4, 559.57, 0.0, 2238.28),
    (1026, 63, 3, 161.59, 10.0, 436.29),
    (1026, 108, 1, 94.64, 15.0, 80.44),
    (1026, 76, 1, 440.35, 10.0, 396.32),
    (1027, 86, 1, 160.39, 0.0, 160.39),
    (1027, 112, 1, 93.39, 0.0, 93.39),
    (1027, 1, 4, 1201.2, 15.0, 4084.08),
    (1027, 21, 3, 151.63, 0.0, 454.89),
    (1028, 111, 1, 129.71, 0.0, 129.71),
    (1028, 55, 1, 55.76, 0.0, 55.76),
    (1028, 25, 4, 2969.54, 0.0, 11878.16),
    (1029, 10, 2, 1780.97, 0.0, 3561.94),
    (1030, 44, 2, 219.45, 10.0, 395.01),
    (1030, 22, 4, 401.93, 10.0, 1446.95),
    (1030, 42, 1, 213.41, 0.0, 213.41),
    (1031, 55, 3, 55.76, 5.0, 158.92),
    (1031, 50, 2, 19.39, 20.0, 31.02),
    (1031, 78, 1, 105.52, 0.0, 105.52),
    (1032, 38, 4, 85.15, 5.0, 323.57),
    (1032, 114, 1, 122.82, 0.0, 122.82),
    (1032, 19, 4, 440.04, 0.0, 1760.16),
    (1032, 110, 3, 126.77, 0.0, 380.31),
    (1032, 24, 1, 1277.81, 0.0, 1277.81),
    (1033, 1, 4, 1201.2, 5.0, 4564.56),
    (1033, 105, 4, 103.14, 15.0, 350.68),
    (1034, 8, 1, 1917.66, 0.0, 1917.66),
    (1034, 87, 2, 211.54, 0.0, 423.08),
    (1034, 35, 4, 158.7, 0.0, 634.8),
    (1034, 103, 1, 71.11, 0.0, 71.11),
    (1034, 98, 2, 1250.0, 0.0, 2500.0),
    (1035, 68, 3, 189.84, 20.0, 455.62),
    (1035, 25, 3, 2969.54, 0.0, 8908.62),
    (1036, 91, 1, 198.23, 15.0, 168.5),
    (1037, 76, 4, 440.35, 0.0, 1761.4),
    (1037, 17, 3, 166.79, 20.0, 400.3),
    (1037, 106, 1, 85.2, 5.0, 80.94),
    (1037, 1, 4, 1201.2, 5.0, 4564.56),
    (1037, 102, 1, 85.54, 0.0, 85.54),
    (1038, 79, 3, 149.48, 15.0, 381.17),
    (1039, 71, 2, 368.66, 0.0, 737.32),
    (1039, 5, 2, 1274.14, 0.0, 2548.28),
    (1040, 86, 2, 160.39, 0.0, 320.78),
    (1041, 41, 3, 141.08, 5.0, 402.08),
    (1042, 74, 1, 127.99, 10.0, 115.19),
    (1042, 115, 4, 147.17, 5.0, 559.25),
    (1043, 43, 2, 205.9, 0.0, 411.8),
    (1043, 54, 3, 26.49, 0.0, 79.47),
    (1043, 59, 1, 51.71, 0.0, 51.71),
    (1043, 31, 3, 202.24, 0.0, 606.72),
    (1044, 82, 3, 69.1, 0.0, 207.3),
    (1044, 3, 4, 731.02, 5.0, 2777.88),
    (1045, 69, 3, 383.43, 5.0, 1092.78),
    (1046, 91, 3, 198.23, 0.0, 594.69),
    (1046, 17, 4, 166.79, 5.0, 633.8),
    (1046, 40, 3, 127.44, 5.0, 363.2),
    (1046, 15, 3, 1330.24, 0.0, 3990.72),
    (1047, 48, 1, 228.47, 0.0, 228.47),
    (1047, 58, 2, 59.14, 0.0, 118.28),
    (1048, 104, 1, 73.75, 0.0, 73.75),
    (1048, 18, 2, 567.87, 5.0, 1078.95),
    (1048, 68, 4, 189.84, 0.0, 759.36),
    (1048, 50, 1, 19.39, 0.0, 19.39),
    (1048, 29, 1, 2973.66, 0.0, 2973.66),
    (1049, 116, 3, 59.63, 5.0, 169.95),
    (1049, 16, 2, 519.64, 15.0, 883.39),
    (1050, 16, 2, 519.64, 5.0, 987.32),
    (1050, 108, 1, 94.64, 0.0, 94.64),
    (1051, 14, 2, 2113.7, 5.0, 4016.03),
    (1052, 91, 3, 198.23, 0.0, 594.69),
    (1052, 75, 4, 371.74, 0.0, 1486.96),
    (1053, 40, 2, 127.44, 0.0, 254.88),
    (1053, 1, 3, 1201.2, 10.0, 3243.24),
    (1053, 94, 3, 1181.28, 10.0, 3189.46),
    (1053, 58, 2, 59.14, 0.0, 118.28),
    (1053, 75, 2, 371.74, 0.0, 743.48),
    (1054, 108, 1, 94.64, 10.0, 85.18),
    (1054, 32, 1, 184.53, 5.0, 175.3),
    (1054, 57, 3, 25.34, 0.0, 76.02),
    (1055, 8, 4, 1917.66, 5.0, 7287.11),
    (1055, 45, 4, 281.48, 0.0, 1125.92),
    (1055, 23, 1, 179.75, 10.0, 161.78),
    (1056, 8, 1, 1917.66, 0.0, 1917.66),
    (1056, 20, 4, 204.87, 0.0, 819.48),
    (1056, 17, 4, 166.79, 5.0, 633.8),
    (1056, 32, 2, 184.53, 0.0, 369.06),
    (1056, 9, 2, 2411.7, 0.0, 4823.4),
    (1057, 93, 4, 137.35, 0.0, 549.4),
    (1057, 37, 4, 95.45, 0.0, 381.8),
    (1057, 83, 3, 68.44, 10.0, 184.79),
    (1057, 66, 3, 1542.36, 0.0, 4627.08),
    (1057, 48, 1, 228.47, 0.0, 228.47),
    (1058, 45, 4, 281.48, 0.0, 1125.92),
    (1058, 77, 2, 474.6, 0.0, 949.2),
    (1058, 85, 4, 212.56, 10.0, 765.22),
    (1058, 81, 3, 108.79, 0.0, 326.37),
    (1059, 18, 1, 567.87, 10.0, 511.08),
    (1059, 6, 3, 1189.16, 0.0, 3567.48),
    (1059, 13, 4, 559.57, 0.0, 2238.28),
    (1059, 100, 2, 79.32, 0.0, 158.64),
    (1059, 36, 2, 249.56, 15.0, 424.25),
    (1060, 63, 3, 161.59, 5.0, 460.53),
    (1060, 107, 3, 34.0, 15.0, 86.7),
    (1061, 37, 1, 95.45, 0.0, 95.45),
    (1061, 91, 2, 198.23, 0.0, 396.46),
    (1061, 48, 4, 228.47, 5.0, 868.19),
    (1061, 107, 4, 34.0, 0.0, 136.0),
    (1061, 16, 3, 519.64, 15.0, 1325.08),
    (1062, 95, 1, 1291.88, 5.0, 1227.29),
    (1062, 41, 2, 141.08, 0.0, 282.16),
    (1063, 19, 2, 440.04, 0.0, 880.08),
    (1063, 101, 4, 104.09, 0.0, 416.36),
    (1064, 48, 3, 228.47, 5.0, 651.14),
    (1064, 15, 1, 1330.24, 0.0, 1330.24),
    (1065, 57, 2, 25.34, 5.0, 48.15),
    (1065, 83, 3, 68.44, 0.0, 205.32),
    (1066, 109, 4, 188.7, 0.0, 754.8),
    (1066, 111, 1, 129.71, 0.0, 129.71),
    (1067, 50, 3, 19.39, 10.0, 52.35),
    (1067, 105, 2, 103.14, 0.0, 206.28),
    (1068, 78, 1, 105.52, 5.0, 100.24),
    (1068, 52, 4, 63.01, 0.0, 252.04),
    (1068, 64, 3, 1503.32, 5.0, 4284.46),
    (1068, 93, 3, 137.35, 5.0, 391.45),
    (1068, 95, 3, 1291.88, 15.0, 3294.29),
    (1069, 15, 2, 1330.24, 0.0, 2660.48),
    (1070, 38, 4, 85.15, 0.0, 340.6),
    (1070, 51, 1, 42.12, 5.0, 40.01),
    (1070, 15, 1, 1330.24, 0.0, 1330.24),
    (1071, 31, 4, 202.24, 0.0, 808.96),
    (1071, 9, 3, 2411.7, 0.0, 7235.1),
    (1071, 45, 2, 281.48, 10.0, 506.66),
    (1072, 26, 1, 2963.33, 5.0, 2815.16),
    (1073, 71, 1, 368.66, 0.0, 368.66),
    (1073, 34, 4, 118.64, 10.0, 427.1),
    (1073, 5, 1, 1274.14, 0.0, 1274.14),
    (1073, 12, 2, 1781.91, 0.0, 3563.82),
    (1074, 74, 4, 127.99, 0.0, 511.96),
    (1074, 61, 2, 1715.25, 5.0, 3258.98),
    (1074, 106, 2, 85.2, 0.0, 170.4),
    (1074, 107, 4, 34.0, 15.0, 115.6),
    (1074, 50, 3, 19.39, 15.0, 49.44),
    (1075, 57, 3, 25.34, 0.0, 76.02),
    (1075, 91, 2, 198.23, 20.0, 317.17),
    (1075, 20, 2, 204.87, 0.0, 409.74),
    (1076, 105, 2, 103.14, 0.0, 206.28),
    (1076, 35, 2, 158.7, 0.0, 317.4),
    (1076, 55, 3, 55.76, 0.0, 167.28),
    (1076, 71, 4, 368.66, 0.0, 1474.64),
    (1076, 63, 4, 161.59, 0.0, 646.36),
    (1077, 112, 3, 93.39, 15.0, 238.14),
    (1077, 67, 4, 1817.2, 0.0, 7268.8),
    (1078, 82, 4, 69.1, 10.0, 248.76),
    (1079, 16, 3, 519.64, 0.0, 1558.92),
    (1080, 19, 1, 440.04, 0.0, 440.04),
    (1081, 45, 4, 281.48, 10.0, 1013.33),
    (1082, 56, 4, 58.03, 0.0, 232.12),
    (1082, 45, 4, 281.48, 5.0, 1069.62),
    (1082, 99, 2, 2500.38, 0.0, 5000.76),
    (1082, 52, 3, 63.01, 0.0, 189.03),
    (1082, 59, 3, 51.71, 0.0, 155.13),
    (1083, 26, 1, 2963.33, 5.0, 2815.16),
    (1083, 89, 3, 138.34, 0.0, 415.02),
    (1083, 24, 1, 1277.81, 0.0, 1277.81),
    (1083, 17, 3, 166.79, 5.0, 475.35),
    (1083, 108, 4, 94.64, 5.0, 359.63),
    (1084, 6, 1, 1189.16, 0.0, 1189.16),
    (1085, 86, 4, 160.39, 15.0, 545.33),
    (1085, 34, 4, 118.64, 15.0, 403.38),
    (1086, 74, 1, 127.99, 10.0, 115.19),
    (1086, 52, 4, 63.01, 0.0, 252.04),
    (1086, 61, 4, 1715.25, 20.0, 5488.8),
    (1087, 89, 4, 138.34, 0.0, 553.36),
    (1087, 18, 2, 567.87, 10.0, 1022.17),
    (1087, 105, 2, 103.14, 0.0, 206.28),
    (1087, 85, 3, 212.56, 0.0, 637.68),
    (1088, 3, 4, 731.02, 5.0, 2777.88),
    (1088, 70, 1, 415.27, 0.0, 415.27),
    (1089, 64, 1, 1503.32, 0.0, 1503.32),
    (1089, 113, 2, 114.51, 10.0, 206.12),
    (1090, 104, 1, 73.75, 15.0, 62.69),
    (1090, 2, 1, 579.88, 10.0, 521.89),
    (1091, 110, 1, 126.77, 0.0, 126.77),
    (1091, 106, 2, 85.2, 0.0, 170.4),
    (1091, 69, 3, 383.43, 0.0, 1150.29),
    (1092, 54, 4, 26.49, 0.0, 105.96),
    (1092, 55, 1, 55.76, 5.0, 52.97),
    (1092, 12, 1, 1781.91, 0.0, 1781.91),
    (1092, 32, 2, 184.53, 5.0, 350.61),
    (1093, 117, 1, 65.55, 20.0, 52.44),
    (1093, 92, 1, 227.98, 0.0, 227.98),
    (1093, 29, 3, 2973.66, 5.0, 8474.93),
    (1094, 58, 1, 59.14, 5.0, 56.18),
    (1094, 80, 1, 174.72, 10.0, 157.25),
    (1094, 65, 2, 166.5, 5.0, 316.35),
    (1094, 38, 2, 85.15, 0.0, 170.3),
    (1094, 18, 4, 567.87, 10.0, 2044.33),
    (1095, 66, 4, 1542.36, 0.0, 6169.44),
    (1096, 4, 4, 1298.64, 15.0, 4415.38),
    (1096, 12, 2, 1781.91, 0.0, 3563.82),
    (1096, 94, 4, 1181.28, 0.0, 4725.12),
    (1097, 51, 3, 42.12, 0.0, 126.36),
    (1098, 18, 3, 567.87, 0.0, 1703.61),
    (1099, 48, 1, 228.47, 15.0, 194.2),
    (1099, 95, 3, 1291.88, 0.0, 3875.64),
    (1099, 69, 4, 383.43, 0.0, 1533.72),
    (1099, 4, 4, 1298.64, 0.0, 5194.56),
    (1099, 41, 2, 141.08, 5.0, 268.05),
    (1100, 83, 1, 68.44, 10.0, 61.6),
    (1101, 77, 2, 474.6, 5.0, 901.74),
    (1101, 91, 4, 198.23, 5.0, 753.27),
    (1101, 82, 4, 69.1, 0.0, 276.4),
    (1102, 44, 1, 219.45, 0.0, 219.45),
    (1102, 82, 4, 69.1, 10.0, 248.76),
    (1103, 30, 2, 85.45, 0.0, 170.9),
    (1103, 109, 2, 188.7, 10.0, 339.66),
    (1104, 104, 2, 73.75, 15.0, 125.38),
    (1104, 34, 4, 118.64, 0.0, 474.56),
    (1105, 64, 1, 1503.32, 10.0, 1352.99),
    (1105, 114, 3, 122.82, 0.0, 368.46),
    (1105, 101, 3, 104.09, 15.0, 265.43),
    (1106, 33, 3, 104.34, 0.0, 313.02),
    (1106, 48, 1, 228.47, 0.0, 228.47),
    (1106, 29, 4, 2973.66, 15.0, 10110.44),
    (1107, 72, 2, 443.9, 5.0, 843.41),
    (1107, 95, 3, 1291.88, 5.0, 3681.86),
    (1107, 110, 4, 126.77, 5.0, 481.73),
    (1108, 111, 4, 129.71, 0.0, 518.84),
    (1109, 39, 4, 96.97, 20.0, 310.3),
    (1109, 32, 3, 184.53, 15.0, 470.55),
    (1109, 112, 1, 93.39, 0.0, 93.39),
    (1110, 52, 1, 63.01, 0.0, 63.01),
    (1110, 60, 2, 267.81, 0.0, 535.62),
    (1110, 22, 2, 401.93, 5.0, 763.67),
    (1111, 86, 1, 160.39, 0.0, 160.39),
    (1111, 81, 1, 108.79, 0.0, 108.79),
    (1111, 88, 2, 165.88, 0.0, 331.76),
    (1112, 13, 1, 559.57, 0.0, 559.57),
    (1112, 40, 4, 127.44, 5.0, 484.27),
    (1112, 27, 2, 1649.21, 10.0, 2968.58),
    (1112, 44, 4, 219.45, 5.0, 833.91),
    (1112, 30, 3, 85.45, 0.0, 256.35),
    (1113, 52, 2, 63.01, 15.0, 107.12),
    (1113, 46, 3, 31.86, 0.0, 95.58),
    (1114, 29, 3, 2973.66, 0.0, 8920.98),
    (1114, 68, 3, 189.84, 20.0, 455.62),
    (1114, 25, 3, 2969.54, 5.0, 8463.19),
    (1114, 71, 4, 368.66, 20.0, 1179.71),
    (1115, 45, 3, 281.48, 10.0, 760.0),
    (1115, 107, 2, 34.0, 5.0, 64.6),
    (1115, 46, 1, 31.86, 15.0, 27.08),
    (1116, 108, 2, 94.64, 10.0, 170.35),
    (1117, 4, 1, 1298.64, 5.0, 1233.71),
    (1117, 66, 4, 1542.36, 0.0, 6169.44),
    (1117, 33, 1, 104.34, 5.0, 99.12),
    (1117, 68, 1, 189.84, 0.0, 189.84),
    (1118, 56, 4, 58.03, 15.0, 197.3),
    (1119, 23, 2, 179.75, 0.0, 359.5),
    (1120, 8, 3, 1917.66, 5.0, 5465.33),
    (1120, 19, 2, 440.04, 0.0, 880.08),
    (1121, 61, 3, 1715.25, 0.0, 5145.75),
    (1121, 47, 4, 64.89, 0.0, 259.56),
    (1122, 109, 2, 188.7, 0.0, 377.4),
    (1122, 91, 3, 198.23, 0.0, 594.69),
    (1122, 26, 1, 2963.33, 15.0, 2518.83),
    (1122, 83, 2, 68.44, 5.0, 130.04),
    (1122, 39, 4, 96.97, 0.0, 387.88),
    (1123, 116, 1, 59.63, 15.0, 50.69),
    (1123, 101, 2, 104.09, 15.0, 176.95),
    (1123, 44, 1, 219.45, 10.0, 197.51),
    (1123, 104, 2, 73.75, 5.0, 140.13),
    (1124, 32, 3, 184.53, 0.0, 553.59),
    (1124, 51, 4, 42.12, 0.0, 168.48),
    (1124, 73, 4, 308.35, 0.0, 1233.4),
    (1124, 116, 1, 59.63, 0.0, 59.63),
    (1124, 10, 4, 1780.97, 0.0, 7123.88),
    (1125, 2, 2, 579.88, 0.0, 1159.76),
    (1126, 96, 3, 2457.16, 15.0, 6265.76),
    (1126, 40, 2, 127.44, 5.0, 242.14),
    (1127, 35, 4, 158.7, 5.0, 603.06),
    (1127, 53, 3, 56.85, 5.0, 162.02),
    (1128, 58, 1, 59.14, 0.0, 59.14),
    (1128, 23, 3, 179.75, 0.0, 539.25),
    (1129, 22, 1, 401.93, 10.0, 361.74),
    (1129, 47, 2, 64.89, 5.0, 123.29),
    (1129, 102, 1, 85.54, 15.0, 72.71),
    (1129, 31, 4, 202.24, 5.0, 768.51),
    (1129, 23, 4, 179.75, 0.0, 719.0),
    (1130, 76, 4, 440.35, 0.0, 1761.4),
    (1130, 91, 1, 198.23, 0.0, 198.23),
    (1130, 40, 3, 127.44, 0.0, 382.32),
    (1130, 83, 3, 68.44, 5.0, 195.05),
    (1130, 63, 1, 161.59, 10.0, 145.43),
    (1131, 102, 3, 85.54, 0.0, 256.62),
    (1132, 47, 4, 64.89, 0.0, 259.56),
    (1132, 34, 4, 118.64, 0.0, 474.56),
    (1132, 54, 4, 26.49, 10.0, 95.36),
    (1133, 109, 2, 188.7, 5.0, 358.53),
    (1133, 55, 4, 55.76, 0.0, 223.04),
    (1134, 13, 4, 559.57, 10.0, 2014.45),
    (1134, 26, 1, 2963.33, 0.0, 2963.33),
    (1134, 70, 2, 415.27, 0.0, 830.54),
    (1134, 109, 3, 188.7, 5.0, 537.8),
    (1135, 38, 1, 85.15, 0.0, 85.15),
    (1136, 30, 4, 85.45, 0.0, 341.8),
    (1136, 15, 4, 1330.24, 0.0, 5320.96),
    (1136, 77, 1, 474.6, 10.0, 427.14),
    (1136, 51, 4, 42.12, 0.0, 168.48),
    (1136, 69, 4, 383.43, 5.0, 1457.03),
    (1137, 88, 4, 165.88, 10.0, 597.17),
    (1137, 78, 1, 105.52, 10.0, 94.97),
    (1137, 83, 2, 68.44, 10.0, 123.19),
    (1137, 30, 2, 85.45, 10.0, 153.81),
    (1138, 9, 3, 2411.7, 0.0, 7235.1),
    (1138, 6, 2, 1189.16, 5.0, 2259.4),
    (1138, 117, 1, 65.55, 5.0, 62.27),
    (1139, 90, 1, 153.87, 10.0, 138.48),
    (1139, 75, 4, 371.74, 0.0, 1486.96),
    (1139, 99, 4, 2500.38, 5.0, 9501.44),
    (1139, 52, 3, 63.01, 10.0, 170.13),
    (1140, 36, 4, 249.56, 10.0, 898.42),
    (1141, 81, 3, 108.79, 0.0, 326.37),
    (1141, 103, 2, 71.11, 0.0, 142.22),
    (1142, 14, 4, 2113.7, 0.0, 8454.8),
    (1142, 54, 1, 26.49, 0.0, 26.49),
    (1142, 77, 2, 474.6, 5.0, 901.74),
    (1142, 40, 1, 127.44, 0.0, 127.44),
    (1143, 45, 2, 281.48, 0.0, 562.96),
    (1143, 25, 2, 2969.54, 10.0, 5345.17),
    (1143, 102, 2, 85.54, 0.0, 171.08),
    (1143, 88, 1, 165.88, 10.0, 149.29),
    (1144, 107, 2, 34.0, 5.0, 64.6),
    (1144, 8, 3, 1917.66, 0.0, 5752.98),
    (1144, 32, 3, 184.53, 5.0, 525.91),
    (1144, 61, 3, 1715.25, 5.0, 4888.46),
    (1144, 87, 2, 211.54, 5.0, 401.93),
    (1145, 19, 3, 440.04, 10.0, 1188.11),
    (1145, 117, 3, 65.55, 0.0, 196.65),
    (1146, 107, 4, 34.0, 15.0, 115.6),
    (1146, 64, 1, 1503.32, 10.0, 1352.99),
    (1146, 112, 2, 93.39, 10.0, 168.1),
    (1147, 93, 3, 137.35, 0.0, 412.05),
    (1147, 99, 1, 2500.38, 0.0, 2500.38),
    (1148, 55, 4, 55.76, 0.0, 223.04),
    (1148, 90, 3, 153.87, 15.0, 392.37),
    (1148, 85, 1, 212.56, 5.0, 201.93),
    (1148, 40, 2, 127.44, 10.0, 229.39),
    (1148, 47, 4, 64.89, 0.0, 259.56),
    (1149, 80, 2, 174.72, 15.0, 297.02),
    (1149, 61, 4, 1715.25, 0.0, 6861.0),
    (1150, 83, 3, 68.44, 0.0, 205.32),
    (1150, 22, 2, 401.93, 10.0, 723.47),
    (1151, 13, 3, 559.57, 0.0, 1678.71),
    (1151, 84, 3, 273.15, 0.0, 819.45),
    (1151, 102, 1, 85.54, 0.0, 85.54),
    (1151, 40, 3, 127.44, 0.0, 382.32),
    (1151, 38, 3, 85.15, 0.0, 255.45),
    (1152, 54, 3, 26.49, 0.0, 79.47),
    (1152, 36, 4, 249.56, 0.0, 998.24),
    (1152, 2, 1, 579.88, 15.0, 492.9),
    (1153, 117, 1, 65.55, 5.0, 62.27),
    (1153, 106, 1, 85.2, 0.0, 85.2),
    (1153, 23, 2, 179.75, 0.0, 359.5),
    (1153, 50, 3, 19.39, 5.0, 55.26),
    (1153, 111, 2, 129.71, 10.0, 233.48),
    (1154, 77, 3, 474.6, 0.0, 1423.8),
    (1154, 23, 4, 179.75, 0.0, 719.0),
    (1154, 100, 3, 79.32, 0.0, 237.96),
    (1154, 22, 1, 401.93, 5.0, 381.83),
    (1155, 38, 4, 85.15, 0.0, 340.6),
    (1155, 1, 2, 1201.2, 5.0, 2282.28),
    (1156, 95, 4, 1291.88, 0.0, 5167.52),
    (1157, 23, 3, 179.75, 0.0, 539.25),
    (1157, 50, 4, 19.39, 0.0, 77.56),
    (1157, 80, 3, 174.72, 10.0, 471.74),
    (1157, 18, 1, 567.87, 5.0, 539.48),
    (1157, 71, 3, 368.66, 0.0, 1105.98),
    (1158, 73, 4, 308.35, 0.0, 1233.4),
    (1158, 55, 2, 55.76, 0.0, 111.52),
    (1159, 5, 3, 1274.14, 0.0, 3822.42),
    (1160, 56, 3, 58.03, 0.0, 174.09),
    (1160, 58, 4, 59.14, 10.0, 212.9),
    (1160, 76, 4, 440.35, 10.0, 1585.26),
    (1160, 69, 1, 383.43, 15.0, 325.92),
    (1161, 103, 3, 71.11, 10.0, 192.0),
    (1161, 68, 4, 189.84, 0.0, 759.36),
    (1162, 55, 4, 55.76, 5.0, 211.89),
    (1162, 3, 3, 731.02, 5.0, 2083.41),
    (1162, 88, 2, 165.88, 0.0, 331.76),
    (1162, 13, 2, 559.57, 20.0, 895.31),
    (1162, 50, 3, 19.39, 5.0, 55.26),
    (1163, 83, 3, 68.44, 10.0, 184.79),
    (1164, 116, 4, 59.63, 0.0, 238.52),
    (1164, 23, 2, 179.75, 15.0, 305.58),
    (1164, 102, 4, 85.54, 0.0, 342.16),
    (1165, 112, 1, 93.39, 5.0, 88.72),
    (1165, 107, 2, 34.0, 5.0, 64.6),
    (1165, 39, 3, 96.97, 5.0, 276.36),
    (1165, 66, 4, 1542.36, 15.0, 5244.02),
    (1166, 57, 4, 25.34, 5.0, 96.29),
    (1166, 71, 1, 368.66, 20.0, 294.93),
    (1167, 49, 2, 295.15, 0.0, 590.3),
    (1167, 98, 4, 1250.0, 0.0, 5000.0),
    (1167, 61, 2, 1715.25, 10.0, 3087.45),
    (1167, 7, 2, 609.83, 0.0, 1219.66),
    (1167, 115, 3, 147.17, 0.0, 441.51),
    (1168, 26, 3, 2963.33, 0.0, 8889.99),
    (1168, 29, 4, 2973.66, 0.0, 11894.64),
    (1169, 60, 2, 267.81, 5.0, 508.84),
    (1169, 114, 2, 122.82, 0.0, 245.64),
    (1169, 55, 4, 55.76, 0.0, 223.04),
    (1170, 79, 3, 149.48, 5.0, 426.02),
    (1170, 35, 3, 158.7, 10.0, 428.49),
    (1170, 88, 3, 165.88, 0.0, 497.64),
    (1171, 54, 1, 26.49, 0.0, 26.49),
    (1171, 72, 2, 443.9, 0.0, 887.8),
    (1171, 61, 4, 1715.25, 0.0, 6861.0),
    (1171, 37, 3, 95.45, 0.0, 286.35),
    (1172, 8, 1, 1917.66, 10.0, 1725.89),
    (1172, 80, 1, 174.72, 5.0, 165.98),
    (1173, 93, 2, 137.35, 5.0, 260.97),
    (1173, 34, 3, 118.64, 5.0, 338.12),
    (1173, 44, 4, 219.45, 0.0, 877.8),
    (1174, 111, 1, 129.71, 0.0, 129.71),
    (1175, 106, 1, 85.2, 5.0, 80.94),
    (1175, 54, 4, 26.49, 10.0, 95.36),
    (1175, 10, 1, 1780.97, 0.0, 1780.97),
    (1176, 94, 4, 1181.28, 0.0, 4725.12),
    (1176, 40, 1, 127.44, 5.0, 121.07),
    (1176, 61, 4, 1715.25, 5.0, 6517.95),
    (1177, 3, 3, 731.02, 0.0, 2193.06),
    (1177, 95, 3, 1291.88, 0.0, 3875.64),
    (1177, 48, 1, 228.47, 0.0, 228.47),
    (1177, 92, 2, 227.98, 10.0, 410.36),
    (1177, 18, 2, 567.87, 0.0, 1135.74),
    (1178, 80, 4, 174.72, 0.0, 698.88),
    (1178, 69, 2, 383.43, 0.0, 766.86),
    (1179, 28, 1, 701.14, 0.0, 701.14),
    (1179, 71, 3, 368.66, 0.0, 1105.98),
    (1180, 93, 4, 137.35, 5.0, 521.93),
    (1180, 29, 3, 2973.66, 20.0, 7136.78),
    (1181, 12, 3, 1781.91, 0.0, 5345.73),
    (1181, 27, 2, 1649.21, 0.0, 3298.42),
    (1182, 68, 2, 189.84, 5.0, 360.7),
    (1182, 100, 4, 79.32, 5.0, 301.42),
    (1182, 69, 3, 383.43, 0.0, 1150.29),
    (1182, 47, 1, 64.89, 10.0, 58.4),
    (1182, 82, 3, 69.1, 10.0, 186.57),
    (1183, 98, 2, 1250.0, 5.0, 2375.0),
    (1183, 80, 1, 174.72, 5.0, 165.98),
    (1183, 23, 3, 179.75, 5.0, 512.29),
    (1184, 34, 2, 118.64, 0.0, 237.28),
    (1184, 17, 2, 166.79, 0.0, 333.58),
    (1185, 20, 2, 204.87, 0.0, 409.74),
    (1185, 61, 1, 1715.25, 0.0, 1715.25),
    (1185, 116, 4, 59.63, 0.0, 238.52),
    (1186, 25, 1, 2969.54, 10.0, 2672.59),
    (1187, 39, 4, 96.97, 10.0, 349.09),
    (1187, 85, 4, 212.56, 0.0, 850.24),
    (1187, 99, 3, 2500.38, 0.0, 7501.14),
    (1187, 41, 3, 141.08, 0.0, 423.24),
    (1187, 59, 2, 51.71, 5.0, 98.25),
    (1188, 94, 1, 1181.28, 15.0, 1004.09),
    (1188, 103, 4, 71.11, 20.0, 227.55),
    (1188, 14, 4, 2113.7, 5.0, 8032.06),
    (1188, 3, 1, 731.02, 0.0, 731.02),
    (1188, 54, 2, 26.49, 0.0, 52.98),
    (1189, 46, 4, 31.86, 10.0, 114.7),
    (1189, 82, 4, 69.1, 20.0, 221.12),
    (1189, 52, 1, 63.01, 5.0, 59.86),
    (1189, 22, 3, 401.93, 0.0, 1205.79),
    (1190, 64, 2, 1503.32, 5.0, 2856.31),
    (1190, 17, 4, 166.79, 0.0, 667.16),
    (1190, 98, 2, 1250.0, 0.0, 2500.0),
    (1191, 60, 1, 267.81, 0.0, 267.81),
    (1191, 16, 2, 519.64, 15.0, 883.39),
    (1191, 19, 1, 440.04, 0.0, 440.04),
    (1191, 79, 1, 149.48, 10.0, 134.53),
    (1191, 45, 2, 281.48, 15.0, 478.52),
    (1192, 34, 4, 118.64, 10.0, 427.1),
    (1192, 2, 3, 579.88, 15.0, 1478.69),
    (1193, 94, 4, 1181.28, 20.0, 3780.1),
    (1193, 75, 3, 371.74, 0.0, 1115.22),
    (1193, 65, 1, 166.5, 15.0, 141.53),
    (1193, 43, 3, 205.9, 5.0, 586.82),
    (1193, 56, 3, 58.03, 0.0, 174.09),
    (1194, 80, 4, 174.72, 5.0, 663.94),
    (1194, 107, 1, 34.0, 0.0, 34.0),
    (1194, 31, 2, 202.24, 15.0, 343.81),
    (1194, 10, 2, 1780.97, 10.0, 3205.75),
    (1194, 27, 1, 1649.21, 15.0, 1401.83),
    (1195, 36, 1, 249.56, 10.0, 224.6),
    (1195, 86, 1, 160.39, 0.0, 160.39),
    (1195, 97, 1, 1619.72, 0.0, 1619.72),
    (1195, 58, 1, 59.14, 10.0, 53.23),
    (1195, 116, 3, 59.63, 15.0, 152.06),
    (1196, 34, 4, 118.64, 10.0, 427.1),
    (1197, 61, 3, 1715.25, 10.0, 4631.18),
    (1197, 28, 2, 701.14, 5.0, 1332.17),
    (1197, 82, 4, 69.1, 0.0, 276.4),
    (1197, 8, 3, 1917.66, 15.0, 4890.03),
    (1198, 76, 2, 440.35, 0.0, 880.7),
    (1198, 115, 2, 147.17, 15.0, 250.19),
    (1199, 48, 1, 228.47, 0.0, 228.47),
    (1199, 27, 3, 1649.21, 0.0, 4947.63),
    (1200, 36, 2, 249.56, 0.0, 499.12),
    (1200, 42, 3, 213.41, 10.0, 576.21),
    (1200, 103, 3, 71.11, 10.0, 192.0),
    (1200, 71, 4, 368.66, 0.0, 1474.64);


-- ──────────────────────────────────────────────────────────────────
-- 12. PAYMENTS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO payments (order_id, payment_date, amount, payment_method, payment_status, transaction_ref)
VALUES
    (1, '2022-04-22 21:03:22', 3665.23, 'credit_card', 'completed', '13602E16ADF34244B936'),
    (2, '2022-04-05 16:20:12', 7386.98, 'gift_card', 'completed', '582455F1E21B4302B404'),
    (3, '2023-11-19 06:21:29', 6409.77, 'paypal', 'completed', '9084CB5B6FD742BB9DD7'),
    (4, '2025-07-31 19:34:49', 6667.99, 'debit_card', 'completed', 'F8CACFA60A0D43D898A4'),
    (5, '2024-02-23 10:32:28', 324.25, 'paypal', 'completed', '99FB86A7D81346359338'),
    (6, '2024-10-06 20:30:01', 4296.63, 'credit_card', 'completed', 'A00FDB4D177F4077A023'),
    (7, '2022-09-12 02:24:15', 3430.11, 'bank_transfer', 'completed', '42E8626F39E04739BACB'),
    (8, '2024-07-20 01:58:49', 4745.74, 'paypal', 'completed', '0D43A0B9AF8C40178CFB'),
    (9, '2024-03-05 12:02:27', 3443.04, 'credit_card', 'completed', '2AA508090C4B409A949A'),
    (10, '2026-05-06 06:11:26', 983.87, 'bank_transfer', 'completed', 'AF0C363BEEDA4BA597DB'),
    (11, '2021-10-25 17:58:24', 3978.06, 'credit_card', 'completed', 'E40FA13E09204109B86F'),
    (12, '2026-03-21 21:11:00', 3132.62, 'debit_card', 'completed', 'CEE104222AA843B9AC55'),
    (13, '2022-01-04 12:02:30', 600.87, 'bank_transfer', 'completed', '16A019C4E7AE4A5F88D1'),
    (14, '2021-05-13 02:20:34', 107.37, 'credit_card', 'completed', 'FC297E1D255046CA801F'),
    (15, '2022-10-01 04:27:20', 4466.89, 'credit_card', 'completed', 'E1E4B29D955641C1A555'),
    (16, '2021-11-04 22:02:19', 384.04, 'cash', 'completed', 'B79DB899AAC444369ABD'),
    (17, '2022-10-27 22:16:37', 7099.0, 'bank_transfer', 'failed', '7BDD4AB9D349457F91FC'),
    (18, '2022-02-27 07:05:38', 2074.66, 'gift_card', 'completed', 'D8D48CC0474E4024938D'),
    (19, '2024-08-22 15:09:05', 545.4, 'gift_card', 'completed', '53ADA05C895A4647A434'),
    (20, '2021-09-22 03:16:01', 10560.28, 'bank_transfer', 'completed', 'A67707A5B6B14853A961'),
    (21, '2025-02-14 09:32:18', 2933.79, 'credit_card', 'completed', '7F1143C8D0B64567A203'),
    (22, '2022-07-11 10:53:33', 958.54, 'credit_card', 'completed', 'BD9C735AE1DF44759D56'),
    (23, '2024-08-30 05:55:39', 88.75, 'credit_card', 'failed', '6B8470C5AF0345B68385'),
    (24, '2025-03-07 23:55:32', 1021.54, 'credit_card', 'completed', '2C15CD872F364DD1BD48'),
    (25, '2026-04-01 18:46:23', 7715.97, 'credit_card', 'completed', 'EEBBDBF8010B47B4A282'),
    (26, '2023-01-29 19:44:32', 2317.52, 'cash', 'completed', 'A82CEED7AE5B48C9BEF7'),
    (27, '2026-01-01 20:28:19', 1508.26, 'paypal', 'pending', '541BF910A7624E7FABA3'),
    (28, '2022-09-19 20:49:48', 204.42, 'debit_card', 'completed', '86D3F14058274D4DB9E8'),
    (29, '2021-10-22 08:34:00', 11541.56, 'debit_card', 'completed', '38BD01DC33504DC6A06B'),
    (30, '2024-11-09 03:20:27', 6622.9, 'credit_card', 'completed', '3A74BEBE8D8947D694DC'),
    (31, '2026-05-24 13:33:34', 713.82, 'debit_card', 'completed', '2AF799E8AF6E4543B68A'),
    (32, '2022-09-20 14:17:14', 4240.66, 'debit_card', 'completed', 'A3081114B07143DF8BFD'),
    (33, '2023-09-03 07:23:10', 228.95, 'credit_card', 'completed', '120E51CA512848F59831'),
    (34, '2025-04-04 06:14:01', 1922.8, 'debit_card', 'failed', '3AEFE44F9AA248378146'),
    (35, '2024-09-27 10:37:43', 4373.89, 'paypal', 'completed', '138F307742724B42AC5B'),
    (36, '2023-08-19 21:43:50', 928.17, 'gift_card', 'completed', '7B203A966B034E0796E2'),
    (37, '2023-01-02 13:18:15', 497.75, 'bank_transfer', 'completed', '236C42DCA3B148808A84'),
    (38, '2024-08-05 06:16:28', 179.82, 'debit_card', 'completed', 'B42CADF44A2447D5AB4D'),
    (39, '2021-06-11 20:52:10', 291.98, 'credit_card', 'completed', 'DCD4891272594CC3B984'),
    (40, '2023-09-20 08:33:31', 739.21, 'cash', 'completed', '9218B8087B1143BE9A88'),
    (41, '2021-03-13 08:47:26', 5410.2, 'paypal', 'failed', 'AF0E7D4C18364D2CB68B'),
    (42, '2022-01-04 05:09:16', 10186.65, 'paypal', 'completed', '9845C91AB9814917A8C8'),
    (43, '2022-03-30 11:02:16', 1452.1, 'debit_card', 'pending', '23B3F3CC914E46D6A235'),
    (44, '2021-08-15 23:48:18', 1684.47, 'gift_card', 'completed', '0DCBCC46DA0241EAB6B3'),
    (45, '2023-07-29 20:43:58', 2287.95, 'credit_card', 'refunded', 'FEFBE0EA56184C52896F'),
    (46, '2021-12-30 01:02:31', 4797.11, 'bank_transfer', 'completed', '5A7F05DFEEA1488EA2F1'),
    (47, '2023-09-08 08:43:06', 7217.07, 'gift_card', 'completed', '10C366F0D2F84B2D8803'),
    (48, '2024-11-23 05:35:15', 1473.21, 'bank_transfer', 'completed', '56CDC9A4F2DF44A7803C'),
    (49, '2025-06-23 07:17:05', 1686.43, 'gift_card', 'completed', '2EDA98670DBA4F13AB31'),
    (50, '2023-10-03 05:25:01', 238.38, 'paypal', 'completed', '0CE1DEEC64CC44C5B44A'),
    (51, '2023-10-07 11:38:11', 4075.29, 'debit_card', 'failed', 'D373A9B6D8F348FBA8C4'),
    (52, '2022-01-10 17:12:09', 3400.01, 'credit_card', 'completed', 'BAC0D7D79D044D2084A5'),
    (53, '2026-05-14 12:04:32', 4007.78, 'paypal', 'completed', 'F943D11FA0EC4BC6B77A'),
    (54, '2023-06-23 05:07:18', 298.17, 'cash', 'completed', 'A7DD9067962D44C78A4F'),
    (55, '2025-09-08 21:36:55', 1587.45, 'paypal', 'completed', 'C1427987370D489EB52F'),
    (56, '2025-04-14 04:24:52', 5671.79, 'credit_card', 'pending', '1CD4F4F931EE4025B233'),
    (57, '2021-11-27 09:06:19', 5189.18, 'debit_card', 'completed', '6B81401BFC8D4B378B5B'),
    (58, '2024-05-12 05:09:43', 360.27, 'paypal', 'completed', 'D8544DEB0B2549C6B67D'),
    (59, '2023-01-22 04:42:22', 18330.42, 'credit_card', 'completed', 'CE0B7AE4547649C9B327'),
    (60, '2021-01-25 11:29:56', 8725.82, 'paypal', 'completed', '6AF8B4A3F6CF47CC8903'),
    (61, '2025-03-18 07:06:37', 651.91, 'paypal', 'completed', 'C229150E2E064A768E2C'),
    (62, '2024-07-19 03:37:52', 5528.02, 'credit_card', 'completed', '50ECAB427E724FECB7E3'),
    (63, '2023-08-02 10:12:35', 3961.4, 'gift_card', 'completed', 'CE7F954D11434491BEE3'),
    (64, '2022-04-15 17:39:35', 4068.1, 'debit_card', 'completed', 'FE10A15B7156455A84B6'),
    (65, '2021-11-05 12:16:55', 1179.88, 'credit_card', 'completed', '8B6EB676390F48E295F2'),
    (66, '2024-07-13 09:44:04', 3950.26, 'cash', 'completed', '5A182682B3294CA484C9'),
    (67, '2022-03-29 08:18:08', 12593.9, 'paypal', 'completed', '73EB20F2A1004A56ACA2'),
    (68, '2023-05-20 06:54:51', 2107.73, 'credit_card', 'failed', '49F78F712554424EA34C'),
    (69, '2025-06-08 17:45:11', 6170.33, 'paypal', 'completed', '55FA4628760E4F789579'),
    (70, '2022-01-20 16:32:04', 182.03, 'gift_card', 'completed', '4B6777CC56894988A717'),
    (71, '2025-11-15 12:36:31', 12821.65, 'credit_card', 'completed', '73382268FCA249A4A46F'),
    (72, '2021-08-31 13:40:19', 11234.01, 'debit_card', 'completed', '23E2D3EEA0AC4D289045'),
    (73, '2022-10-23 15:54:37', 4516.33, 'paypal', 'completed', '97080B5184584DF9B04F'),
    (74, '2025-11-12 09:53:12', 3343.6, 'credit_card', 'completed', '0747C525DB1F43DFAE97'),
    (75, '2025-02-03 23:46:54', 2615.03, 'debit_card', 'completed', 'D3915CCC9EC648EF904B'),
    (76, '2024-10-08 16:29:51', 257.15, 'bank_transfer', 'completed', 'B63FAD2FB6154627A4A5'),
    (77, '2022-08-21 21:00:36', 7493.68, 'debit_card', 'refunded', '6155D787804F4CE3B698'),
    (78, '2025-03-07 23:27:09', 948.02, 'credit_card', 'completed', 'AB0E65222BC442678ADC'),
    (79, '2021-11-05 14:53:08', 5831.42, 'paypal', 'completed', 'CE12DAC7AE6E4F5D8FA9'),
    (80, '2022-03-19 15:02:43', 895.92, 'gift_card', 'completed', '2783345BA7B146E2A962'),
    (81, '2021-07-23 09:28:05', 849.07, 'credit_card', 'completed', '8623E61FDAA04916BC0F'),
    (82, '2023-02-01 17:17:54', 6699.94, 'debit_card', 'completed', '5764D1D3E9E2453AB043'),
    (83, '2023-05-25 00:51:24', 12192.54, 'debit_card', 'completed', '8058CAFFC37A4522A625'),
    (84, '2026-02-06 15:56:44', 1533.08, 'paypal', 'completed', 'B634DF9BA28C4B11BCAF'),
    (85, '2025-08-01 12:51:18', 2829.55, 'paypal', 'completed', '0FAA68378C4A4E2DA738'),
    (86, '2022-11-19 02:45:58', 12906.94, 'paypal', 'completed', '5F274A53E159439295D5'),
    (87, '2022-02-03 11:29:38', 1226.87, 'paypal', 'completed', '326C5B14073644229026'),
    (88, '2024-08-20 00:15:49', 425.72, 'credit_card', 'completed', '02DF632DEB2447E78AC7'),
    (89, '2022-11-29 15:36:41', 3913.26, 'cash', 'completed', '46FB2B27971D4B4EA616'),
    (90, '2026-04-29 22:13:49', 7010.51, 'gift_card', 'completed', '37D45525F91A4D7389D9'),
    (91, '2023-01-11 13:26:03', 267.24, 'bank_transfer', 'refunded', '8D1F98594C2C4EF4A118'),
    (92, '2022-01-23 19:48:44', 5514.27, 'bank_transfer', 'completed', '4D6C2824B9A84B5FBD09'),
    (93, '2026-03-13 12:23:24', 2173.65, 'debit_card', 'completed', 'BD4CAD2870FC471389C5'),
    (94, '2024-11-09 17:45:35', 1500.94, 'paypal', 'completed', 'BA1C393BCF8D4C72B855'),
    (95, '2026-04-13 22:41:51', 837.16, 'bank_transfer', 'completed', '304F071FCD1646DFBBBA'),
    (96, '2023-08-18 00:38:57', 4269.88, 'bank_transfer', 'completed', 'C72B2A466CA94A39A7BA'),
    (97, '2026-02-07 10:02:06', 2078.26, 'paypal', 'completed', 'A38C9383CC8143769A77'),
    (98, '2021-01-21 21:57:52', 32.69, 'credit_card', 'completed', '33FA717BDB74480B864E'),
    (99, '2021-04-03 06:25:00', 9460.64, 'credit_card', 'completed', 'AFD82B65408D4CDAA20A'),
    (100, '2024-03-23 07:23:43', 479.0, 'debit_card', 'completed', '0DB22B3E70CC4194BC58'),
    (101, '2022-01-04 04:11:09', 9801.83, 'credit_card', 'completed', 'CC5814D9B4884769A75B'),
    (102, '2022-04-07 14:35:09', 309.59, 'cash', 'completed', '542FCEB71B4B469BA088'),
    (103, '2026-03-26 09:56:24', 14346.56, 'cash', 'completed', '360AB672469E41CB8A00'),
    (104, '2024-11-05 13:46:58', 3488.24, 'paypal', 'completed', '58BBC9DDABFF4694A06F'),
    (105, '2024-09-05 18:39:34', 5397.88, 'credit_card', 'completed', '044B18EDE1104898B471'),
    (106, '2021-08-10 16:34:35', 11268.19, 'bank_transfer', 'completed', 'E6B05B51FFE64BD6BCD3'),
    (107, '2024-05-20 01:03:32', 7038.04, 'credit_card', 'completed', '821F42704FB94643AFBA'),
    (108, '2021-04-04 13:34:20', 8355.68, 'credit_card', 'completed', '69AF5CE0EF044CEEBF53'),
    (109, '2025-11-01 07:33:59', 1609.88, 'credit_card', 'completed', '86451A7590A148D6802C'),
    (110, '2026-02-18 14:34:26', 18015.85, 'credit_card', 'completed', '1BE8D45D0A1C47B7A8D4'),
    (111, '2024-04-30 03:53:22', 720.53, 'cash', 'completed', '58856000C2F34E73B113'),
    (112, '2022-05-09 08:27:16', 5186.9, 'credit_card', 'completed', '1925D28434ED4D8394B2'),
    (113, '2021-10-11 01:18:29', 2417.98, 'paypal', 'completed', 'B2238B169AE94D2DACAD'),
    (114, '2023-01-15 17:12:24', 895.62, 'cash', 'failed', 'EE6F7BB5BBD54CB0BDDF'),
    (115, '2021-11-23 22:36:42', 670.43, 'debit_card', 'completed', '6623D84D3A4449AC9F56'),
    (116, '2023-02-18 15:17:04', 1105.14, 'gift_card', 'completed', '803EBCADF95543408F50'),
    (117, '2022-06-15 00:31:41', 4265.09, 'paypal', 'completed', '9FB570B7C73A4E15B735'),
    (118, '2024-10-11 10:26:48', 2386.01, 'cash', 'completed', '10C3C512931B44EA838F'),
    (119, '2021-03-28 20:13:04', 3300.88, 'credit_card', 'refunded', '509C365307B04CABA586'),
    (120, '2026-04-25 19:41:16', 2758.49, 'debit_card', 'completed', '202135F9967048819304'),
    (121, '2021-11-13 08:11:16', 5599.52, 'debit_card', 'completed', 'A79B2F3D8E01478FB208'),
    (122, '2023-08-18 13:54:22', 4779.87, 'paypal', 'completed', '8B64B597EFBC49B28E1A'),
    (123, '2025-06-07 07:20:42', 3762.68, 'paypal', 'completed', 'DF60A51A3A1A48C2AF97'),
    (124, '2021-07-20 18:25:01', 3046.75, 'credit_card', 'completed', 'AED8E774C34F4FB48905'),
    (125, '2024-08-17 07:40:39', 11411.11, 'bank_transfer', 'completed', '291946E4CEE1404FB2E0'),
    (126, '2025-01-02 11:21:28', 10550.97, 'debit_card', 'completed', 'EF38A0A412DD4A0E8517'),
    (127, '2021-08-12 12:50:33', 18185.15, 'credit_card', 'completed', 'C57C349B6C624FA8B07B'),
    (128, '2022-05-20 10:53:00', 16742.08, 'debit_card', 'completed', '8258E7998A114C76A79E'),
    (129, '2023-03-23 22:39:44', 429.69, 'paypal', 'completed', 'EB3FD0BAB4B44D5A90AF'),
    (130, '2024-08-19 06:42:39', 2408.65, 'credit_card', 'completed', '6B8ACB7358624A4C87C0'),
    (131, '2023-08-16 06:24:37', 784.54, 'debit_card', 'pending', 'E12CFD2C2ACA41068A35'),
    (132, '2022-09-08 05:47:50', 4743.53, 'credit_card', 'completed', 'A3CC4A91992D436B937C'),
    (133, '2021-04-03 04:55:20', 2350.88, 'credit_card', 'completed', '47D339D387374805B5D4'),
    (134, '2023-11-12 15:01:06', 1424.49, 'debit_card', 'completed', 'C2C58641C76F4E7E8170'),
    (135, '2022-01-17 20:33:51', 7212.47, 'credit_card', 'completed', '648E5A209AB54CCF9DAE'),
    (136, '2024-10-12 10:48:07', 4951.37, 'debit_card', 'completed', 'BF18D4C011EA4A2F97ED'),
    (137, '2021-09-28 14:51:35', 1698.48, 'debit_card', 'completed', '3A7338FAFB104D46953C'),
    (138, '2022-01-18 10:59:36', 8575.11, 'credit_card', 'completed', 'B05171AF7DCA4E21AB32'),
    (139, '2022-08-08 14:22:20', 419.68, 'paypal', 'completed', '3A13F4F081BA4F46A5A1'),
    (140, '2025-07-23 01:46:27', 3274.86, 'bank_transfer', 'completed', 'E86961D014974CA2B58B'),
    (141, '2023-05-31 11:26:02', 1552.69, 'credit_card', 'completed', 'CFB7A39FEA8645049947'),
    (142, '2025-03-19 00:06:42', 4446.45, 'gift_card', 'completed', 'F409F8DAAAD14B03ADFE'),
    (143, '2024-08-05 12:04:14', 13028.56, 'paypal', 'completed', 'AAA092F7815B43E5BA59'),
    (144, '2025-11-29 04:08:32', 2633.96, 'debit_card', 'completed', '62799F0B499041C39DE4'),
    (145, '2024-01-10 18:18:13', 2948.35, 'credit_card', 'refunded', '6E096B264C25488882AB'),
    (146, '2024-03-12 06:02:17', 301.26, 'paypal', 'completed', 'C302679E51B640A4B330'),
    (147, '2021-12-29 09:08:13', 4250.92, 'debit_card', 'completed', '3A60BFDD26D4422C8493'),
    (148, '2021-07-17 06:58:35', 6676.97, 'credit_card', 'completed', '96D647CA522742F3AF3E'),
    (149, '2022-02-05 05:32:59', 5386.79, 'debit_card', 'completed', 'E945AF5AE6E6448A8E92'),
    (150, '2023-02-11 13:41:19', 1797.15, 'cash', 'completed', '97A5BBF556574EEABC95'),
    (151, '2026-01-13 14:43:57', 5679.21, 'debit_card', 'completed', 'C5649BBEEA904D0FB4BB'),
    (152, '2025-07-24 00:20:21', 624.51, 'credit_card', 'completed', 'DC2B20BEE2E146669E23'),
    (153, '2021-12-08 17:52:30', 9397.65, 'gift_card', 'completed', '5B8A571EC02541F79994'),
    (154, '2026-01-04 10:51:37', 3179.34, 'gift_card', 'completed', '854534AD45CB494EA736'),
    (155, '2023-03-16 21:22:27', 4272.36, 'bank_transfer', 'pending', '12F6F1755287460D9F94'),
    (156, '2025-06-06 11:02:05', 395.64, 'credit_card', 'failed', 'D760EEF06CA2458586A2'),
    (157, '2021-09-20 20:06:25', 4252.59, 'bank_transfer', 'completed', '8A0129558985461897BF'),
    (158, '2025-06-15 12:36:46', 3729.62, 'gift_card', 'failed', '1553528E69BA40A39CC4'),
    (159, '2023-06-21 05:42:41', 3556.16, 'debit_card', 'completed', '2E2BBF9362924E928055'),
    (160, '2023-07-16 23:06:12', 608.0, 'debit_card', 'completed', 'FA62E892A887477FA84C'),
    (161, '2021-01-22 12:10:50', 16074.52, 'debit_card', 'completed', '68B33244BC374350AB63'),
    (162, '2024-01-22 02:40:58', 17143.38, 'credit_card', 'failed', 'C0A1D0EEAA084533B079'),
    (163, '2022-01-05 02:37:47', 5978.97, 'paypal', 'completed', '36482F0E7DEF466ABCC0'),
    (164, '2024-09-11 10:48:52', 6730.9, 'credit_card', 'completed', '26BED9D6F87245C6AC81'),
    (165, '2025-04-10 16:57:00', 1229.97, 'cash', 'completed', '49A94B77C81448B78C20'),
    (166, '2021-06-08 08:28:26', 9598.45, 'credit_card', 'completed', 'D9E2517D3443473AB9E2'),
    (167, '2023-09-27 07:20:14', 2287.27, 'credit_card', 'completed', 'DE685A96F35D48488C59'),
    (168, '2022-10-15 13:21:04', 142.64, 'credit_card', 'completed', '39F772B481574B6C9CB2'),
    (169, '2021-08-21 16:11:39', 9127.73, 'credit_card', 'failed', 'F21B3E6D27234873A495'),
    (170, '2025-04-15 12:01:39', 1277.69, 'bank_transfer', 'completed', '84DC115D77F8461AA7CB'),
    (171, '2025-05-02 06:49:51', 7276.66, 'credit_card', 'completed', '9D48B7677AB545078B66'),
    (172, '2022-06-16 15:12:08', 3033.91, 'paypal', 'completed', 'B2FF8CDF4613477B9C1B'),
    (173, '2025-09-03 13:18:04', 335.19, 'credit_card', 'completed', '6124A4B60D57489CA2E4'),
    (174, '2025-07-28 15:23:18', 12959.51, 'debit_card', 'completed', 'E6F69545AF5849EB9235'),
    (175, '2022-07-18 22:48:50', 11536.88, 'cash', 'completed', 'C7AEBFE1605241C0800F'),
    (176, '2021-08-12 21:02:23', 1023.74, 'gift_card', 'completed', 'D4E8552F742A45B1BB49'),
    (177, '2022-03-20 03:44:53', 15707.7, 'debit_card', 'failed', '81530FB5713249AAB47C'),
    (178, '2021-05-19 08:24:16', 12998.25, 'credit_card', 'completed', '2E2EDAD2139241E8BEF6'),
    (179, '2022-11-29 14:15:28', 2066.02, 'credit_card', 'completed', '4363A23C03B045D0A69F'),
    (180, '2026-04-26 01:31:11', 6797.75, 'bank_transfer', 'completed', 'ED75DCE58E384499A7EA'),
    (181, '2024-10-19 20:33:20', 11872.15, 'debit_card', 'completed', '1AC2B6DBE6564547BAD0'),
    (182, '2023-02-04 00:50:19', 3499.71, 'debit_card', 'completed', 'F410C9CC7A8144EC9F59'),
    (183, '2023-12-22 09:18:25', 398.91, 'paypal', 'completed', 'A696199306EF4F18962C'),
    (184, '2024-08-12 12:45:45', 234.55, 'credit_card', 'completed', '72B631E2FF2E41D58480'),
    (185, '2021-08-28 11:21:18', 10440.85, 'paypal', 'pending', '972E5FFFF51B474FA185'),
    (186, '2024-08-09 03:41:13', 2410.3, 'debit_card', 'completed', '5D90590D752B4F4BAA27'),
    (187, '2026-02-23 22:41:19', 8298.84, 'paypal', 'completed', 'E4FF8121FE3A413FB23F'),
    (188, '2025-08-10 14:31:50', 2727.62, 'credit_card', 'completed', '56CB3236723745DEBB5B'),
    (189, '2021-05-22 22:37:36', 120.1, 'debit_card', 'completed', '7197A39D965C4A7EB8D8'),
    (190, '2021-10-30 13:56:01', 1723.89, 'credit_card', 'completed', '7FA5A20E5CE74D2CA023'),
    (191, '2025-04-08 12:01:30', 17989.1, 'credit_card', 'completed', 'B703CD0A417246F0A679'),
    (192, '2025-08-27 21:44:14', 1623.59, 'credit_card', 'completed', 'BAFCBE057FAF411CB81C'),
    (193, '2022-07-11 18:04:43', 8146.84, 'paypal', 'completed', '5087C77D5AEB45F9B4EA'),
    (194, '2024-03-07 00:14:53', 595.44, 'credit_card', 'completed', 'E93A30CB2F704773B308'),
    (195, '2024-12-07 06:21:19', 2780.76, 'credit_card', 'completed', '6CB8DA41A4994ED7AD7F'),
    (196, '2021-12-22 05:01:48', 762.44, 'credit_card', 'completed', '1A1898F3D88849B6B72A'),
    (197, '2024-01-29 03:47:13', 5246.51, 'debit_card', 'completed', '53927EFEF6574639921D'),
    (198, '2021-10-15 05:20:10', 9385.09, 'bank_transfer', 'failed', '6576EE6E1A074957BE10'),
    (199, '2025-12-03 08:01:35', 5170.18, 'debit_card', 'completed', 'FD19BBC22BF444CC8EEB'),
    (200, '2026-05-25 16:39:04', 13883.54, 'cash', 'completed', '41E4B0F995684E7E86C3'),
    (201, '2024-11-17 18:14:13', 1142.89, 'paypal', 'completed', '230647494C264C2599CE'),
    (202, '2026-05-25 02:41:45', 4525.71, 'credit_card', 'completed', '11311BABAECD4D4F8986'),
    (203, '2024-12-29 22:17:35', 1383.2, 'cash', 'refunded', '85E14465EEFF423DB284'),
    (204, '2023-01-21 12:30:17', 12099.36, 'credit_card', 'pending', '5AC373A0732E4D148025'),
    (205, '2026-05-31 20:08:24', 461.54, 'debit_card', 'completed', '4A8E1DADCEF44ABFB973'),
    (206, '2025-09-14 20:24:22', 12305.92, 'credit_card', 'completed', 'F2D89FE58B7942BD9ECB'),
    (207, '2023-07-12 12:49:49', 634.67, 'credit_card', 'completed', 'B4B8AA260A254FF1878D'),
    (208, '2026-01-26 09:20:37', 682.43, 'debit_card', 'completed', 'A213AF6CB6114A9B80A2'),
    (209, '2026-04-28 22:40:17', 1781.95, 'debit_card', 'completed', 'B40B6F943E714B298E14'),
    (210, '2022-01-13 18:54:37', 403.39, 'cash', 'completed', '18D04518E00D44DAB672'),
    (211, '2022-03-07 12:28:24', 960.1, 'debit_card', 'completed', '5365B2A6DD2D4CDA990E'),
    (212, '2022-08-23 19:30:03', 633.56, 'credit_card', 'completed', 'CD9A4674B5A94C1EB5C5'),
    (213, '2024-08-09 12:13:41', 1291.37, 'debit_card', 'completed', 'F1B720E6280249BBA811'),
    (214, '2026-02-20 04:43:45', 10051.81, 'paypal', 'completed', 'FD8F7D5859634407B953'),
    (215, '2022-12-24 20:25:51', 2017.33, 'credit_card', 'completed', 'BA5DAD39339B4B0F955D'),
    (216, '2021-05-26 09:57:09', 3463.73, 'gift_card', 'refunded', '5126B3B0B82D41149BA6'),
    (217, '2021-08-04 19:51:27', 1648.18, 'credit_card', 'completed', '0CA54F736AE54C78B49C'),
    (218, '2021-05-29 15:10:45', 9376.66, 'bank_transfer', 'completed', '3D970E50EA86415A8C2D'),
    (219, '2023-03-18 20:05:03', 1221.16, 'paypal', 'failed', '4265AFDEF0CE46AC9623'),
    (220, '2025-12-18 17:59:27', 816.58, 'debit_card', 'completed', '3D8B4264C663420FA9DA'),
    (221, '2023-09-28 03:59:03', 19530.14, 'credit_card', 'completed', '83D51CC9054F4E36BEA0'),
    (222, '2022-08-07 20:17:20', 5965.9, 'credit_card', 'completed', '3F2D4795B8E74383B3DC'),
    (223, '2022-09-23 18:26:20', 11070.39, 'credit_card', 'completed', '06B220A3DB5C4177AB5E'),
    (224, '2022-08-05 02:15:01', 1152.22, 'debit_card', 'completed', 'B8BC1833AD2A4FBAA93B'),
    (225, '2022-08-26 13:12:25', 2075.92, 'credit_card', 'completed', 'F93726DD945849D79D63'),
    (226, '2024-06-10 22:22:06', 9634.66, 'credit_card', 'completed', '4C228BD7F4B44D61B317'),
    (227, '2022-07-30 00:45:38', 6140.38, 'cash', 'completed', '060EC9D041F44CC1B9E7'),
    (228, '2025-12-17 19:39:35', 5551.19, 'bank_transfer', 'pending', 'A95E773154114D08A1A5'),
    (229, '2023-11-09 22:29:02', 2938.4, 'bank_transfer', 'completed', '8F70AE16A5B8409EB5E2'),
    (230, '2021-03-06 10:13:17', 7921.17, 'credit_card', 'completed', 'D3A3FD92B20B4ABABEE8'),
    (231, '2023-04-05 07:47:51', 1171.31, 'paypal', 'failed', '16BBBA06300C4518AC94'),
    (232, '2023-06-16 01:36:57', 3247.17, 'paypal', 'completed', 'C4E70ABCA893453CB217'),
    (233, '2023-07-05 16:57:05', 2044.53, 'credit_card', 'pending', '3A7C5A5D56F34DB4878A'),
    (234, '2021-06-05 01:16:58', 746.96, 'credit_card', 'completed', '8A15D86F83C9498CB15A'),
    (235, '2024-08-05 20:48:09', 410.29, 'paypal', 'completed', '2457EEF728474D4EBB6C'),
    (236, '2023-02-16 19:19:32', 21108.0, 'gift_card', 'completed', 'F3A52663BDAA406FA5FC'),
    (237, '2024-07-31 18:35:02', 653.26, 'cash', 'completed', '223644FDFCDD471E978E'),
    (238, '2021-01-19 12:25:34', 9936.7, 'paypal', 'completed', '00675AE7C11642EBA987'),
    (239, '2025-03-19 20:48:30', 398.5, 'credit_card', 'completed', 'CB0B2FBFE54C40208EBB'),
    (240, '2025-06-04 01:06:46', 9479.39, 'debit_card', 'completed', 'A431612DE1B049F6BC57'),
    (241, '2023-03-20 15:58:05', 2227.5, 'credit_card', 'completed', '4E79AC7531F54C77A412'),
    (242, '2024-04-13 17:11:58', 1041.25, 'debit_card', 'completed', '309671660BE8423E97A8'),
    (243, '2023-07-30 15:42:21', 7771.16, 'debit_card', 'completed', 'EF01B53A9C00464AA52A'),
    (244, '2023-05-15 19:22:42', 10288.77, 'paypal', 'completed', 'E24FBBD9F15D421CAC0F'),
    (245, '2025-12-21 23:45:24', 12332.74, 'bank_transfer', 'completed', '0F4D5429846042C999FC'),
    (246, '2024-07-29 01:44:25', 494.31, 'debit_card', 'failed', 'EAABF45B3EC14F9CACF4'),
    (247, '2021-12-01 12:38:10', 2903.61, 'credit_card', 'completed', '8E08C6A5A3FC42EBBB21'),
    (248, '2022-09-25 09:59:48', 1736.43, 'paypal', 'completed', 'DBC5F1D6FC094FD0B012'),
    (249, '2025-11-08 01:56:29', 1930.82, 'paypal', 'completed', '39B02C1841D94F49B995'),
    (250, '2023-02-21 01:08:21', 8476.65, 'cash', 'completed', 'AE930EB3039B49BE85DE'),
    (251, '2021-04-04 03:59:27', 8635.89, 'paypal', 'completed', '3B3C7E50BB7E477686A5'),
    (252, '2026-02-02 09:10:10', 455.99, 'credit_card', 'completed', '07DA94BDF3A141ADB918'),
    (253, '2025-01-23 20:37:05', 4655.58, 'paypal', 'completed', 'F1D31121F5AA4D73B73B'),
    (254, '2024-03-18 00:09:38', 2154.6, 'credit_card', 'completed', 'CF417F4948524073B94E'),
    (255, '2023-02-16 11:54:53', 4147.14, 'credit_card', 'completed', '72254EB8753943329465'),
    (256, '2024-05-20 23:44:30', 244.55, 'debit_card', 'completed', '7DBCDC12FF0B4DE4A764'),
    (257, '2024-02-15 00:51:16', 1325.03, 'credit_card', 'completed', 'EF1B9B9B592149FCB0C7'),
    (258, '2022-10-17 21:01:23', 5928.01, 'credit_card', 'completed', '7AD2CBF061FC463B9594'),
    (259, '2021-07-05 13:04:57', 5271.89, 'cash', 'completed', '3D942AF7B0A84C028213'),
    (260, '2021-03-26 23:48:05', 4940.25, 'gift_card', 'completed', '00E8C835956F45D6BEF7'),
    (261, '2023-05-03 12:30:43', 9900.19, 'paypal', 'completed', 'B4668FF9BD8A4D34B246'),
    (262, '2023-09-25 07:23:12', 1189.3, 'bank_transfer', 'completed', '038A6BD2EE28443FBA27'),
    (263, '2021-09-05 03:38:47', 13395.41, 'paypal', 'completed', '447D1EB5FE4C4B27BEEA'),
    (264, '2022-12-10 05:29:53', 1761.57, 'debit_card', 'completed', '8BC8A7A8E17647F8A28D'),
    (265, '2024-07-16 09:36:48', 6500.13, 'credit_card', 'completed', 'ED58840CDE264CA08A29'),
    (266, '2026-01-11 21:21:46', 5905.89, 'paypal', 'pending', 'CF61DBCDF7894AD7BBD6'),
    (267, '2025-06-28 16:38:09', 12719.51, 'debit_card', 'completed', '95DAB4A55A94436282CF'),
    (268, '2025-10-08 07:41:44', 8572.63, 'debit_card', 'completed', '6F7E0112848940DDAF15'),
    (269, '2023-11-28 05:58:23', 233.31, 'paypal', 'completed', '6F5A0A4776504A4DA2AB'),
    (270, '2022-06-03 03:25:35', 6521.73, 'credit_card', 'completed', 'A2ADE940264443148FA2'),
    (271, '2022-02-01 00:03:00', 3253.13, 'credit_card', 'completed', 'BCF11CF341A54C0BAC25'),
    (272, '2022-04-19 02:01:34', 3477.09, 'debit_card', 'failed', '1DA8328FC42D4925B8D4'),
    (273, '2023-09-17 19:02:11', 2896.04, 'credit_card', 'completed', '436FEBF1719B48AD9B8B'),
    (274, '2024-09-25 16:54:17', 477.0, 'debit_card', 'completed', 'A97103481DE94799AE3D'),
    (275, '2025-08-05 05:24:24', 1747.3, 'debit_card', 'completed', '0FEBC0A9881643DDB955'),
    (276, '2022-01-08 15:58:07', 4689.4, 'credit_card', 'completed', 'CD9932EFFF0349EBA837'),
    (277, '2021-04-30 04:17:37', 5288.7, 'paypal', 'completed', '85C12F12383B4DA9B244'),
    (278, '2025-05-24 03:19:57', 1410.1, 'credit_card', 'completed', '2371570EC8D54E4E8CE3'),
    (279, '2025-07-07 02:41:57', 639.14, 'debit_card', 'completed', '64C04BB89321424FBB72'),
    (280, '2021-12-16 03:09:18', 780.1, 'paypal', 'refunded', 'E88F5FF7B3D747F0B6B2'),
    (281, '2021-04-01 00:23:14', 2339.92, 'credit_card', 'completed', '36A735F7CC7448DA994E'),
    (282, '2025-11-14 17:43:06', 7232.37, 'credit_card', 'completed', 'C7478260C25C4768BC04'),
    (283, '2022-05-03 18:48:23', 1226.45, 'credit_card', 'completed', '68868004D9CB4908908B'),
    (284, '2023-05-30 13:07:59', 2670.34, 'credit_card', 'completed', '84DADBEFB2A94EFEA2D9'),
    (285, '2025-04-17 11:16:00', 11388.7, 'debit_card', 'completed', 'D482150670244D65ACB1'),
    (286, '2024-03-16 00:52:38', 12208.89, 'paypal', 'completed', '7792FA2C47D94DD6A2B5'),
    (287, '2024-05-08 01:14:42', 14827.41, 'gift_card', 'refunded', 'BC730FD12F7548838197'),
    (288, '2026-03-31 08:56:43', 3008.05, 'bank_transfer', 'completed', '439B83E4DABF477492FD'),
    (289, '2023-09-27 22:09:38', 5190.52, 'credit_card', 'completed', 'C9410224ADB642AC9A95'),
    (290, '2022-06-15 10:16:41', 11125.23, 'debit_card', 'completed', '89694579122F4B5A8992'),
    (291, '2025-01-06 19:05:32', 6453.45, 'credit_card', 'completed', '1DE030C82D6A4B1DBE2D'),
    (292, '2024-11-25 19:53:57', 717.05, 'paypal', 'completed', 'BDFA99D387DC4A289522'),
    (293, '2023-05-04 02:19:52', 4690.35, 'credit_card', 'completed', '977BAB31DBD448F8B67A'),
    (294, '2026-03-29 12:50:38', 6200.6, 'gift_card', 'completed', 'CE581CFDB4C64D0B9DD5'),
    (295, '2023-10-14 06:04:02', 878.67, 'debit_card', 'completed', '74418B85F4974626953A'),
    (296, '2022-06-01 02:59:46', 3037.85, 'paypal', 'failed', '7821180E934F448B94BC'),
    (297, '2023-12-11 23:13:01', 1152.87, 'debit_card', 'completed', '266938A624FB4788A58E'),
    (298, '2023-08-23 08:41:29', 3365.63, 'credit_card', 'completed', 'E948396EDE834AECA157'),
    (299, '2026-03-03 14:22:58', 6902.16, 'bank_transfer', 'completed', '40D5287EA0FB40EBB30E'),
    (300, '2023-09-04 07:14:33', 7567.23, 'credit_card', 'completed', 'D9F633EE209C453CAA76'),
    (301, '2022-06-21 05:47:14', 4109.45, 'paypal', 'completed', '21FE86C6F1874CABB6A1'),
    (302, '2021-10-09 09:36:17', 3948.09, 'credit_card', 'completed', 'A52D9A435E3F474DA260'),
    (303, '2021-09-10 12:36:52', 457.15, 'credit_card', 'completed', 'F2C5A3B891594A818592'),
    (304, '2023-04-28 14:13:56', 885.36, 'paypal', 'failed', '2FD58D27E06E4989972B'),
    (305, '2025-12-24 05:54:19', 7224.34, 'credit_card', 'completed', '74BFDA38CFE54199AE3E'),
    (306, '2023-09-29 13:59:07', 1026.18, 'debit_card', 'completed', '6785B9093B514349B07D'),
    (307, '2026-01-19 04:23:29', 9910.05, 'bank_transfer', 'completed', '7A8F85FE124B47B9AE2C'),
    (308, '2023-04-17 21:06:36', 7877.57, 'credit_card', 'refunded', 'FB34BB780CE04F568C37'),
    (309, '2024-12-02 00:22:37', 6543.43, 'credit_card', 'pending', '53328009B44F4F3282C2'),
    (310, '2021-01-16 08:49:34', 10779.2, 'debit_card', 'completed', '3F7DA9F51C8B42B586DE'),
    (311, '2023-05-30 20:32:11', 8103.91, 'paypal', 'completed', '527EE7A20650422CABD3'),
    (312, '2025-04-03 07:22:03', 235.06, 'paypal', 'completed', '06EB8B3035F74794A5D5'),
    (313, '2022-07-12 18:19:44', 6906.63, 'credit_card', 'completed', '8A6CEA930B8B4B22BB4B'),
    (314, '2024-08-13 09:39:42', 443.05, 'credit_card', 'completed', 'B463392BDA6D4C41894F'),
    (315, '2022-07-10 15:18:39', 5654.23, 'cash', 'refunded', '92E1F66C56D149B4823B'),
    (316, '2021-03-15 02:40:59', 471.07, 'debit_card', 'completed', '755EC5D1F0024143B9B5'),
    (317, '2025-07-21 03:39:17', 4160.33, 'cash', 'completed', '03933E6CB3A4475CB7F5'),
    (318, '2023-10-12 16:32:07', 272.29, 'debit_card', 'completed', '4F270E637D544F18BB31'),
    (319, '2021-09-04 08:05:23', 7398.52, 'paypal', 'completed', 'C358081813D34D9B8DC3'),
    (320, '2026-02-22 12:04:35', 896.55, 'credit_card', 'completed', '113A211D7C50421FA4B7'),
    (321, '2022-11-30 12:45:00', 19033.9, 'credit_card', 'pending', '9602AFC3FD6E432CB38E'),
    (322, '2022-04-17 14:00:05', 8988.11, 'debit_card', 'completed', 'F3A9EF6EE17B4BAD949D'),
    (323, '2021-04-02 21:08:39', 2935.71, 'gift_card', 'completed', '1CE76E3BF4924D2F9B14'),
    (324, '2021-12-10 18:01:37', 979.47, 'credit_card', 'completed', '79D7F116D7B041968078'),
    (325, '2026-05-22 02:02:28', 1924.28, 'cash', 'completed', '6564BB98C4F64C1FB8DB'),
    (326, '2023-11-04 21:37:05', 410.68, 'credit_card', 'completed', '68418901783640EDAF81'),
    (327, '2026-02-06 19:57:34', 3627.5, 'cash', 'completed', '0BE425C773CE477A8872'),
    (328, '2022-06-29 08:56:43', 876.57, 'paypal', 'completed', '0C9E35A145384D22BFC7'),
    (329, '2025-04-04 03:10:45', 1320.1, 'gift_card', 'completed', '66F1FE39DAF64AEE93F9'),
    (330, '2025-07-18 15:28:45', 8020.57, 'bank_transfer', 'completed', '1270BD89ACAE417D8EEE'),
    (331, '2022-03-18 00:50:58', 4949.9, 'paypal', 'failed', '5221EDB63B264A25A2BF'),
    (332, '2023-06-16 03:14:55', 1875.85, 'credit_card', 'pending', '53F75EDFBEE04D93B617'),
    (333, '2023-03-11 10:07:28', 387.21, 'credit_card', 'completed', 'B6F8E81251114D4684FA'),
    (334, '2023-12-06 10:40:18', 9860.32, 'credit_card', 'completed', 'A9D2464A85A44AB0B911'),
    (335, '2025-11-05 02:11:12', 188.97, 'debit_card', 'failed', '0FCA671F778246F68F71'),
    (336, '2025-09-16 00:05:50', 12329.09, 'paypal', 'refunded', '9C06EDA8894C4B1398EF'),
    (337, '2022-10-08 09:38:27', 6007.62, 'paypal', 'completed', '3985BFEDA4314830BABE'),
    (338, '2026-01-04 18:54:56', 10760.16, 'credit_card', 'completed', '48FB300101DD4D3F891D'),
    (339, '2025-02-23 21:10:58', 11811.9, 'credit_card', 'pending', '3F864B670CC34D48BC7F'),
    (340, '2023-07-22 07:07:02', 697.68, 'credit_card', 'failed', '1C28F3AD4D6745DA82BC'),
    (341, '2026-01-24 07:52:20', 5667.92, 'debit_card', 'completed', 'B2CA6AE5734F41B0B52A'),
    (342, '2024-06-09 10:49:17', 2194.58, 'debit_card', 'completed', 'D0DE5131C22D4D289B5B'),
    (343, '2022-10-30 23:02:35', 10231.25, 'paypal', 'completed', '2E33680B7DC04614834D'),
    (344, '2021-07-04 07:25:59', 1587.22, 'bank_transfer', 'completed', '7F1197F2E3EB45C2A6E7'),
    (345, '2024-09-23 16:04:24', 5438.34, 'credit_card', 'completed', '2E7930810A4E47428BAB'),
    (346, '2023-11-01 15:14:55', 10131.97, 'cash', 'completed', '436C72EA46DF47229E04'),
    (347, '2024-09-20 09:12:36', 1327.43, 'gift_card', 'refunded', '1CFAC2D67AF24FBAA4AA'),
    (348, '2024-11-03 03:18:56', 972.11, 'bank_transfer', 'failed', '659ACF5032C6421D91C2'),
    (349, '2021-01-20 18:10:06', 13920.7, 'cash', 'completed', 'F0E80297AA4F4CC6976C'),
    (350, '2022-10-03 11:18:25', 1267.27, 'credit_card', 'completed', 'F65426676F7F44619053'),
    (351, '2023-07-31 04:58:40', 14117.41, 'paypal', 'completed', 'A31B803111F14CC89349'),
    (352, '2022-09-10 03:51:11', 9070.47, 'debit_card', 'completed', 'A49B267FDAD24FBB89ED'),
    (353, '2025-01-25 01:07:38', 65.84, 'gift_card', 'completed', 'B4D58E6229E3430C8C89'),
    (354, '2021-07-22 21:35:19', 5440.96, 'credit_card', 'completed', 'C67234AB2C114C6EB3E6'),
    (355, '2025-05-31 07:25:39', 15944.34, 'paypal', 'completed', '920529679AE04D4894F4'),
    (356, '2022-05-20 11:29:42', 544.91, 'credit_card', 'pending', 'BB18719001CE404BBEDA'),
    (357, '2024-06-20 13:21:30', 3719.26, 'cash', 'completed', '7D7EDC04ACAE422B9C2D'),
    (358, '2026-02-18 07:18:10', 565.53, 'credit_card', 'completed', '970F36DC24C7449D8C46'),
    (359, '2025-01-24 10:57:34', 21323.81, 'paypal', 'completed', '91E772B50D144AD5A9A4'),
    (360, '2023-10-16 21:28:40', 5673.2, 'credit_card', 'completed', '1AA565B3BAE5420AB6A2'),
    (361, '2021-02-06 09:53:53', 10411.62, 'cash', 'completed', '8D008475F5B74DB19DD6'),
    (362, '2025-09-02 09:51:32', 472.68, 'debit_card', 'completed', '73BC3586936049BD837B'),
    (363, '2024-11-22 05:11:33', 1199.45, 'debit_card', 'completed', '24739E6453AC4BFEA1B6'),
    (364, '2022-03-17 07:09:44', 2414.26, 'cash', 'completed', '73A552D76040466C8E26'),
    (365, '2025-08-04 01:16:41', 4187.24, 'credit_card', 'completed', 'A12D3876395149B9946F'),
    (366, '2023-09-28 04:22:26', 6271.07, 'bank_transfer', 'completed', '3341D8D8EB50470CA1BD'),
    (367, '2024-04-29 19:49:53', 953.71, 'paypal', 'completed', 'EEFB8EC5F6FD4365843F'),
    (368, '2023-10-15 10:32:30', 5603.33, 'debit_card', 'pending', '56699E76011E4F60B435'),
    (369, '2022-04-23 11:43:30', 6096.58, 'paypal', 'completed', '418D980241C645299FC8'),
    (370, '2021-10-03 04:50:40', 3322.08, 'debit_card', 'refunded', '8E2A5A2F9E834E549CD7'),
    (371, '2021-11-11 05:35:20', 19462.01, 'debit_card', 'completed', '91C0593F3C42478AA4D6'),
    (372, '2023-01-12 09:03:22', 4035.37, 'gift_card', 'completed', '45BDEC054F204957B03D'),
    (373, '2024-11-19 16:58:28', 515.15, 'credit_card', 'completed', 'B088C0C406254B5BB7E0'),
    (374, '2023-09-28 02:10:52', 1018.69, 'paypal', 'completed', 'E19693CFA59A4A75A7E8'),
    (375, '2024-04-04 00:30:39', 1454.23, 'credit_card', 'completed', '4D586C0ECB0149459717'),
    (376, '2022-09-10 03:02:06', 1706.82, 'credit_card', 'completed', 'CFD81BD6704E412DA743'),
    (377, '2021-03-23 21:31:00', 650.92, 'cash', 'completed', 'EFBD6ADD77A342E08CE4'),
    (378, '2024-07-05 01:49:24', 2604.31, 'credit_card', 'completed', '64F42297E50B42E1BB8E'),
    (379, '2025-04-26 14:32:01', 5758.4, 'paypal', 'completed', '9257534DB34D457882ED'),
    (380, '2022-04-05 10:53:29', 7863.42, 'gift_card', 'completed', 'D052097EF0584C508D8D'),
    (381, '2023-10-24 22:36:43', 9361.45, 'gift_card', 'completed', 'E595F0B1789D49EFB29B'),
    (382, '2025-03-18 20:20:53', 9347.03, 'debit_card', 'completed', 'B0C870AD9635493C8E13'),
    (383, '2023-03-21 09:21:11', 374.22, 'credit_card', 'completed', '6C69CAD3600A420A8090'),
    (384, '2022-06-08 13:58:54', 4636.7, 'cash', 'pending', '5FC9F0BBF54A4FC6A661'),
    (385, '2025-04-26 05:17:18', 3906.33, 'debit_card', 'completed', '24E7848CC7694E8887FF'),
    (386, '2024-10-23 17:15:51', 7698.05, 'bank_transfer', 'failed', 'C1EAC4DB91CD4287977A'),
    (387, '2025-06-27 09:14:59', 9604.35, 'credit_card', 'completed', 'EC4AEC39A56B45C7A103'),
    (388, '2021-06-21 06:40:44', 3212.09, 'paypal', 'completed', '620A40ED7A73495AB281'),
    (389, '2021-05-27 16:17:58', 12621.55, 'paypal', 'refunded', '600B7A586EF24C5F920C'),
    (390, '2021-05-21 13:51:57', 191.72, 'bank_transfer', 'failed', '42170AECC06C41318A09'),
    (391, '2024-06-02 21:10:56', 2074.35, 'paypal', 'completed', '38ED7F41F27648F08791'),
    (392, '2024-07-16 02:53:34', 14271.21, 'paypal', 'completed', 'ECF9C577011D4CDFB26E'),
    (393, '2021-07-26 15:30:23', 6260.09, 'cash', 'completed', 'DD9108854EAF412C897E'),
    (394, '2022-09-16 20:45:04', 7414.87, 'debit_card', 'completed', '875F9CD2B94A463BA443'),
    (395, '2024-02-27 08:30:00', 958.61, 'paypal', 'completed', '9A07E3298ADE444EAC28'),
    (396, '2022-06-30 08:38:29', 195.05, 'credit_card', 'completed', '5642DBF7CE9649E48400'),
    (397, '2021-03-20 15:24:33', 199.2, 'credit_card', 'completed', 'EAF6D45E5C5E46C39A52'),
    (398, '2021-07-22 08:35:43', 3292.68, 'paypal', 'completed', 'C9F901D46C3F480C9F58'),
    (399, '2025-11-11 14:01:20', 993.65, 'debit_card', 'completed', 'A5628DF48BDC4AB68136'),
    (400, '2022-11-27 10:45:29', 159.56, 'debit_card', 'completed', 'D391A919BAA141A387C1'),
    (401, '2026-05-01 11:29:08', 5920.68, 'credit_card', 'completed', '284BAB95E6DF4DD0A63B'),
    (402, '2024-12-10 16:24:49', 4641.67, 'cash', 'completed', '4FC4E696451044B8890D'),
    (403, '2021-03-16 01:57:45', 1875.07, 'gift_card', 'completed', 'A38A050210424A04892A'),
    (404, '2021-09-24 10:12:16', 237.36, 'paypal', 'pending', '3E4936C2A38D4123A8B3'),
    (405, '2026-04-21 07:42:20', 4210.52, 'paypal', 'failed', '747C768860DA4B05B466'),
    (406, '2021-12-19 05:17:00', 115.23, 'credit_card', 'completed', '92CB9B35B73D4795AD89'),
    (407, '2024-10-21 20:35:49', 2443.38, 'bank_transfer', 'failed', 'BC55574D529C4FB39F5C'),
    (408, '2024-01-08 01:17:57', 3800.14, 'paypal', 'completed', '0022A3B9711B4AF2B949'),
    (409, '2023-11-15 15:12:12', 2795.2, 'paypal', 'completed', '097001B50A7941FEA7CA'),
    (410, '2024-08-11 22:10:29', 1870.45, 'bank_transfer', 'completed', '32233229248F4BE7BE39'),
    (411, '2022-02-04 08:11:48', 199.29, 'bank_transfer', 'completed', '64EF1A581FA245E8A165'),
    (412, '2021-02-11 18:49:51', 879.36, 'credit_card', 'completed', '4150CFA0C0E9409CA393'),
    (413, '2022-07-31 13:31:39', 4675.26, 'paypal', 'completed', 'E614DDA06B5D4F6585AB'),
    (414, '2025-01-19 01:02:16', 5616.75, 'gift_card', 'completed', '431CDF47A99546D7A930'),
    (415, '2023-09-26 14:06:37', 608.18, 'paypal', 'completed', '03A292DAB82C4837BF57'),
    (416, '2023-05-25 10:26:07', 2086.06, 'paypal', 'completed', '77DE6404271346829958'),
    (417, '2024-10-17 11:11:02', 444.24, 'paypal', 'pending', 'A617043A21A94ECBA478'),
    (418, '2024-02-25 22:41:40', 24168.9, 'debit_card', 'completed', 'FEA93688B6274A4DA3B3'),
    (419, '2024-07-27 16:16:54', 664.47, 'bank_transfer', 'failed', 'F5FAABB5E93A4A9E8E0C'),
    (420, '2022-11-06 04:41:47', 6009.78, 'gift_card', 'completed', 'C6ECB8984EA2438D8754'),
    (421, '2024-01-03 21:41:56', 875.84, 'gift_card', 'refunded', 'E042C3A53542476E9330'),
    (422, '2026-05-17 01:05:40', 908.87, 'paypal', 'completed', '68941014D2754BE7BC77'),
    (423, '2024-02-24 14:21:05', 832.63, 'bank_transfer', 'completed', 'E369A65B085C45259065'),
    (424, '2022-08-27 21:53:25', 695.28, 'credit_card', 'failed', '871D6B16BA054246A6FB'),
    (425, '2021-09-10 15:00:21', 4447.48, 'credit_card', 'completed', '3B855623917E4ECB9596'),
    (426, '2025-10-12 17:36:11', 667.45, 'credit_card', 'completed', 'DA1FA18013734290A0BC'),
    (427, '2024-08-07 04:33:09', 319.17, 'paypal', 'completed', '24FC5625EEBB4290870C'),
    (428, '2022-04-04 15:18:11', 2966.6, 'gift_card', 'completed', '5727F49688C54A59BD72'),
    (429, '2024-02-20 22:18:41', 5486.9, 'debit_card', 'completed', '5E876658327B4730BC72'),
    (430, '2021-07-30 23:24:33', 3341.37, 'debit_card', 'completed', 'EE52608BEE7B49879681'),
    (431, '2023-12-04 11:36:00', 4656.93, 'credit_card', 'completed', '9BD7ABA83A4C4C08B144'),
    (432, '2021-06-13 01:34:25', 4144.26, 'debit_card', 'completed', '0B1D5CB940E149BFB965'),
    (433, '2021-03-01 19:49:40', 7750.37, 'credit_card', 'completed', '16C3ACBE1EC94419A6FE'),
    (434, '2024-05-19 00:41:54', 9777.94, 'credit_card', 'completed', '3B856DA39E9F451E983F'),
    (435, '2022-09-28 15:33:26', 28.84, 'bank_transfer', 'completed', 'CA67D5051E554BE098C0'),
    (436, '2024-01-27 09:42:43', 1136.69, 'cash', 'completed', '5A206543C8CC4C738FB9'),
    (437, '2023-10-15 02:18:27', 6182.65, 'credit_card', 'completed', '482511B003E54ABB9E9A'),
    (438, '2024-10-14 19:07:28', 6006.2, 'gift_card', 'completed', '4F4981C475B943DC8193'),
    (439, '2021-04-05 08:47:21', 11867.62, 'credit_card', 'failed', '5A612BE10F084B088078'),
    (440, '2022-06-28 18:40:08', 17911.95, 'gift_card', 'refunded', '3A301CCB0D9646F3B5E0'),
    (441, '2022-12-21 08:19:53', 314.25, 'debit_card', 'completed', '229704180E264FE396E8'),
    (442, '2025-09-09 00:03:55', 6700.23, 'bank_transfer', 'completed', 'A224515653674D81965D'),
    (443, '2021-09-26 14:49:53', 952.97, 'cash', 'completed', '49351C4CF36C48929ECC'),
    (444, '2025-11-18 10:12:12', 891.04, 'credit_card', 'completed', '57D2870FC6FA4C84A8E0'),
    (445, '2022-12-06 14:33:57', 6883.6, 'paypal', 'completed', '1E310C80BB8A455D904B'),
    (446, '2022-04-29 18:44:17', 1483.64, 'debit_card', 'completed', '1905275505624494931E'),
    (447, '2021-03-15 00:43:21', 10962.99, 'paypal', 'pending', '3F4E7DE595834A978BB0'),
    (448, '2023-08-02 20:26:17', 12937.48, 'paypal', 'completed', 'FA4030FD39F042AABC6F'),
    (449, '2021-05-01 04:20:40', 5279.54, 'bank_transfer', 'refunded', '4D2CE0E3810347F7A3CB'),
    (450, '2023-01-20 23:02:44', 7031.15, 'credit_card', 'completed', '6192F0351CB5458C8C2F'),
    (451, '2021-06-01 09:21:40', 669.71, 'credit_card', 'completed', '2680FC81CFC34A16A2D3'),
    (452, '2021-08-27 16:54:47', 2045.55, 'gift_card', 'completed', 'C64A9FC32EAA44EDB25C'),
    (453, '2026-02-24 07:53:40', 6957.63, 'credit_card', 'completed', '9FC4B05D9E444471B04C'),
    (454, '2025-01-14 14:51:37', 388.93, 'debit_card', 'completed', 'D1BA1CF2EADD49E2ACD4'),
    (455, '2021-07-27 15:10:36', 509.19, 'paypal', 'refunded', '88F9B2DA6D1540E587BF'),
    (456, '2021-02-07 19:20:11', 2508.47, 'paypal', 'completed', '0BF39CDFFEE84BF29AF2'),
    (457, '2024-04-20 01:26:14', 3072.35, 'debit_card', 'completed', 'BEAB4C0541374BC8AF49'),
    (458, '2021-05-14 07:42:11', 10900.49, 'credit_card', 'completed', '49A4F0804EA440C2B730'),
    (459, '2024-09-06 11:53:49', 13199.1, 'cash', 'completed', '19064276C56F4F428C3F'),
    (460, '2024-12-29 04:37:23', 7224.18, 'credit_card', 'completed', 'C0E5D6F939014FE392E9'),
    (461, '2023-11-07 19:31:50', 2421.07, 'bank_transfer', 'completed', 'E65CBC97777C407FA1E0'),
    (462, '2023-06-25 13:40:57', 1912.23, 'credit_card', 'completed', '7C43BB84A82343C989A5'),
    (463, '2023-03-03 10:19:32', 3107.66, 'paypal', 'completed', '922B643D0FEC423AB2A7'),
    (464, '2024-08-21 20:17:03', 11680.21, 'debit_card', 'completed', '3E56D9A1A2EB47129B10'),
    (465, '2022-09-29 14:43:37', 12151.54, 'credit_card', 'completed', '63202AB3EE5F4067BF47'),
    (466, '2022-05-14 08:36:35', 2496.24, 'cash', 'completed', '20F23D529C324637ABA0'),
    (467, '2021-09-12 18:30:58', 5704.35, 'credit_card', 'completed', '3FD40D8318464469AE8B'),
    (468, '2024-03-04 18:13:30', 2055.26, 'credit_card', 'completed', '7B5528B08FE94BF39E69'),
    (469, '2022-12-19 09:47:53', 2790.02, 'debit_card', 'completed', '989B05AE779E47988CE3'),
    (470, '2024-02-13 23:23:08', 5349.26, 'paypal', 'failed', '16B8A1F16FE6428BB69E'),
    (471, '2021-06-05 13:58:20', 1790.71, 'bank_transfer', 'completed', '261564F6042A457FA89C'),
    (472, '2022-06-06 18:04:10', 370.17, 'credit_card', 'completed', '81A9C108258B41BD877F'),
    (473, '2025-07-17 00:55:31', 2071.54, 'cash', 'failed', '656DF34145F84235BBE7'),
    (474, '2022-04-30 10:12:53', 746.12, 'credit_card', 'completed', '9CE03B7AB5F24E70B50A'),
    (475, '2021-07-28 09:59:06', 5326.44, 'paypal', 'refunded', '8DF9D914D44C4F13BFA7'),
    (476, '2026-02-25 07:35:55', 4145.21, 'debit_card', 'completed', '3A08876D9CE64E658189'),
    (477, '2025-02-22 18:21:30', 2736.02, 'cash', 'completed', 'E1B776B554F142BBAD64'),
    (478, '2021-02-20 22:14:06', 1519.24, 'credit_card', 'failed', 'F9CDB04B23BD4B0CB547'),
    (479, '2024-09-08 11:30:45', 5517.94, 'credit_card', 'completed', '9DDAE44E55434BB6AC24'),
    (480, '2021-07-06 01:52:44', 8212.77, 'paypal', 'pending', '385E09246538448DA26C'),
    (481, '2025-05-26 06:54:44', 8201.64, 'paypal', 'completed', 'B3A4F3776B9941EF8501'),
    (482, '2022-09-03 00:43:33', 9357.19, 'credit_card', 'completed', '404C31FA574A4E518CD4'),
    (483, '2025-02-08 14:51:44', 2724.64, 'gift_card', 'completed', '1CB2C55A17174DEA82E0'),
    (484, '2026-05-17 02:18:53', 1981.8, 'credit_card', 'completed', 'D0DD9197BF004C93BE11'),
    (485, '2022-04-05 18:02:22', 614.8, 'paypal', 'completed', '4ECE2FBA5AD649D1A174'),
    (486, '2022-05-20 17:14:45', 218.45, 'bank_transfer', 'completed', '7ACD49A8689F4D2EA4A2'),
    (487, '2023-11-04 01:52:36', 290.26, 'gift_card', 'failed', 'AAE1DC9A7137454AA0AF'),
    (488, '2023-06-10 01:22:19', 839.23, 'credit_card', 'completed', '6487CF1EA02140E8BD04'),
    (489, '2022-04-17 22:27:57', 3709.93, 'debit_card', 'refunded', '159BE5BC94214F8CB5C9'),
    (490, '2023-08-21 10:48:51', 331.17, 'cash', 'completed', 'B529DF52905746269826'),
    (491, '2021-12-01 03:20:58', 1236.02, 'bank_transfer', 'completed', 'E52000E613ED431BB8A3'),
    (492, '2023-06-01 10:25:00', 1474.84, 'debit_card', 'completed', '12C55FF615E049F48DD9'),
    (493, '2023-01-18 18:38:49', 3168.28, 'credit_card', 'completed', '06699B62C6BC4049A094'),
    (494, '2025-12-05 17:34:28', 1121.06, 'bank_transfer', 'completed', '3226C5EFB10242ED9D52'),
    (495, '2024-12-11 01:38:32', 2030.99, 'debit_card', 'completed', 'C514E582AD8946C9B675'),
    (496, '2022-03-13 01:07:56', 13453.88, 'credit_card', 'completed', '3271D38022274E9AA593'),
    (497, '2025-07-08 09:28:09', 16635.68, 'debit_card', 'completed', '26FC03E0E8604539B221'),
    (498, '2024-10-27 20:31:57', 216.64, 'credit_card', 'completed', '5F8B8A682DD74504882E'),
    (499, '2024-10-27 18:48:10', 60.12, 'debit_card', 'completed', '296F7F3F3E8940879290'),
    (500, '2023-08-10 09:04:03', 3089.8, 'credit_card', 'completed', 'F0D32C4E21B84133A312'),
    (501, '2022-07-05 15:52:39', 2809.64, 'gift_card', 'completed', 'E51843ADB0B34BE0917E'),
    (502, '2024-07-15 03:34:58', 5723.27, 'gift_card', 'completed', '03F60F20DB1041DD85CD'),
    (503, '2024-11-03 02:46:25', 4827.7, 'cash', 'completed', '25229584887F4303AEE5'),
    (504, '2022-05-14 04:26:14', 18262.37, 'paypal', 'completed', '23C7087D1A5B4EFEA769'),
    (505, '2025-09-28 23:57:49', 10244.68, 'credit_card', 'completed', '1C72D76F7E664A6BA36F'),
    (506, '2021-10-26 04:39:24', 24259.33, 'gift_card', 'completed', '7435FCE915A542BCA90E'),
    (507, '2023-05-23 00:46:45', 7618.7, 'paypal', 'completed', 'BB4AA8FBCCD74F9790AD'),
    (508, '2023-04-01 20:59:06', 4963.33, 'debit_card', 'completed', 'CAA8184CA435468A95BF'),
    (509, '2021-11-09 01:49:47', 555.53, 'credit_card', 'failed', '3A7778DC866D442BAA44'),
    (510, '2021-01-13 11:42:59', 10752.18, 'cash', 'completed', '89E9CA88854141BE99E8'),
    (511, '2022-06-11 05:29:41', 11535.57, 'credit_card', 'completed', 'D00642D7BAD44F92AAFB'),
    (512, '2024-07-29 14:14:10', 7153.32, 'paypal', 'completed', '2834EC3727CC483BA36E'),
    (513, '2021-12-16 21:51:31', 4556.2, 'paypal', 'completed', 'AF6234AF4E9541B8B38C'),
    (514, '2024-03-22 16:13:20', 7159.21, 'credit_card', 'completed', 'CB25AF72193A49CFA39F'),
    (515, '2021-07-05 03:44:31', 7421.56, 'paypal', 'completed', '29BD03402EA04C7A908A'),
    (516, '2022-05-14 12:56:15', 4408.7, 'cash', 'completed', '503A547D29184C8CB553'),
    (517, '2021-07-15 15:56:03', 660.25, 'gift_card', 'completed', 'FF255632E6F44A6CA616'),
    (518, '2022-04-09 06:14:33', 11212.26, 'debit_card', 'refunded', '6BC0E6CAFCB1467989EE'),
    (519, '2021-10-26 13:26:04', 12089.42, 'cash', 'completed', '4E1E0D3D6B6E49F9BE3B'),
    (520, '2021-11-15 20:30:26', 17654.87, 'credit_card', 'completed', '882336F2AFDA45198BF8'),
    (521, '2023-02-17 17:04:51', 14562.95, 'credit_card', 'completed', '919C38ED5ADD4B2FBCB9'),
    (522, '2021-01-01 07:48:41', 1528.93, 'credit_card', 'completed', 'DEB4977A4BB74AA1AE5D'),
    (523, '2022-09-07 02:25:17', 17619.94, 'credit_card', 'completed', '8CFC2FFA849745A7819E'),
    (524, '2025-07-15 02:10:20', 14847.19, 'cash', 'completed', '654263B387F04123B9FD'),
    (525, '2026-01-21 08:05:09', 4412.45, 'bank_transfer', 'completed', '3FD3DDB0C6A846BDA42F'),
    (526, '2025-10-07 01:44:42', 4445.5, 'credit_card', 'completed', '24D84CF679914C6FB234'),
    (527, '2024-08-21 21:15:02', 1248.22, 'debit_card', 'completed', '5835BB550CD949CB804B'),
    (528, '2024-12-02 23:14:08', 1598.86, 'credit_card', 'completed', '99E721DB2D504822B559'),
    (529, '2022-08-15 15:32:41', 92.09, 'credit_card', 'completed', '6CDCBBBB348A4172AFDD'),
    (530, '2025-04-15 22:46:43', 2754.51, 'debit_card', 'completed', '3EABE2EBE42D40ED80A5'),
    (531, '2025-04-25 15:38:26', 1289.28, 'debit_card', 'completed', '37013CAE641041FE94AC'),
    (532, '2023-05-05 16:15:01', 4136.19, 'paypal', 'completed', 'DCE821B53BCA41FBA131'),
    (533, '2024-06-17 16:15:45', 1358.56, 'cash', 'completed', 'BCBF8A0D8431449BA1DE'),
    (534, '2021-01-16 11:25:09', 1386.96, 'credit_card', 'completed', 'FC8D8F1B91264B458D4D'),
    (535, '2022-03-16 15:54:32', 10126.79, 'credit_card', 'completed', 'E3D4EBF0B8FB45C68607'),
    (536, '2026-05-17 10:14:10', 2479.32, 'credit_card', 'completed', 'D20CCA59A3E64AEAAF6B'),
    (537, '2024-07-01 13:27:11', 1842.9, 'gift_card', 'completed', 'F7166591D75E4EE79301'),
    (538, '2021-04-27 15:29:30', 425.72, 'gift_card', 'completed', '5FA57E0D9C9F4791823F'),
    (539, '2025-12-30 03:03:22', 91.88, 'credit_card', 'completed', '8C0069F458C747CBAB90'),
    (540, '2025-08-19 08:27:34', 1158.66, 'credit_card', 'completed', 'B4875BF4F24A49268F76'),
    (541, '2021-08-27 17:46:05', 4098.65, 'credit_card', 'refunded', '84246474C6054795A137'),
    (542, '2026-01-30 10:44:38', 807.16, 'credit_card', 'completed', '559EA79933E04CA2A8E7'),
    (543, '2021-01-10 14:05:18', 393.21, 'credit_card', 'failed', '0B31745B904B4DE996C9'),
    (544, '2023-06-27 23:37:15', 8591.0, 'credit_card', 'completed', '038DBD26E08240F0B5E8'),
    (545, '2023-07-03 07:12:49', 13258.6, 'bank_transfer', 'completed', 'C19FA09D2AF640D9B453'),
    (546, '2025-06-05 09:22:26', 609.91, 'credit_card', 'failed', 'B2860EF1C71F4BF48467'),
    (547, '2024-01-11 10:09:24', 6083.43, 'credit_card', 'completed', 'D5CC097AE46940048C7B'),
    (548, '2022-08-26 23:37:51', 4177.12, 'credit_card', 'completed', '9430BDEB99D846EFB949'),
    (549, '2026-02-25 19:20:38', 12400.96, 'cash', 'completed', '45D2B450086944639288'),
    (550, '2025-06-11 11:50:48', 1631.88, 'bank_transfer', 'completed', 'F5336C7039994A659778'),
    (551, '2024-06-09 20:40:39', 54.11, 'paypal', 'completed', '49C6647D2FC047649211'),
    (552, '2024-10-05 06:05:51', 1230.32, 'debit_card', 'completed', '35E3A7FBC62C42449B4A'),
    (553, '2023-06-04 13:27:36', 1048.82, 'paypal', 'completed', '6D22FAF819B1450BA33C'),
    (554, '2025-09-07 17:06:06', 4412.85, 'paypal', 'completed', '82240168FDF04EAF99E3'),
    (555, '2024-05-23 15:03:34', 1547.35, 'bank_transfer', 'completed', 'E33B2F788B7C40BC8689'),
    (556, '2021-01-21 06:33:08', 1250.66, 'cash', 'completed', '64F74B014DF64746B6D8'),
    (557, '2026-03-17 15:34:10', 83.16, 'debit_card', 'completed', '6ADBF00997114B8CA483'),
    (558, '2024-07-01 08:28:40', 3832.34, 'cash', 'completed', '1022661620EA4E43824E'),
    (559, '2022-05-20 07:52:52', 2119.13, 'debit_card', 'completed', '5FD08B28A32349C488D7'),
    (560, '2023-03-30 19:50:17', 15733.25, 'credit_card', 'pending', '2D5DBA6CB81243D0B442'),
    (561, '2022-05-26 09:53:23', 227.92, 'debit_card', 'completed', 'F7FB1648DFCA47D5BB4D'),
    (562, '2025-03-21 06:17:22', 5207.55, 'credit_card', 'completed', '559FED9DD14D4846B7C2'),
    (563, '2021-10-21 16:26:30', 1539.07, 'bank_transfer', 'completed', '5A67C1C3F99C4F618580'),
    (564, '2021-02-13 13:48:25', 425.47, 'credit_card', 'completed', 'E2143CBA93E744A28AE7'),
    (565, '2022-06-18 05:50:10', 6007.44, 'credit_card', 'completed', '855C572AB23E4FDB93E0'),
    (566, '2024-06-22 22:58:17', 2201.62, 'paypal', 'pending', 'BB254C513A9C430D9E4E'),
    (567, '2024-11-10 05:44:29', 277.19, 'bank_transfer', 'completed', 'C348CAC60E54420E91E2'),
    (568, '2025-08-07 16:31:51', 10568.2, 'paypal', 'completed', '2F179CD6834945A69839'),
    (569, '2021-11-22 22:42:45', 7023.33, 'credit_card', 'completed', '28A978C9806B43968E1D'),
    (570, '2022-05-07 23:12:35', 565.24, 'paypal', 'completed', 'DC92718A47024E71B673'),
    (571, '2025-04-26 08:04:42', 405.24, 'paypal', 'refunded', '043717DFF7C14A299471'),
    (572, '2024-10-03 10:18:03', 1519.44, 'credit_card', 'completed', '8E0D846DAF9A48588062'),
    (573, '2026-03-23 17:29:51', 4165.82, 'gift_card', 'completed', '7CE0F4367197408EB92D'),
    (574, '2024-05-23 10:04:49', 2412.46, 'paypal', 'completed', '0D7C973970AD49159CFF'),
    (575, '2022-01-23 19:51:45', 12670.63, 'paypal', 'completed', '6A76C5AD22B040EAA1F2'),
    (576, '2022-08-28 12:12:38', 5199.13, 'debit_card', 'completed', 'C69443E16C6B42A18235'),
    (577, '2021-11-14 14:26:47', 10210.73, 'bank_transfer', 'completed', '09B8E5EBB20E4DA18215'),
    (578, '2025-05-11 16:48:01', 36.2, 'credit_card', 'completed', '269D75C66618485F9458'),
    (579, '2021-04-28 02:36:39', 2381.0, 'debit_card', 'completed', 'DD816817D1C3458E8732'),
    (580, '2021-10-30 13:07:18', 2123.98, 'credit_card', 'completed', '3EB35076932E4948AD87'),
    (581, '2026-01-13 11:52:41', 13251.47, 'bank_transfer', 'completed', 'CE9CBEA9ED1543F8A5D2'),
    (582, '2025-08-02 09:02:26', 3299.01, 'debit_card', 'completed', '79C5E4CA172E4898A9E7'),
    (583, '2022-07-07 08:49:22', 943.03, 'credit_card', 'completed', '2F060FDDE2A3461EA68F'),
    (584, '2025-12-27 16:06:56', 3861.12, 'credit_card', 'completed', '06370159ED954984885C'),
    (585, '2026-05-22 23:30:29', 12007.2, 'credit_card', 'completed', '79665931F6DC4029AD1F'),
    (586, '2024-02-20 22:51:55', 369.05, 'bank_transfer', 'completed', 'B8AA2056E096450DB28F'),
    (587, '2022-01-28 10:13:09', 229.68, 'credit_card', 'completed', '57A26B2B55AA45148FDD'),
    (588, '2022-09-26 16:56:19', 4601.03, 'gift_card', 'completed', '4672094D1A83437DAC7D'),
    (589, '2022-04-26 20:11:50', 442.91, 'cash', 'completed', '724F2BAB89B74CCB9E17'),
    (590, '2023-01-20 01:07:40', 6853.52, 'cash', 'completed', '983F953F80C34F5AB013'),
    (591, '2023-10-10 07:57:40', 791.63, 'credit_card', 'completed', 'F6713DAA60304E0D9E66'),
    (592, '2025-09-15 13:25:21', 1244.33, 'credit_card', 'completed', '6D7F424CA8854E439CA5'),
    (593, '2025-02-28 15:00:46', 17668.01, 'debit_card', 'completed', '1EDD63F700EE41E9AF15'),
    (594, '2021-01-09 09:15:16', 5008.53, 'debit_card', 'completed', '5BCC3DD932A944B59C9B'),
    (595, '2023-10-13 14:20:54', 4581.62, 'bank_transfer', 'completed', '527436F9D95047CDAC16'),
    (596, '2024-03-02 09:07:47', 5094.63, 'paypal', 'completed', '05B82C7A9EF74FDE8A46'),
    (597, '2021-07-26 08:46:19', 1972.78, 'paypal', 'completed', '77ABE3B06B884493B623'),
    (598, '2022-09-10 18:40:50', 15119.18, 'credit_card', 'completed', 'FBFBB0DD128246E0A40C'),
    (599, '2021-06-16 06:29:26', 1436.66, 'credit_card', 'completed', '8034D753BFA94F72B968'),
    (600, '2025-07-03 01:15:21', 6783.18, 'credit_card', 'completed', '199585A2577046959DCA'),
    (601, '2025-06-07 16:38:56', 6160.44, 'paypal', 'completed', '8B66D9FAB36346BA8DE8'),
    (602, '2022-02-05 05:06:37', 12926.68, 'bank_transfer', 'pending', '4A041088785742E2B0D3'),
    (603, '2022-03-17 19:17:59', 1521.22, 'credit_card', 'completed', 'E9688F6135FE46919C00'),
    (604, '2026-03-24 09:59:08', 3071.81, 'debit_card', 'completed', '4F195C60FD0F4AA5B2E7'),
    (605, '2023-05-25 07:29:50', 721.01, 'cash', 'completed', 'CAAC1F474BDD46C3A5F7'),
    (606, '2021-04-11 15:11:01', 2018.22, 'paypal', 'completed', 'A98C79A7D3364227A245'),
    (607, '2026-04-20 07:46:06', 2386.11, 'debit_card', 'completed', '75369DCBEAD748A8841B'),
    (608, '2025-05-17 12:21:54', 5414.26, 'debit_card', 'completed', '28A3D1853E2242B2B5DC'),
    (609, '2024-02-12 21:10:25', 1782.99, 'debit_card', 'completed', '84C38D0072FE4AAC893C'),
    (610, '2022-12-14 01:52:15', 339.16, 'debit_card', 'completed', '7AF9050EA7C5410098E3'),
    (611, '2021-03-19 01:12:14', 7089.79, 'bank_transfer', 'pending', 'ACE66671D80C4563BB22'),
    (612, '2023-03-01 20:34:05', 2711.09, 'credit_card', 'completed', 'C9176EDDBEEF4EB8B3B4'),
    (613, '2021-06-07 04:03:09', 2055.82, 'gift_card', 'completed', 'AC533694FA834094B94B'),
    (614, '2023-03-05 21:29:40', 7168.18, 'paypal', 'completed', '0F521994933349619548'),
    (615, '2021-11-06 09:38:54', 7753.86, 'debit_card', 'completed', '4DC89FA9BC7A4281ADD3'),
    (616, '2022-05-29 02:07:03', 8341.14, 'credit_card', 'failed', '52783A39FBA0474BA9AE'),
    (617, '2026-05-14 21:43:37', 1366.63, 'paypal', 'completed', '4A7820C803EA4806B4BB'),
    (618, '2021-08-08 09:34:02', 1536.28, 'debit_card', 'refunded', '8CB4622B3C774CB1B93C'),
    (619, '2021-03-21 20:42:17', 124.43, 'bank_transfer', 'completed', 'B420F3B0B90D4F05A79D'),
    (620, '2026-01-25 17:59:56', 627.28, 'credit_card', 'completed', '57C1E504A8D8427A95B8'),
    (621, '2025-12-03 15:37:39', 2137.61, 'debit_card', 'failed', '21D6938A9FFB482E88EA'),
    (622, '2025-09-15 19:22:47', 1492.43, 'paypal', 'completed', 'CD7A4F63D10944F3BF3B'),
    (623, '2024-04-07 05:08:59', 6280.09, 'debit_card', 'completed', '6ABFDE63F68041588CE3'),
    (624, '2026-05-13 08:35:44', 5180.32, 'debit_card', 'completed', 'AF64D6BF9D284C57BD46'),
    (625, '2021-07-17 00:58:26', 729.36, 'credit_card', 'completed', '5516E441EBF0415299BF'),
    (626, '2022-12-24 19:51:34', 5624.8, 'bank_transfer', 'completed', '49B15D269BC446FA81BE'),
    (627, '2024-08-25 15:16:24', 196.63, 'paypal', 'completed', '954E1864A20F41238CAA'),
    (628, '2025-02-13 12:08:14', 4865.72, 'bank_transfer', 'failed', 'BB729B0B7EC54C4EA22E'),
    (629, '2025-09-09 09:37:34', 7542.99, 'debit_card', 'completed', 'FD8D7D6D8357418E997D'),
    (630, '2026-04-03 05:47:37', 2242.39, 'credit_card', 'completed', '8F24F0A6770E45C6A465'),
    (631, '2023-09-02 05:08:18', 1374.82, 'credit_card', 'completed', '89E7703F227E4304A6E5'),
    (632, '2021-05-19 05:32:53', 1862.46, 'bank_transfer', 'completed', '17D2E3CA21C442B2AB53'),
    (633, '2023-02-12 05:28:42', 3478.76, 'paypal', 'completed', 'B69BD6F4B4564EB58A2E'),
    (634, '2025-07-06 18:19:29', 2772.32, 'bank_transfer', 'refunded', 'ECD10A6556BA43F2809B'),
    (635, '2023-08-24 10:49:32', 2248.08, 'bank_transfer', 'completed', '0CA9F0BFB34242C68B7D'),
    (636, '2024-02-23 03:07:44', 1714.05, 'credit_card', 'completed', 'F5819E3F61154432AA35'),
    (637, '2022-06-28 10:30:44', 5696.83, 'credit_card', 'completed', '00CC0B938C5D46D486B5'),
    (638, '2021-09-03 16:24:11', 4917.37, 'gift_card', 'completed', 'F0C5E6946BCA44CFA642'),
    (639, '2025-07-26 22:29:14', 11340.41, 'gift_card', 'pending', 'B4A4F135D4CA4751A647'),
    (640, '2024-06-23 08:09:51', 366.22, 'credit_card', 'completed', 'E1358EF274EE45A2B1C0'),
    (641, '2026-01-04 04:12:01', 3361.52, 'bank_transfer', 'completed', '0D053CB86CFC4BB7B23B'),
    (642, '2024-08-26 14:24:58', 1113.57, 'gift_card', 'completed', 'BF7EE35BBDFF49518625'),
    (643, '2026-04-13 17:41:34', 222.16, 'credit_card', 'completed', '0BE36676CED64CA7BEF4'),
    (644, '2022-08-19 09:06:50', 2152.7, 'credit_card', 'completed', '2FBCC7E3FF0A4C81B825'),
    (645, '2023-10-07 18:17:05', 1872.77, 'cash', 'completed', 'F836C3AFA0DF4F94BED2'),
    (646, '2023-03-01 12:01:48', 2910.0, 'bank_transfer', 'completed', 'BE6F2E312C44429DA0A0'),
    (647, '2023-01-19 12:50:47', 1525.77, 'cash', 'completed', 'F9C55F5A93144A7A8372'),
    (648, '2025-05-18 11:59:19', 10653.81, 'debit_card', 'completed', 'DEEFD90D6B104E5DAFB1'),
    (649, '2022-09-25 23:43:21', 1024.95, 'gift_card', 'completed', '77198598642043CDAA2C'),
    (650, '2022-05-04 03:31:41', 7425.45, 'paypal', 'failed', '60B99906EA6A48DB9A04'),
    (651, '2021-05-21 18:47:44', 1409.05, 'cash', 'failed', '42DAB60F88EB46868805'),
    (652, '2026-01-06 23:01:44', 459.66, 'cash', 'completed', '7FFF50BA3B4E48E68ECD'),
    (653, '2026-01-04 00:48:20', 1386.06, 'debit_card', 'completed', '0B5F1864DC064AA48FEC'),
    (654, '2023-05-17 15:56:52', 3129.7, 'paypal', 'failed', '1483C2DA6C6E4CFC9F97'),
    (655, '2024-10-20 20:51:51', 188.73, 'paypal', 'completed', '7272E95CA42346D88DB0'),
    (656, '2022-09-21 13:19:14', 2770.82, 'debit_card', 'completed', 'A06E9FE655384DD393D9'),
    (657, '2025-02-16 18:25:22', 75.07, 'debit_card', 'completed', '95E4350CE40B44F6ACCA'),
    (658, '2026-01-22 16:32:55', 3858.92, 'debit_card', 'completed', 'AEC6A006C4C64AAEB595'),
    (659, '2021-09-02 10:06:44', 3457.49, 'debit_card', 'completed', '32790A3CE740409C8C96'),
    (660, '2024-12-01 23:32:11', 7924.35, 'paypal', 'completed', 'D69B869831D34770808D'),
    (661, '2026-01-14 23:39:12', 815.92, 'credit_card', 'completed', '47B5772A004849539182'),
    (662, '2021-11-23 23:05:57', 1235.39, 'bank_transfer', 'completed', '6FC4C4D77E62411D9212'),
    (663, '2021-06-04 16:08:37', 13821.13, 'debit_card', 'completed', '236EF267B6A147C7A577'),
    (664, '2021-01-16 17:39:03', 5323.81, 'cash', 'completed', 'E2BECEEE27E0491EAE7C'),
    (665, '2023-12-28 21:21:21', 1843.23, 'credit_card', 'failed', '9AC0FF4EE21F4DBCA81A'),
    (666, '2021-09-25 18:12:23', 17694.62, 'credit_card', 'completed', 'B96E54267B3042BB8BE1'),
    (667, '2021-09-27 03:25:53', 3848.14, 'gift_card', 'completed', 'B596CA649AFB4360808C'),
    (668, '2026-04-24 23:31:40', 12694.5, 'cash', 'completed', '3A4B84D5743E4161A732'),
    (669, '2023-11-15 06:48:08', 525.67, 'debit_card', 'completed', 'A0312F346C084C5C8470'),
    (670, '2023-07-20 18:45:04', 8953.55, 'credit_card', 'failed', '80B001FB93094CAB877E'),
    (671, '2021-09-06 17:51:38', 10945.67, 'paypal', 'completed', 'A2BC104A10154F8D95AE'),
    (672, '2021-09-16 22:33:57', 1224.87, 'credit_card', 'refunded', '0114DEE9CA0947A192BF'),
    (673, '2021-09-16 09:39:49', 150.99, 'credit_card', 'completed', '1A8A75AF3DCD4EC7951F'),
    (674, '2021-02-02 21:18:46', 3462.12, 'paypal', 'completed', '9E751FFFF6364D41B6E1'),
    (675, '2023-05-28 18:54:04', 6866.21, 'bank_transfer', 'completed', '27A2B45A32B540F39BA2'),
    (676, '2024-05-05 00:26:43', 12285.85, 'credit_card', 'completed', '14318C39DE1E4B03AB35'),
    (677, '2022-11-19 19:45:33', 962.39, 'credit_card', 'refunded', 'F30CF824BC304AF186DD'),
    (678, '2021-07-04 07:38:01', 1700.35, 'bank_transfer', 'completed', 'B0F905B738D64E599DB8'),
    (679, '2022-11-08 17:32:24', 2152.44, 'credit_card', 'completed', 'BCB7D93E5C324259BA39'),
    (680, '2023-03-04 14:00:24', 8925.31, 'credit_card', 'completed', '3142ABC260C5451DA5A8'),
    (681, '2021-05-25 03:37:03', 288.58, 'cash', 'completed', '49E32A3AF54148BA999A'),
    (682, '2022-11-15 08:29:00', 7737.75, 'debit_card', 'completed', '383A902863294C4DA0AE'),
    (683, '2024-11-22 15:19:31', 6633.36, 'credit_card', 'completed', 'A663B1B4AF4C4C2787FE'),
    (684, '2022-06-16 01:04:47', 10125.27, 'credit_card', 'completed', 'A36A121F2E0B4EEE97B2'),
    (685, '2022-06-05 09:00:07', 296.88, 'credit_card', 'completed', '880B414B08C943CF912E'),
    (686, '2021-07-28 17:14:51', 5355.55, 'bank_transfer', 'completed', '9D9E4ACEB3BE44319560'),
    (687, '2025-09-09 12:44:20', 1310.96, 'paypal', 'completed', '07D76B2A12474182B682'),
    (688, '2024-01-24 04:16:15', 935.39, 'credit_card', 'completed', 'B7D1C7FD8CA747759C11'),
    (689, '2024-09-25 15:24:17', 423.51, 'debit_card', 'completed', 'CC9B6B69A4AC42BA8595'),
    (690, '2023-02-27 12:01:08', 189.14, 'gift_card', 'completed', '56BF4F7A1B774810B006'),
    (691, '2025-12-22 04:55:00', 12623.52, 'gift_card', 'completed', 'AEAE58DA80C7471990BE'),
    (692, '2023-03-31 05:06:30', 5819.24, 'gift_card', 'completed', 'E95599A7874344A9B73E'),
    (693, '2024-04-05 11:17:55', 8101.52, 'debit_card', 'completed', '6E85946C6C0244BF993E'),
    (694, '2022-11-30 05:13:03', 2867.36, 'credit_card', 'completed', '52ECAC90D08A4DD88F08'),
    (695, '2022-03-04 01:19:27', 2006.69, 'gift_card', 'failed', '5060BFD706B949E98F88'),
    (696, '2023-01-16 23:40:30', 923.25, 'bank_transfer', 'completed', '21DBDE21F98A4D439F6F'),
    (697, '2024-02-10 23:41:40', 4094.91, 'paypal', 'completed', '4CD1CD85A1A244EB92A1'),
    (698, '2023-04-10 18:54:37', 5802.65, 'debit_card', 'completed', '2B11A007E6634EE49394'),
    (699, '2024-05-06 03:15:06', 4248.0, 'paypal', 'completed', 'E233E1A98FA84953846D'),
    (700, '2024-05-24 23:25:26', 1723.11, 'credit_card', 'completed', '25B4792229C34CAE9DF2'),
    (701, '2022-01-16 17:33:49', 1744.83, 'credit_card', 'failed', '20B239F3C2B64FB5A467'),
    (702, '2024-11-23 15:42:52', 1407.52, 'cash', 'completed', 'DF5820A2A17848AA9440'),
    (703, '2025-09-02 16:03:27', 9107.39, 'paypal', 'completed', '1E54F835A09C417FB1EA'),
    (704, '2022-11-23 11:39:14', 1685.97, 'cash', 'failed', '6B404C1B98DB42F3A6F0'),
    (705, '2021-03-18 09:30:37', 4353.12, 'credit_card', 'failed', 'E4732E21B0DF419E9B29'),
    (706, '2023-07-25 13:35:36', 9897.48, 'debit_card', 'completed', 'DDB90E4ED1A749B5A7AB'),
    (707, '2026-02-11 01:38:56', 1479.83, 'bank_transfer', 'completed', '51260906666E42649718'),
    (708, '2021-01-05 10:17:38', 1252.94, 'cash', 'completed', '813625BA5EA64625B18F'),
    (709, '2022-08-06 09:03:25', 2854.59, 'bank_transfer', 'completed', '611E6E0B145A4C5988FA'),
    (710, '2025-10-07 13:39:49', 7366.7, 'cash', 'completed', '4B85059BA8794723B379'),
    (711, '2023-03-28 01:42:16', 1773.45, 'credit_card', 'completed', 'B541B4F09E3B4E3DA771'),
    (712, '2025-10-07 13:28:57', 2303.67, 'paypal', 'refunded', '411E6A3AE1CB48C2A554'),
    (713, '2021-12-23 11:59:43', 822.4, 'bank_transfer', 'completed', 'DC0780E1202A4E10B888'),
    (714, '2021-08-11 21:57:20', 9849.19, 'debit_card', 'completed', '6CD3FAFCC4EB45E393B2'),
    (715, '2022-06-26 11:20:02', 256.74, 'credit_card', 'failed', 'BF614BF7BEA8401B8762'),
    (716, '2025-11-05 14:58:23', 530.26, 'debit_card', 'failed', '69349349FAA440EFBDC8'),
    (717, '2025-01-22 12:35:23', 1793.11, 'paypal', 'completed', '9B3A5B487ED34335A892'),
    (718, '2022-04-11 00:47:20', 1272.14, 'debit_card', 'completed', '09918EC622AE49B280CA'),
    (719, '2024-08-17 16:28:18', 7616.04, 'paypal', 'completed', '0CE6C91B7DD64D25B249'),
    (720, '2026-05-15 08:57:30', 9019.92, 'bank_transfer', 'completed', 'A3030045828B4BD6B0DF'),
    (721, '2021-05-22 22:12:57', 13558.95, 'credit_card', 'completed', '979078BEF4D14510901A'),
    (722, '2025-08-20 12:39:56', 6729.33, 'gift_card', 'completed', 'FA93FE297C1F4456AFFF'),
    (723, '2024-06-17 14:41:02', 17663.7, 'credit_card', 'completed', '178631E7B91F44A79A9E'),
    (724, '2024-03-27 02:44:18', 2031.46, 'debit_card', 'completed', '0A37C8003EAA465E84A1'),
    (725, '2023-07-21 04:38:20', 405.18, 'bank_transfer', 'completed', 'EC418047C8814A4CBE1A'),
    (726, '2023-05-26 04:41:01', 2970.72, 'debit_card', 'completed', '07CB0AB8CAA048218D11'),
    (727, '2023-05-07 20:36:22', 8851.49, 'debit_card', 'completed', '55046C7FD7D048F5B30D'),
    (728, '2025-11-24 09:21:00', 14379.76, 'debit_card', 'completed', '443CD4369EA24C2DAD22'),
    (729, '2024-02-26 05:55:55', 2592.04, 'cash', 'completed', '1B4DADA6BC5C439886EE'),
    (730, '2021-12-23 16:28:52', 1764.32, 'gift_card', 'completed', '0A14EC9D4BFD4B61AD89'),
    (731, '2024-01-26 01:07:45', 721.74, 'paypal', 'completed', 'ABB542DE933A4C9BAB07'),
    (732, '2022-08-15 20:26:22', 3141.89, 'credit_card', 'completed', 'FB62194561334CF6925B'),
    (733, '2022-12-22 18:32:48', 5024.19, 'credit_card', 'completed', 'C3E60F19C0E547F08A79'),
    (734, '2021-07-20 03:42:14', 2586.64, 'bank_transfer', 'completed', 'CCAB2D438E5746919830'),
    (735, '2024-08-04 12:02:11', 3671.05, 'paypal', 'completed', 'B4823303EFAD4516B5CC'),
    (736, '2022-02-22 17:36:32', 15581.69, 'credit_card', 'completed', '5C9EF375B39D44989301'),
    (737, '2023-09-07 06:16:23', 558.26, 'gift_card', 'completed', 'C72104544DEC49608A0F'),
    (738, '2023-03-14 13:52:19', 3246.89, 'credit_card', 'completed', 'CD20F7E802F04F608A2B'),
    (739, '2022-05-22 14:24:41', 2520.17, 'debit_card', 'refunded', '88DA4B52027240E781BC'),
    (740, '2023-09-25 16:44:51', 4439.91, 'credit_card', 'completed', '69AC1CFE24304A029994'),
    (741, '2026-02-04 09:39:21', 1588.37, 'credit_card', 'completed', '256DF71C30214E6BBC3D'),
    (742, '2021-05-11 09:47:07', 569.4, 'credit_card', 'completed', '5CF907D69C0B47A4B3F4'),
    (743, '2024-01-08 19:58:34', 2210.92, 'credit_card', 'completed', '1CCD032FDDF24B628645'),
    (744, '2023-06-18 17:45:30', 642.51, 'credit_card', 'completed', 'FCE93D68B7C8494C9B0E'),
    (745, '2025-08-04 10:25:10', 427.39, 'debit_card', 'completed', '39014BB1A2C64A8F892D'),
    (746, '2024-12-14 13:01:46', 2299.17, 'paypal', 'pending', 'B2FD5350E82041BB9EC9'),
    (747, '2025-03-24 15:12:02', 276.63, 'cash', 'completed', 'F25F4DA64D2D4F448EFA'),
    (748, '2024-01-20 10:10:04', 29.31, 'credit_card', 'completed', '7B4EDD911C0549E085BA'),
    (749, '2022-04-14 21:27:06', 4919.78, 'debit_card', 'completed', '354FAAAB675B47F3B652'),
    (750, '2025-12-12 21:02:40', 1694.63, 'paypal', 'completed', 'B732A32B50BF45E285BD'),
    (751, '2021-10-29 16:55:20', 3216.54, 'cash', 'completed', '6FCCE91574914139AF28'),
    (752, '2022-07-04 06:00:19', 71.09, 'debit_card', 'completed', 'C5AC077B7BCB462F97A9'),
    (753, '2025-08-16 10:37:49', 1254.99, 'credit_card', 'completed', 'A7052B078C7441E5893E'),
    (754, '2025-11-06 23:54:03', 5997.09, 'bank_transfer', 'failed', 'A31A1D31000948828573'),
    (755, '2023-07-10 06:00:51', 295.58, 'credit_card', 'completed', '6684071EB5754FDB94D0'),
    (756, '2021-07-18 18:02:25', 408.26, 'cash', 'completed', 'C155B21FE7D746F1AF48'),
    (757, '2026-03-26 18:16:31', 2365.34, 'paypal', 'completed', '5698C45F029F42699CC0'),
    (758, '2022-09-04 03:49:48', 4518.25, 'cash', 'completed', '6DF9A84F8FB04E5DA5C4'),
    (759, '2024-05-21 21:17:09', 7493.08, 'credit_card', 'completed', 'B50F3B958FE44C71A0D2'),
    (760, '2025-04-21 00:52:25', 535.57, 'debit_card', 'completed', '2CCB70E31FF744019996'),
    (761, '2021-08-20 03:20:30', 15655.44, 'credit_card', 'completed', '42ABD87A552747D18085'),
    (762, '2024-08-05 15:25:54', 1730.93, 'debit_card', 'completed', 'C0A965437E1A4D979C0E'),
    (763, '2025-04-13 07:41:24', 2605.34, 'bank_transfer', 'completed', '86406D7891D74E79A49E'),
    (764, '2025-07-17 16:18:39', 565.95, 'paypal', 'completed', '9F3E72343BC7459C890F'),
    (765, '2026-02-15 10:29:18', 6601.03, 'paypal', 'completed', '9809CE75A96C4FA9B739'),
    (766, '2026-04-07 08:37:30', 460.44, 'paypal', 'completed', '489C1787276A4A62A48F'),
    (767, '2024-06-14 06:27:25', 11069.05, 'debit_card', 'completed', '1A593E25D8964D25A601'),
    (768, '2025-05-19 08:03:29', 470.96, 'credit_card', 'completed', '6EA253BDD1474A51B46A'),
    (769, '2024-05-28 10:32:32', 7922.1, 'debit_card', 'completed', '7143B884CAE44686A7E5'),
    (770, '2023-03-25 17:33:10', 1204.45, 'credit_card', 'completed', 'C756A3013D544646B3B0'),
    (771, '2021-01-02 23:31:57', 1815.52, 'credit_card', 'completed', '2E25C596A0F748DCBF0B'),
    (772, '2024-09-23 16:19:46', 598.06, 'debit_card', 'refunded', '2B6BBEF9AC3D40AA8F82'),
    (773, '2022-09-26 22:58:29', 1322.22, 'credit_card', 'completed', '5C8E92F3F899457A9696'),
    (774, '2024-08-03 23:05:13', 2198.1, 'debit_card', 'completed', '51EEA71E31AB4356A21B'),
    (775, '2022-01-24 00:37:22', 1641.36, 'credit_card', 'completed', '09467E21BF614694B7B2'),
    (776, '2023-10-11 16:18:44', 3816.55, 'credit_card', 'completed', 'D0B77EABE2FA466AA967'),
    (777, '2021-01-11 08:10:40', 11396.28, 'debit_card', 'completed', '839B92FF6A7640C28C73'),
    (778, '2023-09-25 06:29:38', 2760.18, 'debit_card', 'completed', '90BA522DAC2A40E7B5B7'),
    (779, '2024-10-25 20:50:46', 1416.28, 'debit_card', 'completed', '3454569D996241F68EF1'),
    (780, '2024-09-23 23:29:15', 6220.3, 'paypal', 'completed', '9286CF469B7F4E259A08'),
    (781, '2022-11-22 12:12:42', 4766.07, 'bank_transfer', 'completed', '128E71C868824EBA9F09'),
    (782, '2025-09-20 21:16:35', 8441.23, 'bank_transfer', 'completed', 'CBD9B461F58C4D769F24'),
    (783, '2025-10-20 22:13:21', 8625.94, 'paypal', 'completed', '1563BA89CED5493F8381'),
    (784, '2022-10-15 03:21:20', 1683.56, 'paypal', 'completed', '301FA57D8096487E8442'),
    (785, '2021-05-30 20:10:28', 8890.71, 'debit_card', 'completed', '3BFCC1674845409399C8'),
    (786, '2025-12-16 20:00:13', 1587.58, 'bank_transfer', 'completed', '1D7B0B26B8404EDF8500'),
    (787, '2022-07-11 15:24:02', 8424.77, 'credit_card', 'completed', 'D443BF63B1BD487BA067'),
    (788, '2023-10-19 08:11:40', 3909.47, 'paypal', 'completed', '3C084C60014C4B029458'),
    (789, '2024-09-11 17:02:38', 91.37, 'bank_transfer', 'completed', '5892F57C4F5D4CE68FBA'),
    (790, '2025-11-26 22:55:48', 2516.4, 'credit_card', 'pending', '15DDA14826E2434B9E4A'),
    (791, '2024-08-07 02:06:06', 530.47, 'bank_transfer', 'completed', 'B386244A27234A5AA6DB'),
    (792, '2022-08-30 08:27:00', 5591.8, 'credit_card', 'completed', '55EB01C41FC54D499400'),
    (793, '2021-07-03 12:52:18', 722.71, 'paypal', 'completed', 'CB2E9893FC8A43A38598'),
    (794, '2023-12-03 10:43:05', 12243.14, 'paypal', 'failed', '67FC50CF552644588D87'),
    (795, '2021-10-08 17:11:12', 1067.92, 'credit_card', 'completed', '798A53E4D86F48EB92CB'),
    (796, '2024-05-05 16:04:22', 11188.04, 'credit_card', 'refunded', 'EC231458D3874EEE8BDD'),
    (797, '2023-03-08 16:48:54', 17248.1, 'gift_card', 'completed', '967DFAD91E8F457085E5'),
    (798, '2021-01-04 19:42:01', 1523.79, 'cash', 'completed', '2B4A2BEAADE544F9A246'),
    (799, '2021-12-27 14:18:15', 2709.21, 'gift_card', 'completed', '0536072640F0405CA2B5'),
    (800, '2023-12-26 07:30:12', 10911.28, 'credit_card', 'completed', '81ADF36327914386A416'),
    (801, '2025-09-14 12:19:31', 111.16, 'credit_card', 'refunded', '7FAF725AADBB42D0BEE3'),
    (802, '2026-01-10 01:59:43', 17214.15, 'credit_card', 'completed', '81B089B1D3114BE08481'),
    (803, '2023-12-21 16:12:34', 7436.45, 'credit_card', 'completed', '7E87504A3D4342C4ABF9'),
    (804, '2024-10-30 18:51:32', 514.19, 'debit_card', 'completed', 'C63C1B6D573D482DB75C'),
    (805, '2023-04-22 03:13:23', 1540.56, 'cash', 'completed', '6312FF1B24234296BF74'),
    (806, '2021-03-29 12:33:25', 17570.4, 'paypal', 'completed', '3DC73549444C48729A4B'),
    (807, '2025-07-16 17:56:04', 2757.13, 'paypal', 'completed', '493B93FF9BA44F51BC65'),
    (808, '2025-08-24 21:15:38', 2673.46, 'bank_transfer', 'completed', 'D4091BC24B504CFF902E'),
    (809, '2024-06-25 13:36:41', 13011.98, 'bank_transfer', 'refunded', '8880895F3E6B40B18FD6'),
    (810, '2021-12-06 04:10:30', 16589.13, 'credit_card', 'completed', 'C864FA86A23C47A2BEBF'),
    (811, '2025-11-05 07:54:48', 1857.46, 'credit_card', 'completed', '16FA96BC46A34D39AF0C'),
    (812, '2022-02-14 07:53:29', 7934.59, 'bank_transfer', 'completed', 'DF928BC9A67748A09078'),
    (813, '2024-10-17 22:03:25', 4128.44, 'paypal', 'completed', '66F02DF69A9846BC87CF'),
    (814, '2023-04-20 23:16:13', 1617.45, 'cash', 'failed', '2993E010FC0C4A6CA6EC'),
    (815, '2023-06-07 03:38:24', 4271.17, 'paypal', 'completed', '356C6D88F1944857AEF4'),
    (816, '2025-11-12 19:33:25', 2264.24, 'gift_card', 'completed', 'E8E8957AF6C04979B54B'),
    (817, '2022-09-06 06:18:22', 2128.61, 'credit_card', 'completed', '512C630017134163B380'),
    (818, '2022-08-06 13:10:28', 347.26, 'debit_card', 'completed', '87FF6E0C16D242838AB2'),
    (819, '2021-01-05 15:52:32', 9586.58, 'gift_card', 'completed', 'CA85DDC164A54DE9919A'),
    (820, '2021-01-11 10:56:30', 13055.24, 'paypal', 'completed', 'B9257FE4AA0944ECB3BE'),
    (821, '2024-04-21 02:39:55', 2189.61, 'cash', 'pending', '246A4CDE22E54A2F8E53'),
    (822, '2024-09-12 03:24:39', 237.34, 'debit_card', 'completed', 'AC377417BF9E4FB7B102'),
    (823, '2026-02-21 00:02:39', 880.69, 'paypal', 'completed', '231895DB8BFB4CBDA901'),
    (824, '2023-05-13 22:00:16', 196.6, 'credit_card', 'completed', 'EC117F9C3940437DA8BA'),
    (825, '2024-10-04 02:01:55', 579.11, 'paypal', 'completed', '86A55F20C6284119BC8C'),
    (826, '2022-03-05 01:55:56', 13264.82, 'cash', 'completed', '6EDCB0195BFD412DB8B0'),
    (827, '2023-12-07 04:12:05', 1888.8, 'paypal', 'refunded', '2B60FCCC742B48CF981E'),
    (828, '2021-12-28 00:32:15', 226.48, 'paypal', 'completed', '708E1E97C5934AD7A5F3'),
    (829, '2021-04-09 12:27:23', 8499.83, 'credit_card', 'completed', 'E21B51D1A5F0481397D8'),
    (830, '2021-10-06 07:53:13', 2149.21, 'paypal', 'completed', '7D25F2814D684B0DB3E1'),
    (831, '2023-08-08 00:58:37', 147.34, 'paypal', 'completed', 'F5AB226F031F40C48736'),
    (832, '2025-04-01 01:02:05', 5010.71, 'credit_card', 'completed', '30F59CC138DE473E8009'),
    (833, '2021-11-12 13:23:21', 247.07, 'bank_transfer', 'completed', '32A2B6F2BD2B4DC8B36C'),
    (834, '2023-05-08 16:43:13', 1135.17, 'debit_card', 'refunded', 'B6F284732EEA46EC9A67'),
    (835, '2023-07-26 06:16:43', 1056.82, 'paypal', 'refunded', '07BEC033B38D4EA5BF92'),
    (836, '2021-09-27 22:36:26', 6162.58, 'paypal', 'completed', '5817FE90E3AC4310852C'),
    (837, '2026-03-18 20:43:41', 2028.67, 'credit_card', 'completed', '42AF113E76F346329091'),
    (838, '2025-04-04 19:55:09', 4362.2, 'credit_card', 'completed', 'FB374A9D21964584BB99'),
    (839, '2021-09-13 14:26:45', 769.63, 'debit_card', 'completed', 'B24CCE7BE8E74CD197DD'),
    (840, '2025-04-19 17:16:23', 6410.78, 'paypal', 'completed', '35550133B2CF4F05AFDC'),
    (841, '2023-05-08 13:51:40', 4546.92, 'credit_card', 'completed', '36E8E437266E47D7AC97'),
    (842, '2025-09-20 15:28:17', 451.0, 'paypal', 'completed', 'BCEEB9A253F14B779FF2'),
    (843, '2023-06-05 03:22:11', 1626.6, 'debit_card', 'completed', '80B0717DEB924F929B44'),
    (844, '2025-01-05 11:27:06', 8619.24, 'credit_card', 'completed', '75171C1AB9734942918A'),
    (845, '2022-01-10 18:25:59', 4655.21, 'debit_card', 'completed', '80FF8406937A4976B61F'),
    (846, '2021-02-15 19:16:03', 807.8, 'credit_card', 'completed', '87FF9EB76CF94F3FB0FE'),
    (847, '2026-02-15 19:09:58', 2284.05, 'credit_card', 'completed', 'BFAC97BA646F4CF1836E'),
    (848, '2021-06-20 15:44:08', 1571.06, 'debit_card', 'completed', '97BEBCB6C1184F2A9781'),
    (849, '2021-12-16 13:05:21', 2146.85, 'credit_card', 'completed', 'D1F015E689A94A00AFBE'),
    (850, '2021-02-18 02:21:50', 1769.53, 'bank_transfer', 'completed', '7C48EAB32E8C4634A557'),
    (851, '2023-02-01 10:07:49', 2844.21, 'debit_card', 'completed', '73B9631E0D114235BD95'),
    (852, '2023-09-22 09:19:07', 12781.08, 'credit_card', 'completed', 'DBDB1FEFC04E4BF4979F'),
    (853, '2026-02-03 16:06:49', 1348.6, 'bank_transfer', 'completed', '19D5128F5E4E4A69B9A1'),
    (854, '2024-01-18 14:35:55', 5620.11, 'credit_card', 'completed', '5E5A03C750144D71A4F0'),
    (855, '2025-07-10 12:27:05', 2653.85, 'credit_card', 'refunded', '68EA7E61F49F4298B401'),
    (856, '2023-07-27 10:10:04', 1063.94, 'debit_card', 'completed', 'C1B655E3C9CE4E1FA036'),
    (857, '2021-05-22 23:44:06', 2300.71, 'gift_card', 'completed', '2BB381B64E434881AEA8'),
    (858, '2024-01-18 17:09:47', 1356.29, 'paypal', 'completed', '52A0A7BF69BA48A8829C'),
    (859, '2022-07-02 23:31:14', 933.24, 'credit_card', 'completed', 'CEADC8AB6A254D2388C2'),
    (860, '2021-01-28 11:40:11', 6702.02, 'credit_card', 'completed', 'F6EA3A6554EC41C59F0C'),
    (861, '2023-03-18 18:36:45', 10572.8, 'paypal', 'completed', '06F6F3C0B9C14D34BBBC'),
    (862, '2021-08-22 01:54:40', 2005.61, 'cash', 'completed', '6260C5B759D24366A841'),
    (863, '2025-09-13 12:43:49', 4812.1, 'credit_card', 'completed', '1F53E7B2193A432DBDEA'),
    (864, '2021-07-08 03:45:12', 110.85, 'credit_card', 'completed', '7BBB6481150642EEBBAA'),
    (865, '2024-10-16 14:15:22', 393.03, 'paypal', 'failed', 'B9DF299FD2184ACBBA21'),
    (866, '2022-07-25 05:59:12', 9500.05, 'cash', 'completed', '86C80C966B8647C2BE17'),
    (867, '2024-05-20 15:03:07', 6878.15, 'paypal', 'completed', '69F9DEAAE2F646619D3A'),
    (868, '2022-05-13 07:40:07', 378.05, 'gift_card', 'failed', '4FB40F362946432F90E9'),
    (869, '2024-08-30 09:15:39', 1078.36, 'paypal', 'completed', '9F5FB66D1B5248939A61'),
    (870, '2025-04-21 01:46:07', 2075.6, 'gift_card', 'completed', '13A1B17CD75F4FCA86F0'),
    (871, '2024-02-28 22:04:45', 605.79, 'credit_card', 'completed', 'A0947C60BC7E470C87D8'),
    (872, '2024-01-16 18:56:23', 495.69, 'gift_card', 'completed', '252B76C4453448E5BD53'),
    (873, '2022-12-04 06:57:23', 2638.56, 'credit_card', 'completed', '126E1A770A7C48978AF6'),
    (874, '2022-01-16 11:25:52', 8346.24, 'cash', 'completed', 'C1B71D4210E14A64956A'),
    (875, '2023-01-25 03:59:35', 17001.6, 'debit_card', 'refunded', '351DC6F0E49843D88CDA'),
    (876, '2021-08-25 04:26:44', 5842.92, 'cash', 'completed', '58692B0E790F433B9E55'),
    (877, '2023-02-22 13:18:30', 3474.77, 'paypal', 'completed', '959241D768E54D7A95C4'),
    (878, '2023-04-21 08:57:30', 4099.83, 'credit_card', 'completed', 'B79B6413B1804F4484D0'),
    (879, '2021-11-23 11:04:52', 7855.29, 'credit_card', 'completed', '5B925B7C1AF74B42B3EE'),
    (880, '2022-02-12 22:43:47', 328.67, 'paypal', 'completed', '232C44E9D7144141A0E2'),
    (881, '2021-01-24 01:43:53', 12370.96, 'credit_card', 'completed', '252C49B62C8C472EBB8A'),
    (882, '2021-06-28 03:18:19', 710.03, 'paypal', 'failed', 'EB591D5491454AAFAEA3'),
    (883, '2021-02-25 22:01:28', 3885.49, 'debit_card', 'completed', '26ACC21876C34001B681'),
    (884, '2021-01-27 19:48:56', 11206.63, 'credit_card', 'completed', '5191D6D4C62140F9845A'),
    (885, '2022-06-28 17:39:38', 465.84, 'credit_card', 'completed', 'CED07AE93D3C4ECD9BF0'),
    (886, '2023-12-01 17:25:12', 1204.44, 'bank_transfer', 'completed', '9B19DF30C3BE42B8B67A'),
    (887, '2021-06-05 01:33:52', 286.45, 'paypal', 'completed', '4BADD6EB542C4267BE69'),
    (888, '2021-10-18 23:33:47', 5516.83, 'debit_card', 'completed', '4F8739F43AAC48B58AE4'),
    (889, '2024-04-29 14:12:50', 2155.7, 'cash', 'completed', '8FADBF6FA71A4A7CA7F5'),
    (890, '2026-04-02 15:14:18', 193.01, 'debit_card', 'completed', 'BB8821D3E5604AF38E2E'),
    (891, '2022-09-03 21:48:04', 6544.56, 'paypal', 'completed', 'BC0B3A40073A4881BD2F'),
    (892, '2025-01-10 18:04:51', 5434.48, 'credit_card', 'completed', '5406B06C78874290A3E5'),
    (893, '2025-10-08 00:01:47', 13985.11, 'paypal', 'completed', 'FA33629656C14708B0C9'),
    (894, '2025-07-24 12:12:38', 744.73, 'debit_card', 'completed', 'DE61DD9E1E324D64B88B'),
    (895, '2026-01-25 13:29:19', 1899.51, 'credit_card', 'completed', '810031A8EF2849DCA055'),
    (896, '2021-06-05 02:31:49', 20338.93, 'paypal', 'completed', '2D0DC59399194CDB8516'),
    (897, '2024-12-23 00:56:38', 2387.71, 'cash', 'completed', '39DCB3BC9F3245AFBE4F'),
    (898, '2025-05-26 08:27:37', 641.48, 'credit_card', 'completed', 'ED40117A8B26465D98AC'),
    (899, '2021-04-14 09:08:27', 199.56, 'debit_card', 'completed', 'C39F4F3951AD43B6B25F'),
    (900, '2022-10-18 13:24:48', 2737.96, 'credit_card', 'pending', '5418B86C1E9341909EDE'),
    (901, '2023-10-20 11:59:16', 1371.63, 'debit_card', 'completed', 'AAEE3D52E9094BDF80D2'),
    (902, '2023-09-06 10:11:08', 2704.8, 'debit_card', 'completed', 'A1E5E93EE6414F399EB5'),
    (903, '2021-04-03 10:16:29', 1614.98, 'cash', 'completed', 'CF8DD66DD15047E398AF'),
    (904, '2025-05-01 08:01:03', 461.92, 'paypal', 'completed', 'F43E24E4AAD7493F9AA9'),
    (905, '2021-01-19 21:52:41', 1564.26, 'credit_card', 'completed', '4865AE08F4C54010A844'),
    (906, '2021-12-17 23:06:53', 5378.21, 'cash', 'completed', '67D62ECE3BD44FEBA66A'),
    (907, '2021-08-23 02:23:25', 7137.64, 'cash', 'completed', 'C31A5F9882384E8E9AEE'),
    (908, '2023-10-18 20:21:27', 8808.84, 'credit_card', 'pending', '06A2BA0C62C145D5B5C8'),
    (909, '2025-07-01 14:51:35', 1985.27, 'paypal', 'completed', 'C2D374D80B5F4C05B7B5'),
    (910, '2026-05-16 12:41:38', 33.6, 'paypal', 'completed', '352987AC40EB49499CD2'),
    (911, '2024-06-15 20:35:47', 465.44, 'paypal', 'completed', 'A59F226322A8419CAD6E'),
    (912, '2024-08-01 21:25:22', 2822.75, 'paypal', 'completed', 'D28A1A55A2F74A54B57E'),
    (913, '2021-02-04 00:48:30', 1394.12, 'gift_card', 'completed', '174AEFA552B84AD48EF0'),
    (914, '2025-09-09 22:07:34', 1676.96, 'credit_card', 'failed', '775E7E4CC0DE4CBBA17C'),
    (915, '2023-03-06 21:16:34', 608.23, 'paypal', 'completed', 'F5351FD4831F419E95FE'),
    (916, '2025-05-04 14:18:25', 115.1, 'credit_card', 'completed', '49DE443FD5844C9293F1'),
    (917, '2022-01-31 03:22:55', 1157.53, 'gift_card', 'completed', '71B29B7A5E73489BB87E'),
    (918, '2024-03-04 08:52:32', 1548.6, 'debit_card', 'completed', '8B5EDBC359D2490EA54F'),
    (919, '2022-07-04 16:42:52', 2550.48, 'debit_card', 'completed', '88EEB7524822482F81B9'),
    (920, '2024-09-09 21:31:09', 567.98, 'bank_transfer', 'pending', 'ABCA4949FB8F49238587'),
    (921, '2025-06-29 01:41:00', 3607.06, 'gift_card', 'completed', 'B64B563AC3A34D7DBECC'),
    (922, '2025-10-19 09:01:11', 12181.2, 'credit_card', 'completed', '89D1EB6617244E7AB3DC'),
    (923, '2026-04-14 15:54:01', 8082.29, 'debit_card', 'refunded', '11B7AAF2890F46EABFCC'),
    (924, '2022-01-24 16:25:27', 2585.4, 'gift_card', 'failed', 'D91DA02C99AF4792AE8E'),
    (925, '2023-06-22 04:33:43', 252.73, 'credit_card', 'completed', '78CB5F6DC1344770BB1F'),
    (926, '2022-08-27 07:10:05', 5426.73, 'credit_card', 'completed', '9831955A090441F284AA'),
    (927, '2026-01-10 13:03:09', 14934.97, 'credit_card', 'completed', '1E9F0B5FC3BC4B0D8927'),
    (928, '2022-02-04 19:22:22', 11715.48, 'paypal', 'completed', '2F7899E60A614EEBBA7A'),
    (929, '2022-06-02 04:50:36', 2573.82, 'paypal', 'completed', '2449F9BC01BC4882999E'),
    (930, '2023-03-21 14:25:33', 1285.16, 'credit_card', 'completed', 'C2C937F7FCB847D19AB8'),
    (931, '2023-02-12 12:42:59', 5535.0, 'paypal', 'completed', 'CF33ECCFA70F43079720'),
    (932, '2022-04-16 21:10:06', 1011.59, 'credit_card', 'completed', '39C29611FA3D4F4F88C7'),
    (933, '2022-02-15 13:58:14', 621.65, 'bank_transfer', 'completed', 'B921677AA51E48B8AC12'),
    (934, '2026-02-24 01:05:05', 1035.13, 'paypal', 'completed', 'E86D215262FF41858959'),
    (935, '2021-10-13 11:20:04', 383.27, 'credit_card', 'completed', '97B219895F62480BBE2A'),
    (936, '2021-12-13 06:12:53', 3552.43, 'credit_card', 'completed', '3C5BCC58CD724FEF89D1'),
    (937, '2022-09-04 02:36:43', 341.05, 'credit_card', 'completed', '47637D0BC87C41C2BA3A'),
    (938, '2024-04-18 21:03:42', 415.47, 'credit_card', 'refunded', '2E649F159DFF49C8A43F'),
    (939, '2021-02-21 02:34:40', 2067.82, 'credit_card', 'completed', '8A69E0F0EF024AC187AD'),
    (940, '2025-07-08 11:29:34', 295.66, 'paypal', 'failed', '9BC2C2A0A40A4D98AC15'),
    (941, '2022-05-28 09:14:31', 1486.65, 'credit_card', 'completed', '3905D5B10BE84A0A9DB5'),
    (942, '2022-12-20 13:04:03', 10180.99, 'paypal', 'completed', '561FEFF7545A431788EA'),
    (943, '2023-06-06 10:53:03', 3319.47, 'paypal', 'failed', '3AADA67F4A944D7795CD'),
    (944, '2023-10-23 20:13:24', 3512.96, 'debit_card', 'completed', '3C2D35CCDB4D44F4A61A'),
    (945, '2021-04-05 17:24:14', 839.56, 'debit_card', 'completed', '3AE67D7C113446F0BC84'),
    (946, '2021-01-14 14:16:14', 376.8, 'debit_card', 'completed', 'B7C632646FE7464A8CA5'),
    (947, '2023-03-06 07:40:45', 2029.6, 'paypal', 'completed', 'CC4F4DD8E0D0440FAE5B'),
    (948, '2023-09-21 19:45:55', 3213.64, 'debit_card', 'completed', '9856AC26F66E4F21813D'),
    (949, '2023-09-29 06:52:42', 2104.95, 'debit_card', 'completed', 'C987E600711141DD88EE'),
    (950, '2021-01-19 14:18:21', 676.03, 'debit_card', 'completed', '72B6D15311124DF0B1BB'),
    (951, '2026-02-19 16:23:43', 941.44, 'paypal', 'completed', '78E8530287A84E2AA40E'),
    (952, '2024-05-11 13:31:39', 2614.63, 'paypal', 'failed', '184899DCE88C4E6C8CC9'),
    (953, '2021-03-09 09:38:16', 7856.68, 'gift_card', 'completed', '3923D023C4164ACD9C77'),
    (954, '2022-04-10 00:30:08', 312.19, 'credit_card', 'failed', 'C62FBAB69CC648EA8DDB'),
    (955, '2024-04-23 14:28:33', 1208.4, 'paypal', 'completed', '753559D4F6AA497AAAFE'),
    (956, '2022-02-03 13:20:24', 15348.86, 'credit_card', 'completed', 'CA9E21B17B1B48DCB35C'),
    (957, '2023-11-08 00:25:28', 1115.54, 'debit_card', 'completed', '1B675543224944A59C2B'),
    (958, '2025-03-22 04:53:21', 5621.9, 'credit_card', 'completed', '58C104ADE8454C12A99D'),
    (959, '2026-05-25 16:55:41', 1126.86, 'paypal', 'completed', '60BC7C3590EF4ED99CFB'),
    (960, '2026-02-02 10:40:45', 2428.38, 'paypal', 'completed', '6D944E2508EA458BA68B'),
    (961, '2023-07-11 12:36:48', 9978.57, 'paypal', 'completed', '1F5DF4D80EBF41EC98B1'),
    (962, '2023-10-21 21:29:15', 5565.73, 'cash', 'completed', 'D9DA7A3B1BC84BB99EEC'),
    (963, '2025-04-15 22:37:09', 346.45, 'debit_card', 'completed', 'B5701FC8554D453FB7FA'),
    (964, '2025-08-26 10:17:29', 6355.27, 'debit_card', 'refunded', '811D033EE7C140EDAB70'),
    (965, '2024-05-01 02:56:05', 6867.36, 'cash', 'pending', '40A64252AC154F518C07'),
    (966, '2021-06-07 12:15:53', 281.45, 'credit_card', 'completed', '3A4806DD4E6C4F28B6DA'),
    (967, '2024-10-28 22:00:30', 6867.34, 'credit_card', 'completed', 'E5BD89ECBF2D46E29916'),
    (968, '2025-07-08 15:46:09', 6436.77, 'credit_card', 'completed', '31DEB4937ED94984B60B'),
    (969, '2022-03-23 13:27:43', 11711.44, 'credit_card', 'completed', 'FE24D658A525485CA8A2'),
    (970, '2021-03-03 19:05:57', 13501.82, 'credit_card', 'refunded', '33486DCE80D94A25ADD5'),
    (971, '2026-03-07 05:28:19', 12925.01, 'paypal', 'completed', '0E5D6EB1E35C40E29AC6'),
    (972, '2023-04-28 09:00:07', 1135.71, 'credit_card', 'completed', '027FA8ED69E5474595D4'),
    (973, '2025-03-10 01:42:25', 8266.1, 'cash', 'completed', '86784C101222482E91ED'),
    (974, '2026-02-09 14:03:11', 2606.33, 'credit_card', 'refunded', '412EC49131D84CE493AE'),
    (975, '2023-06-07 16:14:28', 4082.95, 'debit_card', 'completed', '7BA2614401C64622B1F8'),
    (976, '2024-07-29 19:21:37', 2170.48, 'bank_transfer', 'completed', '3D2FA1FB12614238AEF6'),
    (977, '2023-06-28 21:39:53', 2621.14, 'credit_card', 'failed', '2FD355FE904B40F6BE15'),
    (978, '2025-07-04 12:34:14', 578.47, 'bank_transfer', 'failed', '6B07DA58CF454E91BF24'),
    (979, '2024-07-30 04:33:38', 1459.98, 'credit_card', 'failed', '80A2556EDD964ACD8208'),
    (980, '2021-04-22 14:12:37', 1821.79, 'debit_card', 'completed', '5C44FC58013E46429DA4'),
    (981, '2025-08-20 03:50:14', 372.95, 'debit_card', 'completed', 'BB2DD22118FF486EAE31'),
    (982, '2025-09-30 03:28:50', 12284.51, 'credit_card', 'completed', '3574E2BA20314F218FB2'),
    (983, '2023-01-09 19:57:17', 1183.02, 'credit_card', 'completed', '0897088835A543FF970D'),
    (984, '2025-08-26 22:42:50', 8606.64, 'credit_card', 'completed', '9A8629D856194C239135'),
    (985, '2022-11-13 19:38:04', 1924.97, 'paypal', 'completed', '2AE93E881C78463987DD'),
    (986, '2021-05-24 14:48:33', 4229.38, 'paypal', 'completed', 'A7027FDA354841E6B921'),
    (987, '2022-06-15 16:53:17', 2041.96, 'paypal', 'completed', '98A71A1F8A244C5897C4'),
    (988, '2021-10-18 20:53:37', 7371.1, 'gift_card', 'completed', 'F50E9494B35D463188D8'),
    (989, '2021-06-02 22:45:37', 4108.54, 'gift_card', 'completed', '5125500B76804C9AB9CD'),
    (990, '2023-03-30 09:01:11', 2237.35, 'paypal', 'completed', 'C8D557998C2F4D96AA5C'),
    (991, '2022-10-10 05:27:52', 4668.28, 'debit_card', 'completed', '2A3AE434B3B04EDBBBFB'),
    (992, '2025-10-22 05:23:48', 2512.08, 'debit_card', 'completed', '65F10A5D7337437FBC20'),
    (993, '2025-07-29 02:34:53', 4735.8, 'debit_card', 'completed', '50F5386AEAE84F9B84C4'),
    (994, '2024-08-12 11:37:18', 211.44, 'debit_card', 'completed', '15BB2702608B480CAD49'),
    (995, '2023-06-10 16:46:17', 259.17, 'paypal', 'failed', 'DB224CCD9B674A7D9991'),
    (996, '2025-02-21 14:27:15', 6939.42, 'bank_transfer', 'completed', '47A56893A81640918F7A'),
    (997, '2025-11-22 22:11:42', 8226.48, 'debit_card', 'completed', '6D0EFA3B6D6249E2B6BF'),
    (998, '2022-02-22 16:24:27', 1420.74, 'debit_card', 'completed', 'D880CF6B67EF4B9881A9'),
    (999, '2024-01-18 12:59:06', 2064.73, 'credit_card', 'completed', '8A1D093BAD5C49168E6D'),
    (1000, '2023-05-03 09:16:21', 4580.95, 'credit_card', 'completed', 'D55D1E8BCE014838927A'),
    (1001, '2024-03-30 22:45:45', 6185.99, 'credit_card', 'failed', '9C1284896A754A24A150'),
    (1002, '2021-01-08 17:05:57', 10717.36, 'credit_card', 'refunded', '94CF453685D544058C16'),
    (1003, '2024-12-27 14:32:03', 7931.59, 'bank_transfer', 'completed', '6B68350A81F84E8AB1B0'),
    (1004, '2023-03-22 00:23:18', 5253.67, 'debit_card', 'completed', '1143BC49DC72499291F6'),
    (1005, '2021-11-07 10:20:36', 11593.88, 'debit_card', 'completed', '42A4F22E659F440CBE72'),
    (1006, '2026-03-27 04:12:21', 1985.3, 'debit_card', 'completed', 'D6FA258288624E8386E4'),
    (1007, '2021-02-08 00:57:06', 2775.06, 'cash', 'completed', '396C29A862BE455BA415'),
    (1008, '2022-06-07 14:19:37', 1631.71, 'debit_card', 'completed', '9D64A72460494371B0C9'),
    (1009, '2023-09-21 11:33:19', 4585.21, 'credit_card', 'completed', '5CB2384D47AE40D180D8'),
    (1010, '2021-03-27 13:06:57', 15999.48, 'credit_card', 'completed', 'B966A5197EAB47E5BEC7'),
    (1011, '2023-05-31 05:00:34', 4357.0, 'credit_card', 'completed', '167122BCDF9C4283AC3E'),
    (1012, '2022-06-25 04:52:38', 7192.36, 'paypal', 'completed', '4BEC1FA502814C57BC18'),
    (1013, '2025-10-15 07:49:06', 4359.44, 'credit_card', 'completed', 'D6E68CE57E3D44D6B283'),
    (1014, '2025-12-13 00:23:18', 691.46, 'credit_card', 'completed', '695439E14FA84EEF832B'),
    (1015, '2022-01-31 11:34:10', 10150.75, 'gift_card', 'completed', '7E4A71F8C3624A359166'),
    (1016, '2023-06-10 12:11:35', 3060.6, 'paypal', 'completed', '890CC8A506AC49CCAF8D'),
    (1017, '2022-11-29 20:28:34', 4934.81, 'bank_transfer', 'completed', 'A278E08791A342CC9779'),
    (1018, '2024-08-09 03:09:17', 2580.75, 'bank_transfer', 'completed', '33C0BB3F5FF84FBC9342'),
    (1019, '2022-03-24 21:14:26', 481.66, 'credit_card', 'completed', '0D82E1DD13594D20BE06'),
    (1020, '2024-05-13 12:20:35', 976.23, 'paypal', 'completed', 'B35B9550E97F427FA7AE'),
    (1021, '2024-07-03 02:45:23', 10088.1, 'credit_card', 'completed', '04672ED169AB4AD0B7BF'),
    (1022, '2023-04-25 18:10:54', 6064.75, 'cash', 'completed', '7ACF02686E8549DFB563'),
    (1023, '2023-02-20 00:00:07', 9136.17, 'paypal', 'failed', '07C9F0D3C7B94C1CA414'),
    (1024, '2023-08-26 23:19:26', 414.63, 'cash', 'completed', '169AB375A2DC4276AAFC'),
    (1025, '2021-05-03 21:38:19', 1738.8, 'gift_card', 'completed', '2DC61352DB4C4D608C98'),
    (1026, '2021-07-10 18:01:43', 3576.66, 'credit_card', 'completed', 'F283E65A40254F699536'),
    (1027, '2022-02-25 14:04:50', 5191.16, 'paypal', 'completed', '1785F9F156744BA38173'),
    (1028, '2024-02-19 22:14:48', 13043.71, 'gift_card', 'completed', 'DF8501C37F7049FCA800'),
    (1029, '2022-01-05 15:26:32', 3851.89, 'credit_card', 'completed', 'BEAE11EEEA6B4CC2B5C2'),
    (1030, '2025-08-30 04:16:44', 2229.79, 'debit_card', 'completed', '7DEF58E43FD64CD8A66D'),
    (1031, '2025-06-06 11:09:54', 324.09, 'paypal', 'completed', 'AC8E27200DB04197B391'),
    (1032, '2022-10-09 21:34:19', 4183.83, 'credit_card', 'completed', '9AEF353476FD40549A5D'),
    (1033, '2023-05-03 17:39:08', 5313.45, 'paypal', 'completed', '0BF30A093C4A44D89E70'),
    (1034, '2024-07-03 13:55:58', 5990.38, 'credit_card', 'completed', 'A66A8BDD84B34498ABE4'),
    (1035, '2025-01-03 11:31:16', 10118.37, 'paypal', 'completed', 'EB40AFB16DCD4F688A0E'),
    (1036, '2022-12-10 21:50:50', 186.97, 'bank_transfer', 'completed', 'A4CD8E11AADF4D3EB14B'),
    (1037, '2022-03-29 11:02:56', 7449.15, 'credit_card', 'completed', '95436B9380C046AA845A'),
    (1038, '2023-10-21 12:46:35', 411.66, 'debit_card', 'completed', '1C77C051F6684AC5A687'),
    (1039, '2024-11-11 22:56:19', 3553.44, 'debit_card', 'completed', '73CA658D818E489C8246'),
    (1040, '2024-12-14 16:09:50', 356.43, 'paypal', 'completed', '05DC0F74CAA44C7EAE97'),
    (1041, '2024-06-04 13:22:08', 449.24, 'debit_card', 'completed', 'EF4BA5C8D1CC4CEBBF76'),
    (1042, '2025-08-20 10:26:22', 728.39, 'debit_card', 'completed', 'B4A4A59B8CAB45FBAD2C'),
    (1043, '2021-07-27 04:50:29', 1246.67, 'credit_card', 'completed', '98B5A0685B9D4ABA9D24'),
    (1044, '2021-07-02 01:10:17', 3223.99, 'bank_transfer', 'completed', '66929138FF1A47818DB3'),
    (1045, '2022-07-15 08:02:24', 1185.19, 'cash', 'completed', '0793CFEE1760489084C5'),
    (1046, '2021-04-10 03:59:45', 6039.0, 'cash', 'completed', '803607047AD5472FAB85'),
    (1047, '2021-02-16 11:19:38', 374.49, 'credit_card', 'completed', '6D7A5EB131FD4A15B104'),
    (1048, '2021-09-14 13:17:01', 5312.51, 'credit_card', 'completed', 'ED0D63D54E3C4EC0B357'),
    (1049, '2024-12-12 15:22:50', 1142.59, 'debit_card', 'completed', '6464C261CB9D4AF59FCD'),
    (1050, '2024-01-08 19:58:01', 1178.51, 'debit_card', 'completed', '8675A6EEC19145DE8119'),
    (1051, '2021-10-23 20:45:34', 4342.3, 'credit_card', 'completed', '5AB744FAF5CA43358D93'),
    (1052, '2021-06-30 15:15:49', 2258.17, 'paypal', 'completed', '0357852254264CE0AB26'),
    (1053, '2024-02-19 19:30:57', 8158.28, 'debit_card', 'completed', '1750C3C099AA40F1BEC9'),
    (1054, '2023-06-19 21:00:40', 373.41, 'credit_card', 'completed', '1B75258B05CD44A9912C'),
    (1055, '2024-07-31 03:16:10', 9260.78, 'bank_transfer', 'completed', '306146AA660C4F58AFF8'),
    (1056, '2021-08-19 11:19:41', 9258.46, 'debit_card', 'completed', '0305694AA38C41BDAAAF'),
    (1057, '2022-03-05 22:57:42', 6459.25, 'bank_transfer', 'completed', '8EF2D869B4DE406C9D6E'),
    (1058, '2022-10-06 16:36:30', 3430.04, 'bank_transfer', 'completed', 'E23573A02F0D46A8A0DB'),
    (1059, '2023-11-25 22:47:07', 7456.71, 'credit_card', 'failed', '2E0615F16A3D45679A53'),
    (1060, '2022-11-17 10:11:36', 596.0, 'gift_card', 'refunded', 'C184A3ED34A04211AA05'),
    (1061, '2022-05-12 08:00:53', 3046.87, 'credit_card', 'completed', '8A6D3703F80944258392'),
    (1062, '2025-03-10 05:16:51', 1640.2, 'credit_card', 'completed', 'A6410B7E6EC84903BCBA'),
    (1063, '2024-02-28 11:00:34', 1415.15, 'gift_card', 'failed', '7465189DC01841489DAB'),
    (1064, '2025-10-29 09:00:30', 2144.88, 'paypal', 'completed', 'EBB3ABBA0CF4428E9AB5'),
    (1065, '2022-03-24 11:12:51', 283.74, 'debit_card', 'completed', '48857D29D0B24F84AFD5'),
    (1066, '2026-05-12 19:30:25', 955.27, 'bank_transfer', 'completed', '32D5EAFF65474CA3B0A6'),
    (1067, '2025-04-13 23:11:02', 289.31, 'bank_transfer', 'failed', '2BCBE2600CF94A72BC02'),
    (1068, '2025-05-03 00:22:51', 8998.28, 'credit_card', 'completed', '1CE979B063F8450C8FF8'),
    (1069, '2025-11-01 13:17:51', 2883.31, 'cash', 'completed', '09B4AFDC0F8A4FD687E9'),
    (1070, '2021-08-29 15:17:19', 1852.71, 'paypal', 'completed', 'A5B3E30B10E342678163'),
    (1071, '2021-07-10 07:53:53', 9234.78, 'paypal', 'completed', 'B49E491AF65941A9BDAA'),
    (1072, '2023-09-21 08:57:36', 3040.37, 'debit_card', 'completed', '1901127D750F4F59B039'),
    (1073, '2025-02-22 05:47:46', 6084.42, 'credit_card', 'completed', 'A52F45B20E5440C2B100'),
    (1074, '2024-08-05 08:38:51', 4439.88, 'credit_card', 'completed', 'AE577042835D48C19F31'),
    (1075, '2026-01-02 01:49:52', 872.15, 'credit_card', 'completed', '7663E602D88A451F92C9'),
    (1076, '2021-07-26 17:58:17', 3041.91, 'credit_card', 'completed', 'E71C98006E6042C2930B'),
    (1077, '2021-07-10 06:30:25', 8112.49, 'debit_card', 'completed', 'F267B43E1C574D2CB1CC'),
    (1078, '2022-01-24 14:12:18', 273.65, 'paypal', 'failed', '560A5C191DE542779185'),
    (1079, '2024-11-17 09:42:01', 1683.63, 'debit_card', 'failed', '9B26CB68FCCC4C309E1C'),
    (1080, '2021-01-27 19:40:49', 475.24, 'credit_card', 'completed', '69AB8222196F4261B59F'),
    (1081, '2022-11-04 23:49:19', 1104.39, 'gift_card', 'failed', 'CDABBA9A40B3484F80F9'),
    (1082, '2021-12-03 15:02:58', 7193.38, 'credit_card', 'completed', 'C605AB46C6EE4088A481'),
    (1083, '2022-09-02 20:15:55', 5775.41, 'credit_card', 'completed', '6AF18CF37B1247219395'),
    (1084, '2023-10-19 09:46:02', 1294.28, 'debit_card', 'completed', 'DCE23E87B76A496D8C61'),
    (1085, '2023-12-20 05:23:29', 1039.59, 'credit_card', 'completed', 'F46F97B46C86439CA374'),
    (1086, '2026-02-08 12:43:52', 6329.5, 'paypal', 'completed', '0A94970A0A36466897B2'),
    (1087, '2022-10-08 05:50:51', 2623.04, 'credit_card', 'completed', 'F04156D8A94048D99D13'),
    (1088, '2021-04-17 20:36:18', 3458.59, 'credit_card', 'completed', '6A9481DDCFCB4F63B09F'),
    (1089, '2023-05-20 08:24:02', 1856.19, 'paypal', 'completed', '345C70C720554DBAB80F'),
    (1090, '2024-03-30 23:01:22', 636.34, 'bank_transfer', 'completed', '29E7F5B4890C49C5B1A6'),
    (1091, '2021-12-21 01:58:42', 1568.25, 'bank_transfer', 'completed', '7E546256318049B2BF26'),
    (1092, '2023-03-27 14:24:17', 2479.76, 'credit_card', 'completed', '73C2E727AE644ABEA0BC'),
    (1093, '2024-11-23 23:34:43', 9470.77, 'bank_transfer', 'completed', '1598365348DB4A87B085'),
    (1094, '2025-03-25 17:33:18', 2968.95, 'bank_transfer', 'failed', '7A0E8CF9679048CAB2A0'),
    (1095, '2025-01-28 00:13:19', 6672.99, 'paypal', 'completed', 'B35E4F4A576443449A40'),
    (1096, '2024-09-05 13:41:38', 13720.67, 'debit_card', 'completed', '7C7C1009373049848FBC'),
    (1097, '2024-10-22 12:10:05', 141.46, 'paypal', 'completed', '6885585318524460836E'),
    (1098, '2023-09-15 23:38:07', 1844.89, 'credit_card', 'completed', '6C93451FC7B045DEAA70'),
    (1099, '2025-09-02 19:53:02', 11966.45, 'paypal', 'completed', '0A55F8A76B974BBCAA8A'),
    (1100, '2025-07-19 06:57:57', 71.52, 'credit_card', 'completed', 'D8CD9EB67CD54260AFDF'),
    (1101, '2026-02-18 21:58:52', 2090.91, 'paypal', 'completed', '8F9D5B3A198C4BFD8E9F'),
    (1102, '2022-01-19 16:28:15', 505.67, 'credit_card', 'completed', 'AEAF7F560FFA4FEAB8DF'),
    (1103, '2022-04-09 15:47:28', 561.39, 'debit_card', 'refunded', '40EE13B7EEC948B9A8B0'),
    (1104, '2022-08-31 15:02:37', 657.92, 'debit_card', 'pending', '6DE1DE906FEE47489161'),
    (1105, '2021-03-19 08:21:54', 2155.82, 'debit_card', 'completed', 'BE0915C507D94B19BBFD'),
    (1106, '2022-10-10 03:05:48', 11519.07, 'bank_transfer', 'completed', '314E5AA628234FC49304'),
    (1107, '2025-04-24 05:26:23', 5417.54, 'debit_card', 'completed', '042B6343D4FA45E7B019'),
    (1108, '2023-09-01 01:08:37', 565.34, 'cash', 'completed', '409CEFC9AADF46C9801E'),
    (1109, '2026-03-11 12:00:42', 954.18, 'credit_card', 'completed', '371C9942C32B41029A27'),
    (1110, '2026-01-26 08:34:11', 1481.27, 'credit_card', 'completed', '73068355C06D4818A2FC'),
    (1111, '2023-04-18 18:01:46', 664.01, 'debit_card', 'completed', '410A560D5A3B499989A5'),
    (1112, '2021-03-13 23:41:27', 5520.88, 'cash', 'completed', 'FD65B7BBD7B3416EBFDF'),
    (1113, '2025-11-25 22:11:42', 223.91, 'debit_card', 'pending', '269327E54DB0499FB47C'),
    (1114, '2021-06-08 20:06:43', 20551.05, 'cash', 'completed', '5D67ED63F16E4C67BA0E'),
    (1115, '2025-01-20 21:06:27', 924.8, 'credit_card', 'completed', '7AB6B8FC64B24FC8BCF4'),
    (1116, '2024-10-06 02:20:03', 193.97, 'debit_card', 'completed', '3393705738F74796AF36'),
    (1117, '2021-11-12 09:18:37', 8312.47, 'bank_transfer', 'completed', 'D586291346CB48F2B60F'),
    (1118, '2026-04-06 12:15:05', 218.07, 'paypal', 'completed', 'E5610A2A1D0A40C3AAF8'),
    (1119, '2024-07-25 02:48:43', 393.25, 'debit_card', 'completed', 'C7660230CD1C410099EF'),
    (1120, '2021-10-09 01:28:12', 6858.03, 'paypal', 'completed', 'DD2623D502214E8B9141'),
    (1121, '2021-11-29 15:37:31', 5847.72, 'paypal', 'completed', 'B4F51A9D699647259910'),
    (1122, '2022-08-26 23:57:25', 4339.54, 'credit_card', 'failed', '535DDDBF2AA74F5A9987'),
    (1123, '2024-12-24 02:16:01', 610.49, 'paypal', 'completed', '3AA42CCD7A2C42E19731'),
    (1124, '2022-05-02 23:01:11', 9875.09, 'credit_card', 'completed', 'FCE2347A811241F099BF'),
    (1125, '2023-03-02 02:03:58', 1262.53, 'paypal', 'completed', '08295BDFE33E44F2825D'),
    (1126, '2026-03-20 06:56:52', 7033.51, 'bank_transfer', 'completed', '4DDDD0E2D9294B7DA1B9'),
    (1127, '2023-04-26 17:31:57', 831.28, 'credit_card', 'pending', '81C7DE2C26B9450A897D'),
    (1128, '2023-01-27 19:34:27', 651.25, 'credit_card', 'completed', '1A8481166AD741B2B969'),
    (1129, '2021-11-03 03:56:46', 2218.86, 'debit_card', 'completed', '7835C35D60B94235A480'),
    (1130, '2026-02-08 21:34:28', 2912.02, 'credit_card', 'pending', 'E751FBB9AC0644FC880A'),
    (1131, '2024-02-09 14:05:52', 282.14, 'debit_card', 'completed', '0CB58CBFCB9D4D5F98F6'),
    (1132, '2021-09-08 03:15:42', 905.83, 'debit_card', 'completed', '7A849BE31FAD4A7EB46B'),
    (1133, '2025-04-06 16:00:34', 638.09, 'bank_transfer', 'completed', 'E912FFD1C79E4D1C80E5'),
    (1134, '2024-02-04 05:36:28', 6868.8, 'credit_card', 'completed', '5B41520676934CBA995A'),
    (1135, '2022-09-29 07:20:42', 96.95, 'credit_card', 'completed', '541649C2EAF247CA9341'),
    (1136, '2024-03-09 20:41:53', 8347.63, 'credit_card', 'completed', '1A434428453E47BC96CE'),
    (1137, '2023-05-15 16:29:46', 1056.66, 'credit_card', 'completed', 'B7C6A49942FE428EA37D'),
    (1138, '2023-10-22 18:29:54', 10321.32, 'credit_card', 'completed', 'DD369A51AD904DD4861D'),
    (1139, '2021-09-29 21:10:14', 12205.76, 'paypal', 'completed', '1011BFFE0B19471193B7'),
    (1140, '2021-11-27 18:17:06', 985.28, 'debit_card', 'completed', 'A7883B0F043243E296AD'),
    (1141, '2024-09-06 07:00:23', 511.07, 'credit_card', 'completed', 'FF69C89A94714A2E95A5'),
    (1142, '2022-07-08 01:27:25', 10286.3, 'paypal', 'completed', '12EC247492FD4BAD98DE'),
    (1143, '2025-04-02 04:43:41', 6731.77, 'paypal', 'completed', 'F94DF986815748B68BC6'),
    (1144, '2021-05-22 02:32:23', 12579.58, 'bank_transfer', 'completed', '20E13520F2CF49489A9F'),
    (1145, '2022-11-08 18:27:38', 1505.53, 'bank_transfer', 'completed', 'DFB37C74B9EE4BFDAD6E'),
    (1146, '2026-05-10 07:48:30', 1772.62, 'credit_card', 'completed', 'C239ADC799314819943D'),
    (1147, '2024-01-18 07:02:26', 3150.41, 'paypal', 'completed', '238ECEC847B54F008BBC'),
    (1148, '2026-04-16 18:10:49', 1420.78, 'credit_card', 'completed', 'CE4B26079A744D83BD65'),
    (1149, '2021-07-26 17:54:20', 7740.65, 'debit_card', 'completed', 'FAF8E5F527044F33B387'),
    (1150, '2023-08-08 14:09:05', 1003.09, 'cash', 'completed', 'AC011A0437EF40A38340'),
    (1151, '2021-02-14 19:25:12', 3489.18, 'debit_card', 'completed', '2EA88A1F5F7D466DB9C6'),
    (1152, '2024-08-15 22:03:07', 1701.25, 'credit_card', 'completed', 'A0E238DF0B1B432E8B2B'),
    (1153, '2026-05-23 00:44:19', 864.36, 'credit_card', 'completed', 'A46DB050C681447FA082'),
    (1154, '2024-09-06 15:23:55', 2988.59, 'credit_card', 'completed', '295DFD7115D4498A96B0'),
    (1155, '2022-01-30 00:34:40', 2832.71, 'credit_card', 'completed', 'A1019D854215413F998B'),
    (1156, '2022-10-11 09:36:36', 5590.91, 'credit_card', 'completed', 'F0D1344CDBB54CCC828F'),
    (1157, '2023-06-03 05:57:48', 2962.72, 'paypal', 'completed', 'FBCFE2239348419195B9'),
    (1158, '2026-05-17 05:06:26', 1452.51, 'debit_card', 'completed', '78C7DA446E1A47F0B46C'),
    (1159, '2025-09-04 02:18:22', 4133.2, 'credit_card', 'completed', '872023C0F5D84B1CB95D'),
    (1160, '2024-03-18 05:20:46', 2492.01, 'paypal', 'completed', '9DB51A0DD54B471994C9'),
    (1161, '2021-09-09 01:18:20', 1032.46, 'debit_card', 'pending', 'FF4AA4DD71EB4536BB51'),
    (1162, '2023-11-19 08:15:15', 3873.83, 'paypal', 'completed', '00F9490B554E461CBD72'),
    (1163, '2023-10-05 07:15:12', 204.56, 'paypal', 'completed', '780C402FF1AC47E39902'),
    (1164, '2022-02-26 16:31:02', 972.15, 'credit_card', 'completed', '9EF82BB3B9AF42C288FF'),
    (1165, '2024-08-22 06:13:31', 6137.6, 'debit_card', 'completed', '5CC75E0B2960495DAE4D'),
    (1166, '2021-03-09 12:57:42', 432.51, 'credit_card', 'completed', '6196F7FF2CF04CD59731'),
    (1167, '2025-03-02 13:01:00', 11171.02, 'debit_card', 'completed', '9C5E0443B11948F98111'),
    (1168, '2021-08-12 12:58:59', 22457.39, 'cash', 'completed', '8D37873EFB3C474186AB'),
    (1169, '2023-07-26 14:01:33', 1060.71, 'debit_card', 'completed', '76643D2DC3354161A74C'),
    (1170, '2025-03-21 09:23:26', 1465.31, 'debit_card', 'refunded', '8F48B181F6054DCF8976'),
    (1171, '2023-01-16 18:01:45', 8711.56, 'credit_card', 'completed', '386655DD2D8448E693BD'),
    (1172, '2022-10-08 07:04:18', 2048.22, 'bank_transfer', 'completed', '7FB4B72165F24DF193C4'),
    (1173, '2022-04-12 02:08:21', 1600.03, 'cash', 'completed', '74611EA156FD48D6A0F8'),
    (1174, '2026-05-16 09:35:39', 140.09, 'paypal', 'completed', '1E4A6D500DA545E8BB76'),
    (1175, '2025-12-23 07:19:19', 2113.85, 'credit_card', 'refunded', 'F932BBBC9BE04358A43A'),
    (1176, '2024-06-02 08:09:33', 12283.26, 'paypal', 'completed', 'B69692655A264E3AADA2'),
    (1177, '2025-08-29 05:48:22', 8470.73, 'credit_card', 'failed', '3F20827E8A3A4E85A7B6'),
    (1178, '2023-05-15 11:07:21', 1583.0, 'credit_card', 'completed', 'C796E61C8DCF413D8F8A'),
    (1179, '2025-02-14 11:51:35', 1956.68, 'credit_card', 'completed', '2035000872B3433FB466'),
    (1180, '2023-05-27 06:10:55', 8276.4, 'paypal', 'completed', '1CE514D2C06746B39C7C'),
    (1181, '2025-01-28 10:08:56', 9340.67, 'credit_card', 'completed', '5D3E007B7CF94761B66F'),
    (1182, '2023-12-22 02:55:47', 2231.95, 'cash', 'completed', 'A985CFAAAAC244AFBF90'),
    (1183, '2021-12-10 15:11:20', 3312.52, 'debit_card', 'completed', '340D9BE58C18403FAEF2'),
    (1184, '2023-03-14 05:15:24', 626.52, 'paypal', 'completed', 'BF1BB04BC607455DA385'),
    (1185, '2022-06-23 17:10:43', 2557.58, 'cash', 'completed', '7A7693CC3B2D46A38D47'),
    (1186, '2021-07-15 01:05:17', 2891.39, 'debit_card', 'completed', 'ED715999F9E84A92A086'),
    (1187, '2024-06-19 08:29:08', 9959.72, 'gift_card', 'completed', '3F1B5363B57B42AA82C8'),
    (1188, '2023-08-12 04:29:26', 10856.51, 'paypal', 'completed', '53E33E7295C2457E803F'),
    (1189, '2022-04-18 02:36:15', 1739.58, 'credit_card', 'completed', '38EA29A57A9242A79399'),
    (1190, '2022-03-09 08:38:53', 6505.35, 'paypal', 'completed', '97BF196BDDE34F97883F'),
    (1191, '2023-03-01 10:39:17', 2395.62, 'credit_card', 'completed', '626CBB31554B4A5E87E9'),
    (1192, '2022-06-24 02:09:05', 2063.25, 'debit_card', 'completed', 'BD21C98433B2477A9865'),
    (1193, '2023-03-11 00:57:23', 6261.57, 'paypal', 'completed', 'F7977902B6A944A795D0'),
    (1194, '2023-12-16 23:24:28', 6116.26, 'paypal', 'completed', 'A6FC0BA9E7A540C982A5'),
    (1195, '2023-05-19 05:35:14', 2391.79, 'gift_card', 'completed', '7B7A9EA7EFD942B195D6'),
    (1196, '2023-08-16 01:30:20', 471.26, 'credit_card', 'completed', 'E806210B31B44624844D'),
    (1197, '2021-10-16 21:12:24', 12030.14, 'bank_transfer', 'refunded', 'F43955D00232458EA2E6'),
    (1198, '2024-03-26 15:39:34', 1221.36, 'credit_card', 'completed', 'B1037095F81D471FBD3D'),
    (1199, '2025-06-26 04:24:05', 5600.18, 'gift_card', 'completed', 'E3234BD51F0547F2A668'),
    (1200, '2025-04-10 20:41:15', 2961.32, 'paypal', 'pending', 'FFF24CF0722C4E3D9D6D');


-- ──────────────────────────────────────────────────────────────────
-- 13. REVIEWS
-- ──────────────────────────────────────────────────────────────────

INSERT INTO reviews (product_id, customer_id, order_id, rating, title, body, is_verified)
VALUES
    (61, 236, 1171, 5, 'Mind everything order to difficult against low foreign.', 'Material right identify weight feel. Blood challenge difference situation thing.', TRUE),
    (86, 6, 15, 4, 'Less check better my guy.', 'Note federal drug performance way production. Unit arm image it increase within.', TRUE),
    (53, 223, 554, 4, NULL, NULL, TRUE),
    (43, 127, 153, 4, 'Visit brother dog these man when.', 'If support expert particular close. Our order table beyond.', TRUE),
    (112, 183, 257, 4, NULL, NULL, TRUE),
    (17, 139, 410, 4, 'Someone across music manage.', NULL, TRUE),
    (108, 169, 113, 4, 'Various soldier recently charge.', NULL, TRUE),
    (48, 287, 992, 4, 'Able concern card.', NULL, TRUE),
    (47, 246, 991, 5, 'Quickly truth record program beautiful close.', 'Beyond you bank always a two.', FALSE),
    (38, 175, 1032, 3, 'Today station make environment.', 'Student author partner catch left system church simply.', TRUE),
    (64, 8, 192, 5, 'Benefit paper ready allow system professor reason.', 'Weight fill president spring individual us. Program decision leave reflect already.', FALSE),
    (10, 163, 311, 5, NULL, NULL, FALSE),
    (85, 285, 884, 5, 'Onto brother blue large.', 'Executive four floor dream.', TRUE),
    (91, 130, 495, 5, 'Itself but popular wall need onto visit.', 'Prevent hair hospital generation any subject sound.', TRUE),
    (107, 95, 1146, 5, 'Cost marriage probably however remember food.', 'Seat religious probably when seem test.', TRUE),
    (3, 295, 785, 5, 'Account situation west indeed.', 'Challenge this drive page whatever trade. Individual side place represent.', TRUE),
    (75, 66, 728, 4, 'Health able lot station may decision forward probably.', 'Most threat year partner partner. Show rule always who opportunity face.', FALSE),
    (27, 298, 788, 5, NULL, NULL, FALSE),
    (82, 154, 448, 5, 'And forward imagine phone social listen there.', NULL, TRUE),
    (67, 9, 511, 5, 'Trial participant discuss firm opportunity last feel.', NULL, TRUE),
    (55, 216, 623, 4, NULL, 'Protect often house above director.', FALSE),
    (72, 229, 149, 5, 'Weight last however involve when.', 'Sport national indicate maybe weight some policy.', FALSE),
    (51, 85, 556, 4, NULL, NULL, FALSE),
    (90, 74, 35, 5, 'Shoulder professional market oil move.', 'Sister talk understand home rise. Nation customer rate bag.', TRUE),
    (109, 248, 281, 4, NULL, 'Again candidate see election price public indeed.', TRUE),
    (55, 263, 783, 4, NULL, NULL, TRUE),
    (52, 220, 567, 4, 'Daughter clearly best use finally my.', NULL, TRUE),
    (42, 222, 349, 5, NULL, NULL, TRUE),
    (16, 72, 117, 5, 'Police baby choose building view well at.', 'Box later building she.', FALSE),
    (32, 292, 726, 4, 'Let business property everything bar smile good.', 'Nation economy adult trial source. Yeah class garden miss.', FALSE),
    (92, 102, 163, 5, 'Create yard serious goal future home series.', 'Simply I cold perform low only recently.', TRUE),
    (24, 293, 148, 1, 'Strong value sit newspaper leader.', NULL, FALSE),
    (9, 289, 244, 4, 'Politics current among laugh about green.', 'Indeed study wide television be successful. Minute she or list network necessary seven build.', FALSE),
    (10, 82, 143, 4, 'Skill point early.', 'Fall teach area feel who carry. Staff yourself exactly sure wonder.', FALSE),
    (95, 148, 227, 5, NULL, NULL, TRUE),
    (64, 129, 371, 4, NULL, NULL, TRUE),
    (69, 69, 697, 2, 'Hair marriage school imagine ago expect continue.', 'Use owner surface guy.', FALSE),
    (3, 133, 9, 5, NULL, NULL, TRUE),
    (75, 188, 948, 4, 'Window should five buy.', 'Old bad any find set. Tree bag require very that national trade.', FALSE),
    (46, 190, 316, 4, 'Beyond idea us find there.', NULL, FALSE),
    (61, 60, 668, 2, 'Price especially appear attention.', 'Blood local light. Image blood city vote time easy.', TRUE),
    (77, 298, 462, 5, 'Collection possible notice term piece admit.', NULL, TRUE),
    (102, 59, 1131, 5, 'Rock call scene state radio.', NULL, FALSE),
    (78, 279, 561, 2, NULL, 'Accept mission event some simply could.', TRUE),
    (74, 157, 700, 3, 'Draw involve party home stay fall carry.', 'Treat explain eat task by inside. Marriage within if course education campaign continue political.', TRUE),
    (7, 182, 64, 4, 'Whose eat represent discuss.', 'Rule range card.', TRUE),
    (81, 223, 554, 5, NULL, 'Where off prepare response stop.', TRUE),
    (98, 41, 126, 4, NULL, NULL, TRUE),
    (83, 98, 402, 2, 'Including game language.', NULL, TRUE),
    (46, 125, 916, 4, 'Right size than foot.', 'Process quite kitchen cut play deal. Could program water drug major event.', TRUE),
    (59, 300, 847, 5, NULL, NULL, TRUE),
    (72, 233, 277, 4, NULL, 'Able less article threat arrive.', TRUE),
    (70, 104, 817, 4, 'Modern data book expert exist computer shoulder.', 'Assume lawyer field difference cut tell style. Especially lose just card sit population.', FALSE),
    (8, 76, 819, 4, 'Despite we meeting value body return.', NULL, TRUE),
    (4, 216, 623, 4, 'Effort better television might financial identify as.', NULL, TRUE),
    (96, 101, 1016, 4, 'Drop executive special serious.', 'Off under two physical within about when force. Information game loss cost run result interesting.', TRUE),
    (41, 137, 895, 5, 'Only pick prove whether north.', NULL, TRUE),
    (111, 110, 1028, 5, 'Benefit line cultural each animal from.', NULL, TRUE),
    (20, 136, 47, 5, NULL, 'Mouth manage issue none ready. North case improve analysis.', TRUE),
    (85, 46, 1187, 4, 'Include you authority race wish kid career.', NULL, TRUE),
    (113, 2, 515, 4, 'Despite best either truth important.', NULL, TRUE),
    (62, 27, 1005, 4, 'Poor threat throw behavior type.', NULL, TRUE),
    (94, 288, 199, 5, NULL, 'Behavior economy our second. Analysis ready must price receive.', TRUE),
    (40, 221, 925, 5, NULL, 'Stage describe in former become old under.', TRUE),
    (31, 239, 596, 4, 'A recent various send news.', 'School wonder occur.', TRUE),
    (89, 44, 823, 4, 'Court state doctor and conference.', 'Car leave product difficult care.', TRUE),
    (10, 95, 956, 4, 'Rise right happen series.', NULL, TRUE),
    (26, 89, 125, 5, 'Strong it reach street city.', NULL, FALSE),
    (46, 51, 373, 3, 'Account hear mouth range throw board.', 'Available indeed itself record coach.', TRUE),
    (96, 267, 200, 5, 'Research this most too option which one.', NULL, TRUE),
    (67, 77, 1004, 3, 'Though church young mouth note well.', 'Particularly some evidence employee. Unit sometimes structure cultural far.', TRUE),
    (39, 288, 2, 3, 'Let before ok someone camera approach say.', NULL, FALSE),
    (55, 123, 157, 1, 'Wear both look training oil scene career.', 'Much discussion call traditional. Teach myself avoid much base modern behavior.', TRUE),
    (28, 299, 104, 5, 'Forward carry condition into sure.', NULL, TRUE),
    (77, 272, 944, 4, 'Cause so recognize become challenge.', 'Instead plant bag set. Clearly everybody suggest air she sister simple.', TRUE),
    (30, 128, 288, 3, NULL, 'Base close score.', TRUE),
    (89, 71, 1083, 4, NULL, 'Bar couple well better. Positive arm piece why ago change government.', TRUE),
    (94, 188, 698, 4, 'Public some mean face factor city.', 'Outside office live make. Character station eye perform.', TRUE),
    (28, 92, 775, 3, 'Fire light medical.', NULL, TRUE),
    (63, 144, 138, 5, NULL, NULL, TRUE),
    (43, 292, 726, 5, NULL, NULL, TRUE),
    (81, 175, 521, 4, NULL, NULL, FALSE),
    (105, 291, 463, 5, 'Ago out able end early generation game.', 'Every change help but include something memory. Hard any financial color officer role.', TRUE),
    (110, 201, 707, 3, 'Research person apply debate improve task next.', NULL, FALSE),
    (73, 175, 532, 5, NULL, NULL, FALSE),
    (61, 48, 1149, 5, 'Great your sign single well task moment call.', 'Soon up tend education more.', FALSE),
    (18, 150, 1048, 3, NULL, NULL, TRUE),
    (29, 26, 1106, 4, 'Trip school energy safe while popular natural.', NULL, TRUE),
    (69, 288, 2, 5, 'Marriage us middle her shake month ask.', 'Choice assume recent people far.', FALSE),
    (48, 6, 438, 5, 'Miss population project film.', 'Again these series candidate.', TRUE),
    (3, 163, 398, 5, 'Issue bit whether edge left American hope.', NULL, TRUE),
    (73, 185, 671, 2, NULL, NULL, FALSE),
    (8, 270, 1144, 5, 'Hope great seek serious term amount idea director.', 'Myself cost court tend role protect. Help in evidence fact office spring measure.', TRUE),
    (99, 246, 1139, 5, 'Sign room happy.', 'Million store every rise care particular recent. Also rather arm table draw trouble.', TRUE),
    (36, 187, 223, 4, 'Wide station create moment onto.', 'Rock southern south bed represent lawyer.', FALSE),
    (53, 248, 281, 2, 'Return skin name paper cup order piece.', 'Describe if follow difficult think talk rich.', TRUE),
    (60, 34, 483, 1, NULL, NULL, TRUE),
    (88, 151, 644, 4, NULL, 'Seven market which yard believe whether teach single.', FALSE),
    (102, 110, 780, 5, 'Through action continue star young ahead blood.', NULL, FALSE),
    (85, 279, 150, 4, NULL, NULL, TRUE),
    (34, 16, 1085, 5, 'Born campaign others under each help.', NULL, TRUE),
    (21, 272, 944, 5, NULL, 'Enough exist without build right indeed able. Quite hot particular generation though baby page speak.', TRUE),
    (3, 255, 717, 1, NULL, NULL, TRUE),
    (15, 91, 132, 2, 'Police offer board factor discuss morning gas.', NULL, FALSE),
    (111, 216, 945, 4, 'Only series imagine.', 'Walk paper media available.', TRUE),
    (64, 272, 46, 5, 'Every front baby effort already second room.', 'Movie wait amount happen again society down.', FALSE),
    (98, 64, 133, 4, 'Investment whom season mind benefit second.', 'Voice want themselves. Minute data hospital this.', FALSE),
    (111, 300, 852, 5, 'Stand several hit rate.', 'Wait defense well should effect future.', FALSE),
    (90, 181, 915, 4, NULL, 'Meeting contain occur magazine suggest interesting.', TRUE),
    (114, 209, 918, 4, 'Popular central decision modern enough see American.', NULL, TRUE),
    (51, 122, 1017, 5, 'Fight never soldier world sister.', 'Down television tree say more. Animal do hear rich apply project.', TRUE),
    (106, 236, 942, 5, 'Reality adult state medical year oil ask.', 'Off various research laugh effort.', TRUE),
    (9, 246, 782, 2, 'Idea our of wall.', NULL, FALSE),
    (63, 59, 290, 4, 'Short of heart sister fast need.', 'Second put seven take bed mission certain situation. Himself weight eat form bill again matter finally.', TRUE),
    (13, 226, 1134, 4, NULL, NULL, TRUE),
    (73, 153, 436, 5, 'Society task well three board stuff southern development.', 'Identify nice visit imagine record wrong.', TRUE),
    (9, 19, 1071, 5, 'Choice policy lead individual through politics community.', NULL, TRUE),
    (64, 18, 802, 4, 'Finally wall right mind determine.', NULL, TRUE),
    (42, 35, 121, 3, NULL, 'Practice together minute price night admit. Stock today whether thought brother.', FALSE),
    (76, 154, 448, 4, NULL, NULL, TRUE),
    (14, 192, 218, 5, 'Total not its air.', NULL, FALSE),
    (26, 140, 519, 3, 'Image several name chair.', NULL, TRUE),
    (68, 36, 969, 1, 'Behavior nearly of general piece.', NULL, TRUE),
    (45, 246, 641, 5, 'Address loss international public rate.', 'Southern finish front under build.', TRUE),
    (7, 233, 590, 5, 'Since human chance onto significant.', NULL, TRUE),
    (51, 64, 415, 5, 'Evening together take strategy clearly sell a.', NULL, TRUE),
    (27, 27, 1005, 5, 'Its hospital those artist area street shake.', NULL, TRUE),
    (107, 182, 581, 4, NULL, NULL, TRUE),
    (36, 47, 1152, 5, 'Dark ball cover partner statement statement agent.', 'Month partner evidence fall paper tax.', FALSE),
    (76, 67, 112, 4, NULL, NULL, TRUE),
    (15, 18, 214, 4, 'Approach imagine concern picture cultural old.', NULL, TRUE),
    (53, 168, 860, 5, 'Politics phone anyone happy point establish.', NULL, FALSE),
    (34, 42, 1132, 5, 'Key out hospital around wall those rise.', NULL, TRUE),
    (69, 241, 460, 2, 'Provide others general new begin their.', 'Type type word not usually at sing. However model move.', TRUE),
    (24, 233, 590, 3, NULL, 'Cup law become car use.', FALSE),
    (38, 279, 150, 4, 'Resource commercial general which board name.', 'Action support tonight clearly big owner a.', FALSE),
    (51, 163, 311, 3, 'Despite instead stay woman.', 'Life national with heavy. Design avoid property father enough.', TRUE),
    (9, 53, 549, 4, NULL, 'Ten follow cell how.', TRUE),
    (75, 237, 360, 5, 'Amount stage issue expect apply later radio.', NULL, TRUE),
    (77, 291, 757, 4, 'Huge move until toward.', NULL, TRUE),
    (34, 69, 576, 5, 'Project color cost add claim begin man.', NULL, TRUE),
    (49, 144, 174, 5, NULL, 'Still bill cover mind wind commercial national. Six rather just serious term discuss state.', FALSE),
    (1, 58, 338, 5, 'Theory summer concern race five.', 'Director seek where age size open.', TRUE),
    (33, 74, 806, 4, NULL, 'Race yes law record I visit. Too million space team administration.', TRUE),
    (52, 254, 171, 4, 'Heavy century probably.', NULL, TRUE),
    (78, 106, 437, 5, NULL, NULL, TRUE),
    (94, 116, 293, 5, NULL, NULL, TRUE),
    (7, 65, 526, 3, 'Congress pick foreign city.', NULL, TRUE),
    (117, 209, 918, 5, NULL, NULL, FALSE),
    (21, 64, 415, 5, 'Quickly process address friend writer view.', NULL, TRUE),
    (67, 218, 72, 5, 'If change authority prepare view.', 'Catch nothing why sense western newspaper move.', TRUE),
    (57, 216, 428, 4, 'Dog perhaps my situation test.', 'Throughout also former almost.', TRUE),
    (94, 175, 1193, 5, 'Reality discover success item rest respond economy why.', NULL, TRUE),
    (101, 268, 294, 2, 'Fear paper suffer particular.', 'At base get personal medical while seem along. Begin type dog name language local.', TRUE),
    (18, 260, 582, 4, 'Shoulder prevent ago past ever sister white.', 'Professional left particular manage my tax off job.', TRUE),
    (7, 17, 197, 4, 'Responsibility child street floor officer management seek.', 'Race a poor radio society happy. Third professional test sense hope.', TRUE),
    (78, 49, 425, 4, 'Forward lead although pull collection tonight compare second.', NULL, FALSE),
    (113, 120, 736, 4, 'Environmental consumer model leave hour cell.', NULL, TRUE),
    (99, 140, 21, 4, 'Family point plant card mouth office especially hot.', NULL, TRUE),
    (71, 233, 590, 4, 'Term create whether type various.', 'Clearly bag quite foreign mouth full. Concern war home why commercial watch develop.', FALSE),
    (29, 219, 166, 5, NULL, 'Morning site have difference yard mean.', FALSE),
    (110, 148, 227, 5, 'Represent hard agent position million what wear.', NULL, FALSE),
    (75, 246, 991, 3, NULL, NULL, TRUE),
    (32, 26, 1092, 1, 'Food particular series significant expert energy account.', 'Perhaps there throw station avoid strategy trial out.', TRUE),
    (40, 275, 358, 5, 'Another miss relate old.', 'Beat hair house.', TRUE),
    (20, 103, 612, 3, 'Foot law force foreign.', 'Rock hand though stage live.', TRUE),
    (23, 116, 838, 5, 'Best sometimes language fish administration per well.', NULL, TRUE),
    (27, 231, 305, 5, NULL, 'Exist show beautiful simply.', TRUE),
    (43, 46, 1021, 5, 'Lead past way business.', 'List art run capital long even candidate. Money task give clear carry former speak.', FALSE),
    (58, 216, 945, 5, 'Indicate western tell on indeed senior.', 'Evidence television catch relationship member work. Must fund open who someone.', TRUE),
    (43, 228, 329, 4, 'Skin success explain maybe fight pass.', NULL, TRUE),
    (76, 196, 649, 5, NULL, NULL, TRUE),
    (110, 261, 334, 3, 'Whose speech into forward.', 'Think amount soon.', TRUE),
    (77, 85, 556, 4, 'Police only there authority door poor.', 'Than attorney accept future almost daughter.', TRUE),
    (96, 175, 521, 5, 'New consider beyond field surface modern.', NULL, FALSE),
    (9, 275, 1003, 3, 'History people respond century white real.', 'Large PM kid we poor change.', FALSE),
    (33, 194, 836, 4, NULL, 'Hand middle school cold.', TRUE),
    (40, 8, 667, 5, 'Explain wear attorney despite spend remain.', NULL, TRUE),
    (34, 174, 159, 4, 'Say couple as customer.', 'Phone perhaps arrive.', TRUE),
    (55, 34, 1031, 5, 'Those mind indeed.', 'Daughter need generation mouth. Identify relationship professor computer Congress glass less.', FALSE),
    (113, 45, 454, 5, NULL, 'No enter career choice number allow.', TRUE),
    (34, 41, 731, 5, NULL, 'Bed staff talk score him price drop bill.', TRUE),
    (21, 216, 428, 4, 'Near consider keep.', 'Compare lead Democrat kitchen response describe north.', TRUE),
    (103, 245, 457, 4, 'Whom what unit for common office note pass.', 'Western run son price. Away field network century to foot hair who.', TRUE),
    (100, 24, 282, 3, 'Talk music floor vote environment business right.', 'Despite space face walk number end effect. Particularly rise Congress land station team keep.', TRUE),
    (32, 50, 718, 5, NULL, 'Company attorney area east too life money.', TRUE),
    (99, 66, 728, 4, 'Responsibility Democrat remain stage catch week watch.', 'Candidate agreement push will care. However so television nature community third.', FALSE),
    (90, 68, 688, 5, 'Set major specific rather letter.', NULL, TRUE),
    (105, 209, 918, 5, 'Media notice glass decision science relate head.', 'Continue PM hour article study seek. Dark everything few.', TRUE),
    (61, 162, 506, 5, 'Population spring talk off body at.', NULL, TRUE),
    (45, 139, 410, 5, 'West the now up.', 'Single poor cold.', FALSE),
    (44, 12, 605, 5, NULL, 'Professional begin current everyone test memory. Partner cultural above indeed.', TRUE),
    (101, 179, 75, 4, NULL, 'Decision order behavior whose. Huge plan rule break.', FALSE),
    (22, 280, 778, 4, 'Brother rather red least.', NULL, TRUE),
    (117, 187, 583, 5, 'Sell cause boy sign pull break him.', 'Tree among pay all.', FALSE),
    (38, 190, 316, 5, 'Rich product understand service.', NULL, TRUE),
    (32, 27, 1005, 5, 'Cup performance role already occur.', 'Front movie produce lay theory specific. Billion share example beyond expect smile raise.', TRUE),
    (114, 138, 81, 5, 'Modern two teacher office force care others heart.', 'Create suggest yes glass herself social special save.', TRUE),
    (17, 71, 1083, 3, NULL, 'Resource notice generation single on.', TRUE),
    (101, 201, 707, 4, NULL, 'Director law center course.', TRUE),
    (113, 263, 564, 4, 'Near much hold several candidate suffer.', 'Thousand sing agent wrong.', TRUE),
    (114, 90, 862, 5, 'Institution gun class.', NULL, TRUE),
    (78, 141, 885, 5, 'Newspaper everyone coach people kitchen.', 'International opportunity include candidate team most.', TRUE),
    (65, 162, 190, 4, NULL, 'Floor well citizen these place account.', FALSE),
    (48, 98, 402, 4, 'Allow around admit guy toward.', NULL, FALSE),
    (58, 168, 906, 5, 'North shoulder later institution skin performance he.', NULL, FALSE),
    (48, 136, 662, 4, 'Quality your head interesting common early look blood.', 'Its book never shoulder something method although.', TRUE),
    (14, 32, 93, 5, 'South say include.', 'Last everybody wall major.', FALSE),
    (55, 272, 525, 4, 'Might name might speech prove language.', 'Air rest wind region less crime amount laugh.', TRUE),
    (40, 27, 1005, 5, 'Approach Republican forward why spend.', NULL, TRUE),
    (106, 252, 38, 4, 'Guess most every feel song.', 'Region agent north consider.', TRUE),
    (104, 278, 202, 3, 'Teacher put land region other many daughter.', 'Free yourself sound. Parent church special voice two.', FALSE),
    (79, 115, 327, 4, 'Threat join chance good ask drive.', 'Affect arm entire increase beyond whole phone.', TRUE),
    (66, 24, 892, 3, 'Sense somebody anything.', 'Project buy edge after pretty one name. Attack resource serious teach piece especially able.', TRUE),
    (82, 239, 596, 4, 'Property remain first common eight.', 'Also operation position our market tree situation. Writer police possible cup opportunity rate sport.', FALSE),
    (38, 26, 283, 5, 'Owner seek bill traditional western chance.', 'Weight machine number eat store. Join decision read middle opportunity eye.', TRUE),
    (1, 144, 1053, 5, NULL, 'Yet land address represent. Close issue write produce ago.', TRUE),
    (89, 107, 733, 5, 'Anything leave tough such black improve subject.', 'Sort physical believe us view want son dog.', TRUE),
    (52, 69, 576, 4, NULL, 'Message mean year once too today base. While room Mr personal who until.', TRUE),
    (65, 175, 1193, 5, 'Air star audience national human employee movement.', NULL, TRUE),
    (100, 142, 516, 4, 'Serious later they green.', 'Number key medical join activity. Article agent music industry.', TRUE),
    (86, 96, 856, 4, 'List behavior successful success herself be.', NULL, TRUE),
    (57, 105, 520, 5, NULL, 'Before possible base citizen through purpose. Establish close prove nice measure leg sell official.', TRUE),
    (46, 198, 968, 5, NULL, 'Environment open director. Else so so interest.', TRUE),
    (111, 195, 220, 4, 'Interview manager necessary easy maintain purpose.', 'Difference reveal government single least something source. Consider policy those unit reduce executive.', FALSE),
    (56, 146, 481, 4, NULL, 'Himself eat enter partner agent laugh. Charge know check full history.', FALSE),
    (64, 71, 507, 4, 'Wonder green set stay.', NULL, FALSE),
    (68, 183, 431, 5, 'Every national a whose whether single.', 'Hundred recent direction American job world house.', TRUE),
    (24, 285, 884, 5, 'Wrong send knowledge office.', 'Perhaps as feel. Your both to yes eat.', TRUE),
    (72, 92, 297, 4, 'Policy clear star daughter imagine discussion little imagine.', 'Cost eat truth fly memory hundred.', TRUE),
    (84, 111, 191, 5, 'Travel growth what.', NULL, TRUE),
    (15, 12, 319, 4, 'Many energy pattern investment practice.', NULL, FALSE),
    (114, 221, 928, 5, NULL, 'Event skin indicate suddenly like.', FALSE),
    (11, 27, 1005, 3, NULL, NULL, TRUE),
    (78, 127, 379, 4, 'To use assume middle record organization of.', NULL, FALSE),
    (104, 116, 838, 4, 'Piece national what role term left necessary.', NULL, TRUE),
    (24, 236, 942, 5, NULL, 'Bag even might yet skin.', FALSE),
    (11, 265, 67, 4, 'Performance try phone water national pattern.', NULL, TRUE),
    (8, 179, 598, 4, 'Pay trip recognize ok recent near find.', 'Note read term force open without. Book party reveal.', TRUE),
    (95, 237, 360, 5, 'Around reach local guess.', NULL, FALSE),
    (86, 241, 484, 5, NULL, 'Goal audience bad. Dinner other sell new.', FALSE),
    (88, 241, 484, 5, 'Debate fire improve remember call method.', 'Head argue magazine any order prepare.', TRUE),
    (60, 95, 956, 5, 'Southern federal will economic another.', 'Radio ever total technology party issue. Anyone smile energy add so financial.', TRUE),
    (28, 248, 281, 5, NULL, NULL, TRUE),
    (42, 280, 778, 5, 'Tend majority kitchen Mr ahead late.', 'Who court media part interesting drug.', TRUE),
    (72, 136, 47, 4, 'Election identify high capital plant side.', 'Approach how free part director. Across use international.', FALSE),
    (114, 73, 813, 1, NULL, NULL, TRUE),
    (93, 105, 291, 4, 'Brother charge Congress seven.', NULL, TRUE),
    (88, 246, 713, 5, 'Into thing really listen husband shake party.', 'Billion computer remember. Begin treat system spring.', TRUE),
    (49, 291, 463, 5, 'Mouth military hold art set.', NULL, TRUE),
    (96, 144, 174, 4, NULL, 'Board open word. Represent yard campaign themselves common other walk.', TRUE),
    (78, 269, 318, 5, 'Us today us event care responsibility.', NULL, TRUE),
    (73, 243, 950, 2, 'Table police interesting challenge book.', 'Data economy save.', TRUE),
    (4, 141, 877, 4, 'Garden involve recent role term mother leave.', 'Happy enter method finally. Public reason discussion food.', TRUE),
    (70, 82, 624, 3, 'Gun sell wear another put.', 'Figure happen present full certainly. Suddenly baby cause cover various.', TRUE),
    (13, 202, 176, 4, 'Experience Mr she room man vote safe.', NULL, TRUE),
    (27, 272, 1194, 4, 'Late top huge deal.', NULL, FALSE),
    (29, 129, 371, 5, NULL, 'Majority air test never.', TRUE),
    (88, 38, 399, 1, 'Rate standard today government actually myself.', 'Six while step effort resource create hit yes.', TRUE),
    (73, 128, 288, 3, NULL, 'Rest me certain person director summer.', FALSE),
    (101, 149, 652, 4, NULL, 'Along TV record.', TRUE),
    (34, 133, 9, 3, NULL, NULL, FALSE),
    (7, 246, 641, 5, 'Method resource how listen.', 'Toward successful generation common effect true western.', TRUE),
    (13, 64, 133, 5, 'Energy apply mother standard these.', 'Owner design relate need administration rather sense.', TRUE),
    (111, 72, 109, 3, 'Drive other chair lead maybe produce.', 'Sound nothing international only method choice. Article year fire official car look ever last.', TRUE),
    (40, 207, 52, 3, 'Effect discussion special technology.', NULL, TRUE),
    (42, 163, 398, 3, 'Music white report company car data news difficult.', NULL, FALSE),
    (63, 108, 1026, 5, 'Clear dog nothing billion wish world process.', 'Hot stage want. Decide common term under Republican news deep.', TRUE),
    (97, 106, 437, 4, NULL, 'And bring continue compare.', FALSE),
    (110, 278, 202, 4, 'Administration reality history.', 'Boy travel meet place public newspaper. Resource business natural stand country himself behavior.', TRUE),
    (49, 239, 105, 5, 'True dog need up.', 'Operation sense skill everybody.', TRUE),
    (39, 34, 614, 2, NULL, NULL, TRUE),
    (11, 238, 666, 5, 'Political crime finally term open story so.', NULL, FALSE),
    (110, 196, 343, 5, 'About safe yes.', 'Trouble about stage everything forget score. Join avoid affect ready job win.', FALSE),
    (45, 42, 1115, 4, 'Instead begin actually positive trouble federal.', 'Region through wall would.', TRUE),
    (69, 34, 503, 4, 'Space must beyond.', NULL, TRUE),
    (20, 122, 686, 5, 'Stand trouble especially peace among past happen no.', 'Information dark network help rise north.', FALSE),
    (106, 212, 182, 4, 'City parent size month music newspaper.', NULL, FALSE),
    (63, 64, 133, 5, 'Today not line yet produce magazine pass.', 'He option Congress. Such notice to age organization call wall.', FALSE),
    (12, 144, 138, 4, 'It reduce write lawyer.', 'Officer store cost address within network accept. Happy cause authority leave friend fire whatever.', FALSE),
    (2, 22, 973, 4, 'Main fact bed security major his continue.', NULL, TRUE),
    (90, 64, 154, 5, 'Benefit pull strong necessary.', NULL, TRUE),
    (51, 186, 325, 4, 'Begin require idea case entire.', NULL, TRUE),
    (58, 168, 860, 3, 'Cell wall free onto.', 'Specific think tree. Return hand trouble black network.', TRUE),
    (82, 277, 881, 5, 'Health street animal itself media.', NULL, TRUE),
    (48, 74, 35, 5, NULL, 'Center suddenly happen store report adult same.', FALSE),
    (74, 288, 722, 4, 'Place detail region garden.', 'Least deep carry.', TRUE),
    (117, 138, 81, 4, 'Yeah me try particularly thought those evidence.', NULL, FALSE),
    (51, 51, 387, 4, 'Become minute war stage.', 'Read response drive carry.', FALSE),
    (76, 271, 1198, 4, 'Authority walk my use significant according.', 'Skill wall political send.', FALSE),
    (25, 94, 1114, 4, 'Before off window particular.', 'Wonder prevent fire into. Season dinner stage.', TRUE),
    (18, 162, 506, 4, 'Apply notice current allow audience involve.', 'Above low town. Theory off fine represent.', TRUE),
    (107, 100, 565, 5, NULL, 'Specific cell nothing life or.', FALSE),
    (78, 254, 171, 3, NULL, 'Tend include capital either what. Including run where soldier.', FALSE),
    (51, 82, 143, 5, 'Understand within dark financial Mrs degree side.', 'Election animal goal.', TRUE),
    (31, 272, 271, 4, 'Professional idea range attention throughout degree think.', 'Eight shake statement front truth inside. If event nation although.', FALSE),
    (107, 117, 708, 5, 'Language open despite response edge federal.', 'Crime field computer son him wonder traditional. Image case answer free knowledge.', FALSE),
    (112, 204, 864, 1, 'Until relate hour large friend bag.', 'Deal consumer station order. View total foot amount pick finally agree.', FALSE),
    (29, 277, 359, 1, 'Big do week you leg medical hold over.', 'Forget far wall radio.', TRUE),
    (88, 246, 782, 5, NULL, NULL, TRUE),
    (42, 136, 768, 5, 'Rather concern plant.', NULL, TRUE),
    (28, 46, 1021, 2, NULL, 'He doctor stage usually recognize bar computer a. Project consider too size.', TRUE),
    (15, 50, 975, 4, 'Ground while action teacher service record anything.', NULL, TRUE),
    (4, 18, 214, 5, NULL, NULL, FALSE),
    (60, 77, 1004, 5, NULL, 'Front television us trade. Whom pressure rather employee plant pay.', TRUE),
    (8, 74, 35, 1, 'Just analysis strong.', NULL, FALSE),
    (108, 233, 277, 5, 'Share region suddenly less.', 'Us remain operation. Popular tree project stop answer work.', FALSE),
    (51, 18, 214, 2, 'Whatever performance wide significant activity.', NULL, TRUE),
    (25, 76, 175, 5, 'Budget everyone call all Democrat animal particularly win.', NULL, TRUE),
    (10, 71, 507, 3, NULL, 'Author feel party behind.', FALSE),
    (115, 111, 6, 5, 'Wrong front past throughout whether.', 'Service during health note chair guess. Almost imagine main wait.', TRUE),
    (6, 238, 666, 4, 'Popular huge investment.', 'Available hit keep enjoy. You may reason by threat.', TRUE),
    (112, 51, 1027, 5, 'Production now eye ok white.', NULL, TRUE),
    (31, 69, 697, 4, 'Technology after hotel learn serve suffer.', 'Account claim girl action manage world. Effort together contain black Mr contain.', TRUE),
    (36, 230, 1140, 4, 'Physical product of single.', NULL, TRUE),
    (7, 188, 948, 5, 'Smile film task attorney say.', 'Always time instead quality green accept share.', TRUE),
    (69, 126, 588, 3, NULL, 'Trial member drug charge total because hotel. Some pattern according to free.', FALSE),
    (73, 231, 305, 5, NULL, NULL, TRUE),
    (54, 107, 733, 5, 'Free theory none so myself follow not.', NULL, TRUE),
    (2, 34, 676, 4, 'Because order order interest.', 'Another well drive provide think something.', TRUE),
    (55, 98, 461, 4, 'Leader government cost eight.', 'Reason call traditional. Before general class require.', TRUE),
    (58, 293, 137, 5, 'Accept country red collection positive part produce.', 'Trade modern buy of major above.', TRUE),
    (9, 284, 110, 5, 'Not its significant me deep he.', 'Bank open fine see real like region. High might remember seek.', TRUE),
    (86, 171, 795, 1, 'True long she record teach attack.', NULL, TRUE),
    (97, 292, 726, 5, 'Participant choice training look common meeting.', 'Term price yet catch reveal. Class approach necessary past Mr personal stuff.', FALSE),
    (65, 270, 298, 4, NULL, 'Production choice edge everyone.', TRUE),
    (110, 95, 241, 2, NULL, 'Pressure room under team security. Instead well growth own.', TRUE),
    (72, 192, 247, 4, 'Red pull save same camera.', NULL, TRUE),
    (6, 73, 82, 4, NULL, NULL, FALSE),
    (75, 183, 490, 4, 'Without everybody research chance system.', 'Marriage sure camera then during responsibility.', TRUE),
    (83, 289, 869, 4, 'Together service me.', NULL, FALSE),
    (115, 243, 235, 4, 'Friend another effect culture radio station.', NULL, FALSE),
    (57, 274, 1054, 5, NULL, 'Discuss stock lead green total benefit Mr car. Raise prepare wrong bed.', TRUE),
    (79, 95, 241, 5, NULL, 'Fear tend American war old what design.', TRUE),
    (55, 26, 1092, 4, 'Enough success score.', 'Per hot character ball.', TRUE),
    (14, 69, 576, 4, NULL, NULL, FALSE),
    (58, 111, 191, 5, 'Voice information add argue image.', 'Success traditional leave send through himself. Upon base mention hour gun field.', FALSE),
    (115, 43, 1024, 5, 'Single situation feel already whole.', 'Range painting country different indicate. Few page cold.', TRUE),
    (100, 218, 72, 5, 'Can college care think brother.', NULL, TRUE),
    (104, 162, 190, 5, NULL, 'Eight skill program try.', FALSE),
    (77, 163, 311, 4, 'Wait never fly pull big method.', 'Move manage worry. Better performance imagine police right traditional represent price.', TRUE),
    (15, 162, 506, 1, 'Radio enough cut fund dream care whole.', NULL, TRUE),
    (71, 49, 450, 5, 'Water wind cost hand arm.', 'Different end dark spring speak. Back relationship hand protect matter.', TRUE),
    (62, 263, 783, 5, 'Hear responsibility have.', 'Trouble nor environmental former law only. Return wall trouble friend current.', FALSE),
    (63, 87, 275, 2, 'Job nor yard establish hit.', NULL, TRUE),
    (107, 258, 201, 4, 'Since him southern issue town call computer experience.', NULL, TRUE),
    (68, 269, 476, 1, NULL, NULL, TRUE),
    (71, 277, 770, 3, 'Movement traditional of.', 'Meet spring continue human central. Office however such consider table dream.', TRUE),
    (104, 28, 36, 5, 'Thank everybody dream since open budget consider.', NULL, TRUE),
    (105, 246, 641, 4, 'Value experience young west.', 'Crime society church indeed break since though degree. Laugh include price leader.', TRUE),
    (53, 2, 515, 4, NULL, 'Air population room.', FALSE),
    (100, 188, 698, 4, 'Vote state turn center build happy near.', 'Exactly choose guy wide evidence to item.', TRUE),
    (23, 72, 117, 4, 'Something employee such practice quickly any market.', 'Reality in game.', TRUE),
    (30, 295, 785, 4, 'Development know laugh officer.', NULL, TRUE),
    (98, 34, 982, 4, 'Radio image crime about everything artist.', NULL, FALSE),
    (57, 241, 406, 4, NULL, 'Record spring sport usually as until happen power.', TRUE),
    (27, 254, 171, 5, 'Already TV low.', 'Assume control leg suggest.', FALSE),
    (2, 76, 857, 5, 'Build ago feeling whose realize.', 'Several more physical beautiful year.', TRUE),
    (52, 84, 926, 4, 'Cup cup performance.', NULL, TRUE),
    (77, 72, 826, 5, 'Remember million hospital trade agree population.', NULL, TRUE),
    (79, 154, 448, 4, NULL, NULL, FALSE),
    (45, 183, 929, 5, NULL, NULL, TRUE),
    (101, 248, 281, 4, 'Risk task six gas rest whom good.', NULL, FALSE),
    (10, 223, 554, 5, 'Travel chance character really spring.', 'Couple mission part ability hair list really thus.', TRUE),
    (79, 76, 497, 3, NULL, 'Different dinner interview medical will light.', TRUE),
    (50, 218, 997, 2, 'Traditional necessary learn memory.', 'Marriage where share southern stop customer although add. Choose between population weight.', TRUE),
    (28, 120, 736, 4, NULL, NULL, TRUE),
    (104, 127, 379, 4, 'Develop while question place consumer bed teacher.', NULL, FALSE),
    (40, 116, 293, 5, NULL, NULL, FALSE),
    (54, 236, 1171, 4, 'Itself religious energy teacher single long food send.', 'Decide wide describe real.', TRUE),
    (6, 140, 519, 5, 'Center claim Republican admit.', NULL, TRUE),
    (60, 253, 242, 5, NULL, 'Factor young get wrong teach not response professor.', TRUE),
    (30, 219, 166, 4, 'Team condition when if help start peace year.', 'Prevent too drug today so long.', FALSE),
    (28, 272, 525, 5, NULL, 'Talk boy area however.', TRUE),
    (17, 235, 328, 5, 'Every still according protect director next figure.', 'Food add process detail history husband arm.', TRUE),
    (40, 219, 166, 2, 'Professional director stock list half.', NULL, TRUE),
    (72, 271, 249, 4, 'Finish everybody live gun.', 'Authority company phone attack beat within environment.', TRUE),
    (16, 272, 271, 4, 'Not truth garden into.', NULL, TRUE),
    (70, 183, 431, 2, 'Now provide office.', NULL, TRUE),
    (95, 298, 71, 5, NULL, NULL, TRUE),
    (19, 285, 1120, 5, 'Or deep fly natural group continue.', 'Specific adult collection. Project author term many.', TRUE),
    (44, 111, 191, 2, 'Rock bed film wait.', 'Sell involve water idea mother. Image not model democratic close make low.', TRUE),
    (35, 239, 105, 4, 'Something world continue just.', 'Leave fund officer. Movement little name good subject very wait.', TRUE),
    (46, 299, 1012, 3, 'Too recognize final boy begin show forget.', NULL, TRUE),
    (114, 299, 104, 5, NULL, 'West public size.', TRUE),
    (110, 209, 918, 2, NULL, NULL, TRUE),
    (55, 281, 1006, 5, 'Consider by animal building attorney success.', 'Space evening executive policy son exist according. Ability inside night.', TRUE),
    (22, 260, 582, 5, 'Fill name several market fear language.', NULL, TRUE),
    (106, 88, 759, 5, NULL, 'Those become staff history girl. Either former age.', TRUE),
    (59, 278, 401, 4, NULL, 'Fire determine current open history evening.', TRUE),
    (97, 135, 635, 5, 'Pattern while kid body play practice.', NULL, TRUE),
    (51, 236, 942, 5, 'Notice herself fly anyone.', NULL, FALSE),
    (46, 285, 884, 4, 'Order rest conference glass claim claim.', NULL, FALSE),
    (59, 77, 1004, 1, 'Purpose interview doctor bad finish face.', 'Sure subject shake particularly give example price easy. Send themselves walk factor determine remember.', TRUE),
    (84, 183, 257, 5, 'Social figure building notice.', NULL, TRUE),
    (53, 47, 815, 4, 'Operation send drug relationship tax every late difficult.', NULL, FALSE),
    (61, 151, 1167, 5, 'Theory enough moment put price.', 'Certainly answer foreign information. Reveal rich despite offer stage politics think old.', TRUE),
    (23, 277, 1119, 5, 'Between citizen whose young set.', 'Article community team seven. Force tonight million cover piece six have.', TRUE),
    (41, 106, 213, 4, NULL, 'Car sing also act few note summer high. Chance particularly note statement.', TRUE),
    (73, 233, 820, 5, 'Today themselves blood single.', 'Four hour green religious hot former front.', TRUE),
    (60, 170, 613, 2, 'White new involve south two participant want.', NULL, TRUE),
    (70, 51, 387, 5, NULL, 'Need country receive however determine authority.', TRUE),
    (30, 81, 341, 4, 'Nearly answer daughter three couple imagine usually.', 'Teach crime leader.', FALSE),
    (115, 58, 753, 4, 'Enter debate blue feeling.', 'Indeed scientist push price sit music agreement need. Represent today notice exactly send where.', TRUE),
    (13, 217, 999, 4, NULL, NULL, TRUE),
    (93, 116, 838, 5, 'Though president position win.', NULL, TRUE),
    (80, 45, 412, 4, 'Threat ask enjoy year few success.', 'Direction soldier strong water.', FALSE),
    (51, 228, 1097, 5, 'Class next want instead.', 'Large front the two. Current card yes perhaps.', TRUE),
    (5, 121, 493, 2, NULL, 'Carry care husband.', TRUE),
    (117, 241, 406, 5, 'Democratic there discover detail.', NULL, TRUE),
    (65, 72, 1020, 5, 'Impact kid safe but too.', NULL, TRUE),
    (111, 272, 944, 4, 'Half staff join interview simply participant girl.', 'Together arm everyone have argue. Travel same news election.', TRUE),
    (68, 4, 586, 4, NULL, 'Dog describe respond week. Another music learn water.', FALSE),
    (17, 127, 921, 5, 'Special something true administration lawyer clear clear someone.', 'Thing around sport.', TRUE),
    (13, 84, 926, 5, NULL, 'Produce national role when story. Politics real fly employee black skill over.', TRUE),
    (71, 258, 12, 2, 'Understand anyone growth must.', NULL, TRUE),
    (114, 175, 1032, 4, 'Their key small light chance media use.', 'First always what site.', FALSE),
    (64, 215, 967, 5, 'History serve example effort medical science.', NULL, TRUE),
    (24, 132, 79, 4, 'Magazine physical later show baby.', 'Candidate beat another most.', TRUE),
    (115, 300, 592, 4, NULL, NULL, TRUE),
    (39, 19, 217, 1, 'Among recent work need southern sea anyone.', NULL, FALSE),
    (90, 258, 12, 3, 'Lawyer anyone station fact.', NULL, TRUE),
    (99, 204, 284, 5, NULL, NULL, TRUE),
    (98, 197, 1013, 4, NULL, 'Usually our good onto people edge great our.', FALSE),
    (113, 77, 689, 4, 'Management common center man.', 'Economic newspaper consider again tax. Certain heart heavy fly.', FALSE),
    (100, 83, 374, 5, 'Opportunity position sure court crime.', 'Staff dark face few theory street fight.', FALSE),
    (97, 51, 387, 5, 'Material out two activity let source action.', NULL, FALSE),
    (62, 45, 504, 4, 'Pass help medical glass partner themselves.', NULL, TRUE),
    (54, 47, 1152, 1, 'Small large either reduce consider.', 'Civil there scientist increase environmental. Tv listen some civil grow child industry.', FALSE),
    (80, 284, 1183, 5, NULL, NULL, TRUE),
    (81, 137, 895, 5, 'Glass base special card pressure of.', NULL, TRUE),
    (16, 95, 241, 5, 'Character experience author under.', NULL, TRUE),
    (24, 103, 30, 5, 'Despite charge fish serious red I.', NULL, TRUE),
    (75, 116, 293, 5, 'Each property speech position common performance.', 'Amount help friend else.', TRUE),
    (41, 246, 782, 4, 'Agree protect fund create rich development Mrs.', 'Evening move surface.', TRUE),
    (39, 58, 753, 4, 'Ask politics computer charge.', 'Head fast production third.', TRUE),
    (71, 10, 254, 5, 'Mrs thank myself movie yard fear.', 'Shake body force news.', TRUE),
    (77, 90, 1154, 5, NULL, 'Finally figure card student a some.', TRUE),
    (29, 69, 697, 3, 'Now maybe usually kind.', 'Each finish force say hold I watch. See simple budget itself can fast.', TRUE),
    (40, 237, 1142, 5, 'Born cell us speak.', 'Cover admit real animal.', TRUE),
    (81, 72, 828, 2, 'Particularly mother somebody both.', NULL, FALSE),
    (12, 26, 1092, 5, NULL, NULL, TRUE),
    (53, 208, 959, 4, 'Visit true nothing technology tend bed television.', NULL, FALSE),
    (3, 139, 285, 4, 'Check set open order party offer money.', 'Recognize book near arm themselves institution again.', TRUE),
    (9, 165, 1056, 4, 'Relationship artist girl culture.', NULL, FALSE),
    (20, 210, 74, 4, 'Much cover how their.', NULL, TRUE),
    (89, 243, 423, 4, 'Focus another special.', 'Though tonight near ability great.', FALSE),
    (99, 76, 497, 5, NULL, NULL, TRUE),
    (41, 135, 799, 5, NULL, 'Successful pattern process north particularly arrive.', FALSE),
    (12, 296, 221, 4, 'Move it state series value tax.', NULL, TRUE),
    (99, 111, 191, 5, NULL, NULL, FALSE),
    (8, 183, 431, 5, 'Such year deal the.', 'Pull third data sport imagine section. From box piece my specific still I.', TRUE),
    (117, 72, 109, 5, NULL, 'Bit its fight since a avoid choice. Social cut difficult participant between music meet.', TRUE),
    (105, 146, 873, 5, 'Glass cost say rock as.', NULL, TRUE),
    (41, 78, 980, 5, NULL, NULL, TRUE),
    (14, 144, 174, 4, NULL, NULL, FALSE),
    (112, 166, 306, 5, 'Foot visit save red image time manage.', 'Institution pick have.', TRUE),
    (35, 78, 980, 4, 'Cold play various mission task spend easy avoid.', 'Parent what bring truth reason good order.', TRUE),
    (106, 103, 612, 4, 'Table poor must federal produce condition push wrong.', NULL, FALSE),
    (108, 230, 894, 4, 'Reduce heavy receive state.', 'Shake particularly government stop catch large. Pattern or through class for.', TRUE),
    (100, 215, 486, 5, 'Evening itself PM shake scene though often part.', 'Physical central pay institution write. As just peace machine none.', FALSE),
    (19, 55, 850, 4, 'Site leader rather marriage next rate sure.', NULL, FALSE),
    (101, 8, 667, 1, NULL, NULL, TRUE),
    (62, 148, 227, 4, NULL, NULL, FALSE),
    (65, 261, 334, 5, 'If away meeting sort soon.', NULL, TRUE),
    (71, 240, 1076, 5, NULL, 'In drug stuff million.', TRUE),
    (22, 163, 398, 2, 'Gas human ok space blood herself simply move.', 'Firm society coach policy south.', TRUE),
    (83, 35, 505, 3, NULL, 'Who brother thought all huge which.', TRUE),
    (60, 97, 59, 5, NULL, NULL, TRUE),
    (92, 258, 12, 4, 'However face own.', 'Style condition movement.', TRUE),
    (95, 166, 585, 4, 'Grow bit develop news much.', NULL, TRUE),
    (38, 69, 183, 5, 'Couple program American lot project must down.', 'Energy take yes network indeed tend address. Small trip another defense quickly result service.', TRUE),
    (62, 276, 330, 5, 'Big thousand sing green data treat.', 'Fall newspaper should court just must. It notice me look return.', FALSE),
    (17, 53, 777, 4, NULL, 'Most class there sound.', TRUE),
    (35, 254, 171, 5, NULL, NULL, TRUE),
    (91, 284, 710, 5, NULL, NULL, TRUE),
    (117, 170, 613, 3, 'Both seek into.', 'Discuss try field.', FALSE),
    (3, 115, 327, 5, NULL, 'Own visit hotel ever.', FALSE),
    (20, 98, 1075, 4, NULL, 'Next upon stand hear feeling although. Skin call food general.', FALSE),
    (41, 249, 134, 4, 'Job local firm international condition voice Congress participant.', NULL, TRUE),
    (75, 246, 1139, 4, 'Door use positive far soldier else.', 'Too field eye size head development join.', TRUE),
    (3, 258, 902, 5, 'Benefit station discussion different.', NULL, TRUE),
    (40, 210, 74, 5, NULL, NULL, TRUE),
    (23, 69, 1153, 5, 'Major bank case.', 'Design coach stock tonight argue scientist. Campaign continue before than upon single.', FALSE),
    (82, 84, 442, 5, 'Type policy plan leg church.', 'Politics rule pay new Republican fly foot.', TRUE),
    (63, 54, 445, 4, 'Once figure race get.', 'Image within foreign happy. Large area trouble more.', TRUE),
    (102, 144, 138, 5, 'Guy out election.', 'Especially discover hand Democrat sign. Just more sea run born.', TRUE),
    (22, 175, 322, 4, 'Budget oil reduce woman least employee suggest.', NULL, TRUE),
    (28, 110, 215, 4, NULL, 'Already discuss member air crime. Design bar skin read dream popular truth.', FALSE),
    (105, 7, 222, 5, 'Interview also listen movement.', 'Attention some lose little act still itself.', TRUE),
    (81, 24, 282, 5, 'Range finish business reality impact story.', NULL, TRUE),
    (32, 165, 1056, 4, 'Unit rock lot south mention.', NULL, FALSE),
    (112, 228, 329, 5, 'Mention tell green rate.', NULL, FALSE),
    (103, 290, 719, 4, 'Fall thank market same kind.', NULL, FALSE),
    (25, 248, 388, 4, NULL, NULL, FALSE),
    (41, 29, 187, 2, 'Value or however usually would difference.', NULL, TRUE),
    (9, 127, 153, 4, NULL, 'Onto offer thousand pick. Energy town apply onto one ahead.', TRUE),
    (81, 45, 504, 5, 'Born mother never.', 'Officer most doctor use remember. Believe be organization professional.', FALSE),
    (85, 125, 553, 4, 'Toward color far everybody visit.', 'People voice style past leader. Just night theory statement three forget.', TRUE),
    (12, 97, 59, 3, 'Give mind watch score successful anything century.', NULL, TRUE),
    (33, 255, 717, 5, 'Seat leg much produce production piece.', 'Federal music police trade.', TRUE),
    (107, 89, 186, 4, 'Together left unit seek more trouble enjoy.', 'So some deal many. Mission hospital model bar.', FALSE),
    (38, 84, 936, 5, 'Point decide me sell support.', 'Official particular worry strong.', TRUE),
    (54, 168, 906, 5, 'Every trouble office thought.', 'Prevent term such of suffer street knowledge officer.', FALSE),
    (3, 43, 364, 5, 'Firm night interesting institution debate statement.', 'Physical prevent season Mrs. Senior let see.', TRUE),
    (64, 102, 163, 5, 'Crime pull after season business drop.', NULL, TRUE),
    (45, 42, 1055, 5, NULL, NULL, FALSE),
    (105, 106, 213, 4, NULL, NULL, TRUE),
    (65, 18, 802, 4, 'Bag eat tax call of listen care term.', 'During interview off real. Step something talk response amount foreign.', TRUE),
    (38, 196, 745, 5, 'Federal research deal attorney.', NULL, TRUE),
    (80, 217, 1178, 4, NULL, NULL, FALSE),
    (21, 3, 867, 4, 'Usually somebody most day serious cause.', NULL, TRUE),
    (74, 191, 1042, 4, NULL, NULL, TRUE),
    (76, 62, 555, 4, NULL, 'Describe give result husband. Decade drop peace region phone.', FALSE),
    (68, 110, 215, 2, 'Focus them seem wife bed plan factor.', 'Practice team star dream.', TRUE),
    (72, 146, 873, 5, 'Nothing ground smile break here early what.', 'Process stuff treat. Main lead talk name instead she her.', FALSE),
    (112, 30, 299, 5, NULL, NULL, TRUE),
    (98, 151, 1167, 5, 'Gas economic computer.', NULL, TRUE),
    (117, 43, 1024, 3, 'Help effort attention relate.', NULL, TRUE),
    (68, 150, 1048, 4, 'Baby throw perhaps recent where follow.', NULL, TRUE),
    (75, 124, 679, 4, 'Friend the play federal stock.', 'White also protect natural career woman.', FALSE),
    (108, 289, 244, 4, NULL, 'Central information instead value meeting.', TRUE),
    (52, 208, 1189, 5, NULL, 'Plant put law more often.', TRUE),
    (88, 28, 36, 5, NULL, 'Some unit offer offer and manager. Receive team process parent whole.', TRUE),
    (58, 73, 82, 5, 'Now community Mr.', 'Meeting she that senior go talk down story.', TRUE),
    (105, 261, 273, 4, 'Mrs throughout career make law thousand.', 'South whether world small serious stuff.', FALSE),
    (116, 142, 516, 5, 'Simply she along figure decade.', NULL, TRUE),
    (54, 143, 907, 5, NULL, 'Top medical day like prepare grow mention. Democrat exist little add economy.', FALSE),
    (69, 121, 1091, 4, 'Response painting performance both week.', 'Stay them wide control campaign card enough.', TRUE),
    (4, 239, 105, 4, NULL, NULL, TRUE),
    (68, 64, 154, 5, 'Wide under attack suggest.', 'Particularly right green left.', FALSE),
    (70, 46, 837, 5, NULL, NULL, TRUE),
    (112, 233, 590, 2, 'Environmental evidence after.', 'Stuff evening north city he sit style poor. Perform research finally western.', TRUE),
    (98, 300, 852, 1, 'Certain everyone weight agreement.', NULL, FALSE),
    (58, 144, 1053, 5, 'Listen season work tend off daughter concern.', 'Success soldier control add strategy really pull.', TRUE),
    (48, 300, 1057, 4, 'Information blue stock appear.', NULL, TRUE),
    (66, 146, 481, 5, NULL, 'Him it reach Democrat little.', TRUE),
    (35, 295, 972, 1, NULL, 'Human reason college various charge along organization.', FALSE),
    (113, 238, 666, 4, 'Hospital sort return audience growth.', 'On act let painting air benefit during. Western none activity sometimes democratic left.', TRUE),
    (83, 126, 84, 2, 'Sell alone later civil board.', NULL, TRUE),
    (78, 34, 982, 5, 'Spend not sea line away hope central.', 'Sound effect thank.', TRUE),
    (111, 130, 495, 3, 'Sea society your book cold.', 'Strong lawyer fill imagine work certain difficult.', TRUE),
    (114, 198, 467, 4, 'Fall skill total contain certain.', 'Century Congress treat. Sense center run view room.', TRUE),
    (46, 254, 622, 3, NULL, 'Figure statement something listen Congress. Against purpose inside personal firm different candidate important.', TRUE),
    (1, 76, 819, 5, 'Owner feel newspaper wife quality establish general.', NULL, TRUE),
    (101, 117, 708, 4, NULL, NULL, FALSE),
    (72, 216, 428, 4, 'Once go him capital blood property.', 'Ok success color involve thing year reflect. Sort those effort new social traditional message instead.', TRUE),
    (22, 208, 1189, 5, NULL, 'Here arrive act moment find else memory.', FALSE),
    (29, 150, 1048, 4, 'Just price with with body.', 'Factor suffer candidate join analysis idea say.', TRUE),
    (109, 133, 9, 4, NULL, NULL, FALSE),
    (47, 152, 550, 4, NULL, NULL, FALSE),
    (39, 292, 726, 4, 'Value shoulder wall cut part room campaign.', 'Woman everything especially join last week.', TRUE),
    (99, 46, 1187, 5, 'Citizen difference whole improve ever could research.', NULL, FALSE),
    (42, 54, 445, 1, 'Collection young current.', 'Term grow forget these. Ability again nature heavy soldier.', FALSE),
    (80, 100, 645, 5, NULL, 'Dream born above might occur sing yourself. Edge image able often.', TRUE),
    (36, 19, 217, 5, 'His send physical star.', NULL, TRUE),
    (51, 56, 372, 5, 'Rate cut lead story.', 'Risk science pay hold my run feel. Wall term natural lose.', TRUE),
    (18, 10, 254, 4, 'Home American age others subject.', 'Everyone despite its three rich each knowledge. Model be begin page.', FALSE),
    (109, 258, 902, 5, 'Reason form center of source change.', 'Player source professor attention data.', FALSE),
    (114, 123, 1105, 5, 'Everyone in land heart offer.', 'Exist three event identify kid. Believe nearly environment.', TRUE),
    (10, 80, 584, 5, NULL, NULL, FALSE),
    (114, 125, 553, 5, 'Special relationship much.', NULL, TRUE),
    (30, 68, 1112, 4, 'Read charge case development.', NULL, FALSE),
    (23, 118, 1164, 5, 'Others short why chance three cell most.', NULL, FALSE),
    (92, 65, 526, 4, 'Thought market read toward life smile grow.', NULL, FALSE),
    (117, 45, 412, 4, NULL, 'Find week develop yet admit far.', TRUE),
    (22, 34, 483, 5, 'People yeah nice cause.', 'Near rather voice pick. Window generation adult program throughout boy all let.', TRUE),
    (78, 199, 414, 5, 'Despite enough impact approach.', 'Drug century beautiful bed these traditional customer.', FALSE),
    (46, 29, 889, 5, NULL, 'Same understand interview go by pressure enough.', FALSE),
    (32, 149, 1109, 5, NULL, NULL, TRUE),
    (83, 186, 678, 4, 'Resource activity save itself foot what sign.', NULL, FALSE),
    (50, 38, 399, 5, 'Fine rise wife figure concern.', NULL, TRUE),
    (31, 249, 134, 4, 'Without industry despite plant.', 'Blood because door. Material sea personal day rule man.', TRUE),
    (18, 59, 290, 5, NULL, 'Dog next instead make important.', TRUE),
    (1, 51, 1027, 4, 'Clear fish big quickly.', 'Hour would meeting suggest. Various use situation well task everybody.', TRUE),
    (117, 69, 1153, 5, NULL, 'These this impact nation member such so fall.', TRUE),
    (72, 199, 949, 5, 'Stop production official police gun already window.', 'Field not year wind by finish even.', TRUE),
    (104, 60, 668, 4, NULL, 'Approach risk these senior natural.', TRUE),
    (29, 293, 1093, 5, 'Character from PM such.', NULL, TRUE),
    (60, 92, 683, 3, 'Scene green ground offer common wide process everybody.', 'Short big report manage.', TRUE),
    (50, 142, 891, 2, 'National bag chair eat tax.', 'Fill front only explain themselves. South right month everyone soon Mr year.', TRUE),
    (111, 190, 839, 5, 'Employee similar girl better beyond analysis.', 'Spring he cultural seek.', TRUE),
    (109, 300, 847, 4, NULL, 'East ahead remain anything.', TRUE),
    (5, 71, 653, 5, NULL, 'Interest statement dream central require politics measure. Would dark artist.', TRUE),
    (87, 8, 904, 5, 'Bit land stock performance treatment.', NULL, TRUE),
    (5, 89, 807, 5, 'Bag space allow.', NULL, FALSE),
    (13, 126, 310, 5, 'Decide try little.', NULL, TRUE),
    (94, 111, 6, 4, 'Drive seek many between.', 'Increase sit bit piece hold until set. Raise pattern seem anything medical better.', TRUE),
    (75, 152, 550, 1, NULL, NULL, TRUE),
    (104, 121, 1090, 2, 'Suddenly player start forget half.', 'Build deal join development morning relationship against two.', TRUE),
    (15, 46, 1021, 5, 'More test kitchen seat likely single out.', 'Life watch black agree real.', TRUE),
    (14, 218, 180, 4, NULL, 'Like strong candidate dark other serve plant his.', TRUE),
    (44, 68, 1112, 5, 'Make building cup fund dinner language information.', 'Consider expert address.', TRUE),
    (19, 64, 1145, 4, NULL, NULL, TRUE),
    (32, 208, 469, 4, 'Hand goal term matter address prepare protect.', 'Sometimes career then who class.', TRUE),
    (50, 152, 550, 5, NULL, 'One smile his protect him good.', FALSE),
    (54, 79, 1043, 4, NULL, 'Huge line home kind radio. Join real early sure.', TRUE),
    (112, 214, 108, 4, 'Recent vote wall become area break.', 'Statement home above until design. Another wait spend mission election site.', TRUE),
    (40, 214, 108, 5, NULL, 'Reflect reason per tend official.', FALSE),
    (4, 168, 906, 3, 'My fall at age feeling.', NULL, TRUE),
    (23, 160, 931, 4, 'School over special sport.', 'Another big treatment help rest. Writer recognize identify some discuss test pass.', FALSE),
    (3, 277, 69, 4, NULL, NULL, FALSE),
    (105, 249, 134, 5, 'Discussion nearly behavior for star they.', 'Inside shoulder choice measure space skin talk.', FALSE),
    (40, 144, 1053, 4, 'Floor east front season.', NULL, TRUE),
    (34, 290, 87, 4, NULL, 'National baby last manage.', TRUE),
    (74, 82, 624, 4, NULL, 'Doctor head none media.', TRUE),
    (19, 245, 457, 5, 'Gun choice take police several speech.', 'Dinner himself child skill. Serve successful have exactly significant life.', FALSE),
    (116, 28, 36, 5, 'Group kid agree.', NULL, FALSE),
    (40, 198, 648, 4, NULL, NULL, TRUE),
    (1, 96, 57, 5, 'Article matter business his enjoy.', NULL, TRUE),
    (71, 166, 1166, 4, 'Mother political discover professor article best fish.', 'Administration control kind start subject me food.', TRUE),
    (2, 68, 688, 2, 'Public himself class common employee seem rate.', 'Throw control might feel. Large investment carry.', TRUE),
    (99, 34, 676, 4, 'Present help deal long attack strong deal.', 'Risk whom husband individual catch. By throw issue mean little appear time really.', TRUE),
    (58, 76, 857, 4, 'Military very year option do.', NULL, TRUE),
    (58, 72, 826, 3, 'Really sister since employee.', NULL, TRUE),
    (79, 41, 126, 5, 'Small reach want page certain customer.', NULL, FALSE),
    (39, 29, 1165, 5, 'Score whatever force table investment either.', NULL, TRUE),
    (8, 46, 1172, 4, 'Fire radio scene.', NULL, FALSE),
    (84, 90, 862, 5, 'Late say matter think matter fund.', 'Job baby relate agree.', TRUE),
    (57, 133, 831, 5, NULL, 'Chair Congress decide I study. Rock Congress relationship compare poor lot blood.', TRUE),
    (83, 205, 195, 3, NULL, 'Store prepare majority parent why blood clearly.', FALSE),
    (53, 58, 338, 5, NULL, NULL, FALSE),
    (71, 94, 1114, 5, 'Citizen third head eye student.', 'Network allow compare billion interesting official debate. Cost together section yet.', TRUE),
    (81, 199, 949, 5, NULL, NULL, TRUE),
    (105, 56, 372, 5, NULL, NULL, TRUE),
    (44, 52, 100, 5, 'Some add you three continue however many.', NULL, FALSE),
    (116, 118, 1164, 3, 'Art national than late.', 'South ball under knowledge sing.', TRUE),
    (44, 179, 75, 5, 'Rate walk fact cup continue strong.', NULL, TRUE),
    (32, 274, 1054, 5, 'Effect evidence officer table.', NULL, TRUE),
    (2, 186, 678, 5, NULL, 'None site item drop. Accept develop none scientist series foot article.', TRUE),
    (25, 233, 127, 4, 'Past partner would foot recognize despite.', NULL, TRUE),
    (9, 86, 1138, 5, 'Different left citizen serve conference technology civil occur.', NULL, TRUE),
    (96, 238, 666, 3, NULL, NULL, TRUE),
    (36, 26, 225, 5, 'Develop present fear significant stage arrive.', 'Laugh position station law coach popular. With open enter see only age.', TRUE),
    (30, 290, 719, 5, 'Media national feeling.', NULL, FALSE),
    (107, 272, 1194, 5, NULL, 'Security year send suffer against and.', FALSE),
    (115, 60, 682, 5, NULL, 'North success commercial another.', TRUE),
    (80, 186, 957, 5, 'Sign tough since war.', 'Allow else occur alone different together give court.', TRUE),
    (39, 196, 745, 4, NULL, 'According cold group American.', FALSE),
    (75, 210, 886, 3, 'Town south general wind box those.', NULL, TRUE),
    (75, 228, 763, 5, 'Writer exist someone raise almost.', 'Mean never night reason decade create simply cover. Far east try option.', TRUE),
    (67, 261, 334, 5, 'Account Mr get second.', NULL, FALSE),
    (29, 126, 727, 4, 'Yourself discover call whole especially establish class.', 'Know four out fine. Over care argue central whom husband away least.', TRUE),
    (77, 26, 225, 5, 'He civil trade himself other term political not.', 'Performance someone one Congress land reflect. Loss discussion husband want.', TRUE),
    (8, 228, 1034, 5, 'List character table picture human.', 'Today center agent per. Large short ago number.', TRUE),
    (6, 236, 942, 5, 'Process these total firm.', 'Article coach black government discover.', FALSE),
    (106, 187, 848, 5, 'Great fish even rest cause old.', 'Down subject military kid true.', TRUE),
    (89, 24, 953, 1, 'Point end painting camera realize edge capital.', NULL, FALSE),
    (103, 102, 163, 4, NULL, NULL, TRUE),
    (27, 185, 671, 5, NULL, 'Nation remain effect something focus use social.', FALSE),
    (108, 140, 805, 5, 'Congress until account sign low among manage him.', NULL, TRUE),
    (12, 229, 149, 5, 'Cup decade doctor color operation next great.', NULL, FALSE),
    (76, 141, 1160, 5, 'Their wall coach level myself face.', 'Arm mind PM size grow. Most stop must win fly join soldier.', TRUE),
    (103, 116, 29, 4, 'Identify commercial science entire.', NULL, FALSE),
    (9, 24, 953, 2, 'By once collection figure describe sister themselves.', NULL, FALSE),
    (117, 293, 960, 5, NULL, NULL, TRUE),
    (18, 261, 95, 4, NULL, 'Size hot new common. Across blood contain role professional player.', FALSE),
    (4, 135, 25, 5, NULL, 'Language need country set thing.', TRUE),
    (93, 34, 676, 4, 'Before watch society.', 'Beautiful now company activity add.', FALSE),
    (56, 41, 126, 5, NULL, 'Color really always improve a truth. Stock apply oil involve continue local.', FALSE),
    (54, 192, 870, 4, 'Positive affect discuss avoid say.', 'Detail have customer people care fear less.', TRUE),
    (34, 98, 461, 5, 'Wear develop system reason.', NULL, FALSE),
    (30, 212, 182, 5, 'Whole use century magazine also hundred.', 'Type security store area. That hospital despite moment vote action.', TRUE),
    (96, 285, 593, 5, NULL, 'Direction community even bed step probably. Pull day test cup improve.', FALSE),
    (57, 7, 262, 4, 'Poor society else.', 'Federal voice resource home everybody stage.', TRUE),
    (94, 171, 832, 5, 'Trip cultural condition like.', NULL, TRUE),
    (28, 267, 200, 4, 'Model live inside truth all teach.', 'Page conference window standard they.', FALSE),
    (93, 163, 398, 5, 'List teach beyond nearly.', 'Structure manager past country.', TRUE),
    (63, 135, 635, 1, NULL, NULL, TRUE),
    (64, 65, 276, 5, 'Recently American collection night knowledge.', 'Back many despite generation sit.', TRUE),
    (76, 217, 609, 5, NULL, NULL, TRUE),
    (90, 10, 254, 5, 'May home eight now young.', 'Them significant have different success carry.', TRUE),
    (115, 187, 848, 5, NULL, 'Among read common middle safe entire present. Other dinner themselves.', FALSE),
    (76, 127, 165, 5, NULL, 'Loss want company hospital everything fly. Owner structure allow sit local back public anyone.', TRUE),
    (73, 186, 678, 2, 'Suffer play say family lay what mission.', 'Lead how heart my later.', TRUE),
    (59, 58, 338, 3, 'There eight increase level quickly hold.', NULL, TRUE),
    (35, 197, 403, 4, 'Identify under top site happy.', NULL, FALSE),
    (35, 240, 1076, 5, 'Think beautiful head military participant.', 'Chance little receive officer.', TRUE),
    (61, 81, 341, 5, 'Action military free recently.', 'After wish guy send into front. Direction easy environment.', FALSE),
    (39, 281, 1006, 4, NULL, NULL, FALSE),
    (63, 146, 481, 5, 'Option early agree low key decision.', 'Red thought build usually consumer contain improve. Treat politics simply pass side laugh positive.', TRUE),
    (104, 294, 142, 4, 'Forget maybe forget our step hit.', NULL, FALSE),
    (77, 98, 461, 4, 'Of daughter quite college middle.', 'Series would agency such sometimes point summer. Number catch brother lay energy.', TRUE),
    (99, 49, 1082, 4, 'Institution record back ten radio kind imagine.', 'Stuff several I clear.', FALSE),
    (11, 290, 719, 5, NULL, 'Court special ok short meeting past pull.', TRUE),
    (19, 187, 848, 4, 'Staff us make no industry follow third.', NULL, FALSE),
    (15, 218, 997, 5, 'Significant do bed scene two.', NULL, TRUE),
    (94, 278, 1096, 4, NULL, 'State final energy if factor air. Movie west doctor this push down force reach.', FALSE),
    (105, 88, 871, 4, 'Realize both grow not without last yes out.', 'Future Mrs couple happy you most when even.', TRUE),
    (32, 183, 257, 1, NULL, 'Score everyone skill speech recently situation really. Letter much increase maybe.', FALSE),
    (70, 72, 769, 4, 'Hit heavy political.', 'Gas population oil sense.', TRUE),
    (65, 283, 709, 5, 'Bill practice education.', 'Top pressure behavior ability. Simple boy approach out choose piece amount.', TRUE),
    (79, 272, 525, 4, NULL, NULL, TRUE),
    (48, 26, 1106, 4, 'Data message much.', 'Lawyer I more over. Nearly prepare side strategy successful for.', TRUE),
    (112, 272, 46, 5, 'Produce affect challenge.', 'Whole week contain positive place become industry able. Rate rest this his body son image car.', TRUE),
    (82, 216, 945, 5, NULL, 'Most subject drive. Lead player source yes.', TRUE),
    (44, 104, 845, 2, 'Create top enough especially for organization.', NULL, TRUE),
    (100, 289, 699, 4, NULL, NULL, TRUE),
    (31, 272, 1194, 5, 'Prepare politics free miss start machine accept condition.', NULL, TRUE),
    (86, 166, 433, 4, 'Specific us central class theory.', NULL, TRUE);


-- =============================================================================
-- SUMMARY
-- =============================================================================
-- categories       :     19
-- suppliers        :     15
-- stores           :      8
-- employees        :     65
-- customers        :    300
-- addresses        :    422
-- products         :    117
-- product_suppliers:    248
-- inventory        :    936
-- orders           :   1200
-- order_items      :   3609
-- payments         :   1200
-- reviews          :    700
-- ─────────────────────────────────
-- TOTAL ROWS       :   8839
-- =============================================================================
Home Videos Quiz Blog